Merge branch 'dev' of https://gitea.f2b211.com/jsasg/orico-official-website into dev
This commit is contained in:
@@ -187,10 +187,7 @@ class BannerItem
|
||||
|
||||
// 更新关联的产品分类
|
||||
if (!empty($put['rel_prod_cate_id'])) {
|
||||
$ok = SysBannerProdCateMappingModel::where('banner_item_id', '=', $id)->delete();
|
||||
if (!$ok) {
|
||||
throw new InvalidOperateException('更新横幅与产品分类关联失败');
|
||||
}
|
||||
SysBannerProdCateMappingModel::where('banner_item_id', '=', $id)->delete();
|
||||
$mapping = SysBannerProdCateMappingModel::create([
|
||||
'banner_item_id' => $id,
|
||||
'product_category_id' => $put['rel_prod_cate_id']
|
||||
|
||||
@@ -29,6 +29,7 @@ class Faq extends Common
|
||||
'at_platform' => request()->from
|
||||
])
|
||||
->type('image')
|
||||
->enabled()
|
||||
->visible(['id', 'title', 'image', 'link'])
|
||||
->find();
|
||||
View::assign('banner', $banner);
|
||||
|
||||
@@ -479,6 +479,7 @@ class Product extends Common
|
||||
->where('status', '=', 1)
|
||||
->order(['sort' => 'asc', 'id' => 'desc']);
|
||||
}])
|
||||
->atPlatform(request()->from)
|
||||
->uniqueLabel(['BANNER_680dd7ceaa529'])
|
||||
->language($this->lang_id)
|
||||
->enabled(true)
|
||||
|
||||
@@ -66,7 +66,8 @@ class TopicNas extends Common
|
||||
// 获取banner数据
|
||||
$banners = SysBannerModel::with(['items' => function($query) {
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at'])
|
||||
->order(['sort' => 'asc', 'id' => 'desc']);
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->enabled(true);
|
||||
}])
|
||||
->atPlatform(request()->from)
|
||||
->uniqueLabel([
|
||||
@@ -110,8 +111,9 @@ class TopicNas extends Common
|
||||
$trial_instructions = [];
|
||||
// 获取banner数据
|
||||
$banners = SysBannerModel::with(['items' => function($query) {
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at']);
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at'])->enabled(true);
|
||||
}])
|
||||
->atPlatform(request()->from)
|
||||
->uniqueLabel([
|
||||
'BANNER_68103aaebe4c4',
|
||||
'BANNER_68103acd1a8b9',
|
||||
@@ -148,8 +150,9 @@ class TopicNas extends Common
|
||||
$cooperation_cotacts = [];
|
||||
// 获取banner数据
|
||||
$banners = SysBannerModel::with(['items' => function($query) {
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at']);
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at'])->enabled(true);
|
||||
}])
|
||||
->atPlatform(request()->from)
|
||||
->uniqueLabel([
|
||||
'BANNER_6810670b8ef17',
|
||||
'BANNER_681067451b78f',
|
||||
@@ -202,8 +205,9 @@ class TopicNas extends Common
|
||||
$contacts = [];
|
||||
// 获取banner数据
|
||||
$banners = SysBannerModel::with(['items' => function ($query) {
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at']);
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at'])->enabled(true);
|
||||
}])
|
||||
->atPlatform(request()->from)
|
||||
->uniqueLabel(['BANNER_6819754be2dc6'])
|
||||
->language($this->lang_id)
|
||||
->enabled(true)
|
||||
@@ -278,8 +282,9 @@ class TopicNas extends Common
|
||||
$data = [];
|
||||
// 获取banner数据
|
||||
$banners = SysBannerModel::with(['items' => function($query) {
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at']);
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at'])->enabled(true);
|
||||
}])
|
||||
->atPlatform(request()->from)
|
||||
->uniqueLabel([
|
||||
'BANNER_6810798e6e828',
|
||||
'BANNER_68107a0a63910',
|
||||
|
||||
@@ -178,4 +178,25 @@ return [
|
||||
'网络存储解决方案' => 'Network Storage Solutions',
|
||||
'配套软件' => 'Software',
|
||||
],
|
||||
|
||||
// nas主题 - 帮助页
|
||||
'topicnas/help' => [
|
||||
'帮助中心' => 'Quick Start Guide',
|
||||
'请输入搜索关键字,如安装赛博云空间,影视库' => 'What are you looking for?',
|
||||
'取消' => 'Cancel',
|
||||
'使用教程' => 'User\' s Guide',
|
||||
'查看更多' => 'Click to view more',
|
||||
'联系我们' => 'Contact US',
|
||||
'目录' => 'Content'
|
||||
],
|
||||
|
||||
// nas主题 - 帮助详情页
|
||||
'topicnas/helpdetail' => [
|
||||
'帮助中心' => 'Quick Start Guide',
|
||||
'请输入搜索关键字,如安装赛博云空间,影视库' => 'What are you looking for?',
|
||||
'取消' => 'Cancel',
|
||||
'使用教程' => 'User\' s Guide',
|
||||
'联系我们' => 'Contact US',
|
||||
'目录' => 'Content'
|
||||
],
|
||||
];
|
||||
132
app/index/view/mobile/topic_nas/help.html
Normal file
132
app/index/view/mobile/topic_nas/help.html
Normal file
@@ -0,0 +1,132 @@
|
||||
{extend name="public/base" /}
|
||||
{block name="style"}
|
||||
<link rel="stylesheet" href="__CSS__/topic_nas_help.css" />
|
||||
{/block}
|
||||
{block name="header"}
|
||||
<!-- 重置header头为空 -->
|
||||
{/block}
|
||||
{block name="main"}
|
||||
<div class="oricoEGapp">
|
||||
<div class="narshelpCenterPc-app">
|
||||
<div class="headtop">
|
||||
<a href="{:url('/index/topic/nas/index')}">
|
||||
<img src="__IMAGES__/logo.png" class="logoicoimg">
|
||||
</a>
|
||||
<img src="__IMAGES__/ssapp.png" class="ssicoimg">
|
||||
</div>
|
||||
<!-- banner -->
|
||||
<img src="__IMAGES__/nhlpapp-banner.webp" class="nhlpbner">
|
||||
<!-- 使用教程 -->
|
||||
{notempty name="article_categorys"}
|
||||
<h1 class="nhlpapp-title">{:lang_i18n('使用教程')}</h1>
|
||||
{volist name="article_categorys" id="vo" key="idx"}
|
||||
<div class="nhlpappit">
|
||||
<div class="nhlptl">
|
||||
<img src="{$vo.icon}" class="bhlpicoimg">{$vo.name}
|
||||
</div>
|
||||
<div class="nhlp-tx-list">
|
||||
{volist name="vo.article" id="va"}
|
||||
<a class="txrow" href="{:url('/index/topic/nas/help_detail', ['cid' => $vo.id,'id' => $va.id])}">
|
||||
<div class="nhlp-point"></div>
|
||||
<span class="nhlpsp">{$va.title}</span>
|
||||
<span class="narhelpgoimg"><img src="__IMAGES__/nars-jt.png"></span>
|
||||
</a>
|
||||
{/volist}
|
||||
{if condition="count($vo.article) >= 3"}
|
||||
<a href="{:url('/index/topic/nas/help_detail', ['cid' => $vo.id, 'id' => isset($vo.article[0])?$vo.article[0]['id']:0])}">
|
||||
<div class="ckgdbt">{:lang_i18n('查看更多')} <img src="__IMAGES__/nars-jt.png"></div>
|
||||
</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/volist}
|
||||
{/notempty}
|
||||
<!-- 联系我们 -->
|
||||
{notempty name="contacts"}
|
||||
<h1 class="nhlpapp-title">{:lang_i18n('联系我们')}</h1>
|
||||
<div class="nhlpapp-row">
|
||||
<div class="sec-1">
|
||||
{volist name="contacts" id="co" key="idx" offset="0" length="4"}
|
||||
<a class="nhlplxwmit" {notempty name="co.link"}href="{$co.link}"{/notempty}>
|
||||
<img src="{$co.image}" class="lximg">
|
||||
<span class="t1" {:style(['color'=>$co.title_txt_color])}>{$co.title}</span>
|
||||
{notempty name="co.desc"}
|
||||
<span class="t2" {:style(['color'=>$co.desc_txt_color])}>{$co.desc|raw}</span>
|
||||
{/notempty}
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
<div class="sec-2">
|
||||
{volist name="contacts" id="co" key="idx" offset="4"}
|
||||
<a class="nhlplxwmit nhlplxwmit-w1" {notempty name="co.link"}href="{$co.link}"{/notempty}>
|
||||
<img src="{$co.image}" class="lximg">
|
||||
<span class="t1" {:style(['color'=>$co.title_txt_color])}>{$co.title}<br></span>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
</div>
|
||||
{/notempty}
|
||||
<!-- 搜索 -->
|
||||
<div class="nhlpapp-search">
|
||||
<div class="nhlpappshtop">
|
||||
<div class="nhlpapp-shdiv">
|
||||
<input class="nhlp-ipt" id="search-input" placeholder="{:lang_i18n('请输入搜索关键字,如安装赛博云空间,影视库')}" autocomplete="off">
|
||||
<img src="__IMAGES__/ssapp.png" class="searchimg">
|
||||
</div>
|
||||
<span class="closetx">{:lang_i18n('取消')}</span>
|
||||
</div>
|
||||
<div class="nhlpappline"></div>
|
||||
<!-- 下拉搜索框 -->
|
||||
<div class="dropdown" id="dropdown"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
{block name="script"}
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$('.closetx').click(function () {
|
||||
$('.nhlpapp-search').hide();
|
||||
});
|
||||
$('.ssicoimg').click(function () {
|
||||
$('.nhlpapp-search').show();
|
||||
});
|
||||
|
||||
// 搜索
|
||||
var timeout = null;
|
||||
$('#search-input').on('focus input', function () {
|
||||
clearTimeout(timeout);
|
||||
var _this = this;
|
||||
timeout = setTimeout(function () {
|
||||
var keywords = $(_this).val();
|
||||
if (keywords == '') {
|
||||
$('#dropdown').hide().html('');
|
||||
return;
|
||||
}
|
||||
$.ajax({
|
||||
url: "{:url('/index/topic/nas/help_search')}",
|
||||
type: 'POST',
|
||||
data: { keywords: keywords },
|
||||
dataType: 'JSON',
|
||||
success: function (r) {
|
||||
var html = '';
|
||||
if (r.code == 0) {
|
||||
html = '<ul>'
|
||||
$.each(r.data, function (k, v) {
|
||||
html += '<li><a class="search-item" href="{:url(\'/index/topic/nas/help_detail\')}?id=' + v.id + '">' + v.title + '</a></li>'
|
||||
})
|
||||
html += '</ul>'
|
||||
}
|
||||
$('#dropdown').show().html(html);
|
||||
}
|
||||
})
|
||||
}, 300);
|
||||
});
|
||||
$('.nhlplxwmit:not(:first)').hover(function () {
|
||||
$(this).find('.lximg').show();
|
||||
}, function () {
|
||||
$(this).find('.lximg').show();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
||||
143
app/index/view/mobile/topic_nas/help_detail.html
Normal file
143
app/index/view/mobile/topic_nas/help_detail.html
Normal file
@@ -0,0 +1,143 @@
|
||||
{extend name="public/base" /}
|
||||
{block name="title"}
|
||||
{notempty name="article.seo_title"}<title>{$article.seo_title}</title>{else /}{__BLOCK__}{/notempty}
|
||||
{/block}
|
||||
{block name="seo"}
|
||||
{notempty name="article.seo_keywords"}
|
||||
<meta name="keywords" content="{$article.seo_keywords}" />
|
||||
<meta name="description" content="{$article.seo_desc}" />
|
||||
{else /}
|
||||
{__BLOCK__}
|
||||
{/notempty}
|
||||
{/block}
|
||||
{block name="style"}
|
||||
<link rel="stylesheet" href="__CSS__/topic_nas_help-detail.css" />
|
||||
{/block}
|
||||
{block name="header"}
|
||||
<!-- 重置header头为空 -->
|
||||
{/block}
|
||||
{block name="main"}
|
||||
<div class="oricoEGapp">
|
||||
<div class="narshelpCenterdetail-app">
|
||||
<div class="headtop">
|
||||
<a href="{:url('/index/topic/nas/index')}">
|
||||
<img src="__IMAGES__/logo.png" class="logoicoimg">
|
||||
</a>
|
||||
<div style="display: flex;">
|
||||
<img src="__IMAGES__/fenlei.png" class="ssicoimg" id="flico">
|
||||
<img src="__IMAGES__/sousuo.png" class="ssicoimg" id="ssico" style="margin-right:32px">
|
||||
</div>
|
||||
</div>
|
||||
<!-- 文章内容 -->
|
||||
<div id="rendered-content" class="nhlp-app-content">
|
||||
{$article.content|raw|default=''}
|
||||
</div>
|
||||
<!-- 搜索 -->
|
||||
<div class="nhlpapp-search">
|
||||
<div class="nhlpappshtop">
|
||||
<div class="nhlpapp-shdiv">
|
||||
<input class="nhlp-ipt" id="search-input" placeholder="{:lang_i18n('请输入搜索关键字,如安装赛博云空间,影视库')}" autocomplete="off">
|
||||
<img src="__IMAGES__/ssapp.png" class="searchimg">
|
||||
</div>
|
||||
<span class="closetx">{:lang_i18n('取消')}</span>
|
||||
</div>
|
||||
<div class="nhlpappline"></div>
|
||||
<!-- 下拉搜索框 -->
|
||||
<div class="dropdown" id="dropdown"></div>
|
||||
</div>
|
||||
<!-- 分类文章目录 -->
|
||||
<div class="nhlpapp-pagescate" style="display: none;">
|
||||
<div class="nars-hlpdt-ml">
|
||||
{notempty name="article_categorys"}
|
||||
<div class="nav-tree">
|
||||
{volist name="article_categorys" id="ac" key="idx"}
|
||||
<div class="categoryhelp">
|
||||
<div class="categoryhelp-title">
|
||||
<div>
|
||||
<img src="__IMAGES__/nars-jt.png" class="arrow {if condition='$ac.id == $Request.get.cid'}rotate{/if}">
|
||||
</div>
|
||||
<span>{$ac.name}</span>
|
||||
</div>
|
||||
<ul class="sub-list" {if condition='$ac.id == $Request.get.cid'}style="display: block;"{/if}>
|
||||
{volist name="ac.article" id="ar"}
|
||||
<li>
|
||||
<a href="{:url('/index/topic/nas/help_detail', ['id' => $ar.id])}" style="padding-top: 6px;">
|
||||
{$ar.title}
|
||||
</a>
|
||||
</li>
|
||||
{/volist}
|
||||
</ul>
|
||||
</div>
|
||||
{/volist}
|
||||
</div>
|
||||
{/notempty}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
{block name="script"}
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
// 点击顶部分类图标
|
||||
$('#flico').click(function () {
|
||||
$('.nhlpapp-pagescate').toggle();
|
||||
// 检查分类菜单是否显示
|
||||
if ($('.nhlpapp-pagescate').is(':visible')) {
|
||||
// 如果分类菜单显示,则隐藏文章内容
|
||||
$('#rendered-content').hide();
|
||||
$('.footer').hide()
|
||||
} else {
|
||||
// 如果分类菜单隐藏,则显示文章内容
|
||||
$('#rendered-content').show();
|
||||
$('.footer').show()
|
||||
}
|
||||
});
|
||||
// 点击分类的交互
|
||||
$('.categoryhelp-title').click(function () {
|
||||
$(this).next('.sub-list').slideToggle();
|
||||
$(this).find('.arrow').toggleClass('rotate');
|
||||
});
|
||||
// 点击顶部搜索图标-点击取消关闭
|
||||
$('#ssico').click(function () {
|
||||
$('.nhlpapp-pagescate').hide();
|
||||
$('.nhlpapp-search').show();
|
||||
});
|
||||
$('.closetx').click(function () {
|
||||
$('.nhlpapp-search').hide();
|
||||
});
|
||||
// 搜索
|
||||
var timeout = null;
|
||||
$('#search-input').on('focus input', function () {
|
||||
clearTimeout(timeout);
|
||||
var _this = this;
|
||||
timeout = setTimeout(function () {
|
||||
var keywords = $(_this).val();
|
||||
if (keywords == '') {
|
||||
$('#dropdown').hide().html('');
|
||||
return;
|
||||
}
|
||||
$.ajax({
|
||||
url: "{:url('/index/topic/nas/help_search')}",
|
||||
type: 'POST',
|
||||
data: {
|
||||
keywords: keywords
|
||||
},
|
||||
dataType: 'JSON',
|
||||
success: function (r) {
|
||||
var html = '';
|
||||
if (r.code == 0) {
|
||||
html = '<ul>'
|
||||
$.each(r.data, function (k, v) {
|
||||
html += '<li><a class="search-item" href="{:url(\'/index/topic/nas/help_detail\')}?id=' + v.id + '">' + v.title + '</a></li>'
|
||||
})
|
||||
html += '</ul>'
|
||||
}
|
||||
$('#dropdown').show().html(html);
|
||||
}
|
||||
})
|
||||
}, 300);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
||||
216
public/static/index/mobile/css/topic_nas_help-detail.css
Normal file
216
public/static/index/mobile/css/topic_nas_help-detail.css
Normal file
@@ -0,0 +1,216 @@
|
||||
.icon-menu-svg,
|
||||
.icon-search-svg,
|
||||
.icon-lag-svg {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .headtop {
|
||||
width: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
display: flex;
|
||||
padding: 1.25rem 0;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .headtop .logoicoimg {
|
||||
width: auto;
|
||||
margin-left: 1.875rem;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .headtop .ssicoimg {
|
||||
width: 1.875rem;
|
||||
height: 1.875rem;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlp-app-content {
|
||||
margin: 1.25rem;
|
||||
height: 100%;
|
||||
margin-top: 9.2vh;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app #rendered-content img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search {
|
||||
position: fixed;
|
||||
z-index: 2;
|
||||
top: 0;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
flex-direction: column;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .nhlpappshtop {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .nhlpappshtop .closetx {
|
||||
font-size: 16px;
|
||||
margin-right: 8%;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .nhlpapp-shdiv {
|
||||
margin: 1rem 20px;
|
||||
height: 2.5rem;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
border: 1px solid #cdcedb;
|
||||
border-radius: 1.5625rem;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .nhlpapp-shdiv input {
|
||||
font-size: 16px;
|
||||
padding: 0 20px;
|
||||
flex: 1;
|
||||
border: none;
|
||||
margin-left: 2px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .nhlpapp-shdiv input::placeholder {
|
||||
color: #8f9099;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .nhlpapp-shdiv .searchimg {
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
margin-left: 1%;
|
||||
margin-right: 5%;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .dropdown {
|
||||
height: 90vh;
|
||||
overflow-y: auto;
|
||||
margin: 1.25rem;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .dropdown li {
|
||||
margin-bottom: 0.75rem;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 400;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
/* 禁止文本换行 */
|
||||
overflow: hidden;
|
||||
/* 隐藏超出容器的内容 */
|
||||
text-overflow: ellipsis;
|
||||
/* 超出部分用省略号表示 */
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .dropdown .search-item {
|
||||
color: #202734;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-search .nhlpappline {
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: #cdcedb;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate {
|
||||
position: absolute;
|
||||
margin-top: 8.7vh;
|
||||
height: 92.3vh;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
display: none;
|
||||
background: #fff;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml {
|
||||
overflow-y: auto;
|
||||
margin: 0 0.625rem;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .nav-tree {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .categoryhelp {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .categoryhelp-title {
|
||||
display: block;
|
||||
padding: 10px;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
margin-left: 10px;
|
||||
color: #1f2635;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .arrow {
|
||||
margin-right: 0.125rem;
|
||||
transform: rotate(0deg);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .arrow .nars-jt {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .rotate {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .sub-list {
|
||||
display: none;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .sub-list li a {
|
||||
width: fit-content;
|
||||
display: block;
|
||||
margin: 0 10px;
|
||||
padding-top: 22px;
|
||||
text-decoration: none;
|
||||
color: #333;
|
||||
margin-left: 41px;
|
||||
font-size: 0.875rem;
|
||||
color: #8f9099;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .sub-list li:first a {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.narshelpCenterdetail-app .nhlpapp-pagescate .nars-hlpdt-ml .sub-list li a:hover {
|
||||
color: #1f2635;
|
||||
border-bottom: 1px solid #1f2635;
|
||||
}
|
||||
265
public/static/index/mobile/css/topic_nas_help.css
Normal file
265
public/static/index/mobile/css/topic_nas_help.css
Normal file
@@ -0,0 +1,265 @@
|
||||
.icon-menu-svg,
|
||||
.icon-search-svg,
|
||||
.icon-lag-svg {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search {
|
||||
position: fixed;
|
||||
z-index: 2;
|
||||
top: 0;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
flex-direction: column;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .nhlpappshtop {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .nhlpappshtop .closetx {
|
||||
font-size: 14px;
|
||||
margin-right: 8%;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .nhlpapp-shdiv {
|
||||
margin: 1rem 20px;
|
||||
height: 2.5rem;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
border: 1px solid #cdcedb;
|
||||
border-radius: 1.5625rem;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .nhlpapp-shdiv input {
|
||||
font-size: 0.8125rem;
|
||||
padding: 0 20px;
|
||||
flex: 1;
|
||||
border: none;
|
||||
margin-left: 2px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .nhlpapp-shdiv input::placeholder {
|
||||
color: #8f9099;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .nhlpapp-shdiv .searchimg {
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
margin-left: 1%;
|
||||
margin-right: 5%;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .dropdown {
|
||||
height: 90vh;
|
||||
overflow-y: auto;
|
||||
margin: 1.25rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .dropdown li {
|
||||
margin-bottom: 0.75rem;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 400;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
/* 禁止文本换行 */
|
||||
overflow: hidden;
|
||||
/* 隐藏超出容器的内容 */
|
||||
text-overflow: ellipsis;
|
||||
/* 超出部分用省略号表示 */
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .dropdown .search-item {
|
||||
color: #202734;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-search .nhlpappline {
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: #cdcedb;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .headtop {
|
||||
width: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
display: flex;
|
||||
padding: 1.25rem 0;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .headtop .logoicoimg {
|
||||
width: auto;
|
||||
margin-left: 1.875rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .headtop .ssicoimg {
|
||||
width: 1.875rem;
|
||||
height: 1.875rem;
|
||||
margin-right: 1.875rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpbner {
|
||||
width: 100%;
|
||||
margin-top: 4.75rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-title {
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
font-size: 1.5rem;
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpappit {
|
||||
margin: 0 auto;
|
||||
padding: 1.875rem;
|
||||
background: #fafafa;
|
||||
border-radius: 1rem;
|
||||
color: #202734;
|
||||
font-size: 1rem;
|
||||
margin-bottom: 1.25rem;
|
||||
width: 74%;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpappit .nhlptl {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
padding-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpappit .nhlptl .bhlpicoimg {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpappit .nhlp-tx-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpappit .nhlp-tx-list .txrow {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpappit .nhlp-tx-list .txrow .nhlp-point {
|
||||
width: 0.3125rem;
|
||||
height: 0.3125rem;
|
||||
background: #202734;
|
||||
border-radius: 0.1875rem;
|
||||
margin: 0 0.625rem;
|
||||
margin-left: 0.25rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpappit .nhlp-tx-list .txrow .nhlpsp {
|
||||
flex: 1;
|
||||
color: #1f2635;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpappit .nhlp-tx-list .ckgdbt {
|
||||
background: #fff;
|
||||
width: fit-content;
|
||||
color: #bfbfc4;
|
||||
font-size: 0.9375rem;
|
||||
border: 0.0625rem solid #bfbfc4;
|
||||
padding: 0.4375rem 1.125rem;
|
||||
margin-top: 1rem;
|
||||
cursor: pointer;
|
||||
border-radius: 1.5rem;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row {
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row > div {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row .nhlplxwmit {
|
||||
width: 48.3%;
|
||||
padding: 1.5rem 0;
|
||||
background: #f9f9f9;
|
||||
margin-bottom: 0.75rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 1rem;
|
||||
cursor: pointer;
|
||||
margin-right: 0.75rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row .sec-1 .nhlplxwmit:nth-child(even),
|
||||
.narshelpCenterPc-app .nhlpapp-row .sec-2 .nhlplxwmit:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row .nhlplxwmit .lximg {
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row .nhlplxwmit .lxewmimg {
|
||||
width: 4rem;
|
||||
width: 4rem;
|
||||
margin-bottom: 1.25rem;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row .nhlplxwmit .t1 {
|
||||
text-align: center;
|
||||
font-size: 0.875rem;
|
||||
padding-bottom: 0.375rem;
|
||||
color: #1f2635;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row .nhlplxwmit .t2 {
|
||||
font-size: 0.75rem;
|
||||
color: #1f2635;
|
||||
}
|
||||
|
||||
.narshelpCenterPc-app .nhlpapp-row .nhlplxwmit-w1 {
|
||||
width: 31%;
|
||||
}
|
||||
BIN
public/static/index/mobile/images/fenlei.png
Executable file
BIN
public/static/index/mobile/images/fenlei.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 260 B |
BIN
public/static/index/mobile/images/nars-jt.png
Normal file
BIN
public/static/index/mobile/images/nars-jt.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 244 B |
BIN
public/static/index/mobile/images/nhlpapp-banner.webp
Normal file
BIN
public/static/index/mobile/images/nhlpapp-banner.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
BIN
public/static/index/mobile/images/sousuo.png
Executable file
BIN
public/static/index/mobile/images/sousuo.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 987 B |
Reference in New Issue
Block a user