12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>帮助中心-星优办公软件</title>
- @include('home.http.common.head')
- <link href="/static/ebook/ebook.css" rel="stylesheet" type="text/css">
- <style>
- .head{
- background: none;
- }
- </style>
- </head>
- <body>
- <div class="header">
- @include('home.http.common.header')
- </div>
- <div style="height: 68px;"></div>
- @include('home.http.common.banner')
- <div class="container">
- <!--- 解决方案 --->
- <div class="index-about">
- <div class="width-1200">
- <div class="index-title">
- <div class="name">常见问题-使用技巧</div>
- </div>
- @foreach ($data as $item)
- @if($item['product'] ->id != 12)
- <div class="flex-between qa-item">
- <div class="qa-soft flex-start">
- <img src="{{ $item['product']->logo }}" class="qa-soft-img" />
- <div>
- <div class="qa-title">{{ $item['category']->name }}</div>
- <a href="{{ '/news/category/' . $item['category']->mid }}">
- <div class="qa-more">查看全部</div>
- </a>
- </div>
- </div>
- <div class="qa-list flex-between">
- @foreach ($item['news'] as $key => $row)
- <div class="question-item overflow">
- <a
- href="{{ '/news/detail/' . $row->mid }}">{{ $key + 1 }}、{{ $row->title }}</a>
- </div>
- @endforeach
- </div>
- </div>
- @endif
- @endforeach
- </div>
- </div>
- </div>
- @include('home.http.common.footer')
- <script>
- new Swiper('.swiper-container', {
- loop: true,
- // 如果需要分页器
- navigation: {
- nextEl: ".swiper-button-next",
- prevEl: ".swiper-button-prev",
- }
- })
- </script>
- </body>
- </html>
|