更新最新
This commit is contained in:
@@ -1343,9 +1343,9 @@ input {
|
|||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.platformCont-name {
|
.platformCont-name {
|
||||||
width: calc(100% - 80px);
|
width: calc(100% - 110px);
|
||||||
line-height: 60px;
|
line-height: 32px;
|
||||||
font-size: 26px;
|
font-size: 21px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
.platformCont-name>span {
|
.platformCont-name>span {
|
||||||
@@ -2122,10 +2122,10 @@ input {
|
|||||||
}
|
}
|
||||||
.noGraphList-time>small {
|
.noGraphList-time>small {
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
font-size: 14px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.noGraphList-time>span {
|
.noGraphList-time>span {
|
||||||
font-size: 28px;
|
font-size: 18px;
|
||||||
display: block;
|
display: block;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #000;
|
color: #000;
|
||||||
|
|||||||
@@ -45,8 +45,7 @@
|
|||||||
style="background-image: url({{ asset('assets/index/images/laboratoryImg_1.png') }});">
|
style="background-image: url({{ asset('assets/index/images/laboratoryImg_1.png') }});">
|
||||||
<div class="platformCont-img"><img src="{{ $zdCate->cover_url }}"></div>
|
<div class="platformCont-img"><img src="{{ $zdCate->cover_url }}"></div>
|
||||||
<div class="platformCont-name">
|
<div class="platformCont-name">
|
||||||
{{ $zdCate->title }}
|
{{ $zdCate->description }}
|
||||||
<span>{{ $zdCate->description }}</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a href="{{ $zdCate->link }}" class="platformCont-more">查看详情
|
<a href="{{ $zdCate->link }}" class="platformCont-more">查看详情
|
||||||
|
|||||||
@@ -75,7 +75,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="ce-img awardList-img">
|
<div class="ce-img awardList-img">
|
||||||
<span style="background-image: url({{ asset('assets/index/temporary/img5.png') }});"></span>
|
<span style="background-image: url({{ $article->cover_url }});"></span>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -131,4 +131,3 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- end 内容 -->
|
<!-- end 内容 -->
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
|||||||
29
resources/views/category/sitemap.blade.php
Normal file
29
resources/views/category/sitemap.blade.php
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
@extends('layouts.app')
|
||||||
|
|
||||||
|
@section('content')
|
||||||
|
<!-- Start 内容区域 -->
|
||||||
|
<div class="second">
|
||||||
|
<div class="container">
|
||||||
|
<div class="secondCont">
|
||||||
|
<!-- 导航 -->
|
||||||
|
@if($all_categorys->isNotEmpty())
|
||||||
|
@foreach($all_categorys as $category)
|
||||||
|
@if($category->children->isNotEmpty())
|
||||||
|
<div class="itemize">
|
||||||
|
<div class="itemize-title">{{ $category->title }}</div>
|
||||||
|
<ul class="itemize-ul">
|
||||||
|
@foreach($category->children()->where('status',1)->get() as $child)
|
||||||
|
<li>
|
||||||
|
<a href="{{ $child->link }}">{{ $child->title }}</a>
|
||||||
|
</li>
|
||||||
|
@endforeach
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
@endforeach
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endsection
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
@else
|
@else
|
||||||
@include('layouts.empty')
|
@include('layouts.empty')
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user