Commit 195ee0d5 authored by liukang's avatar liukang

修改提交

parent 7461d6b2
...@@ -25,14 +25,26 @@ class About extends Base ...@@ -25,14 +25,26 @@ class About extends Base
return view("/home/about/contact"); return view("/home/about/contact");
} }
public function us(){ public function us(){
$id = input('article');
$agreement = new mabout(); $agreement = new mabout();
$agreement = $agreement->get_us(); $list = $agreement->where('isdeleted',0)->order('order','desc')->select();
$list = $this->dealData($list);
$content = array();
if ($id){
$content = $agreement->where('id',$id)->where('isdeleted',0)->order('current','desc')->find();
}else{
if (!empty($list)){
$id = $list[0]['id'];
$content = $agreement->where('id',$id)->where('isdeleted',0)->order('current','desc')->find();
}
}
$this->assign('url',$this->url); $this->assign('url',$this->url);
if(!$agreement){ if(!$content){
return view("/home/public/error"); return view("/home/public/error");
} }
$this->assign('list',$list);
$this->assign('us',$agreement); $this->assign('us',$content);
$this->assign('id',$id);
return view("/home/about/aboutus"); return view("/home/about/aboutus");
} }
public function agreement(){ public function agreement(){
......
...@@ -34,16 +34,35 @@ class Base extends Error ...@@ -34,16 +34,35 @@ class Base extends Error
public function getImage($type){ public function getImage($type){
//获取首页背景图 //获取首页背景图
$bannerImgId = db('advertisement')->where(array('type'=>$type,'is_display'=>1))->field('id,mintype')->find(); $bannerImgId = db('advertisement')->where(array('type'=>$type,'is_display'=>1))->field('id,mintype,packs')->select();
$bannerImgId = $this->dealData($bannerImgId);
$data = [];
foreach ($bannerImgId as $k=>$v){
$data = $this->getList($v);
}
return $data;
}
public function getList($data){
$where[] = ['starttime','<',time()]; $where[] = ['starttime','<',time()];
$where[] = ['endtime','>',time()]; $where[] = ['endtime','>',time()];
$where[] = ['starthour','<',date('h',time())]; $where[] = ['starthour','<',date('h',time())];
$where[] = ['endhour','>',date('h',time())]; $where[] = ['endhour','>',date('h',time())];
$cont = db('advertisement_cont')->where($where)->where(array('advert_id'=>$bannerImgId['id']))->field('picSrc')->select(); $cont = db('advertisement_cont')
->where($where)
->where(array('advert_id'=>$data['id']))
->field('picSrc,packs')
->order('orderby desc')
->select();
$cont = $this->dealData($cont);
$imagePre = "https://oss.3yakj.com/application_static_data"; $imagePre = "https://oss.3yakj.com/application_static_data";
$bannerImg = []; $bannerImg = [];
if ($bannerImgId['mintype'] == 0){ if ($data['mintype'] == 0){
$bannerImg = $imagePre.$cont[mt_rand(0,count($cont)-1)]['picSrc']; if (!empty($cont)){
$bannerImg = $imagePre.$cont[0]['picSrc'];
}else{
$bannerImg = '';
}
}else{ }else{
foreach ($cont as $value){ foreach ($cont as $value){
$bannerImg[] = $imagePre.$value['picSrc']; $bannerImg[] = $imagePre.$value['picSrc'];
...@@ -53,7 +72,8 @@ class Base extends Error ...@@ -53,7 +72,8 @@ class Base extends Error
} }
public function getNav(){ public function getNav(){
$nav = db('menu')->where(array('status'=>1,'type'=>0))->field('id,title,url,show_type')->order('order desc')->select(); $nav = db('menu')->where(array('status'=>1))->field('id,title,url,show_type,packs')->order('order desc')->select();
$nav = $this->dealData($nav);
foreach ($nav as $key=>$value){ foreach ($nav as $key=>$value){
if (!empty($value['url'])){ if (!empty($value['url'])){
$class = explode('.html',$value['url'])[0]; $class = explode('.html',$value['url'])[0];
...@@ -68,9 +88,36 @@ class Base extends Error ...@@ -68,9 +88,36 @@ class Base extends Error
}else{ }else{
$nav[$key]['class'] = ''; $nav[$key]['class'] = '';
} }
$child = db('menu_child')->where(array('pid'=>$value['id'],'status'=>1))->field('title,show_type,url')->order('order desc')->select(); $child = db('menu_child')->where(array('pid'=>$value['id'],'status'=>1))->field('title,show_type,url,packs')->order('order desc')->select();
$nav[$key]['child'] = $child; $nav[$key]['child'] = $this->dealData($child);
} }
$this->assign('nav',$nav); $this->assign('nav',$nav);
} }
/**
* 处理域名数据
* @param $data
* @param $type 0:一维数组,1 二维数据
* @return array
*/
public function dealData($data,$type = 1){
$web_type = config('app.web_type');
$return = [];
if ($type){
foreach ($data as $value){
if (!empty($value['packs'])){
if (in_array($web_type,json_decode($value['packs'],true))){
$return[] = $value;
}
}
}
}else{
if (!empty($data['packs'])){
if (in_array($web_type,json_decode($data['packs'],true))){
$return = $data;
}
}
}
return $return;
}
} }
\ No newline at end of file
...@@ -13,9 +13,11 @@ class Index extends Base ...@@ -13,9 +13,11 @@ class Index extends Base
public function index() public function index()
{ {
$app_list = App::where("isdeleted",0)->order('num','desc')->select(); $app_list = App::where("isdeleted",0)->order('num','desc')->select();
$app_list = $this->dealData($app_list);
$help_list = Question::where("isdeleted",0)->order("current","desc")->paginate(4); $help_list = Question::where("isdeleted",0)->order("current","desc")->paginate(4);
$help_list = $this->dealData($help_list);
$news_list = News::where("isdeleted",0)->order("current","desc")->paginate(4); $news_list = News::where("isdeleted",0)->order("current","desc")->paginate(4);
$news_list = $this->dealData($news_list);
$this->assign('app_list',$app_list); $this->assign('app_list',$app_list);
$this->assign('help_list',$help_list); $this->assign('help_list',$help_list);
$this->assign('news_list',$news_list); $this->assign('news_list',$news_list);
...@@ -26,8 +28,11 @@ class Index extends Base ...@@ -26,8 +28,11 @@ class Index extends Base
public function mobile() public function mobile()
{ {
$app_list = App::where("isdeleted",0)->order('num','asc')->select(); $app_list = App::where("isdeleted",0)->order('num','asc')->select();
$app_list = $this->dealData($app_list);
$help_list = Question::where("isdeleted",0)->order("current","desc")->paginate(4); $help_list = Question::where("isdeleted",0)->order("current","desc")->paginate(4);
$help_list = $this->dealData($help_list);
$news_list = News::where("isdeleted",0)->order("current","desc")->paginate(4); $news_list = News::where("isdeleted",0)->order("current","desc")->paginate(4);
$news_list = $this->dealData($news_list);
$this->assign('app_list',$app_list); $this->assign('app_list',$app_list);
$this->assign('help_list',$help_list); $this->assign('help_list',$help_list);
...@@ -73,9 +78,10 @@ class Index extends Base ...@@ -73,9 +78,10 @@ class Index extends Base
public function huatai(Request $request) public function huatai(Request $request)
{ {
$imageList = $this->getImage(3);
$this->assign('domain',$request->domain()); $this->assign('domain',$request->domain());
$this->assign('url',$this->url); $this->assign('url',$this->url);
$this->assign('imageList',$this->getImage(3)); $this->assign('imageList',$imageList);
return view("/home/index/huatai"); return view("/home/index/huatai");
} }
......
...@@ -17,7 +17,9 @@ class Join extends Base ...@@ -17,7 +17,9 @@ class Join extends Base
$join_cate = new JoinCate(); $join_cate = new JoinCate();
$join = new mjoin(); $join = new mjoin();
$join_list = $join->where('isdeleted',0)->order('join_cate_id','asc')->order('current','desc')->select(); $join_list = $join->where('isdeleted',0)->order('join_cate_id','asc')->order('current','desc')->select();
$join_list = $this->dealData($join_list);
$join_cate_list = $join_cate->where('isdeleted',0)->order('id','asc')->select(); $join_cate_list = $join_cate->where('isdeleted',0)->order('id','asc')->select();
$join_cate_list = $this->dealData($join_cate_list);
$this->assign('url',$this->url); $this->assign('url',$this->url);
$this->assign('join_image',$this->getImage(2)); $this->assign('join_image',$this->getImage(2));
$this->assign('join_cate_list',$join_cate_list); $this->assign('join_cate_list',$join_cate_list);
......
...@@ -14,7 +14,8 @@ class News extends Base ...@@ -14,7 +14,8 @@ class News extends Base
public function list(){ public function list(){
$pageSize = 5; $pageSize = 5;
$news_list = m_news::where('isdeleted',0)->order('current','desc')->paginate($pageSize); $web_type = config('app.web_type');
$news_list = m_news::where('isdeleted',0)->where('packs','like',"%{$web_type}%")->order('current','desc')->paginate($pageSize);
$pattern = '/\[\d+\]/'; $pattern = '/\[\d+\]/';
$matches = array(); $matches = array();
......
...@@ -39,15 +39,17 @@ class ServiceHelp extends Base ...@@ -39,15 +39,17 @@ class ServiceHelp extends Base
} }
public function help(){ public function help(){
$question_cate_list =QuestionCate::where('isdeleted',0)->select(); $question_cate_list =QuestionCate::where('isdeleted',0)->select();
// for($n=0;$n<count($question_cate_list);$n++){ // $question_cate_list = $this->dealData($question_cate_list);
// $img = Img::get(intval($question_cate_list[$n]['img_id']));
// $question_cate_list[$n]['img_url'] = $img['img_url'].$img['img_name'];
// }
$question_list = array(); $question_list = array();
$cate = new QuestionCate(); $cate = new QuestionCate();
if(count($question_cate_list)>0){ if(count($question_cate_list)>0){
$web_type = config('app.web_type');
$cate = QuestionCate::where('isdeleted',0)->where('id',$question_cate_list[0]['id'])->find(); $cate = QuestionCate::where('isdeleted',0)->where('id',$question_cate_list[0]['id'])->find();
$question_list = Question::where('isdeleted',0)->where('question_cate_id',$question_cate_list[0]['id'])->order('current','desc')->paginate(10, false, [ $question_list = Question::where('isdeleted',0)
->where('question_cate_id',$question_cate_list[0]['id'])
->where('packs','like',"%{$web_type}%")
->order('current','desc')
->paginate(10, false, [
'query' => request()->param() 'query' => request()->param()
]); ]);
$pattern = '/\[\d+\]/'; $pattern = '/\[\d+\]/';
...@@ -156,8 +158,12 @@ class ServiceHelp extends Base ...@@ -156,8 +158,12 @@ class ServiceHelp extends Base
// $img = Img::get(intval($question_cate_list[$n]['img_id'])); // $img = Img::get(intval($question_cate_list[$n]['img_id']));
// $question_cate_list[$n]['img_url'] = $img['img_url'].$img['img_name']; // $question_cate_list[$n]['img_url'] = $img['img_url'].$img['img_name'];
// } // }
$web_type = config('app.web_type');
$question_list = Question::where('isdeleted',0)->whereLike('title',"%".$key_str."%")->order('current','desc')->paginate(10, false, [ $question_list = Question::where('isdeleted',0)
->whereLike('title',"%".$key_str."%")
->whereLike('packs',"%".$web_type."%")
->order('current','desc')
->paginate(10, false, [
'query' => request()->param() 'query' => request()->param()
]); ]);
$pattern = '/\[\d+\]/'; $pattern = '/\[\d+\]/';
......
...@@ -142,5 +142,8 @@ return [ ...@@ -142,5 +142,8 @@ return [
'show_error_msg' => false, 'show_error_msg' => false,
// 异常处理handle类 留空使用 \think\exception\Handle // 异常处理handle类 留空使用 \think\exception\Handle
'exception_handle' => '', 'exception_handle' => '',
//----------------------------------------------------------------------
// 自定义参数
//----------------------------------------------------------------------
'web_type' => 0,
]; ];
<?php /*a:4:{s:63:"D:\PHPStormProject\3yakj\config/../template/home\news\list.html";i:1647937410;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?> <?php /*a:4:{s:63:"D:\PHPStormProject\3yakj\config/../template/home\news\list.html";i:1648188579;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?>
<html> <html>
<head> <head>
<title>朱贝直播官方热门动态</title> <title>朱贝直播官方热门动态</title>
......
<?php /*a:4:{s:65:"D:\PHPStormProject\3yakj\config/../template/home\news\detail.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?>
<html>
<head>
<title>朱贝-全民娱乐直播平台</title>
<meta name="chinaz-site-verification" content="AC2EF776C208BC35">
<meta name="keywords" content="朱贝、朱贝软件、短视频直播、娱乐直播"/>
<meta name="description" content="朱贝是一款由三丫互娱专注于打造全民娱乐直播平台。多功能直播间互动、便捷分享模式,给你带来不同直播互动体验。互动视频娱乐直播交友,汇集各类优秀主播在线互动,24小时不间断嗨歌热舞,为您带来超凡体验!" />
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
<link type="text/css" rel="stylesheet" href="/static/home/css/swiper3.07.min.css">
<style>
.wrapper{overflow:hidden}
.banner{background:#1e78eb;height:540px;padding-top: 120px;}
.banner .page-1{width: 960px;height: 540px;margin: 0 auto;position:relative;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner a,.banner a:hover{text-decoration: none;cursor: pointer;}
.banner .play-btn{width: 84px;height: 84px;display: block;background:url(/static/common/img/play.png) 0 0 no-repeat;left:50%;position: absolute;top: 165px;z-index:2000;margin-left: 114px;cursor:pointer;}
.banner .play-btn,.banner .play-close-btn{display: block;}
.banner .play-close-btn{width:52px;height:52px;background:url(/static/common/img/close.jpg) 0 0 no-repeat;position: absolute;right:0;top:0;z-index:30000;opacity:0;}
.banner .page-2:hover .play-close-btn{opacity:1;}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.banner .play-close-btn {
right:2px;
}
}
.banner .banner-btn{width: 105px;height:51px;display: inline-block;border:2px solid #fff;font-size:20px;line-height:51px;padding-left:65px;}
.banner .download-btn{color:#267be5;background: #fff url(/static/common/img/icon.1.1.png) 21px -57px no-repeat;}
.banner .member-center{color:#fff;background:url(/static/common/img/icon.1.1.png) 20px -163px no-repeat;margin-left:26px;}
.banner .ad-link{color:#fff;background:url(/static/common/img/icon.1.1.png) -250px -32px no-repeat;margin-left:26px;}
.live-guild{
color:#fff;
background:url("/static/common/img/people.png") no-repeat;
background-position:18px 8px;
margin-left:26px;
}
.microvideo{
color:#fff;
background:url("/static/common/img/vedio.png") no-repeat;
background-position:18px 8px;
margin-left:26px;
}
#entryCon{
display:flex;
position:absolute;
justify-content:space-between;
flex-wrap: nowrap;
top:398px;
left:0px;
}
.banner object{position:relative;z-index:1000;}
.banner .page-2{position:absolute;z-index:3000;left:629px;top:240px;left:455px\0;top:190px\0;*left:456px;*top:190px;text-align: center;padding:6px;width:0;height:0;background:#0d0d0d;opacity:0;overflow:hidden;-webkit-transition: all 0.3s;transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.banner .page-2 .jwlogo{display:none;}
.banner.videoplaying .page-1 .bg{background:#267be5;}
.banner.videoplaying .page-2{opacity:1;width: 948px;height: 528px;top:0;left:0;}
.banner .qr-code-con{width:121px;height:121px;border:2px solid #fff;position:absolute;top: 341px;left: 198px;}
.banner .qr-code-con .qr-code{margin:12px;}
.banner .qr-code-con .qr-note{color:#fff;font-size:20px;position:absolute;bottom:-36px;width:100%;text-align:center;}
.banner .qr-code-con .qr-code img{display:block;width:100%;height:100%;background: #fff;}
.tit{font-size:30px;color: #4a4a4a;font-weight: 100;height: 30px;line-height:30px;}
.tit a{display: block;color: #434343;text-decoration: none;}
.note{font-size:20px;line-height:20px;color: #6f6f6f;font-weight: 100;margin: 22px 0 80px;}
.sec-1 {padding-left:10px;}
.sec-1 li{float: left;margin-right:3px;}
.sec-1 li img{display: block;}
.high-blue{color:#007aff;}
.sec-3 ul{margin: 75px auto 0;width: 1020px;}
.sec-3 li{float: left;margin-right:10px;width:243px;height:243px;border:1px solid #e4e4e4;color:#8b8a8a;font-family:'Myriad Pro';font-size:18px;background-color:#fff;-webkit-transition: all 0.3s;-transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.sec-3 .icon{width:43px;height:50px;display:block;margin:0px auto 18px;}
.sec-3 .icon.ios{background:url(/static/common/img/icon.1.1.png) 0 0 no-repeat;}
.sec-3 .icon.android{background:url(/static/common/img/icon.1.1.png) -78px 0 no-repeat;}
.sec-3 .icon.wp{background:url(/static/common/img/icon.1.1.png) -155px 0 no-repeat;}
.sec-3 a{text-decoration: none;display: block;color:#8b8a8a;height:174px;padding-top:70px;-webkit-transition: all 0.3s;-transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.sec-3 li.qr-code img{margin-top:70px}
.sec-3 li.qr-code p{font-size: 12px;margin-top: -8px;}
.sec-3 li.down.on {background-color:#007aff;box-shadow: 5px 15px 30px rgba(0,0,0,.3);border:1px solid #007aff;}
.sec-3 li.down.on a{color:#fff;}
.sec-3 li.down.on .icon.ios{background:url(/static/common/img/icon.1.1.png) 0 -110px no-repeat;}
.sec-3 li.down.on .icon.android{background:url(/static/common/img/icon.1.1.png) -77px -111px no-repeat;}
.sec-3 li.down.on .icon.wp{background:url(/static/common/img/icon.1.1.png) -154px -110px no-repeat;}
.sec-3.download-popup{width:690px;height:374px;background:#ffffff;padding-top:1px;}
.sec-3.download-popup li{width:134px;height:134px;margin-right:25px;}
.sec-3.download-popup ul{margin:106px 0px 0px 38px;}
.sec-3.download-popup a{padding-top:24px;height:110px;}
.sec-3.download-popup li.qr-code img{margin-top: 15px;}
.sec-4 {margin-bottom:180px;}
.sec-4 ul{width: 1020px;margin: 0 auto;}
.sec-4 li{width: 259px;height:140px;border-left:1px dashed #9d9d9d;text-align: left;padding-left:20px;padding-right:60px;float:left;}
.sec-4 li .tit{color:#434343;font-size: 22px;position: relative;padding-bottom:5px;}
.sec-4 li .tit .arrows{background: url(/static/common/img/icon.1.1.png) -176px -69px no-repeat;width: 25px;height: 25px;display: block;position: absolute;right: 0px;top: 7px;}
.sec-4 li .con{color:#8a8a8a;font-size: 14px;line-height:26px;width: 230px;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
.sec-4 li .con a{text-decoration: none;color:#8a8a8a;font-size: 14px;}
.sec-4 li .con a:hover{color:#00A2FF;}
.screen{width: 200px;height: 345px;position: absolute;left: 50%;margin-left: 29px;top: 218px;overflow:hidden;}
.scroll-img{position:absolute;}
/**
* 照片墙
*/
div,ul,li,img,dl,dt,dd{margin: 0;padding: 0;}
.photo-wall{width: 1200px;padding: 0 7px;overflow: hidden;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;}
.wall-pace{width: 392px;list-style: none;overflow: hidden;float: left;position: relative;}
.wall-pace li{position: relative;float: left;margin: 0 5px 5px 0;overflow: hidden;background: #efefef}
.wall-last-3{position: absolute !important;top: 151px;}
.wall-last-4{margin-left: 128px !important;}
.wall-pace img{width: 100%;height: 100%;position: absolute;top:0;left: 0}
.wall-pace .sq-sm{width: 145px;height: 145px;}
.wall-pace .rect-x,.intr-x{width: 235px;height: 146px;}
.wall-pace .sq-lg{width: 258px;height: 258px;}
.wall-pace .rect-y{width: 123px;height: 258px;}
.intr-x,.intr-s{padding: 8px;color: #fff;background: rgb(1,122,255);position: absolute;top: 100%;}
.intr-x{padding-top: 12px; width: 219px;}
.intr-s{width: 242px;height: 128px;}
.wall-pace dl{text-align: left;}
.wall-pace dt{font-size: 22px;line-height: 44px;}
.wall-pace dd{font-size: 14px;line-height: 24px;overflow: hidden;white-space: nowrap;text-overflow:ellipsis;}
.banner .youku-btn{top: 339px;background: none;color: #fff;width: 125px;margin-left: 96px;cursor: pointer;height: 20px;}
.ad-identity{position: fixed;right: 28px;top: 50px;width: 38px;height:21px;z-index: 99999;}
.ad-identity-bg{
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
background: #000;opacity:0.17;
}
.ad-identity-text{
position: absolute;
top:0;
left: 0;
color: #fff;
font-size: 13px;
width: 100%;
height: 100%;
text-align: center;
line-height: 21px;
}
.page-2 .ad-identity{
position: absolute;
right: 55px;
top: 10px;
}
.quest-mobile-link{
display: inline-block;
color: #6f6f6f;
font-size: 12px;
font-weight: 100;
line-height: 20px;
padding-top: 16px;
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>动态</title>
<style>
.wrapper{padding-top: 120px;}
article{width:960px;margin:0 auto;}
.line{border: 0;height: 1px;background-color: #e4e4e4;margin-bottom:60px;}
.line2{border: 0;border-bottom:1px dashed #7994b6;margin:40px 0 24px 0;width:590px;}
aside {font-family: 'Myriad Pro';color: #737373;border-top:3px solid #067efc;float: left;width: 76px;text-align: center;padding-top:13px;}
aside .day{font-size:48px;line-height: 42px;}
aside .month{font-size:16px;}
.dynamic-list{padding: 0 25px 0 188px;}
section a{color:#2e2e2e;font-size:24px;text-decoration:none;}
section .date{color:#b3b3b3;font-size:12px;margin-bottom:30px;}
section .note{color:#737373;font-size:14px;line-height:24px;}
section .pic{margin-top:35px;}
.common-footer{margin-top:123px;}
.common-header{
margin-left: -560px;
}
.common-header li .service.business .down-list{
left: -3px;
}
</style>
</head>
<body class="white-bg">
<style>
.common-header {
margin-left: -560px;
width: 1000px;
}
.common-header li .service.business .down-list {
left: -3px;
}
<?php if(( !empty($logo_url))): ?>
.common-header {
background: url(<?php echo htmlentities($logo_url); ?>) -3px 37px no-repeat;
background-size: 18%;
}
<?php endif; if(( !empty($other_logo_url))): ?>
.white-bg .common-header {
background: url(<?php echo htmlentities($other_logo_url); ?>) -3px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<?php if(is_array($nav) || $nav instanceof \think\Collection || $nav instanceof \think\Paginator): $k = 0; $__LIST__ = $nav;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;if(!empty($vo['child'])): ?>
<li class="white-bg-service">
<span class="service">&nbsp;<?php echo htmlentities($vo['title']); ?>&nbsp;
<span class="down-list" style="position: relative;top: -30px;left: 0px;">
<span class="item colortext" style="left: -1px;width: 100%">
<a href="javascript:"><?php echo htmlentities($vo['title']); ?></a>
</span>
<?php if(is_array($vo['child']) || $vo['child'] instanceof \think\Collection || $vo['child'] instanceof \think\Paginator): $key = 0; $__LIST__ = $vo['child'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$child): $mod = ($key % 2 );++$key;?>
<span class="item">
<a href="<?php echo htmlentities($child['url']); ?>" <?php if($child['show_type']==1): ?>target="_blank"<?php endif; ?>><?php echo htmlentities($child['title']); ?></a>
</span>
<?php endforeach; endif; else: echo "" ;endif; ?>
</span>
</span>
<li>
<?php else: ?>
<li <?php if($k==1): ?>class="no-border"<?php else: ?>class="white-bg-service"<?php endif; ?>>
<a class="<?php echo htmlentities($vo['class']); ?> <?php echo $url==ucfirst($vo['class']) ? 'active' : ''; ?>" href="<?php echo htmlentities($vo['url']); ?>" <?php if($vo['show_type']==1): ?>target="_blank"<?php endif; ?>><?php echo htmlentities($vo['title']); ?></a>
</li>
<?php endif; ?>
<?php endforeach; endif; else: echo "" ;endif; ?>
</ul>
</header>
<script>
//由于未知bug导致child不为空的时候会生成一个空的li,这里删除
var ul = document.getElementsByClassName("clearfix");
var childList = ul[0].children;
for (var i = 0;i < childList.length ; i++){
if (childList[i].className === ''){
ul[0].removeChild(ul[0].children[i]);
}
}
</script>
<div class="wrapper">
<p class="line"></p>
<article class="clearfix">
<aside>
<p class="day"><?php echo date('d',$news['current']); ?></p>
<p class="month"><?php echo date('m',$news['current']); ?></p>
</aside>
<div class="dynamic-list">
<section>
<h2><a href="javascript:void();"><?php echo htmlentities($news['news_title']); ?></a></h2>
<p class="date"><?php echo date('Y-m-d',$news['current']); ?></p>
<div class="note">
<?php echo htmlspecialchars_decode($news['news_content']); ?>
</div>
</section>
</div>
</article>
</div>
<style>
._link{
position: fixed;
_position: absolute;
bottom: 20px;
right: 20px;
z-index: 214748000;
width: 60px;
height: 60px;
border: 1px solid #ddd\0;
border-radius: 30px;
cursor: pointer;
background: #23a0ee;
background: -webkit-gradient(linear,left top,left bottom,from(#23a0ee),to(#2b73d3));
background: -o-linear-gradient(top,#23a0ee 0,#2b73d3 100%);
background: -webkit-linear-gradient(top,#23a0ee 0,#2b73d3 100%);
background: linear-gradient(to bottom,#23a0ee 0,#2b73d3 100%);
-webkit-box-shadow: 0 13px 40px 0 rgba(35,169,238,.4);
box-shadow: 0 13px 40px 0 rgba(35,169,238,.4);
-webkit-animation-duration: .3s;
animation-duration: .3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: lim_mini_zoomIn;
animation-name: lim_mini_zoomIn;
}
</style>
<footer class="common-footer">
<ul class="clearfix" style="width: 510px;">
<li><a href="<?php echo url('/aboutus'); ?>">关于我们</a></li>
<li><a href="<?php echo url('/aboutus/agreement'); ?>">用户协议</a></li>
<li><a href="<?php echo url('/join'); ?>">招聘信息</a></li>
<li><a href="<?php echo url('/contact'); ?>">联系我们</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div style="text-align:center; ">Copyright © 2018 <a href="/" target="_blank">重庆三丫互娱网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank">渝ICP备19002633号-1</a><br>统一社会信用代码 91500103MA6089GG94</div>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/wen.png" style="float:left;width:20px;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">互联网文化经营单位</p ></a>
</div>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/f.png" style="float:left;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002432号</p ></a>
</div>
<a target="_blank" href="https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002">
<div id="customer" class="_link" style="display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;">
<div id="lim_mini_icon" style="position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;">
<div id="lim_mini_new" style="height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;">
</div>
</div>
</div>
</a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery.1.9.1.min.js"></script>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
<?php /*a:4:{s:71:"D:\PHPStormProject\3yakj\config/../template/home\index\Index\index.html";i:1648110176;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?> <?php /*a:4:{s:71:"D:\PHPStormProject\3yakj\config/../template/home\index\Index\index.html";i:1648174468;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?>
<html> <html>
<head> <head>
<title>朱贝—全民娱乐直播平台</title> <title>朱贝—全民娱乐直播平台</title>
...@@ -491,54 +491,54 @@ ...@@ -491,54 +491,54 @@
<!-- <h2 class="tit">用视频认识我</h2>--> <!-- <h2 class="tit">用视频认识我</h2>-->
<!-- <p class="note">三丫互娱 | 新秀娱乐</p>--> <!-- <p class="note">三丫互娱 | 新秀娱乐</p>-->
<!-- <ul class="clearfix">--> <!-- <ul class="clearfix">-->
<!-- <li><img class="te" src="/static/common/img/1290.png"></li>--> <!-- <li><img class="te" style="margin-top: 3px;" src="/static/common/img/1290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/2290.png"></li>--> <!-- <li><img class="te" style="margin-top: 3px;" src="/static/common/img/2290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/3290.png"></li>--> <!-- <li><img class="te" style="margin-top: 3px;" src="/static/common/img/3290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/4290.png"></li>--> <!-- <li><img class="te" style="margin-top: 3px;" src="/static/common/img/4290.png"></li>-->
<!-- </ul>--> <!-- </ul>-->
<!-- </section>--> <!-- </section>-->
<!-- <section class="sec-2"> <!-- <section class="sec-2">-->
<h2 class="tit">年轻人的社交选择</h2> <!-- <h2 class="tit">年轻人的社交选择</h2>-->
<p class="note">三丫互娱 | 朱贝娱乐<br></p> <!-- <p class="note">三丫互娱 | 朱贝娱乐<br></p>-->
<div class="photo-wall" id="photo-wall"> <!-- <div class="photo-wall" id="photo-wall">-->
<ul class="wall-pace"> <!-- <ul class="wall-pace">-->
<li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716"> <!-- <li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716">-->
<img class="te" src="/static/common/img/1.jpg"></li> <!-- <img class="te" src="/static/common/img/1.jpg"></li>-->
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716"> <!-- <li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716">-->
<img class="te" src="/static/common/img/2.png"> <!-- <img class="te" src="/static/common/img/2.png">-->
</li> <!-- </li>-->
<li class="sq-lg gg" href="https://wap.fjkankan.com/zhibo?roomnumber=76533387"> <!-- <li class="sq-lg gg" href="https://wap.fjkankan.com/zhibo?roomnumber=76533387">-->
<img class="te" src="/static/common/img/3.jpg"> <!-- <img class="te" src="/static/common/img/3.jpg">-->
</li> <!-- </li>-->
<li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48281734"> <!-- <li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48281734">-->
<img class="te" src="/static/common/img/4.jpg"></li> <!-- <img class="te" src="/static/common/img/4.jpg"></li>-->
</ul> <!-- </ul>-->
<ul class="wall-pace"> <!-- <ul class="wall-pace">-->
<li class="sq-lg gg"> <!-- <li class="sq-lg gg">-->
<img class="te" src="/static/common/img/7.jpg"> <!-- <img class="te" src="/static/common/img/7.jpg">-->
</li> <!-- </li>-->
<li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=26062203"> <!-- <li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=26062203">-->
<img class="te" src="/static/common/img/8.jpg"></li> <!-- <img class="te" src="/static/common/img/8.jpg"></li>-->
<li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=49892134"> <!-- <li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=49892134">-->
<img class="te" src="/static/common/img/5.jpg"></li> <!-- <img class="te" src="/static/common/img/5.jpg"></li>-->
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095"> <!-- <li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095">-->
<img class="te" src="/static/common/img/6.jpg"> <!-- <img class="te" src="/static/common/img/6.jpg">-->
</li> <!-- </li>-->
</ul> <!-- </ul>-->
<ul class="wall-pace"> <!-- <ul class="wall-pace">-->
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095"> <!-- <li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095">-->
<img class="te" src="/static/common/img/10.jpg"> <!-- <img class="te" src="/static/common/img/10.jpg">-->
</li> <!-- </li>-->
<li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=64343767"> <!-- <li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=64343767">-->
<img class="te" src="/static/common/img/9.jpg"></li> <!-- <img class="te" src="/static/common/img/9.jpg"></li>-->
<li class="rect-y wall-last-3 gg"> <!-- <li class="rect-y wall-last-3 gg">-->
<img class="te" src="/static/common/img/12.jpg"></li> <!-- <img class="te" src="/static/common/img/12.jpg"></li>-->
<li class="sq-lg wall-last-4 gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48041785"> <!-- <li class="sq-lg wall-last-4 gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48041785">-->
<img class="te" src="/static/common/img/11.jpg"> <!-- <img class="te" src="/static/common/img/11.jpg">-->
</li> <!-- </li>-->
</ul> <!-- </ul>-->
</div> <!-- </div>-->
</section>--> <!-- </section>-->
<section id="downloads" name="downloads" class="sec-3"> <section id="downloads" name="downloads" class="sec-3">
<?php if(empty($app_list) || (($app_list instanceof \think\Collection || $app_list instanceof \think\Paginator ) && $app_list->isEmpty())): else: ?> <?php if(empty($app_list) || (($app_list instanceof \think\Collection || $app_list instanceof \think\Paginator ) && $app_list->isEmpty())): else: ?>
<h2 class="tit">根据你的手机,选择下载</h2> <h2 class="tit">根据你的手机,选择下载</h2>
......
<?php /*a:4:{s:69:"D:\PHPStormProject\3yakj\config/../template/home\about\agreement.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?>
<html>
<head>
<title>朱贝-全民娱乐直播平台</title>
<meta name="chinaz-site-verification" content="AC2EF776C208BC35">
<meta name="keywords" content="朱贝、朱贝软件、短视频直播、娱乐直播"/>
<meta name="description" content="朱贝是一款由三丫互娱专注于打造全民娱乐直播平台。多功能直播间互动、便捷分享模式,给你带来不同直播互动体验。互动视频娱乐直播交友,汇集各类优秀主播在线互动,24小时不间断嗨歌热舞,为您带来超凡体验!" />
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
<link type="text/css" rel="stylesheet" href="/static/home/css/swiper3.07.min.css">
<style>
.wrapper{overflow:hidden}
.banner{background:#1e78eb;height:540px;padding-top: 120px;}
.banner .page-1{width: 960px;height: 540px;margin: 0 auto;position:relative;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner a,.banner a:hover{text-decoration: none;cursor: pointer;}
.banner .play-btn{width: 84px;height: 84px;display: block;background:url(/static/common/img/play.png) 0 0 no-repeat;left:50%;position: absolute;top: 165px;z-index:2000;margin-left: 114px;cursor:pointer;}
.banner .play-btn,.banner .play-close-btn{display: block;}
.banner .play-close-btn{width:52px;height:52px;background:url(/static/common/img/close.jpg) 0 0 no-repeat;position: absolute;right:0;top:0;z-index:30000;opacity:0;}
.banner .page-2:hover .play-close-btn{opacity:1;}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.banner .play-close-btn {
right:2px;
}
}
.banner .banner-btn{width: 105px;height:51px;display: inline-block;border:2px solid #fff;font-size:20px;line-height:51px;padding-left:65px;}
.banner .download-btn{color:#267be5;background: #fff url(/static/common/img/icon.1.1.png) 21px -57px no-repeat;}
.banner .member-center{color:#fff;background:url(/static/common/img/icon.1.1.png) 20px -163px no-repeat;margin-left:26px;}
.banner .ad-link{color:#fff;background:url(/static/common/img/icon.1.1.png) -250px -32px no-repeat;margin-left:26px;}
.live-guild{
color:#fff;
background:url("/static/common/img/people.png") no-repeat;
background-position:18px 8px;
margin-left:26px;
}
.microvideo{
color:#fff;
background:url("/static/common/img/vedio.png") no-repeat;
background-position:18px 8px;
margin-left:26px;
}
#entryCon{
display:flex;
position:absolute;
justify-content:space-between;
flex-wrap: nowrap;
top:398px;
left:0px;
}
.banner object{position:relative;z-index:1000;}
.banner .page-2{position:absolute;z-index:3000;left:629px;top:240px;left:455px\0;top:190px\0;*left:456px;*top:190px;text-align: center;padding:6px;width:0;height:0;background:#0d0d0d;opacity:0;overflow:hidden;-webkit-transition: all 0.3s;transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.banner .page-2 .jwlogo{display:none;}
.banner.videoplaying .page-1 .bg{background:#267be5;}
.banner.videoplaying .page-2{opacity:1;width: 948px;height: 528px;top:0;left:0;}
.banner .qr-code-con{width:121px;height:121px;border:2px solid #fff;position:absolute;top: 341px;left: 198px;}
.banner .qr-code-con .qr-code{margin:12px;}
.banner .qr-code-con .qr-note{color:#fff;font-size:20px;position:absolute;bottom:-36px;width:100%;text-align:center;}
.banner .qr-code-con .qr-code img{display:block;width:100%;height:100%;background: #fff;}
.tit{font-size:30px;color: #4a4a4a;font-weight: 100;height: 30px;line-height:30px;}
.tit a{display: block;color: #434343;text-decoration: none;}
.note{font-size:20px;line-height:20px;color: #6f6f6f;font-weight: 100;margin: 22px 0 80px;}
.sec-1 {padding-left:10px;}
.sec-1 li{float: left;margin-right:3px;}
.sec-1 li img{display: block;}
.high-blue{color:#007aff;}
.sec-3 ul{margin: 75px auto 0;width: 1020px;}
.sec-3 li{float: left;margin-right:10px;width:243px;height:243px;border:1px solid #e4e4e4;color:#8b8a8a;font-family:'Myriad Pro';font-size:18px;background-color:#fff;-webkit-transition: all 0.3s;-transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.sec-3 .icon{width:43px;height:50px;display:block;margin:0px auto 18px;}
.sec-3 .icon.ios{background:url(/static/common/img/icon.1.1.png) 0 0 no-repeat;}
.sec-3 .icon.android{background:url(/static/common/img/icon.1.1.png) -78px 0 no-repeat;}
.sec-3 .icon.wp{background:url(/static/common/img/icon.1.1.png) -155px 0 no-repeat;}
.sec-3 a{text-decoration: none;display: block;color:#8b8a8a;height:174px;padding-top:70px;-webkit-transition: all 0.3s;-transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.sec-3 li.qr-code img{margin-top:70px}
.sec-3 li.qr-code p{font-size: 12px;margin-top: -8px;}
.sec-3 li.down.on {background-color:#007aff;box-shadow: 5px 15px 30px rgba(0,0,0,.3);border:1px solid #007aff;}
.sec-3 li.down.on a{color:#fff;}
.sec-3 li.down.on .icon.ios{background:url(/static/common/img/icon.1.1.png) 0 -110px no-repeat;}
.sec-3 li.down.on .icon.android{background:url(/static/common/img/icon.1.1.png) -77px -111px no-repeat;}
.sec-3 li.down.on .icon.wp{background:url(/static/common/img/icon.1.1.png) -154px -110px no-repeat;}
.sec-3.download-popup{width:690px;height:374px;background:#ffffff;padding-top:1px;}
.sec-3.download-popup li{width:134px;height:134px;margin-right:25px;}
.sec-3.download-popup ul{margin:106px 0px 0px 38px;}
.sec-3.download-popup a{padding-top:24px;height:110px;}
.sec-3.download-popup li.qr-code img{margin-top: 15px;}
.sec-4 {margin-bottom:180px;}
.sec-4 ul{width: 1020px;margin: 0 auto;}
.sec-4 li{width: 259px;height:140px;border-left:1px dashed #9d9d9d;text-align: left;padding-left:20px;padding-right:60px;float:left;}
.sec-4 li .tit{color:#434343;font-size: 22px;position: relative;padding-bottom:5px;}
.sec-4 li .tit .arrows{background: url(/static/common/img/icon.1.1.png) -176px -69px no-repeat;width: 25px;height: 25px;display: block;position: absolute;right: 0px;top: 7px;}
.sec-4 li .con{color:#8a8a8a;font-size: 14px;line-height:26px;width: 230px;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
.sec-4 li .con a{text-decoration: none;color:#8a8a8a;font-size: 14px;}
.sec-4 li .con a:hover{color:#00A2FF;}
.screen{width: 200px;height: 345px;position: absolute;left: 50%;margin-left: 29px;top: 218px;overflow:hidden;}
.scroll-img{position:absolute;}
/**
* 照片墙
*/
div,ul,li,img,dl,dt,dd{margin: 0;padding: 0;}
.photo-wall{width: 1200px;padding: 0 7px;overflow: hidden;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;}
.wall-pace{width: 392px;list-style: none;overflow: hidden;float: left;position: relative;}
.wall-pace li{position: relative;float: left;margin: 0 5px 5px 0;overflow: hidden;background: #efefef}
.wall-last-3{position: absolute !important;top: 151px;}
.wall-last-4{margin-left: 128px !important;}
.wall-pace img{width: 100%;height: 100%;position: absolute;top:0;left: 0}
.wall-pace .sq-sm{width: 145px;height: 145px;}
.wall-pace .rect-x,.intr-x{width: 235px;height: 146px;}
.wall-pace .sq-lg{width: 258px;height: 258px;}
.wall-pace .rect-y{width: 123px;height: 258px;}
.intr-x,.intr-s{padding: 8px;color: #fff;background: rgb(1,122,255);position: absolute;top: 100%;}
.intr-x{padding-top: 12px; width: 219px;}
.intr-s{width: 242px;height: 128px;}
.wall-pace dl{text-align: left;}
.wall-pace dt{font-size: 22px;line-height: 44px;}
.wall-pace dd{font-size: 14px;line-height: 24px;overflow: hidden;white-space: nowrap;text-overflow:ellipsis;}
.banner .youku-btn{top: 339px;background: none;color: #fff;width: 125px;margin-left: 96px;cursor: pointer;height: 20px;}
.ad-identity{position: fixed;right: 28px;top: 50px;width: 38px;height:21px;z-index: 99999;}
.ad-identity-bg{
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
background: #000;opacity:0.17;
}
.ad-identity-text{
position: absolute;
top:0;
left: 0;
color: #fff;
font-size: 13px;
width: 100%;
height: 100%;
text-align: center;
line-height: 21px;
}
.page-2 .ad-identity{
position: absolute;
right: 55px;
top: 10px;
}
.quest-mobile-link{
display: inline-block;
color: #6f6f6f;
font-size: 12px;
font-weight: 100;
line-height: 20px;
padding-top: 16px;
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>关于我们</title>
<style>
.wrapper{padding-top: 120px;}
.line{border: 0;height: 1px;background-color: #e4e4e4;}
nav {width:960px;line-height:110px;margin:0 auto;}
nav li{float: left;color:#6f6f6f;font-size:16px;margin-right:75px;height: 80px;}
nav li.on{border-bottom:3px solid #1e78e7;}
nav li a{text-decoration: none;color:#6f6f6f;}
section{width: 880px;margin: 45px auto 0;padding: 0 40px;}
h1{color:#2e2e2e;font-size:24px;text-align: center;}
.common-footer{margin-top:123px;}
h2{color:#5a5959;font-size:22px;text-align:center;font-weight:normal;margin-bottom:39px;}
section.info-sec{width:960px;margin:0px auto;font-size:14px;margin-top:100px;}
.info-sec p,.info-sec li{color:#5a5959;margin-bottom:9px;}
section.info-sec-1{ text-align:center;margin-top:100px;}
section.info-sec-2{margin-top:150px;}
section.info-sec-3{margin-top:150px;text-align:center;}
.info-sec-1 .f22{font-size:22px;}
.timeline{width:463px;position:relative;}
.timeline2{margin-left:484px;margin-top:15px;}
.timeline3{margin-top:-55px;}
.timeline4{margin-left:484px;margin-top:-55px;}
.timeline5{margin-top:35px;}
.timeline6{margin-top:-52px;}
.timeline8{margin-top:-50px;}
.timeline .title{position:relative;padding-bottom:12px;background: url('/static/common/img/dotted-x.jpg') repeat-x left bottom;}
.timeline .title img{vertical-align: text-bottom;padding-right:13px;}
.timeline .title .title-text{
padding-right: 12px;
font-size: 36px;
display: inline-block;
line-height: 34px;
color: #7e7e7e;
height: 36px;
font-weight: bolder;
}
.info-sec-4 .title .title-text{font-size: 27px;}
.info-sec-4 .timeline2,.info-sec-4 .timeline4{margin-top: 25px;}
.info-sec-4 .timeline3{margin-top: -2px;}
.info-sec-4 .timeline5{margin-top: 60px;}
.info-sec-4 .timeline6{margin-top: 45px;}
.timeline .title .corner{position:absolute;width:13px;height:9px;bottom:0;}
.timeline1 .title .corner,.timeline3 .title .corner{right:-12px;background:url('/static/common/img/dotted-left.jpg');}
.timeline2 .title .corner,.timeline4 .title .corner,.timeline7 .title .corner{left:-13px;background:url('/static/common/img/dotted-right.jpg');}
.timeline .title .num{font-size:28px;margin-right:20px;color:#7e7e7e;}
.timeline li{padding-left:20px;}
.info-sec-4 .timeline li{padding-right: 94px;}
.tipline{width:3px;position:absolute;top:-93px;}
.timeline2 .tipline,.timeline4 .tipline,.timeline7 .tipline{left:-13px;}
{right:-13px;}
.timeline1 .tipline,.timeline3 .tipline,.timeline5 .tipline{right:-13px;}
.timeline2 .tipline,.timeline3 .tipline,.timeline4 .tipline{top:-57px;}
{right:-13px;}
/*.timeline5 .tipline{top: -142px;}*/
.tipline:after{content:"";height:13px;width:13px;background:#3988ea;position:absolute;top:-8px;left:-5px;}
.timeline1 .tipline:after{height:0;width:0;}
.tipline:after,.radius1000{
-webkit-border-radius:1000px;
-moz-border-radius:1000px;
-o-border-radius:1000px;
border-radius:1000px;
}
.tipline .head{width:13px;height:13px;background:#1e78e7;}
.tipline .tail{height:97px;background:url('/static/common/img/dotted-y.jpg');}
.timeline1 .tipline .tail,.timeline5 .tipline .tail{height:133px;}
.members{margin-top:10px;margin-bottom:20px;}
.members .mr1{margin-right:223px;*margin-left:120px;}
.members .mr2{margin-right:46px;}
.members .member.bigger{width:223px;*margin-bottom:70px;}
.members .member{width:184px;display:inline-block;*display:block;*float:left;}
.members .photo{width:184px;height:184px;margin-bottom:20px;position:relative;overflow:hidden;/*background:url('/static/w3-img/people.jpg?1398563117') no-repeat;*/}
.members .member .mltitle{font-size:20px;text-align:center;color:#5B5B5B;line-height:24px;}
.members .member .msub{font-size:14px;text-align:center;color:#646464;}
.members .ty{width:223px;height:223px;background:url('/static/common/img/ty.jpg');}
.members .zxs{width:223px;height:223px;background:url('/static/common/img/zxs.jpg');}
.members .zjp{width:223px;height:223px;background:url('/static/common/img/zjp.jpg');}
.members .zsc{background:url('/static/common/img/zsc.jpg');}
.members .lzw{background:url('/static/common/img/lzw.jpg');}
.members .lxl{background:url('/static/common/img/lxl.jpg');*margin-left:20px;}
.members .wl{background:url('/static/common/img/wl.jpg');}
.members .photo .cover{position:absolute;top:0;left:0;opacity:0.8;display:none;}
.members .photo.on .cover{top:0px;}
.timeline7 {
margin-left: 484px;
margin-top: -75px;
}
.timeline7 .tipline .tail{height: 130px;}
.timeline3.timeLineNew3 .tipline{
top: -40px;
}
.timeline3.timeLineNew3 .tipline .tail{height: 80px;}
.timeline5 .tipline{top: -40px;}
.info-sec-4 .timeline5 .tipline{top: -93px;}
.timeline9{margin-top:-15px}
.timeline5 .tipline .tail{height:100px;}
.common-header{
margin-left: -560px;
}
.common-header li .service.business .down-list{
left: -3px;
}
</style>
</head>
<body class="white-bg">
<style>
.common-header {
margin-left: -560px;
width: 1000px;
}
.common-header li .service.business .down-list {
left: -3px;
}
<?php if(( !empty($logo_url))): ?>
.common-header {
background: url(<?php echo htmlentities($logo_url); ?>) -3px 37px no-repeat;
background-size: 18%;
}
<?php endif; if(( !empty($other_logo_url))): ?>
.white-bg .common-header {
background: url(<?php echo htmlentities($other_logo_url); ?>) -3px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<?php if(is_array($nav) || $nav instanceof \think\Collection || $nav instanceof \think\Paginator): $k = 0; $__LIST__ = $nav;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;if(!empty($vo['child'])): ?>
<li class="white-bg-service">
<span class="service">&nbsp;<?php echo htmlentities($vo['title']); ?>&nbsp;
<span class="down-list" style="position: relative;top: -30px;left: 0px;">
<span class="item colortext" style="left: -1px;width: 100%">
<a href="javascript:"><?php echo htmlentities($vo['title']); ?></a>
</span>
<?php if(is_array($vo['child']) || $vo['child'] instanceof \think\Collection || $vo['child'] instanceof \think\Paginator): $key = 0; $__LIST__ = $vo['child'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$child): $mod = ($key % 2 );++$key;?>
<span class="item">
<a href="<?php echo htmlentities($child['url']); ?>" <?php if($child['show_type']==1): ?>target="_blank"<?php endif; ?>><?php echo htmlentities($child['title']); ?></a>
</span>
<?php endforeach; endif; else: echo "" ;endif; ?>
</span>
</span>
<li>
<?php else: ?>
<li <?php if($k==1): ?>class="no-border"<?php else: ?>class="white-bg-service"<?php endif; ?>>
<a class="<?php echo htmlentities($vo['class']); ?> <?php echo $url==ucfirst($vo['class']) ? 'active' : ''; ?>" href="<?php echo htmlentities($vo['url']); ?>" <?php if($vo['show_type']==1): ?>target="_blank"<?php endif; ?>><?php echo htmlentities($vo['title']); ?></a>
</li>
<?php endif; ?>
<?php endforeach; endif; else: echo "" ;endif; ?>
</ul>
</header>
<script>
//由于未知bug导致child不为空的时候会生成一个空的li,这里删除
var ul = document.getElementsByClassName("clearfix");
var childList = ul[0].children;
for (var i = 0;i < childList.length ; i++){
if (childList[i].className === ''){
ul[0].removeChild(ul[0].children[i]);
}
}
</script>
<div class="wrapper">
<p class="line"></p>
<nav>
<ul class="clearfix">
<li class=""><a href="/aboutus/us.html" "="">关于我们</a></li>
<li class=" on "><a href="/aboutus/agreement.html" "="">用户协议</a></li>
<!-- <li class=""><a href="/aboutus/vipterms.html" "="">会员条款</a></li>-->
</ul>
</nav>
<section>
<?php echo htmlspecialchars_decode($agreement['content']); ?>
</section>
</div>
<style>
._link{
position: fixed;
_position: absolute;
bottom: 20px;
right: 20px;
z-index: 214748000;
width: 60px;
height: 60px;
border: 1px solid #ddd\0;
border-radius: 30px;
cursor: pointer;
background: #23a0ee;
background: -webkit-gradient(linear,left top,left bottom,from(#23a0ee),to(#2b73d3));
background: -o-linear-gradient(top,#23a0ee 0,#2b73d3 100%);
background: -webkit-linear-gradient(top,#23a0ee 0,#2b73d3 100%);
background: linear-gradient(to bottom,#23a0ee 0,#2b73d3 100%);
-webkit-box-shadow: 0 13px 40px 0 rgba(35,169,238,.4);
box-shadow: 0 13px 40px 0 rgba(35,169,238,.4);
-webkit-animation-duration: .3s;
animation-duration: .3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: lim_mini_zoomIn;
animation-name: lim_mini_zoomIn;
}
</style>
<footer class="common-footer">
<ul class="clearfix" style="width: 510px;">
<li><a href="<?php echo url('/aboutus'); ?>">关于我们</a></li>
<li><a href="<?php echo url('/aboutus/agreement'); ?>">用户协议</a></li>
<li><a href="<?php echo url('/join'); ?>">招聘信息</a></li>
<li><a href="<?php echo url('/contact'); ?>">联系我们</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div style="text-align:center; ">Copyright © 2018 <a href="/" target="_blank">重庆三丫互娱网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank">渝ICP备19002633号-1</a><br>统一社会信用代码 91500103MA6089GG94</div>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/wen.png" style="float:left;width:20px;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">互联网文化经营单位</p ></a>
</div>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/f.png" style="float:left;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002432号</p ></a>
</div>
<a target="_blank" href="https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002">
<div id="customer" class="_link" style="display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;">
<div id="lim_mini_icon" style="position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;">
<div id="lim_mini_new" style="height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;">
</div>
</div>
</div>
</a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery.1.9.1.min.js"></script>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
<script>
$(function(){
$('.common-header .aboutuson').addClass('on');
});
</script>
<?php /*a:4:{s:68:"D:\PHPStormProject\3yakj\config/../template/home\about\vipterms.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?>
<html>
<head>
<title>朱贝-全民娱乐直播平台</title>
<meta name="chinaz-site-verification" content="AC2EF776C208BC35">
<meta name="keywords" content="朱贝、朱贝软件、短视频直播、娱乐直播"/>
<meta name="description" content="朱贝是一款由三丫互娱专注于打造全民娱乐直播平台。多功能直播间互动、便捷分享模式,给你带来不同直播互动体验。互动视频娱乐直播交友,汇集各类优秀主播在线互动,24小时不间断嗨歌热舞,为您带来超凡体验!" />
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
<link type="text/css" rel="stylesheet" href="/static/home/css/swiper3.07.min.css">
<style>
.wrapper{overflow:hidden}
.banner{background:#1e78eb;height:540px;padding-top: 120px;}
.banner .page-1{width: 960px;height: 540px;margin: 0 auto;position:relative;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner a,.banner a:hover{text-decoration: none;cursor: pointer;}
.banner .play-btn{width: 84px;height: 84px;display: block;background:url(/static/common/img/play.png) 0 0 no-repeat;left:50%;position: absolute;top: 165px;z-index:2000;margin-left: 114px;cursor:pointer;}
.banner .play-btn,.banner .play-close-btn{display: block;}
.banner .play-close-btn{width:52px;height:52px;background:url(/static/common/img/close.jpg) 0 0 no-repeat;position: absolute;right:0;top:0;z-index:30000;opacity:0;}
.banner .page-2:hover .play-close-btn{opacity:1;}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.banner .play-close-btn {
right:2px;
}
}
.banner .banner-btn{width: 105px;height:51px;display: inline-block;border:2px solid #fff;font-size:20px;line-height:51px;padding-left:65px;}
.banner .download-btn{color:#267be5;background: #fff url(/static/common/img/icon.1.1.png) 21px -57px no-repeat;}
.banner .member-center{color:#fff;background:url(/static/common/img/icon.1.1.png) 20px -163px no-repeat;margin-left:26px;}
.banner .ad-link{color:#fff;background:url(/static/common/img/icon.1.1.png) -250px -32px no-repeat;margin-left:26px;}
.live-guild{
color:#fff;
background:url("/static/common/img/people.png") no-repeat;
background-position:18px 8px;
margin-left:26px;
}
.microvideo{
color:#fff;
background:url("/static/common/img/vedio.png") no-repeat;
background-position:18px 8px;
margin-left:26px;
}
#entryCon{
display:flex;
position:absolute;
justify-content:space-between;
flex-wrap: nowrap;
top:398px;
left:0px;
}
.banner object{position:relative;z-index:1000;}
.banner .page-2{position:absolute;z-index:3000;left:629px;top:240px;left:455px\0;top:190px\0;*left:456px;*top:190px;text-align: center;padding:6px;width:0;height:0;background:#0d0d0d;opacity:0;overflow:hidden;-webkit-transition: all 0.3s;transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.banner .page-2 .jwlogo{display:none;}
.banner.videoplaying .page-1 .bg{background:#267be5;}
.banner.videoplaying .page-2{opacity:1;width: 948px;height: 528px;top:0;left:0;}
.banner .qr-code-con{width:121px;height:121px;border:2px solid #fff;position:absolute;top: 341px;left: 198px;}
.banner .qr-code-con .qr-code{margin:12px;}
.banner .qr-code-con .qr-note{color:#fff;font-size:20px;position:absolute;bottom:-36px;width:100%;text-align:center;}
.banner .qr-code-con .qr-code img{display:block;width:100%;height:100%;background: #fff;}
.tit{font-size:30px;color: #4a4a4a;font-weight: 100;height: 30px;line-height:30px;}
.tit a{display: block;color: #434343;text-decoration: none;}
.note{font-size:20px;line-height:20px;color: #6f6f6f;font-weight: 100;margin: 22px 0 80px;}
.sec-1 {padding-left:10px;}
.sec-1 li{float: left;margin-right:3px;}
.sec-1 li img{display: block;}
.high-blue{color:#007aff;}
.sec-3 ul{margin: 75px auto 0;width: 1020px;}
.sec-3 li{float: left;margin-right:10px;width:243px;height:243px;border:1px solid #e4e4e4;color:#8b8a8a;font-family:'Myriad Pro';font-size:18px;background-color:#fff;-webkit-transition: all 0.3s;-transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.sec-3 .icon{width:43px;height:50px;display:block;margin:0px auto 18px;}
.sec-3 .icon.ios{background:url(/static/common/img/icon.1.1.png) 0 0 no-repeat;}
.sec-3 .icon.android{background:url(/static/common/img/icon.1.1.png) -78px 0 no-repeat;}
.sec-3 .icon.wp{background:url(/static/common/img/icon.1.1.png) -155px 0 no-repeat;}
.sec-3 a{text-decoration: none;display: block;color:#8b8a8a;height:174px;padding-top:70px;-webkit-transition: all 0.3s;-transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.sec-3 li.qr-code img{margin-top:70px}
.sec-3 li.qr-code p{font-size: 12px;margin-top: -8px;}
.sec-3 li.down.on {background-color:#007aff;box-shadow: 5px 15px 30px rgba(0,0,0,.3);border:1px solid #007aff;}
.sec-3 li.down.on a{color:#fff;}
.sec-3 li.down.on .icon.ios{background:url(/static/common/img/icon.1.1.png) 0 -110px no-repeat;}
.sec-3 li.down.on .icon.android{background:url(/static/common/img/icon.1.1.png) -77px -111px no-repeat;}
.sec-3 li.down.on .icon.wp{background:url(/static/common/img/icon.1.1.png) -154px -110px no-repeat;}
.sec-3.download-popup{width:690px;height:374px;background:#ffffff;padding-top:1px;}
.sec-3.download-popup li{width:134px;height:134px;margin-right:25px;}
.sec-3.download-popup ul{margin:106px 0px 0px 38px;}
.sec-3.download-popup a{padding-top:24px;height:110px;}
.sec-3.download-popup li.qr-code img{margin-top: 15px;}
.sec-4 {margin-bottom:180px;}
.sec-4 ul{width: 1020px;margin: 0 auto;}
.sec-4 li{width: 259px;height:140px;border-left:1px dashed #9d9d9d;text-align: left;padding-left:20px;padding-right:60px;float:left;}
.sec-4 li .tit{color:#434343;font-size: 22px;position: relative;padding-bottom:5px;}
.sec-4 li .tit .arrows{background: url(/static/common/img/icon.1.1.png) -176px -69px no-repeat;width: 25px;height: 25px;display: block;position: absolute;right: 0px;top: 7px;}
.sec-4 li .con{color:#8a8a8a;font-size: 14px;line-height:26px;width: 230px;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
.sec-4 li .con a{text-decoration: none;color:#8a8a8a;font-size: 14px;}
.sec-4 li .con a:hover{color:#00A2FF;}
.screen{width: 200px;height: 345px;position: absolute;left: 50%;margin-left: 29px;top: 218px;overflow:hidden;}
.scroll-img{position:absolute;}
/**
* 照片墙
*/
div,ul,li,img,dl,dt,dd{margin: 0;padding: 0;}
.photo-wall{width: 1200px;padding: 0 7px;overflow: hidden;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;}
.wall-pace{width: 392px;list-style: none;overflow: hidden;float: left;position: relative;}
.wall-pace li{position: relative;float: left;margin: 0 5px 5px 0;overflow: hidden;background: #efefef}
.wall-last-3{position: absolute !important;top: 151px;}
.wall-last-4{margin-left: 128px !important;}
.wall-pace img{width: 100%;height: 100%;position: absolute;top:0;left: 0}
.wall-pace .sq-sm{width: 145px;height: 145px;}
.wall-pace .rect-x,.intr-x{width: 235px;height: 146px;}
.wall-pace .sq-lg{width: 258px;height: 258px;}
.wall-pace .rect-y{width: 123px;height: 258px;}
.intr-x,.intr-s{padding: 8px;color: #fff;background: rgb(1,122,255);position: absolute;top: 100%;}
.intr-x{padding-top: 12px; width: 219px;}
.intr-s{width: 242px;height: 128px;}
.wall-pace dl{text-align: left;}
.wall-pace dt{font-size: 22px;line-height: 44px;}
.wall-pace dd{font-size: 14px;line-height: 24px;overflow: hidden;white-space: nowrap;text-overflow:ellipsis;}
.banner .youku-btn{top: 339px;background: none;color: #fff;width: 125px;margin-left: 96px;cursor: pointer;height: 20px;}
.ad-identity{position: fixed;right: 28px;top: 50px;width: 38px;height:21px;z-index: 99999;}
.ad-identity-bg{
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
background: #000;opacity:0.17;
}
.ad-identity-text{
position: absolute;
top:0;
left: 0;
color: #fff;
font-size: 13px;
width: 100%;
height: 100%;
text-align: center;
line-height: 21px;
}
.page-2 .ad-identity{
position: absolute;
right: 55px;
top: 10px;
}
.quest-mobile-link{
display: inline-block;
color: #6f6f6f;
font-size: 12px;
font-weight: 100;
line-height: 20px;
padding-top: 16px;
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>关于我们</title>
<style>
.wrapper{padding-top: 120px;}
.line{border: 0;height: 1px;background-color: #e4e4e4;}
nav {width:960px;line-height:110px;margin:0 auto;}
nav li{float: left;color:#6f6f6f;font-size:16px;margin-right:75px;height: 80px;}
nav li.on{border-bottom:3px solid #1e78e7;}
nav li a{text-decoration: none;color:#6f6f6f;}
section{width: 880px;margin: 45px auto 0;padding: 0 40px;}
h1{color:#2e2e2e;font-size:24px;text-align: center;}
.common-footer{margin-top:123px;}
h2{color:#5a5959;font-size:22px;text-align:center;font-weight:normal;margin-bottom:39px;}
section.info-sec{width:960px;margin:0px auto;font-size:14px;margin-top:100px;}
.info-sec p,.info-sec li{color:#5a5959;margin-bottom:9px;}
section.info-sec-1{ text-align:center;margin-top:100px;}
section.info-sec-2{margin-top:150px;}
section.info-sec-3{margin-top:150px;text-align:center;}
.info-sec-1 .f22{font-size:22px;}
.timeline{width:463px;position:relative;}
.timeline2{margin-left:484px;margin-top:15px;}
.timeline3{margin-top:-55px;}
.timeline4{margin-left:484px;margin-top:-55px;}
.timeline5{margin-top:35px;}
.timeline6{margin-top:-52px;}
.timeline8{margin-top:-50px;}
.timeline .title{position:relative;padding-bottom:12px;background: url('/static/common/img/dotted-x.jpg') repeat-x left bottom;}
.timeline .title img{vertical-align: text-bottom;padding-right:13px;}
.timeline .title .title-text{
padding-right: 12px;
font-size: 36px;
display: inline-block;
line-height: 34px;
color: #7e7e7e;
height: 36px;
font-weight: bolder;
}
.info-sec-4 .title .title-text{font-size: 27px;}
.info-sec-4 .timeline2,.info-sec-4 .timeline4{margin-top: 25px;}
.info-sec-4 .timeline3{margin-top: -2px;}
.info-sec-4 .timeline5{margin-top: 60px;}
.info-sec-4 .timeline6{margin-top: 45px;}
.timeline .title .corner{position:absolute;width:13px;height:9px;bottom:0;}
.timeline1 .title .corner,.timeline3 .title .corner{right:-12px;background:url('/static/common/img/dotted-left.jpg');}
.timeline2 .title .corner,.timeline4 .title .corner,.timeline7 .title .corner{left:-13px;background:url('/static/common/img/dotted-right.jpg');}
.timeline .title .num{font-size:28px;margin-right:20px;color:#7e7e7e;}
.timeline li{padding-left:20px;}
.info-sec-4 .timeline li{padding-right: 94px;}
.tipline{width:3px;position:absolute;top:-93px;}
.timeline2 .tipline,.timeline4 .tipline,.timeline7 .tipline{left:-13px;}
{right:-13px;}
.timeline1 .tipline,.timeline3 .tipline,.timeline5 .tipline{right:-13px;}
.timeline2 .tipline,.timeline3 .tipline,.timeline4 .tipline{top:-57px;}
{right:-13px;}
/*.timeline5 .tipline{top: -142px;}*/
.tipline:after{content:"";height:13px;width:13px;background:#3988ea;position:absolute;top:-8px;left:-5px;}
.timeline1 .tipline:after{height:0;width:0;}
.tipline:after,.radius1000{
-webkit-border-radius:1000px;
-moz-border-radius:1000px;
-o-border-radius:1000px;
border-radius:1000px;
}
.tipline .head{width:13px;height:13px;background:#1e78e7;}
.tipline .tail{height:97px;background:url('/static/common/img/dotted-y.jpg');}
.timeline1 .tipline .tail,.timeline5 .tipline .tail{height:133px;}
.members{margin-top:10px;margin-bottom:20px;}
.members .mr1{margin-right:223px;*margin-left:120px;}
.members .mr2{margin-right:46px;}
.members .member.bigger{width:223px;*margin-bottom:70px;}
.members .member{width:184px;display:inline-block;*display:block;*float:left;}
.members .photo{width:184px;height:184px;margin-bottom:20px;position:relative;overflow:hidden;/*background:url('/static/w3-img/people.jpg?1398563117') no-repeat;*/}
.members .member .mltitle{font-size:20px;text-align:center;color:#5B5B5B;line-height:24px;}
.members .member .msub{font-size:14px;text-align:center;color:#646464;}
.members .ty{width:223px;height:223px;background:url('/static/common/img/ty.jpg');}
.members .zxs{width:223px;height:223px;background:url('/static/common/img/zxs.jpg');}
.members .zjp{width:223px;height:223px;background:url('/static/common/img/zjp.jpg');}
.members .zsc{background:url('/static/common/img/zsc.jpg');}
.members .lzw{background:url('/static/common/img/lzw.jpg');}
.members .lxl{background:url('/static/common/img/lxl.jpg');*margin-left:20px;}
.members .wl{background:url('/static/common/img/wl.jpg');}
.members .photo .cover{position:absolute;top:0;left:0;opacity:0.8;display:none;}
.members .photo.on .cover{top:0px;}
.timeline7 {
margin-left: 484px;
margin-top: -75px;
}
.timeline7 .tipline .tail{height: 130px;}
.timeline3.timeLineNew3 .tipline{
top: -40px;
}
.timeline3.timeLineNew3 .tipline .tail{height: 80px;}
.timeline5 .tipline{top: -40px;}
.info-sec-4 .timeline5 .tipline{top: -93px;}
.timeline9{margin-top:-15px}
.timeline5 .tipline .tail{height:100px;}
.common-header{
margin-left: -560px;
}
.common-header li .service.business .down-list{
left: -3px;
}
</style>
</head>
<body class="white-bg">
<style>
.common-header {
margin-left: -560px;
width: 1000px;
}
.common-header li .service.business .down-list {
left: -3px;
}
<?php if(( !empty($logo_url))): ?>
.common-header {
background: url(<?php echo htmlentities($logo_url); ?>) -3px 37px no-repeat;
background-size: 18%;
}
<?php endif; if(( !empty($other_logo_url))): ?>
.white-bg .common-header {
background: url(<?php echo htmlentities($other_logo_url); ?>) -3px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<?php if(is_array($nav) || $nav instanceof \think\Collection || $nav instanceof \think\Paginator): $k = 0; $__LIST__ = $nav;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;if(!empty($vo['child'])): ?>
<li class="white-bg-service">
<span class="service">&nbsp;<?php echo htmlentities($vo['title']); ?>&nbsp;
<span class="down-list" style="position: relative;top: -30px;left: 0px;">
<span class="item colortext" style="left: -1px;width: 100%">
<a href="javascript:"><?php echo htmlentities($vo['title']); ?></a>
</span>
<?php if(is_array($vo['child']) || $vo['child'] instanceof \think\Collection || $vo['child'] instanceof \think\Paginator): $key = 0; $__LIST__ = $vo['child'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$child): $mod = ($key % 2 );++$key;?>
<span class="item">
<a href="<?php echo htmlentities($child['url']); ?>" <?php if($child['show_type']==1): ?>target="_blank"<?php endif; ?>><?php echo htmlentities($child['title']); ?></a>
</span>
<?php endforeach; endif; else: echo "" ;endif; ?>
</span>
</span>
<li>
<?php else: ?>
<li <?php if($k==1): ?>class="no-border"<?php else: ?>class="white-bg-service"<?php endif; ?>>
<a class="<?php echo htmlentities($vo['class']); ?> <?php echo $url==ucfirst($vo['class']) ? 'active' : ''; ?>" href="<?php echo htmlentities($vo['url']); ?>" <?php if($vo['show_type']==1): ?>target="_blank"<?php endif; ?>><?php echo htmlentities($vo['title']); ?></a>
</li>
<?php endif; ?>
<?php endforeach; endif; else: echo "" ;endif; ?>
</ul>
</header>
<script>
//由于未知bug导致child不为空的时候会生成一个空的li,这里删除
var ul = document.getElementsByClassName("clearfix");
var childList = ul[0].children;
for (var i = 0;i < childList.length ; i++){
if (childList[i].className === ''){
ul[0].removeChild(ul[0].children[i]);
}
}
</script>
<div class="wrapper">
<p class="line"></p>
<nav>
<ul class="clearfix">
<li class=""><a href="/aboutus/us.html" "="">关于我们</a></li>
<li class=""><a href="/aboutus/agreement.html" "="">用户协议</a></li>
<!-- <li class=" on "><a href="/aboutus/vipterms.html" "="">会员条款</a></li>-->
</ul>
</nav>
<section>
<?php echo htmlspecialchars_decode($vipterms['content']); ?>
</section>
</div>
<style>
._link{
position: fixed;
_position: absolute;
bottom: 20px;
right: 20px;
z-index: 214748000;
width: 60px;
height: 60px;
border: 1px solid #ddd\0;
border-radius: 30px;
cursor: pointer;
background: #23a0ee;
background: -webkit-gradient(linear,left top,left bottom,from(#23a0ee),to(#2b73d3));
background: -o-linear-gradient(top,#23a0ee 0,#2b73d3 100%);
background: -webkit-linear-gradient(top,#23a0ee 0,#2b73d3 100%);
background: linear-gradient(to bottom,#23a0ee 0,#2b73d3 100%);
-webkit-box-shadow: 0 13px 40px 0 rgba(35,169,238,.4);
box-shadow: 0 13px 40px 0 rgba(35,169,238,.4);
-webkit-animation-duration: .3s;
animation-duration: .3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: lim_mini_zoomIn;
animation-name: lim_mini_zoomIn;
}
</style>
<footer class="common-footer">
<ul class="clearfix" style="width: 510px;">
<li><a href="<?php echo url('/aboutus'); ?>">关于我们</a></li>
<li><a href="<?php echo url('/aboutus/agreement'); ?>">用户协议</a></li>
<li><a href="<?php echo url('/join'); ?>">招聘信息</a></li>
<li><a href="<?php echo url('/contact'); ?>">联系我们</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div style="text-align:center; ">Copyright © 2018 <a href="/" target="_blank">重庆三丫互娱网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank">渝ICP备19002633号-1</a><br>统一社会信用代码 91500103MA6089GG94</div>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/wen.png" style="float:left;width:20px;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">互联网文化经营单位</p ></a>
</div>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/f.png" style="float:left;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002432号</p ></a>
</div>
<a target="_blank" href="https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002">
<div id="customer" class="_link" style="display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;">
<div id="lim_mini_icon" style="position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;">
<div id="lim_mini_new" style="height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;">
</div>
</div>
</div>
</a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery.1.9.1.min.js"></script>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
<script>
$(function(){
$('.common-header .aboutuson').addClass('on');
});
</script>
<?php /*a:4:{s:70:"D:\PHPStormProject\3yakj\config/../template/home\servicehelp\help.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?> <?php /*a:4:{s:70:"D:\PHPStormProject\3yakj\config/../template/home\servicehelp\help.html";i:1648191981;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?>
<html> <html>
<head> <head>
<title>朱贝-全民娱乐直播平台</title> <title>朱贝-全民娱乐直播平台</title>
...@@ -409,6 +409,7 @@ ...@@ -409,6 +409,7 @@
</div> </div>
<?php endforeach; endif; else: echo "" ;endif; ?> <?php endforeach; endif; else: echo "" ;endif; ?>
</div> </div>
<?php if(!empty($question_cate_list)): ?>
<div class="usercontext"> <div class="usercontext">
<div class="tips-container"> <div class="tips-container">
<form id="search-form" method="get" action="/servicehelp/search.html"> <form id="search-form" method="get" action="/servicehelp/search.html">
...@@ -449,6 +450,7 @@ ...@@ -449,6 +450,7 @@
<?php endif; ?> <?php endif; ?>
</div> </div>
</div> </div>
<?php endif; ?>
</section> </section>
</div> </div>
......
<?php /*a:4:{s:67:"D:\PHPStormProject\3yakj\config/../template/home\about\aboutus.html";i:1648191499;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?>
<html>
<head>
<title>朱贝-全民娱乐直播平台</title>
<meta name="chinaz-site-verification" content="AC2EF776C208BC35">
<meta name="keywords" content="朱贝、朱贝软件、短视频直播、娱乐直播"/>
<meta name="description" content="朱贝是一款由三丫互娱专注于打造全民娱乐直播平台。多功能直播间互动、便捷分享模式,给你带来不同直播互动体验。互动视频娱乐直播交友,汇集各类优秀主播在线互动,24小时不间断嗨歌热舞,为您带来超凡体验!" />
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
<link type="text/css" rel="stylesheet" href="/static/home/css/swiper3.07.min.css">
<style>
.wrapper{overflow:hidden}
.banner{background:#1e78eb;height:540px;padding-top: 120px;}
.banner .page-1{width: 960px;height: 540px;margin: 0 auto;position:relative;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner a,.banner a:hover{text-decoration: none;cursor: pointer;}
.banner .play-btn{width: 84px;height: 84px;display: block;background:url(/static/common/img/play.png) 0 0 no-repeat;left:50%;position: absolute;top: 165px;z-index:2000;margin-left: 114px;cursor:pointer;}
.banner .play-btn,.banner .play-close-btn{display: block;}
.banner .play-close-btn{width:52px;height:52px;background:url(/static/common/img/close.jpg) 0 0 no-repeat;position: absolute;right:0;top:0;z-index:30000;opacity:0;}
.banner .page-2:hover .play-close-btn{opacity:1;}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.banner .play-close-btn {
right:2px;
}
}
.banner .banner-btn{width: 105px;height:51px;display: inline-block;border:2px solid #fff;font-size:20px;line-height:51px;padding-left:65px;}
.banner .download-btn{color:#267be5;background: #fff url(/static/common/img/icon.1.1.png) 21px -57px no-repeat;}
.banner .member-center{color:#fff;background:url(/static/common/img/icon.1.1.png) 20px -163px no-repeat;margin-left:26px;}
.banner .ad-link{color:#fff;background:url(/static/common/img/icon.1.1.png) -250px -32px no-repeat;margin-left:26px;}
.live-guild{
color:#fff;
background:url("/static/common/img/people.png") no-repeat;
background-position:18px 8px;
margin-left:26px;
}
.microvideo{
color:#fff;
background:url("/static/common/img/vedio.png") no-repeat;
background-position:18px 8px;
margin-left:26px;
}
#entryCon{
display:flex;
position:absolute;
justify-content:space-between;
flex-wrap: nowrap;
top:398px;
left:0px;
}
.banner object{position:relative;z-index:1000;}
.banner .page-2{position:absolute;z-index:3000;left:629px;top:240px;left:455px\0;top:190px\0;*left:456px;*top:190px;text-align: center;padding:6px;width:0;height:0;background:#0d0d0d;opacity:0;overflow:hidden;-webkit-transition: all 0.3s;transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.banner .page-2 .jwlogo{display:none;}
.banner.videoplaying .page-1 .bg{background:#267be5;}
.banner.videoplaying .page-2{opacity:1;width: 948px;height: 528px;top:0;left:0;}
.banner .qr-code-con{width:121px;height:121px;border:2px solid #fff;position:absolute;top: 341px;left: 198px;}
.banner .qr-code-con .qr-code{margin:12px;}
.banner .qr-code-con .qr-note{color:#fff;font-size:20px;position:absolute;bottom:-36px;width:100%;text-align:center;}
.banner .qr-code-con .qr-code img{display:block;width:100%;height:100%;background: #fff;}
.tit{font-size:30px;color: #4a4a4a;font-weight: 100;height: 30px;line-height:30px;}
.tit a{display: block;color: #434343;text-decoration: none;}
.note{font-size:20px;line-height:20px;color: #6f6f6f;font-weight: 100;margin: 22px 0 80px;}
.sec-1 {padding-left:10px;}
.sec-1 li{float: left;margin-right:3px;}
.sec-1 li img{display: block;}
.high-blue{color:#007aff;}
.sec-3 ul{margin: 75px auto 0;width: 1020px;}
.sec-3 li{float: left;margin-right:10px;width:243px;height:243px;border:1px solid #e4e4e4;color:#8b8a8a;font-family:'Myriad Pro';font-size:18px;background-color:#fff;-webkit-transition: all 0.3s;-transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.sec-3 .icon{width:43px;height:50px;display:block;margin:0px auto 18px;}
.sec-3 .icon.ios{background:url(/static/common/img/icon.1.1.png) 0 0 no-repeat;}
.sec-3 .icon.android{background:url(/static/common/img/icon.1.1.png) -78px 0 no-repeat;}
.sec-3 .icon.wp{background:url(/static/common/img/icon.1.1.png) -155px 0 no-repeat;}
.sec-3 a{text-decoration: none;display: block;color:#8b8a8a;height:174px;padding-top:70px;-webkit-transition: all 0.3s;-transition: all 0.3s;-ms-transition: all 0.3s;-moz-transition: all 0.3s;}
.sec-3 li.qr-code img{margin-top:70px}
.sec-3 li.qr-code p{font-size: 12px;margin-top: -8px;}
.sec-3 li.down.on {background-color:#007aff;box-shadow: 5px 15px 30px rgba(0,0,0,.3);border:1px solid #007aff;}
.sec-3 li.down.on a{color:#fff;}
.sec-3 li.down.on .icon.ios{background:url(/static/common/img/icon.1.1.png) 0 -110px no-repeat;}
.sec-3 li.down.on .icon.android{background:url(/static/common/img/icon.1.1.png) -77px -111px no-repeat;}
.sec-3 li.down.on .icon.wp{background:url(/static/common/img/icon.1.1.png) -154px -110px no-repeat;}
.sec-3.download-popup{width:690px;height:374px;background:#ffffff;padding-top:1px;}
.sec-3.download-popup li{width:134px;height:134px;margin-right:25px;}
.sec-3.download-popup ul{margin:106px 0px 0px 38px;}
.sec-3.download-popup a{padding-top:24px;height:110px;}
.sec-3.download-popup li.qr-code img{margin-top: 15px;}
.sec-4 {margin-bottom:180px;}
.sec-4 ul{width: 1020px;margin: 0 auto;}
.sec-4 li{width: 259px;height:140px;border-left:1px dashed #9d9d9d;text-align: left;padding-left:20px;padding-right:60px;float:left;}
.sec-4 li .tit{color:#434343;font-size: 22px;position: relative;padding-bottom:5px;}
.sec-4 li .tit .arrows{background: url(/static/common/img/icon.1.1.png) -176px -69px no-repeat;width: 25px;height: 25px;display: block;position: absolute;right: 0px;top: 7px;}
.sec-4 li .con{color:#8a8a8a;font-size: 14px;line-height:26px;width: 230px;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
.sec-4 li .con a{text-decoration: none;color:#8a8a8a;font-size: 14px;}
.sec-4 li .con a:hover{color:#00A2FF;}
.screen{width: 200px;height: 345px;position: absolute;left: 50%;margin-left: 29px;top: 218px;overflow:hidden;}
.scroll-img{position:absolute;}
/**
* 照片墙
*/
div,ul,li,img,dl,dt,dd{margin: 0;padding: 0;}
.photo-wall{width: 1200px;padding: 0 7px;overflow: hidden;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;}
.wall-pace{width: 392px;list-style: none;overflow: hidden;float: left;position: relative;}
.wall-pace li{position: relative;float: left;margin: 0 5px 5px 0;overflow: hidden;background: #efefef}
.wall-last-3{position: absolute !important;top: 151px;}
.wall-last-4{margin-left: 128px !important;}
.wall-pace img{width: 100%;height: 100%;position: absolute;top:0;left: 0}
.wall-pace .sq-sm{width: 145px;height: 145px;}
.wall-pace .rect-x,.intr-x{width: 235px;height: 146px;}
.wall-pace .sq-lg{width: 258px;height: 258px;}
.wall-pace .rect-y{width: 123px;height: 258px;}
.intr-x,.intr-s{padding: 8px;color: #fff;background: rgb(1,122,255);position: absolute;top: 100%;}
.intr-x{padding-top: 12px; width: 219px;}
.intr-s{width: 242px;height: 128px;}
.wall-pace dl{text-align: left;}
.wall-pace dt{font-size: 22px;line-height: 44px;}
.wall-pace dd{font-size: 14px;line-height: 24px;overflow: hidden;white-space: nowrap;text-overflow:ellipsis;}
.banner .youku-btn{top: 339px;background: none;color: #fff;width: 125px;margin-left: 96px;cursor: pointer;height: 20px;}
.ad-identity{position: fixed;right: 28px;top: 50px;width: 38px;height:21px;z-index: 99999;}
.ad-identity-bg{
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
background: #000;opacity:0.17;
}
.ad-identity-text{
position: absolute;
top:0;
left: 0;
color: #fff;
font-size: 13px;
width: 100%;
height: 100%;
text-align: center;
line-height: 21px;
}
.page-2 .ad-identity{
position: absolute;
right: 55px;
top: 10px;
}
.quest-mobile-link{
display: inline-block;
color: #6f6f6f;
font-size: 12px;
font-weight: 100;
line-height: 20px;
padding-top: 16px;
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>关于我们</title>
<style>
.wrapper{padding-top: 120px;}
.line{border: 0;height: 1px;background-color: #e4e4e4;}
nav {width:960px;line-height:110px;margin:0 auto;}
nav li{float: left;color:#6f6f6f;font-size:16px;margin-right:75px;height: 80px;}
nav li.on{border-bottom:3px solid #1e78e7;}
nav li a{text-decoration: none;color:#6f6f6f;}
section{width: 880px;margin: 45px auto 0;padding: 0 40px;}
h1{color:#2e2e2e;font-size:24px;text-align: center;}
.common-footer{margin-top:123px;}
h2{color:#5a5959;font-size:22px;text-align:center;font-weight:normal;margin-bottom:39px;}
section.info-sec{width:960px;margin:0px auto;font-size:14px;margin-top:100px;}
.info-sec p,.info-sec li{color:#5a5959;margin-bottom:9px;}
section.info-sec-1{ text-align:center;margin-top:100px;}
section.info-sec-2{margin-top:150px;}
section.info-sec-3{margin-top:150px;text-align:center;}
.info-sec-1 .f22{font-size:22px;}
.timeline{width:463px;position:relative;}
.timeline2{margin-left:484px;margin-top:15px;}
.timeline3{margin-top:-55px;}
.timeline4{margin-left:484px;margin-top:-55px;}
.timeline5{margin-top:35px;}
.timeline6{margin-top:-52px;}
.timeline8{margin-top:-50px;}
.timeline .title{position:relative;padding-bottom:12px;background: url('/static/common/img/dotted-x.jpg') repeat-x left bottom;}
.timeline .title img{vertical-align: text-bottom;padding-right:13px;}
.timeline .title .title-text{
padding-right: 12px;
font-size: 36px;
display: inline-block;
line-height: 34px;
color: #7e7e7e;
height: 36px;
font-weight: bolder;
}
.info-sec-4 .title .title-text{font-size: 27px;}
.info-sec-4 .timeline2,.info-sec-4 .timeline4{margin-top: 25px;}
.info-sec-4 .timeline3{margin-top: -2px;}
.info-sec-4 .timeline5{margin-top: 60px;}
.info-sec-4 .timeline6{margin-top: 45px;}
.timeline .title .corner{position:absolute;width:13px;height:9px;bottom:0;}
.timeline1 .title .corner,.timeline3 .title .corner{right:-12px;background:url('/static/common/img/dotted-left.jpg');}
.timeline2 .title .corner,.timeline4 .title .corner,.timeline7 .title .corner{left:-13px;background:url('/static/common/img/dotted-right.jpg');}
.timeline .title .num{font-size:28px;margin-right:20px;color:#7e7e7e;}
.timeline li{padding-left:20px;}
.info-sec-4 .timeline li{padding-right: 94px;}
.tipline{width:3px;position:absolute;top:-93px;}
.timeline2 .tipline,.timeline4 .tipline,.timeline7 .tipline{left:-13px;}
{right:-13px;}
.timeline1 .tipline,.timeline3 .tipline,.timeline5 .tipline{right:-13px;}
.timeline2 .tipline,.timeline3 .tipline,.timeline4 .tipline{top:-57px;}
{right:-13px;}
/*.timeline5 .tipline{top: -142px;}*/
.tipline:after{content:"";height:13px;width:13px;background:#3988ea;position:absolute;top:-8px;left:-5px;}
.timeline1 .tipline:after{height:0;width:0;}
.tipline:after,.radius1000{
-webkit-border-radius:1000px;
-moz-border-radius:1000px;
-o-border-radius:1000px;
border-radius:1000px;
}
.tipline .head{width:13px;height:13px;background:#1e78e7;}
.tipline .tail{height:97px;background:url('/static/common/img/dotted-y.jpg');}
.timeline1 .tipline .tail,.timeline5 .tipline .tail{height:133px;}
.members{margin-top:10px;margin-bottom:20px;}
.members .mr1{margin-right:223px;*margin-left:120px;}
.members .mr2{margin-right:46px;}
.members .member.bigger{width:223px;*margin-bottom:70px;}
.members .member{width:184px;display:inline-block;*display:block;*float:left;}
.members .photo{width:184px;height:184px;margin-bottom:20px;position:relative;overflow:hidden;/*background:url('/static/w3-img/people.jpg?1398563117') no-repeat;*/}
.members .member .mltitle{font-size:20px;text-align:center;color:#5B5B5B;line-height:24px;}
.members .member .msub{font-size:14px;text-align:center;color:#646464;}
.members .ty{width:223px;height:223px;background:url('/static/common/img/ty.jpg');}
.members .zxs{width:223px;height:223px;background:url('/static/common/img/zxs.jpg');}
.members .zjp{width:223px;height:223px;background:url('/static/common/img/zjp.jpg');}
.members .zsc{background:url('/static/common/img/zsc.jpg');}
.members .lzw{background:url('/static/common/img/lzw.jpg');}
.members .lxl{background:url('/static/common/img/lxl.jpg');*margin-left:20px;}
.members .wl{background:url('/static/common/img/wl.jpg');}
.members .photo .cover{position:absolute;top:0;left:0;opacity:0.8;display:none;}
.members .photo.on .cover{top:0px;}
.timeline7 {
margin-left: 484px;
margin-top: -75px;
}
.timeline7 .tipline .tail{height: 130px;}
.timeline3.timeLineNew3 .tipline{
top: -40px;
}
.timeline3.timeLineNew3 .tipline .tail{height: 80px;}
.timeline5 .tipline{top: -40px;}
.info-sec-4 .timeline5 .tipline{top: -93px;}
.timeline9{margin-top:-15px}
.timeline5 .tipline .tail{height:100px;}
.common-header{
margin-left: -560px;
}
.common-header li .service.business .down-list{
left: -3px;
}
</style>
</head>
<body class="white-bg">
<style>
.common-header {
margin-left: -560px;
width: 1000px;
}
.common-header li .service.business .down-list {
left: -3px;
}
<?php if(( !empty($logo_url))): ?>
.common-header {
background: url(<?php echo htmlentities($logo_url); ?>) -3px 37px no-repeat;
background-size: 18%;
}
<?php endif; if(( !empty($other_logo_url))): ?>
.white-bg .common-header {
background: url(<?php echo htmlentities($other_logo_url); ?>) -3px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<?php if(is_array($nav) || $nav instanceof \think\Collection || $nav instanceof \think\Paginator): $k = 0; $__LIST__ = $nav;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;if(!empty($vo['child'])): ?>
<li class="white-bg-service">
<span class="service">&nbsp;<?php echo htmlentities($vo['title']); ?>&nbsp;
<span class="down-list" style="position: relative;top: -30px;left: 0px;">
<span class="item colortext" style="left: -1px;width: 100%">
<a href="javascript:"><?php echo htmlentities($vo['title']); ?></a>
</span>
<?php if(is_array($vo['child']) || $vo['child'] instanceof \think\Collection || $vo['child'] instanceof \think\Paginator): $key = 0; $__LIST__ = $vo['child'];if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$child): $mod = ($key % 2 );++$key;?>
<span class="item">
<a href="<?php echo htmlentities($child['url']); ?>" <?php if($child['show_type']==1): ?>target="_blank"<?php endif; ?>><?php echo htmlentities($child['title']); ?></a>
</span>
<?php endforeach; endif; else: echo "" ;endif; ?>
</span>
</span>
<li>
<?php else: ?>
<li <?php if($k==1): ?>class="no-border"<?php else: ?>class="white-bg-service"<?php endif; ?>>
<a class="<?php echo htmlentities($vo['class']); ?> <?php echo $url==ucfirst($vo['class']) ? 'active' : ''; ?>" href="<?php echo htmlentities($vo['url']); ?>" <?php if($vo['show_type']==1): ?>target="_blank"<?php endif; ?>><?php echo htmlentities($vo['title']); ?></a>
</li>
<?php endif; ?>
<?php endforeach; endif; else: echo "" ;endif; ?>
</ul>
</header>
<script>
//由于未知bug导致child不为空的时候会生成一个空的li,这里删除
var ul = document.getElementsByClassName("clearfix");
var childList = ul[0].children;
for (var i = 0;i < childList.length ; i++){
if (childList[i].className === ''){
ul[0].removeChild(ul[0].children[i]);
}
}
</script>
<div class="wrapper">
<p class="line"></p>
<nav>
<ul class="clearfix">
<?php if(is_array($list) || $list instanceof \think\Collection || $list instanceof \think\Paginator): $i = 0; $__LIST__ = $list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?>
<li class="<?php if($id==$vo['id']): ?>on<?php endif; ?>"><a href="/aboutus/us/article/<?php echo htmlentities($vo['id']); ?>.html"><?php echo htmlentities($vo['title']); ?></a></li>
<?php endforeach; endif; else: echo "" ;endif; ?>
<!-- <li class=""><a href="/aboutus/agreement.html">用户协议</a></li>-->
<!-- <li class=""><a href="/aboutus/vipterms.html">会员条款</a></li>-->
</ul>
</nav>
<?php if(!empty($us)): ?>
<section class="info-sec info-sec-1">
<?php echo htmlspecialchars_decode($us['content']); ?>
</section>
<?php endif; ?>
</div>
<style>
._link{
position: fixed;
_position: absolute;
bottom: 20px;
right: 20px;
z-index: 214748000;
width: 60px;
height: 60px;
border: 1px solid #ddd\0;
border-radius: 30px;
cursor: pointer;
background: #23a0ee;
background: -webkit-gradient(linear,left top,left bottom,from(#23a0ee),to(#2b73d3));
background: -o-linear-gradient(top,#23a0ee 0,#2b73d3 100%);
background: -webkit-linear-gradient(top,#23a0ee 0,#2b73d3 100%);
background: linear-gradient(to bottom,#23a0ee 0,#2b73d3 100%);
-webkit-box-shadow: 0 13px 40px 0 rgba(35,169,238,.4);
box-shadow: 0 13px 40px 0 rgba(35,169,238,.4);
-webkit-animation-duration: .3s;
animation-duration: .3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-name: lim_mini_zoomIn;
animation-name: lim_mini_zoomIn;
}
</style>
<footer class="common-footer">
<ul class="clearfix" style="width: 510px;">
<li><a href="<?php echo url('/aboutus'); ?>">关于我们</a></li>
<li><a href="<?php echo url('/aboutus/agreement'); ?>">用户协议</a></li>
<li><a href="<?php echo url('/join'); ?>">招聘信息</a></li>
<li><a href="<?php echo url('/contact'); ?>">联系我们</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div style="text-align:center; ">Copyright © 2018 <a href="/" target="_blank">重庆三丫互娱网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank">渝ICP备19002633号-1</a><br>统一社会信用代码 91500103MA6089GG94</div>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/wen.png" style="float:left;width:20px;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">互联网文化经营单位</p ></a>
</div>
<div style="width:300px;margin:0 auto; padding:20px 0;">
<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="/f.png" style="float:left;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002432号</p ></a>
</div>
<a target="_blank" href="https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002">
<div id="customer" class="_link" style="display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;">
<div id="lim_mini_icon" style="position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;">
<div id="lim_mini_new" style="height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;">
</div>
</div>
</div>
</a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery.1.9.1.min.js"></script>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
<script>
$(function(){
$('.common-header .aboutuson').addClass('on');
});
</script>
<?php /*a:4:{s:63:"D:\PHPStormProject\3yakj\config/../template/home\join\list.html";i:1647940494;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?> <?php /*a:4:{s:63:"D:\PHPStormProject\3yakj\config/../template/home\join\list.html";i:1648189995;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648113542;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/ ?>
<html> <html>
<head> <head>
<title>朱贝招聘|人才招募|招商加盟|主播入驻|颜值主播</title> <title>朱贝招聘|人才招募|招商加盟|主播入驻|颜值主播</title>
...@@ -342,7 +342,7 @@ ...@@ -342,7 +342,7 @@
<?php endforeach; endif; else: echo "" ;endif; ?> <?php endforeach; endif; else: echo "" ;endif; ?>
</ul> </ul>
</section> </section>
<?php if(!empty($join_cate_list)): ?>
<section class="section4"> <section class="section4">
<p class="cate-title"> <p class="cate-title">
<span class="title1">职位</span> <span class="title1">职位</span>
...@@ -384,7 +384,7 @@ ...@@ -384,7 +384,7 @@
<?php endforeach; endif; else: echo "" ;endif; ?> <?php endforeach; endif; else: echo "" ;endif; ?>
<!--end of foreach--> <!--end of foreach-->
</section> </section>
<?php endif; ?>
</div> </div>
......
...@@ -125,15 +125,18 @@ ...@@ -125,15 +125,18 @@
<p class="line"></p> <p class="line"></p>
<nav> <nav>
<ul class="clearfix"> <ul class="clearfix">
<li class=" on "><a href="/aboutus/us.html" "="">关于我们</a></li> {volist name="list" id="vo"}
<li class=""><a href="/aboutus/agreement.html" "="">用户协议</a></li> <li class="{if $id==$vo.id}on{/if}"><a href="/aboutus/us/article/{$vo.id}.html">{$vo.title}</a></li>
<!-- <li class=""><a href="/aboutus/vipterms.html" "="">会员条款</a></li>--> {/volist}
<!-- <li class=""><a href="/aboutus/agreement.html">用户协议</a></li>-->
<!-- <li class=""><a href="/aboutus/vipterms.html">会员条款</a></li>-->
</ul> </ul>
</nav> </nav>
{if !empty($us)}
<section class="info-sec info-sec-1"> <section class="info-sec info-sec-1">
{:htmlspecialchars_decode($us.content)} {:htmlspecialchars_decode($us.content)}
</section> </section>
{/if}
</div> </div>
......
...@@ -268,54 +268,54 @@ ...@@ -268,54 +268,54 @@
<!-- <h2 class="tit">用视频认识我</h2>--> <!-- <h2 class="tit">用视频认识我</h2>-->
<!-- <p class="note">三丫互娱 | 新秀娱乐</p>--> <!-- <p class="note">三丫互娱 | 新秀娱乐</p>-->
<!-- <ul class="clearfix">--> <!-- <ul class="clearfix">-->
<!-- <li><img class="te" src="/static/common/img/1290.png"></li>--> <!-- <li><img class="te" style="margin-top: 3px;" src="/static/common/img/1290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/2290.png"></li>--> <!-- <li><img class="te" style="margin-top: 3px;" src="/static/common/img/2290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/3290.png"></li>--> <!-- <li><img class="te" style="margin-top: 3px;" src="/static/common/img/3290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/4290.png"></li>--> <!-- <li><img class="te" style="margin-top: 3px;" src="/static/common/img/4290.png"></li>-->
<!-- </ul>--> <!-- </ul>-->
<!-- </section>--> <!-- </section>-->
<!-- <section class="sec-2"> <!-- <section class="sec-2">-->
<h2 class="tit">年轻人的社交选择</h2> <!-- <h2 class="tit">年轻人的社交选择</h2>-->
<p class="note">三丫互娱 | 朱贝娱乐<br></p> <!-- <p class="note">三丫互娱 | 朱贝娱乐<br></p>-->
<div class="photo-wall" id="photo-wall"> <!-- <div class="photo-wall" id="photo-wall">-->
<ul class="wall-pace"> <!-- <ul class="wall-pace">-->
<li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716"> <!-- <li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716">-->
<img class="te" src="/static/common/img/1.jpg"></li> <!-- <img class="te" src="/static/common/img/1.jpg"></li>-->
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716"> <!-- <li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716">-->
<img class="te" src="/static/common/img/2.png"> <!-- <img class="te" src="/static/common/img/2.png">-->
</li> <!-- </li>-->
<li class="sq-lg gg" href="https://wap.fjkankan.com/zhibo?roomnumber=76533387"> <!-- <li class="sq-lg gg" href="https://wap.fjkankan.com/zhibo?roomnumber=76533387">-->
<img class="te" src="/static/common/img/3.jpg"> <!-- <img class="te" src="/static/common/img/3.jpg">-->
</li> <!-- </li>-->
<li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48281734"> <!-- <li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48281734">-->
<img class="te" src="/static/common/img/4.jpg"></li> <!-- <img class="te" src="/static/common/img/4.jpg"></li>-->
</ul> <!-- </ul>-->
<ul class="wall-pace"> <!-- <ul class="wall-pace">-->
<li class="sq-lg gg"> <!-- <li class="sq-lg gg">-->
<img class="te" src="/static/common/img/7.jpg"> <!-- <img class="te" src="/static/common/img/7.jpg">-->
</li> <!-- </li>-->
<li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=26062203"> <!-- <li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=26062203">-->
<img class="te" src="/static/common/img/8.jpg"></li> <!-- <img class="te" src="/static/common/img/8.jpg"></li>-->
<li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=49892134"> <!-- <li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=49892134">-->
<img class="te" src="/static/common/img/5.jpg"></li> <!-- <img class="te" src="/static/common/img/5.jpg"></li>-->
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095"> <!-- <li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095">-->
<img class="te" src="/static/common/img/6.jpg"> <!-- <img class="te" src="/static/common/img/6.jpg">-->
</li> <!-- </li>-->
</ul> <!-- </ul>-->
<ul class="wall-pace"> <!-- <ul class="wall-pace">-->
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095"> <!-- <li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095">-->
<img class="te" src="/static/common/img/10.jpg"> <!-- <img class="te" src="/static/common/img/10.jpg">-->
</li> <!-- </li>-->
<li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=64343767"> <!-- <li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=64343767">-->
<img class="te" src="/static/common/img/9.jpg"></li> <!-- <img class="te" src="/static/common/img/9.jpg"></li>-->
<li class="rect-y wall-last-3 gg"> <!-- <li class="rect-y wall-last-3 gg">-->
<img class="te" src="/static/common/img/12.jpg"></li> <!-- <img class="te" src="/static/common/img/12.jpg"></li>-->
<li class="sq-lg wall-last-4 gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48041785"> <!-- <li class="sq-lg wall-last-4 gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48041785">-->
<img class="te" src="/static/common/img/11.jpg"> <!-- <img class="te" src="/static/common/img/11.jpg">-->
</li> <!-- </li>-->
</ul> <!-- </ul>-->
</div> <!-- </div>-->
</section>--> <!-- </section>-->
<section id="downloads" name="downloads" class="sec-3"> <section id="downloads" name="downloads" class="sec-3">
{empty name="app_list"}{else} {empty name="app_list"}{else}
<h2 class="tit">根据你的手机,选择下载</h2> <h2 class="tit">根据你的手机,选择下载</h2>
......
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
{/volist} {/volist}
</ul> </ul>
</section> </section>
{if !empty($join_cate_list)}
<section class="section4"> <section class="section4">
<p class="cate-title"> <p class="cate-title">
<span class="title1">职位</span> <span class="title1">职位</span>
...@@ -161,7 +161,7 @@ ...@@ -161,7 +161,7 @@
{/volist} {/volist}
<!--end of foreach--> <!--end of foreach-->
</section> </section>
{/if}
</div> </div>
......
...@@ -186,6 +186,7 @@ ...@@ -186,6 +186,7 @@
</div> </div>
{/volist} {/volist}
</div> </div>
{if !empty($question_cate_list)}
<div class="usercontext"> <div class="usercontext">
<div class="tips-container"> <div class="tips-container">
<form id="search-form" method="get" action="/servicehelp/search.html"> <form id="search-form" method="get" action="/servicehelp/search.html">
...@@ -226,6 +227,7 @@ ...@@ -226,6 +227,7 @@
{/if} {/if}
</div> </div>
</div> </div>
{/if}
</section> </section>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment