Merge branch 'dev'
This commit is contained in:
@@ -139,6 +139,7 @@ function getstr_random($length = 4) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getImage($filename, $width = -1, $height = -1, $type = 1, $savedir = 'allimg', $baseurl = '') {
|
function getImage($filename, $width = -1, $height = -1, $type = 1, $savedir = 'allimg', $baseurl = '') {
|
||||||
|
// ini_set('memory_limit',-1);
|
||||||
$docDir = request()->server('DOCUMENT_ROOT');
|
$docDir = request()->server('DOCUMENT_ROOT');
|
||||||
$rootDir = request()->root();
|
$rootDir = request()->root();
|
||||||
if ($width < 0 && $height < 0) {
|
if ($width < 0 && $height < 0) {
|
||||||
|
|||||||
@@ -194,6 +194,7 @@ class TopsNas extends BaseController
|
|||||||
'id',
|
'id',
|
||||||
'pid',
|
'pid',
|
||||||
'name',
|
'name',
|
||||||
|
'picture'
|
||||||
])
|
])
|
||||||
->where('isshow', '=', 1)
|
->where('isshow', '=', 1)
|
||||||
->where('country_code', '=', $this->country_code)
|
->where('country_code', '=', $this->country_code)
|
||||||
@@ -310,4 +311,167 @@ class TopsNas extends BaseController
|
|||||||
|
|
||||||
return $this->fetch();
|
return $this->fetch();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 根据分类获取文章
|
||||||
|
private function getArticleByCategory($categorys, $limit = null)
|
||||||
|
{
|
||||||
|
if (!is_array($categorys)) {
|
||||||
|
throw new \Exception('请确认分类正确');
|
||||||
|
}
|
||||||
|
if (empty($categorys)) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
$sub_query = Loader::model('Article')
|
||||||
|
->field([
|
||||||
|
'id',
|
||||||
|
'cid',
|
||||||
|
'name',
|
||||||
|
'sort'
|
||||||
|
])
|
||||||
|
->where('stat', '=', 0)
|
||||||
|
->where('cid', '=', $categorys[0]['id'])
|
||||||
|
->where('country_code', '=', $this->country_code)
|
||||||
|
->order(['sort' => 'asc', 'id' => 'desc']);
|
||||||
|
if (!empty($limit)) {
|
||||||
|
$sub_query = $sub_query->limit($limit);
|
||||||
|
}
|
||||||
|
$sub_query = $sub_query->buildSql();
|
||||||
|
|
||||||
|
$model = \think\Db::table($sub_query . ' a');
|
||||||
|
foreach ($categorys as $key => $val) {
|
||||||
|
if ($key == 0) continue;
|
||||||
|
$model->union(function($query) use($val, $limit) {
|
||||||
|
$query->name('article')->field([
|
||||||
|
'id',
|
||||||
|
'cid',
|
||||||
|
'name',
|
||||||
|
'sort'
|
||||||
|
])
|
||||||
|
->where('stat', '=', 0)
|
||||||
|
->where('cid', '=', $val['id'])
|
||||||
|
->where('country_code', '=', $this->country_code)
|
||||||
|
->order(['sort' => 'asc', 'id' => 'desc']);
|
||||||
|
if (!empty($limit)) {
|
||||||
|
$query->limit($limit);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$map = [];
|
||||||
|
$data = $data = $model->select();
|
||||||
|
foreach ($data as $key => $val) {
|
||||||
|
$map['cid_' . $val['cid']][] = $val;
|
||||||
|
}
|
||||||
|
return $map;
|
||||||
|
}
|
||||||
|
// 帮忙中心
|
||||||
|
public function helper()
|
||||||
|
{
|
||||||
|
// 获取分类
|
||||||
|
$categorys = $this->getCategoryTree(76);
|
||||||
|
// 获取文章
|
||||||
|
$articles = $this->getArticleByCategory($categorys, 3);
|
||||||
|
// 组装数据
|
||||||
|
foreach ($categorys as $key => &$val) {
|
||||||
|
if (!isset($val['articles'])) {
|
||||||
|
$val['articles'] = [];
|
||||||
|
}
|
||||||
|
if (isset($articles['cid_' . $val['id']])) {
|
||||||
|
$items = $articles['cid_' . $val['id']];
|
||||||
|
foreach ($items as $k => $v) {
|
||||||
|
$val['articles'][] = [
|
||||||
|
'id' => $v['id'],
|
||||||
|
'name' => $v['name']
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unset($val);
|
||||||
|
$this->assign('categorys', $categorys);
|
||||||
|
|
||||||
|
$banners = $this->getBanners(126);
|
||||||
|
if (!empty($banners)) {
|
||||||
|
$banners = $banners['typeid_126']['banners'];
|
||||||
|
}
|
||||||
|
$this->assign('banners', $banners);
|
||||||
|
$this->assign('banners_size', count($banners));
|
||||||
|
|
||||||
|
return $this->fetch();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 搜索帮助文章
|
||||||
|
public function helper_search()
|
||||||
|
{
|
||||||
|
$base_category = 76;
|
||||||
|
$keywords = request()->param('keywords');
|
||||||
|
$articles = Loader::model('Article')
|
||||||
|
->field([
|
||||||
|
'id',
|
||||||
|
'name',
|
||||||
|
'sort',
|
||||||
|
])
|
||||||
|
->where('stat', '=', 0)
|
||||||
|
->where('country_code', '=', $this->country_code)
|
||||||
|
->where('cid', 'in', function($query) use($base_category) {
|
||||||
|
$query->name('article_category')
|
||||||
|
->field(['id'])
|
||||||
|
->where('id', '=', $base_category)
|
||||||
|
->whereOr('pid', '=', $base_category);
|
||||||
|
})
|
||||||
|
->where(function($query) use($keywords) {
|
||||||
|
if (!empty($keywords)) {
|
||||||
|
$query->where('name', 'like', '%' . $keywords . '%');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||||
|
->select();
|
||||||
|
|
||||||
|
return json([
|
||||||
|
'code' => 0,
|
||||||
|
'message' => '获取成功',
|
||||||
|
'data' => $articles
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 帮助中心文章详细
|
||||||
|
public function helper_detail()
|
||||||
|
{
|
||||||
|
$id = request()->param('id');
|
||||||
|
$article = Loader::model('Article')->where('id', '=', $id)->find();
|
||||||
|
|
||||||
|
if (request()->isAjax()) {
|
||||||
|
return json([
|
||||||
|
'code' => 0,
|
||||||
|
'message' => '获取成功',
|
||||||
|
'data' => $article
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
// 获取分类
|
||||||
|
$categorys = $this->getCategoryTree(76);
|
||||||
|
// 获取文章
|
||||||
|
$articles = $this->getArticleByCategory($categorys, );
|
||||||
|
// 组装数据
|
||||||
|
foreach ($categorys as $key => &$val) {
|
||||||
|
if (!isset($val['articles'])) {
|
||||||
|
$val['articles'] = [];
|
||||||
|
}
|
||||||
|
if (isset($articles['cid_' . $val['id']])) {
|
||||||
|
$items = $articles['cid_' . $val['id']];
|
||||||
|
foreach ($items as $k => $v) {
|
||||||
|
$val['articles'][] = [
|
||||||
|
'id' => $v['id'],
|
||||||
|
'name' => $v['name']
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unset($val);
|
||||||
|
$this->assign('categorys', $categorys);
|
||||||
|
$this->assign('article', $article);
|
||||||
|
$this->assign('cid', request()->param('cid', $article->cid));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->fetch();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,9 +21,7 @@
|
|||||||
{include file="include/top-head2023" /}
|
{include file="include/top-head2023" /}
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!--top End-->
|
<!--top End-->
|
||||||
|
|
||||||
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
|
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
|
||||||
<div class="modal-dialog" role="document">
|
<div class="modal-dialog" role="document">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
|
|||||||
36
app/index/view/tops_nas/beta-副本.phtml
Executable file
36
app/index/view/tops_nas/beta-副本.phtml
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>元创官网</title>
|
||||||
|
<link rel="stylesheet" href="__PUBLIC__/web/css/swiper-3.4.2.min.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="__PUBLIC__/web/css/nas.css" />
|
||||||
|
{include file='include/head-nas'/}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="narsPage">
|
||||||
|
<!--顶部导航-->
|
||||||
|
{include file='include/top-header-nas'/}
|
||||||
|
<!--banner -->
|
||||||
|
<div class="narsIndex-banner">
|
||||||
|
<div class="swiper-container mySwiper">
|
||||||
|
<div class="swiper-wrapper">
|
||||||
|
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<!-- banner内容-->
|
||||||
|
<img src="/uploads/nas/pc-beta.png" alt="" class="narsbanner-img" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Add Pagination -->
|
||||||
|
<div class="swiper-pagination"></div>
|
||||||
|
<!-- Add Arrows -->
|
||||||
|
<!-- <div class="swiper-button-next swiper-button-white"></div>
|
||||||
|
<div class="swiper-button-prev swiper-button-white"></div>-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{include file='include/bottom2023'/}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
36
app/index/view/tops_nas/download-副本.phtml
Executable file
36
app/index/view/tops_nas/download-副本.phtml
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>元创官网</title>
|
||||||
|
<link rel="stylesheet" href="__PUBLIC__/web/css/swiper-3.4.2.min.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="__PUBLIC__/web/css/nas.css" />
|
||||||
|
{include file='include/head-nas'/}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="narsPage">
|
||||||
|
<!--顶部导航-->
|
||||||
|
{include file='include/top-header-nas'/}
|
||||||
|
<!--banner -->
|
||||||
|
<div class="narsIndex-banner">
|
||||||
|
<div class="swiper-container mySwiper">
|
||||||
|
<div class="swiper-wrapper">
|
||||||
|
|
||||||
|
<div class="swiper-slide">
|
||||||
|
<!-- banner内容-->
|
||||||
|
<img src="/uploads/nas/pc-beta.png" alt="" class="narsbanner-img" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Add Pagination -->
|
||||||
|
<div class="swiper-pagination"></div>
|
||||||
|
<!-- Add Arrows -->
|
||||||
|
<!-- <div class="swiper-button-next swiper-button-white"></div>
|
||||||
|
<div class="swiper-button-prev swiper-button-white"></div>-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{include file='include/bottom2023'/}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -8,29 +8,160 @@
|
|||||||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/web/css/nas.css" />
|
<link rel="stylesheet" type="text/css" href="__PUBLIC__/web/css/nas.css" />
|
||||||
{include file='include/head-nas'/}
|
{include file='include/head-nas'/}
|
||||||
</head>
|
</head>
|
||||||
|
<style type="text/css">
|
||||||
|
.narsDowloadPc {
|
||||||
|
height: 100vh;
|
||||||
|
background: #F5F5F5;
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs {
|
||||||
|
margin: 0 1.25rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
margin-top: 2.5rem;
|
||||||
|
margin-bottom: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs .narsDtabIt {
|
||||||
|
color: #001717;
|
||||||
|
font-size: 1rem;
|
||||||
|
height: 2.625rem;
|
||||||
|
line-height: 2.625rem;
|
||||||
|
width: 25rem;
|
||||||
|
background: #fff;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 28px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs .narsDtabIt:first-child {
|
||||||
|
margin-right: 0.9375rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs .narsDtabIt_active {
|
||||||
|
color: #fff;
|
||||||
|
background: #004CFA;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDmainConten {
|
||||||
|
margin: 0 1.25rem;
|
||||||
|
background: #fff;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian {
|
||||||
|
margin: 0 1.25rem;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt {
|
||||||
|
width: 100%;
|
||||||
|
background: #fff;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt .tpimg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt .tpimg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 .nDitImg {
|
||||||
|
width: 48.5%;
|
||||||
|
background: #fff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
margin-bottom: 0.625rem;
|
||||||
|
}
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 .nDitImg img{
|
||||||
|
width: 6.25rem;
|
||||||
|
height: 6.25rem;
|
||||||
|
padding: 1.25rem;
|
||||||
|
}
|
||||||
|
.narswljshow{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.narswljshow .nDtopIt2 .nDitImg{
|
||||||
|
/* width: 291px !important; */
|
||||||
|
}
|
||||||
|
.narssbshow .nrowimg {
|
||||||
|
width: 100%;
|
||||||
|
background: #fff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
.narssbshow .nrowimg img{
|
||||||
|
width: 62%;
|
||||||
|
padding: 1.25rem 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<body>
|
<body>
|
||||||
<div class="narsPage">
|
|
||||||
<!--顶部导航-->
|
<!--顶部导航-->
|
||||||
{include file='include/top-header-nas'/}
|
{include file='include/top-header-nas'/}
|
||||||
<!--banner -->
|
<div class="narsDowloadPc">
|
||||||
<div class="narsIndex-banner">
|
<div class="narsDtabs">
|
||||||
<div class="swiper-container mySwiper">
|
<div class="narsDtabIt narsDtabIt_active">CyberData赛博云空间</div>
|
||||||
<div class="swiper-wrapper">
|
<div class="narsDtabIt">Weline微链接</div>
|
||||||
|
|
||||||
<div class="swiper-slide">
|
|
||||||
<!-- banner内容-->
|
|
||||||
<img src="/uploads/nas/pc-beta.png" alt="" class="narsbanner-img" />
|
|
||||||
</div>
|
</div>
|
||||||
|
<!-- 赛博云-->
|
||||||
<!-- Add Pagination -->
|
<div class="nDtopCtMian narssbshow">
|
||||||
<div class="swiper-pagination"></div>
|
<div class="nDtopIt">
|
||||||
<!-- Add Arrows -->
|
<img src="nardownlaod-app/narsdlapp-sbimg.jpg" class="tpimg" />
|
||||||
<!-- <div class="swiper-button-next swiper-button-white"></div>
|
</div>
|
||||||
<div class="swiper-button-prev swiper-button-white"></div>-->
|
<div class="nDtopIt2">
|
||||||
|
<div class="nDitImg"><img src="nardownlaod-app/narsdlapp_d1.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="nardownlaod-app/narsdlapp-d2.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="nardownlaod-app/narsdlapp_d3.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="nardownlaod-app/narsdlapp_d4.png" /></div>
|
||||||
|
</div>
|
||||||
|
<div class="nDitImg nrowimg"><img src="nardownlaod-app/narsdlapp_d5.png" /></div>
|
||||||
|
</div>
|
||||||
|
<!-- 微链接-->
|
||||||
|
<div class="nDtopCtMian narswljshow">
|
||||||
|
<div class="nDtopIt">
|
||||||
|
<img src="nardownlaod-app/narsdlapp-wljimg.jpg" class="tpimg" />
|
||||||
|
</div>
|
||||||
|
<div class="nDtopIt2">
|
||||||
|
<div class="nDitImg"><img src="nardownlaod-app/narsdlapp_d1.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="nardownlaod-app/narsdlapp-d2.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="nardownlaod-app/narsdlapp_d3.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="nardownlaod-app/narsdlapp_d4.png" /></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{include file='include/bottom2023'/}
|
{include file='include/bottom2023'/}
|
||||||
</body>
|
</body>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
$('.narsDtabIt').click(function () {
|
||||||
|
$('.narsDtabIt').removeClass('narsDtabIt_active');
|
||||||
|
$(this).addClass('narsDtabIt_active');
|
||||||
|
if ($(this).index() === 0) {
|
||||||
|
$('.narssbshow').show();
|
||||||
|
$('.narswljshow').hide();
|
||||||
|
} else {
|
||||||
|
$('.narssbshow').hide();
|
||||||
|
$('.narswljshow').show();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
491
app/index/view/tops_nas/helper.phtml
Normal file
491
app/index/view/tops_nas/helper.phtml
Normal file
@@ -0,0 +1,491 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>帮助中心</title>
|
||||||
|
{include file='include/head-nas' /}
|
||||||
|
<style>
|
||||||
|
.narshelpCenterPc {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
/* 下拉搜索框样式 */
|
||||||
|
/* 下拉搜索框中的建议项样式 */
|
||||||
|
}
|
||||||
|
.narhelpgoimg{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narshelpCenterPc .narhelpgoimg img{
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .pagetopbg {
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .pagetopbg .hpbgimg {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .pagetopbg .nhlp-search {
|
||||||
|
width: 35%;
|
||||||
|
height: 48px;
|
||||||
|
border-radius: 24px;
|
||||||
|
background: #5299e1;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
position: absolute;
|
||||||
|
justify-content: space-between;
|
||||||
|
border: 0.0625rem solid #fff;
|
||||||
|
bottom: 15%;
|
||||||
|
cursor: pointer;
|
||||||
|
box-shadow: 2px 2px 100px #8d8d8d;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .pagetopbg .nhlp-search .nhlp-ipt {
|
||||||
|
border: none;
|
||||||
|
width: 86%;
|
||||||
|
height: 48px;
|
||||||
|
margin-left: 5%;
|
||||||
|
color: #fff;
|
||||||
|
background: transparent;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .pagetopbg .nhlp-search .searchimghelp {
|
||||||
|
width: 1.6rem;
|
||||||
|
height: 1.6rem;
|
||||||
|
margin-right: 3%;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .pagetopbg .nhlp-search input {
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .pagetopbg .nhlp-search input::placeholder {
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 {
|
||||||
|
width: 74.6%;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .helph1 {
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-top: 54px;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 32px;
|
||||||
|
margin-bottom: 38px;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin-bottom: 4.625rem;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit {
|
||||||
|
width: 32.7%;
|
||||||
|
padding: 2.25rem;
|
||||||
|
background: #fafafa;
|
||||||
|
border-radius: 8px;
|
||||||
|
color: #202734;
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-right: 12px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit .nhlptl {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
font-weight: bold;
|
||||||
|
padding-bottom: 1.25rem;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit .nhlptl .bhlpicoimg {
|
||||||
|
width: 36px;
|
||||||
|
height: 36px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit .nhlp-tx-list {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit .nhlp-tx-list .txrow {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit .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 .nhlppart1 .nhlp-row .nhlpit .nhlp-tx-list .txrow .nhlpsp {
|
||||||
|
flex: 1;
|
||||||
|
color: #1f2635;
|
||||||
|
font-size: 1rem;
|
||||||
|
white-space: nowrap; /* 不允许换行 */
|
||||||
|
overflow: hidden; /* 超出部分隐藏 */
|
||||||
|
text-overflow: ellipsis; /* 超出部分显示省略号 */
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit .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 .nhlppart1 .nhlp-row .nhlpit-w {
|
||||||
|
width: 49.4%;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit-w:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlppart1 .nhlp-row .nhlpit:nth-child(3n) {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .lxwmtitle {
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-bottom: 38px;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 32px;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm {
|
||||||
|
width: 74.6%;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm .nhlp-row {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin-bottom: 4.625rem;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm .nhlp-row .nhlplxwmit {
|
||||||
|
background: #f9f9f9;
|
||||||
|
width: 392px;
|
||||||
|
height: 291px;
|
||||||
|
margin-bottom: 0.75rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-right: 12px;
|
||||||
|
border-radius: 8px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm .nhlp-row .nhlplxwmit .lximg {
|
||||||
|
width: 4.375rem;
|
||||||
|
height: 4.375rem;
|
||||||
|
margin-bottom: 2.125rem;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm .nhlp-row .nhlplxwmit .lxewmimg {
|
||||||
|
width: 6.875rem;
|
||||||
|
width: 6.875rem;
|
||||||
|
margin-bottom: 1.25rem;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm .nhlp-row .nhlplxwmit .t1 {
|
||||||
|
font-size: 1rem;
|
||||||
|
padding-bottom: 0.375rem;
|
||||||
|
color: #1f2635;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm .nhlp-row .nhlplxwmit .t2 {
|
||||||
|
font-size: 0.75rem;
|
||||||
|
color: #1f2635;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm .nhlp-row .nhlplxwmit-w1 {
|
||||||
|
width: 32.7%;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .nhlp-lxwm .nhlp-row .nhlplxwmit-w2 {
|
||||||
|
width: 24.3%;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .dropdown {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
top: 355px;
|
||||||
|
left: 0;
|
||||||
|
width: 35%;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-top: none;
|
||||||
|
background-color: #fff;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
border-bottom-right-radius: 4px;
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
|
margin: 0 auto;
|
||||||
|
right: 0;
|
||||||
|
max-height: 18.75rem;
|
||||||
|
min-height: 3.125rem;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .dropdown ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .dropdown ul li {
|
||||||
|
padding: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.narshelpCenterPc .dropdown ul li:hover {
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
}
|
||||||
|
/* 修改垂直滚动条 */
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 6px; /* 修改宽度 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条轨道背景色 */
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条滑块颜色 */
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条滑块悬停时的颜色 */
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background-color: #D8DFE8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条滑块移动时的颜色 */
|
||||||
|
::-webkit-scrollbar-thumb:active {
|
||||||
|
background-color: #D8DFE8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条滑块的圆角 */
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
/* 整体滚动条 */
|
||||||
|
* {
|
||||||
|
scrollbar-width: thin; /* 滚动条宽度 */
|
||||||
|
scrollbar-color: #D8DBE6 transparent; /* 滚动条颜色(滑块颜色 轨道颜色) */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条轨道 */
|
||||||
|
*::-moz-scrollbar-track {
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条滑块 */
|
||||||
|
*::-moz-scrollbar-thumb {
|
||||||
|
background-color: #D8DBE6;
|
||||||
|
border-radius: 5px; /* 滑块的圆角 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条的上下箭头 */
|
||||||
|
*::-moz-scrollbar-button {
|
||||||
|
display: none; /* 隐藏上下箭头 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条的上下箭头:向上箭头 */
|
||||||
|
*::-moz-scrollbar-button:vertical:decrement {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条的上下箭头:向下箭头 */
|
||||||
|
*::-moz-scrollbar-button:vertical:increment {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 顶部导航 -->
|
||||||
|
{include file='include/top-header-nas'/}
|
||||||
|
<div class="narshelpCenterPc">
|
||||||
|
<!-- banner-搜索-->
|
||||||
|
<div class="pagetopbg">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/banner.jpg" class="hpbgimg" />
|
||||||
|
<div class='nhlp-search'>
|
||||||
|
<input class="nhlp-ipt" id="search-input" placeholder="请输入搜索关键字,如安装赛博云空间、影视库" />
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nars-help-search.png" class="searchimghelp" />
|
||||||
|
</div>
|
||||||
|
<!-- 下拉搜索框 -->
|
||||||
|
<div class="dropdown" id="dropdown"></div>
|
||||||
|
</div>
|
||||||
|
<!-- 使用教程-->
|
||||||
|
<div class="nhlppart1">
|
||||||
|
<h1 class="helph1">使用教程</h1>
|
||||||
|
<div class="nhlp-row">
|
||||||
|
{volist name="categorys" id="vo"}
|
||||||
|
<div class="nhlpit {if condition='$key==6 || $key==7'}nhlpit-w{/if}">
|
||||||
|
<div class="nhlptl">
|
||||||
|
<img src="{$vo.picture}" class="bhlpicoimg" />{$vo.name}
|
||||||
|
</div>
|
||||||
|
<div class="nhlp-tx-list">
|
||||||
|
{volist name="vo.articles" id="va"}
|
||||||
|
<a class="txrow" href="{:url('tops_nas/helper_detail', ['id'=>$va.id])}">
|
||||||
|
<div class="nhlp-point"></div>
|
||||||
|
<span class="nhlpsp">{$va.name}</span>
|
||||||
|
<span class="narhelpgoimg">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nars-jt.png"/>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
{/volist}
|
||||||
|
{if condition="count($vo.articles) >= 3"}
|
||||||
|
<a class="ckgdbt" href="{:url('tops_nas/helper_detail', ['cid'=>$vo.id, 'id'=>isset($vo.articles[0])?$vo.articles[0]['id']:0])}">查看更多
|
||||||
|
<span class="narhelpgoimg">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nars-jt.png"/>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 联系我们-->
|
||||||
|
<div class="nhlp-lxwm">
|
||||||
|
<h1 class=" helph1 lxwmtitle">联系我们</h1>
|
||||||
|
<div class="nhlp-row">
|
||||||
|
{if condition="$banners_size > 0"}
|
||||||
|
<a href="{$banners[0]['link']}" class="nhlplxwmit nhlplxwmit-w1">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-lx1.png" class="lximg" />
|
||||||
|
{if condition="!empty($banners[0]['picture']) && $banners[0]['picture'] != '/uploads/nopic.jpg'"}
|
||||||
|
<img src="{$banners[0]['picture']}" class="lxewmimg">
|
||||||
|
{/if}
|
||||||
|
<span class="t1">{$banners[0]['name']}</span>
|
||||||
|
<span class="t2">{$banners[0]['desc']}</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
{if condition="$banners_size > 1"}
|
||||||
|
<a href="{$banners[1]['link']}" class="nhlplxwmit nhlplxwmit-w1">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-lx2.png" class="lximg" />
|
||||||
|
{if condition="!empty($banners[1]['picture']) && $banners[1]['picture'] != '/uploads/nopic.jpg'"}
|
||||||
|
<img src="{$banners[1]['picture']}" class="lxewmimg">
|
||||||
|
{/if}
|
||||||
|
<span class="t1">{$banners[1]['name']}</span>
|
||||||
|
<span class="t2">{$banners[1]['desc']}</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
{if condition="$banners_size > 2"}
|
||||||
|
<a href="{$banners[2]['link']}" class="nhlplxwmit nhlplxwmit-w1" style="margin-right: 0;">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-lx3.png" class="lximg" />
|
||||||
|
{if condition="!empty($banners[2]['picture']) && $banners[2]['picture'] != '/uploads/nopic.jpg'"}
|
||||||
|
<img src="{$banners[2]['picture']}" class="lxewmimg">
|
||||||
|
{/if}
|
||||||
|
<span class="t1">{$banners[2]['name']}</span>
|
||||||
|
<span class="t2">{$banners[2]['desc']}</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
{if condition="$banners_size > 3"}
|
||||||
|
<a href="{$banners[3]['link']}" class="nhlplxwmit nhlplxwmit-w2">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-lx4.png" class="lximg" />
|
||||||
|
{if condition="!empty($banners[3]['picture']) && $banners[3]['picture'] != '/uploads/nopic.jpg'"}
|
||||||
|
<img src="{$banners[3]['picture']}" class="lxewmimg">
|
||||||
|
{/if}
|
||||||
|
<span class="t1">{$banners[3]['name']}</span>
|
||||||
|
<span class="t2">{$banners[3]['desc']}</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
{if condition="$banners_size > 4"}
|
||||||
|
<a href="{$banners[4]['link']}" class="nhlplxwmit nhlplxwmit-w2">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-lx5.png" class="lximg" />
|
||||||
|
{if condition="!empty($banners[4]['picture']) && $banners[4]['picture'] != '/uploads/nopic.jpg'"}
|
||||||
|
<img src="{$banners[4]['picture']}" class="lxewmimg">
|
||||||
|
{/if}
|
||||||
|
<span class="t1">{$banners[4]['name']}</span>
|
||||||
|
<span class="t2">{$banners[4]['desc']}</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
{if condition="$banners_size > 5"}
|
||||||
|
<a href="{$banners[5]['link']}" class="nhlplxwmit nhlplxwmit-w2">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-lx6.png" class="lximg" />
|
||||||
|
{if condition="!empty($banners[5]['picture']) && $banners[5]['picture'] != '/uploads/nopic.jpg'"}
|
||||||
|
<img src="{$banners[5]['picture']}" class="lxewmimg">
|
||||||
|
{/if}
|
||||||
|
<span class="t1">{$banners[5]['name']}</span>
|
||||||
|
<span class="t2">{$banners[5]['desc']}</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
{if condition="$banners_size > 6"}
|
||||||
|
<a href="{$banners[6]['link']}" class="nhlplxwmit nhlplxwmit-w2" style="margin-right: 0;">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-lx7.png" class="lximg" />
|
||||||
|
{if condition="!empty($banners[6]['picture']) && $banners[6]['picture'] != '/uploads/nopic.jpg'"}
|
||||||
|
<img src="{$banners[6]['picture']}" class="lxewmimg">
|
||||||
|
{/if}
|
||||||
|
<span class="t1">{$banners[6]['name']}</span>
|
||||||
|
<span class="t2">{$banners[6]['desc']}</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{include file='include/bottom2023'/}
|
||||||
|
</body>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function() {
|
||||||
|
// 监听输入框内容变化
|
||||||
|
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('tops_nas/helper_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 href="{:url(\'tops_nas/helper_detail\')}?id=' + v.id + '">' + v.name + '</a></li>'
|
||||||
|
})
|
||||||
|
html += '</ul>'
|
||||||
|
}
|
||||||
|
$('#dropdown').show().html(html);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}, 300);
|
||||||
|
})
|
||||||
|
$(document).on('click', function (e) {
|
||||||
|
var target = $(e.target);
|
||||||
|
if (!target.closest('.nhlp-search').length) {
|
||||||
|
$('#dropdown').hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$('.nhlplxwmit:not(:first)').hover(function() {
|
||||||
|
// 当鼠标移入时,显示.lxewmimg 并隐藏.lximg
|
||||||
|
$(this).find('.lxewmimg').show();
|
||||||
|
$(this).find('.lximg').hide();
|
||||||
|
}, function() {
|
||||||
|
// 当鼠标移出时,隐藏.lxewmimg 并显示.lximg
|
||||||
|
$(this).find('.lxewmimg').hide();
|
||||||
|
$(this).find('.lximg').show();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</html>
|
||||||
396
app/index/view/tops_nas/helper_detail.phtml
Normal file
396
app/index/view/tops_nas/helper_detail.phtml
Normal file
@@ -0,0 +1,396 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>帮助中心</title>
|
||||||
|
{include file='include/head-nas' /}
|
||||||
|
<style>
|
||||||
|
.narshelpdetailPc {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background: #f9f9f9;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
border-top: 1px solid #ccc;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
padding: 21px 0;
|
||||||
|
top: 0;
|
||||||
|
align-items: center;
|
||||||
|
background: #fff;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .dropdown {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
top: 124px;
|
||||||
|
left: 0;
|
||||||
|
width: 435px;
|
||||||
|
border-top: none;
|
||||||
|
background-color: #fff;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
border-bottom-right-radius: 4px;
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
|
margin: 0 auto;
|
||||||
|
right: 0;
|
||||||
|
max-height: 18.75rem;
|
||||||
|
min-height: 3.125rem;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .dropdown ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .dropdown ul li {
|
||||||
|
padding: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .dropdown ul li:hover {
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .ml {
|
||||||
|
font-size: 14px;
|
||||||
|
padding-left: 25px;
|
||||||
|
padding-top: 37px;
|
||||||
|
padding-bottom: 31px;
|
||||||
|
color: #8f9099;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .nars-hlp-search {
|
||||||
|
width: 440px;
|
||||||
|
height: 42px;
|
||||||
|
border-radius: 1.3125rem;
|
||||||
|
font-size: 14px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
color: #8f9099;
|
||||||
|
border: 1px solid #cdcedb;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .nars-hlp-search .ssimg {
|
||||||
|
width: 1.6rem;
|
||||||
|
height: 1.6rem;
|
||||||
|
margin-right: 3%;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .nars-hlp-search input {
|
||||||
|
font-size: 14px;
|
||||||
|
border: none;
|
||||||
|
padding: 0 15px;
|
||||||
|
outline: none;
|
||||||
|
flex: 1;
|
||||||
|
margin-right: 2%;
|
||||||
|
margin-left: 2%;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .narsssmain .nars-hlp-search input::placeholder {
|
||||||
|
color: #8f9099;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml {
|
||||||
|
width: 252px;
|
||||||
|
overflow-y: auto;
|
||||||
|
border-right: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .nav-tree {
|
||||||
|
max-height: 800px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .category {
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .category-title {
|
||||||
|
display: block;
|
||||||
|
padding: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 10px;
|
||||||
|
color: #1f2635;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .arrow {
|
||||||
|
margin-right: 2px;
|
||||||
|
transform: rotate(0deg);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .arrow .nars-jt {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .rotate {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .sub-list {
|
||||||
|
display: none;
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .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: 12px;
|
||||||
|
color: #8f9099;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .sub-list li:first a {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .sub-list li a:hover,
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-ml .sub-list li a.active {
|
||||||
|
color: #1f2635;
|
||||||
|
border-bottom: 1px solid #1f2635;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-mm {
|
||||||
|
padding: 32px 150px;
|
||||||
|
max-height: 920px;
|
||||||
|
min-height: 700px;
|
||||||
|
height: auto;
|
||||||
|
flex: 1;
|
||||||
|
overflow-y: auto;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
/* .narshelpdetailPc .nars-help-content .nars-hlpdt-mm img{*/
|
||||||
|
/* width: -webkit-fill-available;*/
|
||||||
|
/*}*/
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr {
|
||||||
|
width: 252px;
|
||||||
|
overflow-y: auto;
|
||||||
|
border-left: 1px solid #ccc;
|
||||||
|
overflow-y: auto;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list {
|
||||||
|
padding: 0 20px;
|
||||||
|
float: right;
|
||||||
|
max-height: 800px;
|
||||||
|
min-height: 700px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list .tt {
|
||||||
|
font-size: 14px;
|
||||||
|
padding-top: 33px;
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list ul li {
|
||||||
|
margin-bottom: 23px;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list ul li a {
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #1f2635;
|
||||||
|
}
|
||||||
|
.narshelpdetailPc .nars-help-content .nars-hlpdt-mr #title-list ul li a:hover {
|
||||||
|
color: #1f2635;
|
||||||
|
border-bottom: 1px solid #1f2635;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-tree .category:nth-child(1) .category-title {
|
||||||
|
padding-top: 33px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改垂直滚动条 */
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 6px; /* 修改宽度 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条轨道背景色 */
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条滑块颜色 */
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条滑块悬停时的颜色 */
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background-color: #D8DFE8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条滑块移动时的颜色 */
|
||||||
|
::-webkit-scrollbar-thumb:active {
|
||||||
|
background-color: #D8DFE8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 修改滚动条滑块的圆角 */
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
/* 整体滚动条 */
|
||||||
|
* {
|
||||||
|
scrollbar-width: thin; /* 滚动条宽度 */
|
||||||
|
scrollbar-color: #D8DBE6 transparent; /* 滚动条颜色(滑块颜色 轨道颜色) */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条轨道 */
|
||||||
|
*::-moz-scrollbar-track {
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条滑块 */
|
||||||
|
*::-moz-scrollbar-thumb {
|
||||||
|
background-color: #D8DBE6;
|
||||||
|
border-radius: 5px; /* 滑块的圆角 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条的上下箭头 */
|
||||||
|
*::-moz-scrollbar-button {
|
||||||
|
display: none; /* 隐藏上下箭头 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条的上下箭头:向上箭头 */
|
||||||
|
*::-moz-scrollbar-button:vertical:decrement {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条的上下箭头:向下箭头 */
|
||||||
|
*::-moz-scrollbar-button:vertical:increment {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
margin: 0;
|
||||||
|
all: revert; /* 将所有属性设置为初始值 */
|
||||||
|
/* 或者使用 all: revert; 恢复到浏览器默认样式,但该属性兼容性不如 initial */
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 顶部导航 -->
|
||||||
|
{include file='include/top-header-nas'/}
|
||||||
|
<div class="narshelpdetailPc">
|
||||||
|
<!-- top 搜索-->
|
||||||
|
<div class="narsssmain">
|
||||||
|
<div class="ml">帮助中心 / 使用教程</div>
|
||||||
|
<div class="nars-hlp-search">
|
||||||
|
<input placeholder="请输入搜索关键字,如安装赛博云空间、影视库" />
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/help/nhlp-ssico.png" class="ssimg">
|
||||||
|
</div>
|
||||||
|
<!-- 下拉搜索框 -->
|
||||||
|
<div class="dropdown" id="dropdown"></div>
|
||||||
|
</div>
|
||||||
|
<!-- 目录-文章详情-锚点定位--->
|
||||||
|
<div class="nars-help-content">
|
||||||
|
<!--目录 -->
|
||||||
|
<div class="nars-hlpdt-ml">
|
||||||
|
<div class="nav-tree">
|
||||||
|
{volist name="categorys" id="vo"}
|
||||||
|
<div class="category">
|
||||||
|
<div class="category-title">
|
||||||
|
<div class="arrow {if condition='$cid == $vo.id'}rotate{/if}"><img src="__PUBLIC__/m_web/images/nas/help/nars-jt.png" class="arrow {if condition='$cid == $vo.id'}rotate{/if}"/></div>
|
||||||
|
<span>{$vo.name}</span>
|
||||||
|
</div>
|
||||||
|
<ul class="sub-list" {if condition="$cid == $vo.id"}style="display: block;"{/if}>
|
||||||
|
{volist name="vo.articles" id="va"}
|
||||||
|
<li>
|
||||||
|
<a href="{:url('tops_nas/helper_detail', ['id' => $va.id])}" class="{if condition='$Request.param.id == $va.id'}active{/if}" style="{if condition='$key==0'}padding-top: 6px;{/if}">{$va.name}</a>
|
||||||
|
</li>
|
||||||
|
{/volist}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{/volist}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--文章详情 -->
|
||||||
|
<div class="nars-hlpdt-mm" id="rendered-content">
|
||||||
|
<div>{$article.content|default=''}</div>
|
||||||
|
</div>
|
||||||
|
<!--锚点定位 -->
|
||||||
|
<div class="nars-hlpdt-mr">
|
||||||
|
<div id="title-list">
|
||||||
|
<h2 class="tt">目录</h2>
|
||||||
|
<ul></ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{include file='include/bottom2023'/}
|
||||||
|
<script>
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('.category-title').click(function() {
|
||||||
|
$(this).next('.sub-list').slideToggle();
|
||||||
|
$(this).find('.arrow').toggleClass('rotate');
|
||||||
|
});
|
||||||
|
|
||||||
|
// 搜索
|
||||||
|
$(document).on('click', function(e) {
|
||||||
|
var target = $(e.target);
|
||||||
|
if (!target.closest('.nhlp-search').length) {
|
||||||
|
$('#dropdown').hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var timeout = null;
|
||||||
|
$('.nars-hlp-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('tops_nas/helper_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 href="{:url(\'tops_nas/helper_detail\')}?id=' + v.id + '">' + v.name + '</a></li>'
|
||||||
|
})
|
||||||
|
html += '</ul>'
|
||||||
|
}
|
||||||
|
$('#dropdown').show().html(html);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}, 300);
|
||||||
|
})
|
||||||
|
// 内容
|
||||||
|
// 清空标题列表
|
||||||
|
$("#title-list ul").empty();
|
||||||
|
// 提取 h1 标题
|
||||||
|
var h1Titles = $("#rendered-content").find("h3");
|
||||||
|
h1Titles.each(function(index) {
|
||||||
|
var title = $(this);
|
||||||
|
var titleText = title.text();
|
||||||
|
var titleId = "title-" + index;
|
||||||
|
title.attr("id", titleId);
|
||||||
|
var listItem = $("<li>");
|
||||||
|
var link = $("<a>", {
|
||||||
|
href: "#" + titleId,
|
||||||
|
text: titleText
|
||||||
|
});
|
||||||
|
listItem.append(link);
|
||||||
|
$("#title-list ul").append(listItem);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -158,7 +158,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!--微链接 -->
|
<!--微链接 -->
|
||||||
<div class="nars-wlj">
|
<div class="nars-wlj">
|
||||||
<span class="wlj-title"><span style="color:#004BFA">NAS</span>配套软件</span>
|
<span class="wlj-title"><span style="color:#004BFA">NAS </span>配套软件</span>
|
||||||
{volist name='data.weline.banners' id='vo'}
|
{volist name='data.weline.banners' id='vo'}
|
||||||
<div class="wltitem">
|
<div class="wltitem">
|
||||||
<div class="wljcp">
|
<div class="wljcp">
|
||||||
|
|||||||
159
app/index/view/tops_nas/narsdownload.phtml
Executable file
159
app/index/view/tops_nas/narsdownload.phtml
Executable file
@@ -0,0 +1,159 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>元创官网</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="__PUBLIC__/web/css/nas.css" />
|
||||||
|
{include file='include/head-nas'/}
|
||||||
|
<style type="text/css">
|
||||||
|
.narsDowloadPc {
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background: #F5F5F5;
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
margin-top: 70px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs .narsDtabIt {
|
||||||
|
color: #001717;
|
||||||
|
font-size: 24px;
|
||||||
|
height: 52px;
|
||||||
|
line-height: 52px;
|
||||||
|
width: 300px;
|
||||||
|
background: #fff;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 28px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs .narsDtabIt:first-child {
|
||||||
|
margin-right: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs .narsDtabIt_active {
|
||||||
|
color: #fff;
|
||||||
|
background: #004CFA;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDmainConten {
|
||||||
|
width: 1200px;
|
||||||
|
height: 409px;
|
||||||
|
background: #fff;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian {
|
||||||
|
width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt {
|
||||||
|
width: 1200px;
|
||||||
|
height: 409px;
|
||||||
|
background: #fff;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt .tpimg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt .tpimg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 {
|
||||||
|
width: 1200px;
|
||||||
|
height: 205px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 .nDitImg {
|
||||||
|
width: 231px;
|
||||||
|
height: 205px;
|
||||||
|
background: #fff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 .nDitImg img{
|
||||||
|
width: 126px;
|
||||||
|
height: 126px;
|
||||||
|
}
|
||||||
|
.narswljshow{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.narswljshow .nDtopIt2 .nDitImg{
|
||||||
|
width: 291px !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="narsDowloadPc">
|
||||||
|
<!--顶部导航-->
|
||||||
|
{include file='include/top-header-nas'/}
|
||||||
|
<div class="narsDtabs">
|
||||||
|
<div class="narsDtabIt narsDtabIt_active">CyberData赛博云空间</div>
|
||||||
|
<div class="narsDtabIt">Weline微链接</div>
|
||||||
|
</div>
|
||||||
|
<!-- 赛博云-->
|
||||||
|
<div class="nDtopCtMian narssbshow">
|
||||||
|
<div class="nDtopIt">
|
||||||
|
<img src="/uploads/nas/narDl-sbimg.jpg" class="tpimg" />
|
||||||
|
</div>
|
||||||
|
<div class="nDtopIt2">
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d1.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d2.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d3.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d4.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d5.png" /></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 微链接-->
|
||||||
|
<div class="nDtopCtMian narswljshow">
|
||||||
|
<div class="nDtopIt">
|
||||||
|
<img src="/uploads/nas/narDl-wljimg.jpg" class="tpimg" />
|
||||||
|
</div>
|
||||||
|
<div class="nDtopIt2">
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d1.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d2.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d3.png" /></div>
|
||||||
|
<div class="nDitImg"><img src="/uploads/nas/narsdl_d4.png" /></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{include file='include/bottom2023'/}
|
||||||
|
</body>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
$('.narsDtabIt').click(function () {
|
||||||
|
$('.narsDtabIt').removeClass('narsDtabIt_active');
|
||||||
|
$(this).addClass('narsDtabIt_active');
|
||||||
|
if ($(this).index() === 0) {
|
||||||
|
$('.narssbshow').show();
|
||||||
|
$('.narswljshow').hide();
|
||||||
|
} else {
|
||||||
|
$('.narssbshow').hide();
|
||||||
|
$('.narswljshow').show();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</html>
|
||||||
@@ -4,267 +4,186 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>元创官网</title>
|
<title>元创官网</title>
|
||||||
|
{include file='include/head-nas' /}
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
.header {
|
.header {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
</style>
|
.narsDowloadPc {
|
||||||
{include file='include/head-nas'/}
|
/*height: 100vh;*/
|
||||||
<style type="text/css">
|
background: #F5F5F5;
|
||||||
.narsMBpage {
|
/*position: relative;*/
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
position: relative;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.narsMBpage .narsMB-banner {
|
.narsDowloadPc .narsDtabs {
|
||||||
width: 100%;
|
margin: 0 1.25rem;
|
||||||
}
|
margin-top: 7rem;
|
||||||
|
|
||||||
.narsMBpage .narsmb-img {
|
|
||||||
max-width: 100%;
|
|
||||||
height: auto;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-cate {
|
|
||||||
margin-top: 2.8125rem;
|
|
||||||
margin: 0 0.4375rem;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-cate .narsmbcatetop,
|
|
||||||
.narsMBpage .narsmb-cate .narsmbcate-it {
|
|
||||||
background: #e0e2e6;
|
|
||||||
color: #000;
|
|
||||||
border-radius: 0.3125rem;
|
|
||||||
height: 5.8125rem;
|
|
||||||
width: 100%;
|
|
||||||
line-height: 1rem;
|
|
||||||
font-size: 0.75rem;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-top: 2.8125rem;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-cate .narsmbcateits {
|
|
||||||
height: 5.8125rem;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: center;
|
||||||
margin-bottom: 0.4375rem;
|
height: 2.625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.narsMBpage .narsmb-cate .narsmbcateits .narsmbcate-it {
|
.narsDowloadPc .narsDtabs .narsDtabIt {
|
||||||
width: 49%;
|
color: #001717;
|
||||||
margin-top: 0.4375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-cate .narsmbcate-sp {
|
|
||||||
margin: 0 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmbvd {
|
|
||||||
width: 100%;
|
|
||||||
height: 14.5625rem;
|
|
||||||
margin-top: 2.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmbvd .narsmbvideo {
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
object-fit: fill;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa {
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa .narsmbjjfa-title {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 1.6875rem;
|
|
||||||
font-weight: bold;
|
|
||||||
padding-top: 2.0625rem;
|
|
||||||
padding-bottom: 1.3125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa .narsmbjjfaSwiper {
|
|
||||||
margin-left: 0.4375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa .narsmbjjfa-slide {
|
|
||||||
width: 10rem;
|
|
||||||
height: 18.375rem;
|
|
||||||
border-radius: 0.125rem;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa .narsmbjjfa-slide .narsmb-jjfa-ct {
|
|
||||||
color: #000;
|
|
||||||
margin: 0 1.25rem;
|
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
font-weight: bold;
|
height: 2.625rem;
|
||||||
margin-top: 1.875rem;
|
line-height: 2.625rem;
|
||||||
line-height: 1.5625rem;
|
width: 25rem;
|
||||||
}
|
background: #fff;
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa .narsmbjjfa-slide .narsmb-jjfa-info {
|
|
||||||
background: #131b28;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
height: 18.375rem;
|
|
||||||
padding: 0 1.3rem;
|
|
||||||
display: none;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
border-radius: 0.125rem;
|
|
||||||
z-index: 11;
|
|
||||||
overflow-y: hidden;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa .narsmbjjfa-slide .narsmb-jjfa-info .narsmbjjfatt {
|
|
||||||
width: 100%;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 0.875rem;
|
|
||||||
margin-bottom: 1.6875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa .narsmbjjfa-slide .narsmb-jjfa-info .narsmbjjfa-txt {
|
|
||||||
font-size: 0.75rem;
|
|
||||||
line-height: 1rem;
|
|
||||||
text-indent: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsMBpage .narsmb-jjfa .narsmb-jjfabgimg {
|
|
||||||
width: 9.9375rem;
|
|
||||||
height: 18.375rem;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj {
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwlj-title {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 1.6875rem;
|
|
||||||
font-weight: bold;
|
|
||||||
padding-top: 2.0625rem;
|
|
||||||
padding-bottom: 1.3125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem {
|
|
||||||
margin: 0 0.4375rem;
|
|
||||||
height: 9.0625rem;
|
|
||||||
background: #131b28;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem .narsmbwljcp {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
height: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem .narsmbwljcp .narsmbtt {
|
|
||||||
font-size: 1.0625rem;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #fff;
|
|
||||||
width: 35.5rem;
|
|
||||||
text-align: center;
|
|
||||||
margin-left: 35%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem .narsmbwljcp .narsmbwljimg {
|
|
||||||
height: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem .narsmbwljcpinfo {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
color: #fff;
|
|
||||||
flex: 1;
|
|
||||||
margin: 0 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem .narsmbwljcpinfo .narsmbif-title {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 1.0625rem;
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem .narsmbwljcpinfo .narsmbif-info {
|
|
||||||
font-size: 0.625rem;
|
|
||||||
line-height: 1rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem .narsmbwljcpinfo .narsmbwlj-xzbt {
|
|
||||||
width: 7.25rem;
|
|
||||||
height: 2.1875rem;
|
|
||||||
border-radius: 3.25rem;
|
|
||||||
line-height: 2.1875rem;
|
|
||||||
border: 1px solid #ffffff;
|
|
||||||
font-size: 0.875rem;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
border-radius: 28px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin: 0 1.25rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.narsmb-wlj .narsmbwltitem .narsmbwljcpinfo .narsmbtt {
|
.narsDowloadPc .narsDtabs .narsDtabIt:first-child {
|
||||||
font-size: 1.0625rem;
|
margin-right: 0.9375rem;
|
||||||
font-weight: bold;
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .narsDtabs .narsDtabIt_active {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-align: center;
|
background: #004CFA;
|
||||||
}
|
}
|
||||||
|
|
||||||
.narsMBbannerSwiper {
|
.narsDowloadPc .narsDmainConten {
|
||||||
padding-top: 0px;
|
margin: 0 1.25rem;
|
||||||
|
background: #fff;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian {
|
||||||
|
padding-top: 1.25rem;
|
||||||
|
position: relative;
|
||||||
|
overflow: hideen;
|
||||||
|
margin: 0 1.25rem;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt {
|
||||||
|
width: 100%;
|
||||||
|
background: #fff;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt .tpimg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt .tpimg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 .nDitImg {
|
||||||
|
width: 48.5%;
|
||||||
|
background: #fff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
margin-bottom: 0.625rem;
|
||||||
|
}
|
||||||
|
.narsDowloadPc .nDtopCtMian .nDtopIt2 .nDitImg img{
|
||||||
|
width: 6.25rem;
|
||||||
|
height: 6.25rem;
|
||||||
|
padding: 1.25rem;
|
||||||
|
}
|
||||||
|
.narswljshow{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.narswljshow .nDtopIt2 .nDitImg{
|
||||||
|
/* width: 291px !important; */
|
||||||
|
}
|
||||||
|
.narssbshow .nrowimg {
|
||||||
|
width: 100%;
|
||||||
|
background: #fff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
.narssbshow .nrowimg img{
|
||||||
|
width: 50%;
|
||||||
|
height: 50%;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
{include file='include/top_nas'/}
|
{include file='include/top_nas'/}
|
||||||
<!--nars 手机 -->
|
<div class="narsDowloadPc">
|
||||||
<div class="narsMBpage">
|
<div class="narsDtabs">
|
||||||
<!--轮播 banner-->
|
<div class="narsDtabIt narsDtabIt_active">CyberData赛博云空间</div>
|
||||||
<div class="narsMB-banner">
|
<div class="narsDtabIt">Weline微链接</div>
|
||||||
<div class="swiper-container narsMBbannerSwiper">
|
|
||||||
<div class="swiper-wrapper">
|
|
||||||
|
|
||||||
<div class="swiper-slide">
|
|
||||||
<img src="/uploads/nas/mobile-beta.png" alt="" class="narsmb-img" />
|
|
||||||
</div>
|
</div>
|
||||||
|
<!-- 赛博云-->
|
||||||
|
<div class="nDtopCtMian narssbshow">
|
||||||
|
<div class="nDtopIt">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/narsdlapp-sbimg.jpg" class="tpimg" />
|
||||||
|
</div>
|
||||||
|
<div class="nDtopIt2">
|
||||||
|
<a class="nDitImg" href="http://demo.orico.com.cn/static/download/赛博云空间_v1.1.0_24054.apk" download="赛博云空间_v1.1.0_24054.apk">
|
||||||
|
<div class="nDitImg"><img src="__PUBLIC__/m_web/images/nas/narsdlapp_d1.png" /></div>
|
||||||
|
</a>
|
||||||
|
<a class="nDitImg" href="https://apps.apple.com/cn/app/%E8%B5%9B%E5%8D%9A%E4%BA%91%E7%A9%BA%E9%97%B4/id6695746746" target="_blank">
|
||||||
|
<div class="nDitImg"><img src="__PUBLIC__/m_web/images/nas/narsdlapp-d2.png" /></div>
|
||||||
|
</a>
|
||||||
|
<a class="nDitImg" href="http://demo.orico.com.cn/static/download/赛博云空间_v1.1.0_24057.exe" download="赛博云空间_v1.1.0_24057.exe">
|
||||||
|
<div class="nDitImg"><img src="__PUBLIC__/m_web/images/nas/narsdlapp_d3.png" /></div>
|
||||||
|
</a>
|
||||||
|
<a class="nDitImg" href="https://apps.apple.com/cn/app/%E8%B5%9B%E5%8D%9A%E4%BA%91%E7%A9%BA%E9%97%B4/id6695746746" target="_blank">
|
||||||
|
<div class="nDitImg"><img src="__PUBLIC__/m_web/images/nas/narsdlapp_d4.png" /></div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="nDitImg nrowimg" style="margin-bottom: 25px;"><img src="__PUBLIC__/m_web/images/nas/narsdlapp_d5.png" /></div>
|
||||||
|
</div>
|
||||||
|
<!-- 微链接-->
|
||||||
|
<div class="nDtopCtMian narswljshow">
|
||||||
|
<div class="nDtopIt">
|
||||||
|
<img src="__PUBLIC__/m_web/images/nas/narsdlapp-wljimg.jpg" class="tpimg" />
|
||||||
|
</div>
|
||||||
|
<div class="nDtopIt2" style="margin-bottom: 25px;">
|
||||||
|
<a class="nDitImg" href="http://demo.orico.com.cn/static/download/WeLine_r5.4.11.8553_2024091916.apk" download="WeLine_r5.4.11.8553_2024091916.apk">
|
||||||
|
<div class="nDitImg"><img src="__PUBLIC__/m_web/images/nas/narsdlapp_d1.png" /></div>
|
||||||
|
</a>
|
||||||
|
<a class="nDitImg" href="https://apps.apple.com/us/app/weline-io/id1495146123" target="_blank">
|
||||||
|
<div class="nDitImg"><img src="__PUBLIC__/m_web/images/nas/narsdlapp-d2.png" /></div>
|
||||||
|
</a>
|
||||||
|
<a class="nDitImg" href="http://demo.orico.com.cn/static/download/Weline_PC_v5.4.7.20240929.exe" download="Weline_PC_v5.4.7.20240929.exe">
|
||||||
|
<div class="nDitImg"><img src="__PUBLIC__/m_web/images/nas/narsdlapp_d3.png" /></div>
|
||||||
|
</a>
|
||||||
|
<a class="nDitImg" href="http://demo.orico.com.cn/static/download/Weline_Mac_v5.4.7.20240929.dmg" download="Weline_Mac_v5.4.7.20240929.dmg">
|
||||||
|
<div class="nDitImg"><img src="__PUBLIC__/m_web/images/nas/narsdlapp_d4.png" /></div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
{include file='include/bottom1'/}
|
{include file='include/bottom1'/}
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
$('.narsDtabIt').click(function () {
|
||||||
|
$('.narsDtabIt').removeClass('narsDtabIt_active');
|
||||||
|
$(this).addClass('narsDtabIt_active');
|
||||||
|
if ($(this).index() === 0) {
|
||||||
|
$('.narssbshow').show();
|
||||||
|
$('.narswljshow').hide();
|
||||||
|
} else {
|
||||||
|
$('.narssbshow').hide();
|
||||||
|
$('.narswljshow').show();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -452,6 +452,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{/volist}
|
{/volist}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
{include file='include/bottom1'/}
|
{include file='include/bottom1'/}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
43
app/us/view/include/top-header-nas.phtml
Executable file
43
app/us/view/include/top-header-nas.phtml
Executable file
@@ -0,0 +1,43 @@
|
|||||||
|
<header class="narsPage-head">
|
||||||
|
<div class="headcenter">
|
||||||
|
<img
|
||||||
|
class="logico"
|
||||||
|
style="cursor:pointer;"
|
||||||
|
src="__PUBLIC__/web/images/logo_nas.png"
|
||||||
|
onclick="location.href='{:url(\'TopsNas/index\')}'"
|
||||||
|
/>
|
||||||
|
<nav class="headnav">
|
||||||
|
<!-- {volist name="nav_header" id="vo"}
|
||||||
|
<div class="navitem">
|
||||||
|
<a href="{$vo.url}" {if condition="$vo.is_new_window_open"}target="_blank"{/if}>{$vo.name}</a>
|
||||||
|
{if condition="!empty($vo.items)"}
|
||||||
|
<img src="/frontend/weben/images/indeximg/black-down.png" class="downimg" alt="">
|
||||||
|
<ul class="children">
|
||||||
|
{volist name="vo.items" id="it"}
|
||||||
|
<li>
|
||||||
|
<a href="{$it.url}" {if condition="$it.is_new_window_open"}target="_blank"{/if}>{$it.name}</a>
|
||||||
|
</li>
|
||||||
|
{/volist}
|
||||||
|
</ul>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
{/volist} -->
|
||||||
|
{volist name="nav_header" id="vo"}
|
||||||
|
<a
|
||||||
|
class="navitem"
|
||||||
|
href="{$vo.url}" {if condition="$vo.is_new_window_open"}target="_blank"{/if}
|
||||||
|
>
|
||||||
|
{$vo.name}
|
||||||
|
</a>
|
||||||
|
{/volist}
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<script type="text/javascript">
|
||||||
|
document.querySelectorAll('.navitem').forEach(function(it) {
|
||||||
|
it.classList.remove('hover')
|
||||||
|
if (location.pathname.endsWith(it.getAttribute('href'))) {
|
||||||
|
it.classList.add('hover')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
@@ -6,19 +6,15 @@
|
|||||||
<title>元创官网</title>
|
<title>元创官网</title>
|
||||||
<link rel="stylesheet" href="__PUBLIC__/web/css/swiper-3.4.2.min.css" />
|
<link rel="stylesheet" href="__PUBLIC__/web/css/swiper-3.4.2.min.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/web/css/nas.css" />
|
<link rel="stylesheet" type="text/css" href="__PUBLIC__/web/css/nas.css" />
|
||||||
{include file='include/head'/}
|
{include file='include/head-nas'/}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="narsPage">
|
<div class="narsPage">
|
||||||
<!--顶部导航-->
|
<!--顶部导航-->
|
||||||
<header class="header-PC header-Index">
|
<!--{#include file='include/top-header-nas'/}-->
|
||||||
<div id="header" class="theme-white">
|
|
||||||
{include file="include/top-header" /}
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<!--banner -->
|
<!--banner -->
|
||||||
<div class="narsIndex-banner">
|
<div class="narsIndex-banner">
|
||||||
<div class="swiper-container mySwiper" style="width:100%">
|
<div class="swiper-container mySwiper">
|
||||||
<div class="swiper-wrapper">
|
<div class="swiper-wrapper">
|
||||||
|
|
||||||
<div class="swiper-slide">
|
<div class="swiper-slide">
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
{include file='include/head'/}
|
{include file='include/head-nas'/}
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
.narsMBpage {
|
.narsMBpage {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -246,9 +246,7 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="content">
|
<!--{#include file='include/top_nas'/}-->
|
||||||
{include file="include/top" /}
|
|
||||||
</div>
|
|
||||||
<!--nars 手机 -->
|
<!--nars 手机 -->
|
||||||
<div class="narsMBpage">
|
<div class="narsMBpage">
|
||||||
<!--轮播 banner-->
|
<!--轮播 banner-->
|
||||||
|
|||||||
Reference in New Issue
Block a user