Commit 1a388236 authored by liukang's avatar liukang

修改提交

parent 601b8f89
......@@ -25,14 +25,26 @@ class About extends Base
return view("/home/about/contact");
}
public function us(){
$id = input('article');
$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);
if(!$agreement){
if(!$content){
return view("/home/public/error");
}
$this->assign('us',$agreement);
$this->assign('list',$list);
$this->assign('us',$content);
$this->assign('id',$id);
return view("/home/about/aboutus");
}
public function agreement(){
......
......@@ -13,8 +13,8 @@ class App extends Model
{
return $this->hasOne('app\admin\model\Users','id','user_id');
}
public function img()
{
return $this->hasOne('app\common\model\Img','id','img_id');
}
// public function img()
// {
// return $this->hasOne('app\common\model\Img','id','img_id');
// }
}
\ No newline at end of file
......@@ -19,21 +19,105 @@ class Base extends Error
public function initialize(){
$this->url = request()->controller();
$this->host_name = request()->domain();
$other_logo = HomeConfig::where("home_config_cate_id",3)->where("isdeleted",0)->Order("current","desc")->find();
$index_logo = HomeConfig::where("home_config_cate_id",2)->where("isdeleted",0)->Order("current","desc")->find();
$other_logo = $this->getImage(4);
$index_logo = $this->getImage(5);
$vedio = HomeConfig::where("home_config_cate_id",1)->where("isdeleted",0)->Order("current","desc")->find();
if(!empty($index_logo)){
$this->logo_url = $index_logo->img->img_url.$index_logo->img->img_name;
}
if(!empty($other_logo)){
$this->other_logo_url = $other_logo->img->img_url.$other_logo->img->img_name;
}
if(!empty($vedio)){
$this->vedio_url = $vedio->img->img_url.$vedio->img->img_name;
}
$this->assign("other_logo_url",$this->other_logo_url);
$this->assign("logo_url",$this->logo_url);
$this->getNav();
$this->assign("other_logo_url",$other_logo);
$this->assign("logo_url",$index_logo);
$this->assign("vedio_url",$this->vedio_url);
$this->assign("host_name",$this->host_name);
}
public function getImage($type){
//获取首页背景图
$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[] = ['endtime','>',time()];
$where[] = ['starthour','<',date('h',time())];
$where[] = ['endhour','>',date('h',time())];
$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";
$bannerImg = [];
if ($data['mintype'] == 0){
if (!empty($cont)){
$bannerImg = $imagePre.$cont[0]['picSrc'];
}else{
$bannerImg = '';
}
}else{
foreach ($cont as $value){
$bannerImg[] = $imagePre.$value['picSrc'];
}
}
return $bannerImg;
}
public function getNav(){
$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){
if (!empty($value['url'])){
$class = explode('.html',$value['url'])[0];
if ($class !== '/'){
$nav[$key]['class'] = explode('/',$class)[1];
if ($nav[$key]['class'] == 'index'){
$nav[$key]['class'] = 'home';
}
}else{
$nav[$key]['class'] = 'home';
}
}else{
$nav[$key]['class'] = '';
}
$child = db('menu_child')->where(array('pid'=>$value['id'],'status'=>1))->field('title,show_type,url,packs')->order('order desc')->select();
$nav[$key]['child'] = $this->dealData($child);
}
$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
......@@ -15,6 +15,7 @@ class Game extends Base
public function list(){
$game_cate_list = GameCate::where("isdeleted",0)->select();
$game_cate_list = $this->dealData($game_cate_list);
$map = array();
$params = request()->param();
$this->assign("params",$params);
......@@ -34,6 +35,7 @@ class Game extends Base
}
}
$game_list = mGame::where($map)->select();
$game_list = $this->dealData($game_list);
$this->assign("game_cate_list",$game_cate_list);
$this->assign("game_cate_id",$game_cate_id);
$this->assign("game_list",$game_list);
......
......@@ -12,10 +12,14 @@ class Index extends Base
{
public function index()
{
$app_list = App::where("isdeleted",0)->order('num','asc')->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 = $this->dealData($help_list);
$news_list = News::where("isdeleted",0)->order("current","desc")->paginate(4);
$news_list = $this->dealData($news_list);
$know_list = $this->getImage(6);
$this->assign('know_list',$know_list);
$this->assign('app_list',$app_list);
$this->assign('help_list',$help_list);
$this->assign('news_list',$news_list);
......@@ -26,8 +30,11 @@ class Index extends Base
public function mobile()
{
$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 = $this->dealData($help_list);
$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('help_list',$help_list);
......@@ -73,8 +80,19 @@ class Index extends Base
public function huatai(Request $request)
{
$imageList = $this->getImage(3);
$this->assign('domain',$request->domain());
$this->assign('url',$this->url);
$this->assign('imageList',$imageList);
return view("/home/index/huatai");
}
public function getConfig(){
$type = input('type');
//获取首页背景图
$bannerImg = $this->getImage($type);
//获取按钮
$button=array();
return json(['banner'=>$bannerImg,'button'=>$button] );
}
}
......@@ -27,27 +27,23 @@ class ServiceHelp extends Base
}
public function service(){
$question_cate_list =QuestionCate::where('isdeleted',0)->select();
for($n=0;$n<count($question_cate_list);$n++){
$img = Img::get(intval($question_cate_list[$n]['img_id']));
$question_cate_list[$n]['img_url'] = $img['img_url'].$img['img_name'];
}
$this->assign('url',$this->url);
$this->assign('question_cate_list',$question_cate_list);
return view("/home/servicehelp/service");
}
public function help(){
$question_cate_list =QuestionCate::where('isdeleted',0)->select();
for($n=0;$n<count($question_cate_list);$n++){
$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 = $this->dealData($question_cate_list);
$question_list = array();
$cate = new QuestionCate();
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();
$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()
]);
$pattern = '/\[\d+\]/';
......@@ -120,11 +116,6 @@ class ServiceHelp extends Base
$this->redirect('/servicehelp/help.html');
}
$question_cate_list =QuestionCate::where('isdeleted',0)->select();
for($n=0;$n<count($question_cate_list);$n++){
$img = Img::get(intval($question_cate_list[$n]['img_id']));
$question_cate_list[$n]['img_url'] = $img['img_url'].$img['img_name'];
}
$question = Question::where('isdeleted',0)->where('id',$question_id)->find();
$this->assign('url',$this->url);
if(empty($question)){
......@@ -152,12 +143,12 @@ class ServiceHelp extends Base
public function search(){
$key_str = input('s_key','');
$question_cate_list =QuestionCate::where('isdeleted',0)->select();
for($n=0;$n<count($question_cate_list);$n++){
$img = Img::get(intval($question_cate_list[$n]['img_id']));
$question_cate_list[$n]['img_url'] = $img['img_url'].$img['img_name'];
}
$question_list = Question::where('isdeleted',0)->whereLike('title',"%".$key_str."%")->order('current','desc')->paginate(10, false, [
$web_type = config('app.web_type');
$question_list = Question::where('isdeleted',0)
->whereLike('title',"%".$key_str."%")
->whereLike('packs',"%".$web_type."%")
->order('current','desc')
->paginate(10, false, [
'query' => request()->param()
]);
$pattern = '/\[\d+\]/';
......
......@@ -19,7 +19,7 @@ return [
// 应用地址
'app_host' => '',
// 应用调试模式
'app_debug' => false,
'app_debug' => true,
// 应用Trace
'app_trace' => false,
// 是否支持多模块
......@@ -142,5 +142,8 @@ return [
'show_error_msg' => false,
// 异常处理handle类 留空使用 \think\exception\Handle
'exception_handle' => '',
//----------------------------------------------------------------------
// 自定义参数
//----------------------------------------------------------------------
'web_type' => 2,
];
......@@ -15,7 +15,7 @@ return [
// 服务器地址
'hostname' => '106.55.103.148:3398',
// 数据库名
'database' => '3yakj_web_new',
'database' => 'fanjiao_web_new',
// 用户名
'username' => 'root',
// 密码
......
<?php /*a:4:{s:73:"D:\PHPStormProject\fjkankan\config/../template/home\servicehelp\help.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<?php /*a:4:{s:73:"D:\PHPStormProject\fjkankan\config/../template/home\servicehelp\help.html";i:1648198852;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1648195250;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1648116123;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
......@@ -152,6 +152,15 @@
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<link type="text/css" rel="stylesheet" href="/static/common/css/my.css">
<title>凡骄娱乐-帮助中心</title>
......@@ -353,60 +362,39 @@
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<?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 business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
</span>
<span class="item">
<a href="<?php echo url('/aboutus'); ?>">关于凡骄</a>
<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 url('/contact'); ?>">联系我们</a>
</span>
<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>
</li>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
<?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="user-services">
<p class="line"></p>
......@@ -419,6 +407,7 @@
</div>
<?php endforeach; endif; else: echo "" ;endif; ?>
</div>
<?php if(!empty($question_cate_list)): ?>
<div class="usercontext">
<div class="tips-container">
<form id="search-form" method="get" action="/servicehelp/search.html">
......@@ -459,6 +448,7 @@
<?php endif; ?>
</div>
</div>
<?php endif; ?>
</section>
</div>
......
<?php /*a:4:{s:58:"E:\www\fjkankan\config/../template/home\about\aboutus.html";i:1601290265;s:58:"E:\www\fjkankan\config/../template/home\public\header.html";i:1601290264;s:59:"E:\www\fjkankan\config/../template/home\public\nav_bar.html";i:1641205005;s:58:"E:\www\fjkankan\config/../template/home\public\footer.html";i:1620981696;}*/ ?>
<html>
<head>
<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">
<meta name="description" content="凡骄娱乐">
<meta name="keyword" content="凡骄,凡骄直播">
<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;
}
</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); ?>) 14px 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); ?>) 14px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<li class="white-bg-service">
<span class="service business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
</span>
<span class="item">
<a href="<?php echo url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
</span>
</span>
</span>
</li>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
</li>
</ul>
</header>
<div class="wrapper">
<p class="line"></p>
<nav>
<ul class="clearfix">
<li class=" on "><a href="/aboutus/us.html" "="">关于凡骄</a></li>
<li class=""><a href="/aboutus/agreement.html" "="">用户协议</a></li>
<li class=""><a href="/aboutus/vipterms.html" "="">会员条款</a></li>
</ul>
</nav>
<section class="info-sec info-sec-1">
<?php echo htmlspecialchars_decode($us['content']); ?>
</section>
</div>
<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 © 2019 <a href="<?php echo htmlentities($host_name); ?>" target="_blank">重庆凡骄网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank"><?php echo $host_name=='http://www.fjkankan.com' ? '渝ICP备18007725号-2' : '渝ICP备18007725号'; ?></a>
<br/>
<a target="_blank" href="http://sq.ccm.gov.cn/ccnt/sczr/service/business/emark/toDetail/0327d7179b6c461681633f9389694746"> <img src="/static/common/img/wlwhjydw.png" style="width:25px;height:25px;"><p> 互联网文化经营单位</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=50010302002430" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;">
<img src="/fj.png" style="float:left;"/>
<p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002430号</p >
</a>
</div>
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=3165734538&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2:3165734538:51" alt="点击这里给我发消息" title="点击这里给我发消息"/></a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src = "/static/admin/layer/layer.js"></script>
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
</html>
<script>
$(function(){
$('.common-header .aboutuson').addClass('on');
});
</script>
<?php /*a:4:{s:70:"D:\PHPStormProject\fjkankan\config/../template/home\about\aboutus.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<?php /*a:4:{s:70:"D:\PHPStormProject\fjkankan\config/../template/home\about\aboutus.html";i:1648196613;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1648195250;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1648116123;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
......@@ -152,6 +152,15 @@
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>凡骄娱乐-关于我们</title>
......@@ -298,74 +307,55 @@
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<?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 business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
<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 url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
<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>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
<?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=" on "><a href="/aboutus/us.html" "="">关于凡骄</a></li>
<li class=""><a href="/aboutus/agreement.html" "="">用户协议</a></li>
<li class=""><a href="/aboutus/vipterms.html" "="">会员条款</a></li>
<?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; ?>
</ul>
</nav>
<?php if(!empty($us)): ?>
<section class="info-sec info-sec-1">
<?php echo htmlspecialchars_decode($us['content']); ?>
</section>
<?php endif; ?>
......
<?php /*a:4:{s:66:"D:\PHPStormProject\fjkankan\config/../template/home\join\list.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<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">
<meta name="description" content="凡骄娱乐">
<meta name="keyword" content="凡骄,凡骄直播">
<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;
}
</style>
<title>凡骄娱乐-招聘</title>
<style>
header > ul {
width: 960px;
}
.wrapper{padding-top: 120px;}
.line{border: 0;height: 1px;background-color: #e4e4e4;}
section{width:940px;margin:0 auto;}
.section1{width:1020px;margin-top:70px;}
.section1 .swiper-container{width: 100%;height: 412px;}
.section1 .swiper-container .swiper-wrapper{}
.section1 .swiper-container .swiper-wrapper .swiper-slide{width: 100%;height: 412px;overflow: hidden;}
.section1 .swiper-container .swiper-wrapper .swiper-slide .link{display: block;width: 100%;height: 100%;text-decoration: none;}
.section1 .swiper-container .swiper-wrapper .swiper-slide img{width: 100%;}
.section1 .swiper-pagination{width: 1020px;margin: 0 auto;margin-top: 5px;}
.section1 .swiper-pagination .swiper-pagination-bullet{width: 20px;height: 3px;margin-left: 4px;margin-right: 4px;border-radius: 0;}
.section2 {padding: 100px 0 100px;}
.section2 p{text-align: center;color:#6f6f6f;font-size:14px;}
.section2 h1{font-size:22px;color:#6f6f6f;line-height:22px;text-align: center;margin-top:30px;font-weight: 100;}
.section2 h1.mail{color: #1e78e7;margin-top:15px;}
.section2 p.email{color:#1e78e7;font-size:24px;}
.section3 ul{width: 940px;border-left:1px solid #e0e0e0;}
.section3 .fixed{position:fixed;top:0;z-index:1000;_position:absolute;_top:expression(eval(document.documentElement.scrollTop));}
.section3 li{cursor:pointer;float: left;width: 9.89%;text-align:center;padding:18px 0;color:#727272;font-size:16px;border:1px solid #e0e0e0;border-left:none;position: relative;background-color:#fff;-webkit-transition: all 0.6s;-transition: all 0.6s;-ms-transition: all 0.6s;-moz-transition: all 0.6s;}
.section3 li#selected{background-color:#1e78e7;}
.section3 li#selected a{color:#fff;}
.section3 li.selected a{color:red;}
.section3 li .tall{display: none;opacity: 0;width: 16px;height: 8px;display: block; background: url('/static/common/img/icon.png') -269px 1px no-repeat;position: absolute;top: 53px;left: 50%;margin-left: -8px;-webkit-transition: all 0.6s;-transition: all 0.6s;-ms-transition: all 0.6s;-moz-transition: all 0.6s;}
.section3 li.on .tall{display: block;opacity: 1;}
.section3 a{text-decoration: none;color:#727272;}
.section3 li.on a{color:#fff;}
.section4{border: 1px solid #e0e0e0;margin-top: 30px;}
.section4 .cate-title{height: 60px;width: 100%;line-height: 60px;}
.section4 .cate-title span{font-size: 18px;color: #2e2e2e;}
.section4 .cate-title .title1{margin-left: 32px;}
.section4 .cate-title .title2{margin-left: 440px;}
.section4 .cate-title .title3{margin-left: 128px;}
.section4 .cate-title .title4{margin-left: 59px;}
.section4 .jobs-item-big{width:900px;margin: 0 auto;border-top: 1px solid #e0e0e0;}
.section4 .job-item{height: 70px;width: 100%;position: relative;cursor: pointer;}
.section4 .job-item span{font-size:16px;color:#727272;}
.section4 .job-item .carrier{position: absolute;left: 10px;line-height: 70px;}
.section4 .job-item .carrier span{color: #2e2e2e;float: left;}
.jobs-icon{display: inline-block; background: url('/static/common/img/icon.png') no-repeat 0 0;}
.jobs-icon.ji{width:22px;height:22px;background-position: 0 0;margin-left: 6px;float: left;margin-top: 24px;}
.jobs-icon.xin{width:22px;height:22px;background-position: -30px 0;margin-left: 6px;float: left;margin-top: 24px;}
.section4 .job-item .cate-name{position: absolute;left: 490px;line-height: 70px;}
.section4 .job-item .addr{position: absolute;left: 660px;line-height: 70px;}
.section4 .job-item .publish{position: absolute;left: 775px;line-height: 70px;}
.section4 .job-item .arrow{position: absolute;left: 880px;top: 30px;width: 9px;height: 6px;}
.jobs-icon.down{background-position: 0 -29px;}
.jobs-icon.up{background-position: 0 -41px;}
.section4 .job-article{display: none;background-color: #f6f6f6;width: 890px;margin-bottom: 35px;font-size: 16px;color: #2e2e2e;padding-top: 15px;padding-left: 15px;
transition: display 1s;
-moz-transition: display 1s;
-webkit-transition: display 1s;
-o-transition: display 1s;
}
.section4 .job-article.show{}
.section4 .type_area{display: none}
.section4 .type_area.on{display: block;}
.section4 .type_area .type_area_page{height: 25px;width: 100%;text-align: center;margin-top: 15px;margin-bottom: 35px;}
.section4 .type_area .type_area_page .page-item{display: inline-block;width: 25px;height: 25px;background-color: #f6f6f6;color: #727272;font-size: 16px;text-align: center;line-height: 25px;text-decoration: none;margin-left: 4px;margin-right: 4px;}
.section4 .type_area .type_area_page .page-item.on{background-color: #6aacff;color: white;}
h2{color:#2e2e2e;font-size:20px;font-weight:100;}
.common-footer{margin-top:120px;}
.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); ?>) 14px 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); ?>) 14px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<li class="white-bg-service">
<span class="service business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
</span>
<span class="item">
<a href="<?php echo url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
</span>
</span>
</span>
</li>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
</li>
</ul>
</header>
<div class="wrapper">
<p class="line"></p>
<section class="section1">
<div class="swiper-container swiper-container-horizontal">
<div class="swiper-wrapper">
<div class="swiper-slide btn swiper-slide-active" banner_id="ba55e41fa01ad59" banner_link="" is_video="0" style="width: 1020px; margin-right: 30px;">
<img src="/static/common/img/preview.jpg">
</div>
</div>
</div>
<div class="swiper-pagination swiper-pagination-clickable"><span class="swiper-pagination-bullet swiper-pagination-bullet-active"></span></div>
</section>
<section class="section2">
<p>在这里,你将拥有宽松、愉悦、平等的工作环境,你将收获友爱、尊重、温暖的创业伙伴,更重要的是, </p>
<p>你有可能实现自己最大的价值。</p>
</section>
<section class="section3" id="job">
<ul id="job-nav" class="clearfix">
<?php if(is_array($join_cate_list) || $join_cate_list instanceof \think\Collection || $join_cate_list instanceof \think\Paginator): $k = 0; $__LIST__ = $join_cate_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;?>
<li id="<?php echo $k==1 ? 'selected' : ''; ?>" type_id="<?php echo htmlentities($vo['id']); ?>">
<a href="javascript:;"><?php echo htmlentities($vo['title']); ?></a><span class="tall"></span>
</li>
<?php endforeach; endif; else: echo "" ;endif; ?>
</ul>
</section>
<section class="section4">
<p class="cate-title">
<span class="title1">职位</span>
<span class="title2">类别</span>
<span class="title3">工作地</span>
<span class="title4">发布时间</span>
</p>
<?php if(is_array($join_list) || $join_list instanceof \think\Collection || $join_list instanceof \think\Paginator): $k = 0; $__LIST__ = $join_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;?>
<div class="type_area <?php echo $join_cate_list['0']['id']==$vo['joinCate']['id'] ? 'on' : ''; ?>" type_id="<?php echo htmlentities($vo['joinCate']['id']); ?>">
<div class="type_area_content">
<div class="jobs-item-big">
<div class="job-item">
<p class="carrier">
<span class="carrier-word"><?php echo htmlentities($vo['title']); ?></span>
</p>
<p class="cate-name">
<span><?php echo htmlentities($vo['joinCate']['title']); ?></span>
</p>
<p class="addr">
<span><?php echo htmlentities($vo['place']); ?></span>
</p>
<p class="publish">
<span><?php echo date('Y-m-d',$vo['current']); ?></span>
</p>
<i class="arrow jobs-icon down"></i>
</div>
<article class="job-article">
<?php echo htmlspecialchars_decode($vo['content']); ?>
</article>
</div>
</div>
</div>
<div class="type_area" type_id="ty55e51754040cb">
<div class="type_area_content"></div>
</div>
<?php endforeach; endif; else: echo "" ;endif; ?>
<!--end of foreach-->
</section>
</div>
<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 © 2019 <a href="<?php echo htmlentities($host_name); ?>" target="_blank">重庆凡骄网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank"><?php echo $host_name=='http://www.fjkankan.com' ? '渝ICP备18007725号-2' : '渝ICP备18007725号'; ?></a>
<br/>
<a target="_blank" href="http://sq.ccm.gov.cn/ccnt/sczr/service/business/emark/toDetail/0327d7179b6c461681633f9389694746"> <img src="/static/common/img/wlwhjydw.png" style="width:25px;height:25px;"><p> 互联网文化经营单位</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=50010302002430" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;">
<img src="/fj.png" style="float:left;"/>
<p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002430号</p >
</a>
</div>
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=3165734538&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2:3165734538:51" alt="点击这里给我发消息" title="点击这里给我发消息"/></a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src = "/static/admin/layer/layer.js"></script>
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
</html>
<script>
//该事件的dom会有动态生成的,所以绑定事件的时候要注意了
$(document).on('click','.job-item',function(){
//打开一个,同时要关掉其他所有打开的。
//关掉一个,就只是关掉一个。
var $article = $(this).parent().find('.job-article');
if($article.hasClass('show')){
//隐藏
$(this).find('.arrow').removeClass('up').addClass('down');
$article.removeClass('show');
$article.hide('fast');
}else{
//显示
$('.job-article').removeClass('show');
$('.job-article').hide();
$('.arrow').removeClass('up').addClass('down');
$(this).find('.arrow').removeClass('down').addClass('up');
$article.addClass('show');
$article.show('fast');
}
});
$('#job-nav li').on('click',function(){
if(! ($(this).attr('id')=='selected') ){
$('#job-nav li').attr('id','');
$(this).attr('id','selected');
var type_id = $(this).attr('type_id');
$('.type_area.on').removeClass('on');
$('.type_area[type_id='+type_id+']').addClass('on');
//对应的下面显示职位列表
}
});
$('.common-header .join').addClass('on');
$('#job').on('click','li',function(){
location.href=$(this).find('a').attr('href');
});
var scrollH;
$(document).scroll(function(){
scrollH = $(document).scrollTop();
if(scrollH >= 850){
$("#job-nav").addClass("fixed");
}else{
$("#job-nav").removeClass("fixed");
}
}
)
</script>
<?php /*a:4:{s:58:"E:\www\fjkankan\config/../template/home\about\contact.html";i:1601290265;s:58:"E:\www\fjkankan\config/../template/home\public\header.html";i:1601290264;s:59:"E:\www\fjkankan\config/../template/home\public\nav_bar.html";i:1641205005;s:58:"E:\www\fjkankan\config/../template/home\public\footer.html";i:1620981696;}*/ ?>
<html>
<head>
<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">
<meta name="description" content="凡骄娱乐">
<meta name="keyword" content="凡骄,凡骄直播">
<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;
}
</style>
<title>凡骄娱乐-联系我们</title>
<style>
.wrapper{padding-top: 120px;}
.line{border: 0;height: 1px;background-color: #e4e4e4;}
section{width:960px;margin:0 auto;}
h4{font-size:20px;color:#2e2e2e;margin-bottom: 20px;font-weight:100;line-height: 22px;}
.sec-1 {position: relative;margin-bottom: 50px;margin-top:0;}
.sec-1 .card{line-height: 18px;font-size:14px;margin-left: 33px;background-color: #1273ea;opacity: .9;color:#fff;padding:35px 23px;width: 300px;position:absolute;}
.sec-1 .card h2{color:#fff;font-size:24px;}
.sec-1 .card a{text-decoration: none;color:#fff;}
.sec-1 .card p{margin-left: 7px;font-size:14px;line-height:18px;margin-top: 20px;margin-bottom: 20px;}
.p1{margin-top: 33px;}
.p2{padding-left: 36px;}
.p3{margin-top: 30px;}
.p4{margin-top: 0px;}
.p5{margin-top: 15px;}
.sec-2{width:930px}
.sec-2 li{float: left;width:33%;margin-bottom: 71px;}
.sec-3 p,
.sec-2 p{font-size:14px;color:#6f6f6f;line-height: 22px;}
.sec-3{margin-bottom:90px;margin-top:13px;width:930px}
.sec-3 a{text-decoration: none;color:#6f6f6f;}
.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); ?>) 14px 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); ?>) 14px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<li class="white-bg-service">
<span class="service business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
</span>
<span class="item">
<a href="<?php echo url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
</span>
</span>
</span>
</li>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
</li>
</ul>
</header>
<!-- <div class="wrapper">
<?php echo htmlspecialchars_decode($contact['content']); ?>
</div> -->
<div class="wrapper">
<p class="line"></p>
<section class="sec-1">
<div class="card">
<h2>重庆凡骄网络科技有限公司</h2>
<p>
地址:重庆市渝中区中山三路131号 <br>
希尔顿商务中心20-C、20-D、20-E
</p>
<p>
邮编:400010
</p>
<p>
服务热线:(023) 6265 6323‬
</p>
<p>
公司电话:4000238896
</p>
</div>
<img src="/static/IMG/place_1.png" style="width:965px; height:511px;">
</section>
<section class="sec-2">
<ul class="clearfix">
<li>
<h4>充值咨询</h4>
<img src="/static/IMG/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px"><p>4000238896-1</p>
</li>
<li>
<h4>公会入驻</h4>
<img src="/static/IMG/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px">
<p>4000238896-2</p>
</li>
<li>
<h4>主播申请</h4>
<img src="/static/IMG/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px">
<p>4000238896-5</p>
</li>
<li>
<h4>商城加盟</h4>
<img src="/static/IMG/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px">
<p>4000238896-8</p>
</li>
<li>
<h4>投诉建议</h4>
<img src="/static/IMG/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px">
<p>4000238896-9</p>
</li>
</ul>
</section>
</div>
<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 © 2019 <a href="<?php echo htmlentities($host_name); ?>" target="_blank">重庆凡骄网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank"><?php echo $host_name=='http://www.fjkankan.com' ? '渝ICP备18007725号-2' : '渝ICP备18007725号'; ?></a>
<br/>
<a target="_blank" href="http://sq.ccm.gov.cn/ccnt/sczr/service/business/emark/toDetail/0327d7179b6c461681633f9389694746"> <img src="/static/common/img/wlwhjydw.png" style="width:25px;height:25px;"><p> 互联网文化经营单位</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=50010302002430" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;">
<img src="/fj.png" style="float:left;"/>
<p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002430号</p >
</a>
</div>
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=3165734538&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2:3165734538:51" alt="点击这里给我发消息" title="点击这里给我发消息"/></a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src = "/static/admin/layer/layer.js"></script>
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
</html>
<script>
$(function(){
$('.common-header .aboutuson').addClass('on');
});
</script>
<?php /*a:4:{s:66:"D:\PHPStormProject\fjkankan\config/../template/home\news\list.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<?php /*a:4:{s:69:"D:\PHPStormProject\fjkankan\config/../template/home\public\error.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1648195250;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1648116123;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
......@@ -152,32 +152,20 @@
text-decoration: none;
}
</style>
<title>凡骄娱乐-动态</title>
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>404</title>
<link type="text/css" rel="stylesheet" href="/static/common/css/w3-style.css">
<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;font-weight:100;}
section img{max-width: 100%;height: auto;}
section .date{color:#b3b3b3;font-size:12px;margin-bottom:30px;}
section .note{color:#737373;font-size:14px;line-height:24px;}
.more-link {font-size: 14px;}
section .note p{line-height: 22px;padding-bottom:40px;}
section .pic{margin-top:35px;}
.common-footer{margin-top:123px;}
.page{color: #5B5B5B;text-decoration: none;cursor: pointer;}
.page:hover{color:#00A2FF;text-decoration:none;}
.page.page-left{float: left;}
.page.page-right{float: right;}
.common-header{
margin-left: -560px;
}
......@@ -186,14 +174,13 @@
}
.common-header{
margin-left: -560px;
.common-footer ul{
width: 428px !important;
}
.common-header li .service.business .down-list{
left: -3px;
.common-footer li{
margin: 0 17px 30px 17px;
}
</style>
</head>
<body class="white-bg">
......@@ -223,102 +210,50 @@
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<?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 business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
<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 url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
<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>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
<?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>
<?php if(is_array($news_list) || $news_list instanceof \think\Collection || $news_list instanceof \think\Paginator): $i = 0; $__LIST__ = $news_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?>
<article class="clearfix">
<aside>
<p class="day"><?php echo date('d',$vo['current']); ?></p>
<p class="month"><?php echo date('m',$vo['current']); ?></p>
</aside>
<div class="dynamic-list">
<section>
<h2><a href="/news/<?php echo htmlentities($vo['id']); ?>.html"><?php echo htmlentities($vo['news_title']); ?></a></h2>
<p class="date"><?php echo date('Y-m-d',$vo['current']); ?></p>
<div class="note clearfix">
<p>
<?php echo htmlspecialchars_decode($vo['news_content_str']); ?>
</p>
<p> <a href="/news/<?php echo htmlentities($vo['id']); ?>.html" class="more-link">阅读全文</a></p>
</div>
<p class="line2"></p>
</section>
<div style="height:120px;background: #f5f5f5;border-bottom: 1px solid #e4e4e4;"></div>
<div class="wrapper ">
<div class="con_nofound">
<div class="Title">
<span class="bigTitle">404!</span>
<span class="subTitle">你访问的页面不存在</span>
</div>
</article>
<?php endforeach; endif; else: echo "" ;endif; ?>
<div>
<?php echo $news_list; ?>
<div id="hiddenTip" class="hiddenTip" style="display: block;">其实人生很短暂,这一分钟,你想明白了什么?</div>
</div>
<article class="clearfix">
<article class="clearfix">
<div class="dynamic-list clearfix">
<?php if($first != 'false'): ?>
<a class="page page-left" href="/news.html?page=<?php echo htmlentities($first); ?>"><span></span>最近动态</a>
<?php endif; if($second != 'false'): ?>
<a class="page page-right" href="/news.html?page=<?php echo htmlentities($second); ?>"><span></span>早期动态</a>
<?php endif; ?>
</div>
</article>
</article>
</div>
<footer class="common-footer">
......
<?php /*a:4:{s:71:"D:\PHPStormProject\fjkankan\config/../template/home\about\vipterms.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<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">
<meta name="description" content="凡骄娱乐">
<meta name="keyword" content="凡骄,凡骄直播">
<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;
}
</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); ?>) 14px 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); ?>) 14px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<li class="white-bg-service">
<span class="service business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
</span>
<span class="item">
<a href="<?php echo url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
</span>
</span>
</span>
</li>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
</li>
</ul>
</header>
<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>
<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 © 2019 <a href="<?php echo htmlentities($host_name); ?>" target="_blank">重庆凡骄网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank"><?php echo $host_name=='http://www.fjkankan.com' ? '渝ICP备18007725号-2' : '渝ICP备18007725号'; ?></a>
<br/>
<a target="_blank" href="http://sq.ccm.gov.cn/ccnt/sczr/service/business/emark/toDetail/0327d7179b6c461681633f9389694746"> <img src="/static/common/img/wlwhjydw.png" style="width:25px;height:25px;"><p> 互联网文化经营单位</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=50010302002430" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;">
<img src="/fj.png" style="float:left;"/>
<p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002430号</p >
</a>
</div>
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=3165734538&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2:3165734538:51" alt="点击这里给我发消息" title="点击这里给我发消息"/></a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src = "/static/admin/layer/layer.js"></script>
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
</html>
<script>
$(function(){
$('.common-header .aboutuson').addClass('on');
});
</script>
<?php /*a:4:{s:70:"D:\PHPStormProject\fjkankan\config/../template/home\about\contact.html";i:1643093834;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<?php /*a:4:{s:70:"D:\PHPStormProject\fjkankan\config/../template/home\about\contact.html";i:1643093834;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1648195250;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1648116123;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
......@@ -152,6 +152,15 @@
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>凡骄娱乐-联系我们</title>
......@@ -216,60 +225,39 @@
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<?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 business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
<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 url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
<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>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
<?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">
......
<?php /*a:4:{s:72:"D:\PHPStormProject\fjkankan\config/../template/home\about\agreement.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<?php /*a:4:{s:72:"D:\PHPStormProject\fjkankan\config/../template/home\about\agreement.html";i:1648195788;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1648195250;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1648116123;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
......@@ -152,6 +152,15 @@
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>凡骄娱乐-关于我们</title>
......@@ -298,60 +307,39 @@
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<?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 business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
<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 url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
<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>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
<?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">
......
<?php /*a:4:{s:66:"D:\PHPStormProject\fjkankan\config/../template/home\game\list.html";i:1643254400;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<?php /*a:4:{s:66:"D:\PHPStormProject\fjkankan\config/../template/home\game\list.html";i:1648198636;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1648195250;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1648116123;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
......@@ -152,6 +152,15 @@
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>凡骄娱乐-游戏</title>
<style>
......@@ -229,60 +238,39 @@
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<?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 business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
<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 url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
<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>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
<?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>
......@@ -298,7 +286,7 @@
</nav>
<section>
<?php if(is_array($game_list) || $game_list instanceof \think\Collection || $game_list instanceof \think\Paginator): $k = 0; $__LIST__ = $game_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;?>
<p><img src="<?php echo htmlentities($vo['img']['img_url']); ?><?php echo htmlentities($vo['img']['img_name']); ?>" alt="<?php echo htmlentities($vo['game_cate']['title']); ?>" width="960" height="260" class="alignnone size-full wp-image-4485"></p>
<p><img src="<?php echo htmlentities($vo['img_url']); ?>" style="margin-top: 10px;" alt="<?php echo htmlentities($vo['game_cate']['title']); ?>" width="960" height="260" class="alignnone size-full wp-image-4485"></p>
<?php endforeach; endif; else: echo "" ;endif; ?>
</section>
</div>
......
<?php /*a:4:{s:74:"D:\PHPStormProject\fjkankan\config/../template/home\index\Index\index.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1643092775;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1643092775;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<?php /*a:4:{s:74:"D:\PHPStormProject\fjkankan\config/../template/home\index\Index\index.html";i:1648195474;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\header.html";i:1648195250;s:71:"D:\PHPStormProject\fjkankan\config/../template/home\public\nav_bar.html";i:1648116123;s:70:"D:\PHPStormProject\fjkankan\config/../template/home\public\footer.html";i:1643092775;}*/ ?>
<html>
<head>
<link type="text/css" rel="stylesheet" href="/static/common/css/common.css">
......@@ -152,6 +152,15 @@
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
<title>凡骄娱乐-首页</title>
......@@ -418,60 +427,39 @@
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<?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 business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
<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 url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
</span>
<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>
</li>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
<?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">
<header id="playerbanner" class="banner">
......@@ -489,16 +477,17 @@
</div>
</div>
</header>
<?php if(!empty($know_list)): ?>
<section class="sec-1">
<h2 class="tit">用视频认识我</h2>
<p class="note">进入凡骄的世界,去结识那些陌生而有趣的人</p>
<ul class="clearfix">
<li><img class="te" src="/static/common/img/fanjiao_1.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_2.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_3.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_4.png" style="width:290px"></li>
<?php if(is_array($know_list) || $know_list instanceof \think\Collection || $know_list instanceof \think\Paginator): $i = 0; $__LIST__ = $know_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?>
<li><img class="te" src="<?php echo htmlentities($vo['img_url']); ?>" style="width:290px"></li>
<?php endforeach; endif; else: echo "" ;endif; ?>
</ul>
</section>
<?php endif; ?>
<!-- <section class="sec-2">
<h2 class="tit">年轻人的社交选择</h2>
<p class="note">加入凡骄找到新朋友<br></p>
......@@ -542,6 +531,7 @@
</div>
</section>-->
<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: ?>
<h2 class="tit">根据你的手机,选择下载</h2>
<ul class="clearfix">
......@@ -550,16 +540,17 @@
<?php if(( $vo['app_cate']['title']!='QC')): ?>
<a href="<?php echo htmlentities($vo['file_link']); ?>" target="_Blank" class="ciqclickbtn" _client="PC" _page="首页" _position="底部" _name="<?php echo htmlentities($vo['app_cate']['title']); ?>下载">
<i class="icon">
<img class="te" alt="" style="width:50px;height:50px;" src="<?php echo htmlentities($vo['img']['img_url']); ?><?php echo htmlentities($vo['img']['img_name']); ?>">
<img class="te" alt="" style="width:50px;height:50px;" src="<?php echo htmlentities($vo['img_url']); ?>">
</i>
<p><?php echo htmlentities($vo['app_cate']['title']); ?></p>
</a>
<?php else: ?>
<img alt="" style="width:100%;height:100%" src="<?php echo htmlentities($vo['img']['img_url']); ?><?php echo htmlentities($vo['img']['img_name']); ?>">
<img alt="" style="width:100%;height:100%" src="<?php echo htmlentities($vo['img_url']); ?>">
<?php endif; ?>
</li>
<?php endforeach; endif; else: echo "" ;endif; ?>
</ul>
<?php endif; ?>
</section>
<section class="sec-4">
<ul class="clearfix">
......
<?php /*a:4:{s:62:"E:\www\fjkankan\config/../template/home\index\Index\index.html";i:1641204274;s:58:"E:\www\fjkankan\config/../template/home\public\header.html";i:1601290264;s:59:"E:\www\fjkankan\config/../template/home\public\nav_bar.html";i:1641205005;s:58:"E:\www\fjkankan\config/../template/home\public\footer.html";i:1620981696;}*/ ?>
<html>
<head>
<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">
<meta name="description" content="凡骄娱乐">
<meta name="keyword" content="凡骄,凡骄直播">
<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;
}
</style>
<title>凡骄娱乐-首页</title>
<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/icon1.1.png) 21px -57px no-repeat;}
.banner .member-center{color:#fff;background:url(/static/common/img/icon1.1.png) 20px -163px no-repeat;margin-left:26px;}
.banner .ad-link{color:#fff;background:url(/static/common/img/icon1.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;
}
.down {opacity: 0.8;
}
.down:hover {opacity: 1;
}
.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;}
section{width:1200px;margin: 180px auto 0;text-align: center;}
.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/icon1.1.png) 0 0 no-repeat;}
.sec-3 .icon.android{background:url(/static/common/img/icon1.1.png) -78px 0 no-repeat;}
.sec-3 .icon.wp{background:url(/static/common/img/icon1.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/icon1.1.png) 0 -110px no-repeat;}
.sec-3 li.down.on .icon.android{background:url(/static/common/img/icon1.1.png) -77px -111px no-repeat;}
.sec-3 li.down.on .icon.wp{background:url(/static/common/img/icon1.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/icon1.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;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 70px; /* Location of the box */
width:360px;
height:460px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
/* Modal Content (image) */
.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
/* Caption of Modal Image */
#caption {
margin: auto;
display: block;
width: 100%;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
/* Add Animation */
.modal-content, #caption {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {-webkit-transform: scale(0)}
to {-webkit-transform: scale(1)}
}
@keyframes zoom {
from {transform: scale(0.1)}
to {transform: scale(1)}
}
/* The Close Button */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
.modal-content {
width: 100%;
}
}
</style>
</head>
<body>
<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); ?>) 14px 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); ?>) 14px 37px no-repeat;
background-size: 18%;
}
<?php endif; ?>
</style>
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="<?php echo url('/home'); ?>">首页</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news <?php echo $url=='News' ? 'active' : ''; ?>" href="<?php echo url('/news'); ?>">凡骄动态</a>
</li>
<li>
<a class="join <?php echo $url=='Join' ? 'active' : ''; ?>" href="<?php echo url('/join'); ?>">加入我们</a>
</li>
<li class="white-bg-service">
<span class="service business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
</span>
<span class="item">
<a href="<?php echo url('/aboutus'); ?>">关于凡骄</a>
</span>
<span class="item">
<a href="<?php echo url('/contact'); ?>">联系我们</a>
</span>
</span>
</span>
</li>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="<?php echo url('/game'); ?>" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="<?php echo url('/servicehelp/help'); ?>">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/service'); ?>">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="<?php echo url('/servicehelp/help'); ?>">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild <?php echo $url=='Guild' ? 'active' : ''; ?>" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp <?php echo $url=='ServiceHelp' ? 'active' : ''; ?>" href="<?php echo url('/servicehelp/info'); ?>">凡骄麻将</a> -->
</li>
</ul>
</header>
<div class="wrapper">
<header id="playerbanner" class="banner">
<div class="page-1">
<div class="bg"></div>
<!-- <a id="indexplayerplaybtn" class="play-btn"></a> -->
<div id="entryCon">
<a id="downloads_rightnow" href="#downloads" class="download-btn banner-btn ciqclickbtn te" _client="PC" _page="首页" _position="banner" _name="立即下载">立即下载</a>
<!-- <a href="" class="member-center banner-btn">会员中心</a> -->
<!-- <a href="" class="ad-link banner-btn te ">广告投放</a>-->
<!-- <a target="_blank" href="<?php echo url('/servicehelp/cate',array('id'=>11)); ?>" class="live-guild banner-btn te">公会入驻</a>-->
<!-- <a href="">短视频公会</a> -->
</div>
</div>
</header>
<section class="sec-1">
<h2 class="tit">用视频认识我</h2>
<p class="note">进入凡骄的世界,去结识那些陌生而有趣的人</p>
<ul class="clearfix">
<li><img class="te" src="/static/common/img/fanjiao_1.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_2.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_3.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_4.png" style="width:290px"></li>
</ul>
</section>
<!-- <section class="sec-2">
<h2 class="tit">年轻人的社交选择</h2>
<p class="note">加入凡骄找到新朋友<br></p>
<div class="photo-wall" id="photo-wall">
<ul class="wall-pace">
<li class="sq-sm">
<img class="te" src="/static/common/img/1.jpg"></li>
<li class="rect-x">
<img class="te" src="/static/common/img/2.png">
</li>
<li class="sq-lg">
<img class="te" src="/static/common/img/3.jpg">
</li>
<li class="rect-y">
<img class="te" src="/static/common/img/4.jpg"></li>
</ul>
<ul class="wall-pace">
<li class="sq-lg">
<img class="te" src="/static/common/img/7.jpg">
</li>
<li class="rect-y">
<img class="te" src="/static/common/img/8.jpg"></li>
<li class="sq-sm">
<img class="te" src="/static/common/img/5.jpg"></li>
<li class="rect-x">
<img class="te" src="/static/common/img/6.jpg">
</li>
</ul>
<ul class="wall-pace">
<li class="rect-x">
<img class="te" src="/static/common/img/10.jpg">
</li>
<li class="sq-sm">
<img class="te" src="/static/common/img/9.jpg"></li>
<li class="rect-y wall-last-3">
<img class="te" src="/static/common/img/12.jpg"></li>
<li class="sq-lg wall-last-4">
<img class="te" src="/static/common/img/11.jpg">
</li>
</ul>
</div>
</section>-->
<section id="downloads" name="downloads" class="sec-3">
<h2 class="tit">根据你的手机,选择下载</h2>
<ul class="clearfix">
<?php if(is_array($app_list) || $app_list instanceof \think\Collection || $app_list instanceof \think\Paginator): $i = 0; $__LIST__ = $app_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?>
<li class="down">
<?php if(( $vo['app_cate']['title']!='QC')): ?>
<a href="<?php echo htmlentities($vo['file_link']); ?>" target="_Blank" class="ciqclickbtn" _client="PC" _page="首页" _position="底部" _name="<?php echo htmlentities($vo['app_cate']['title']); ?>下载">
<i class="icon">
<img class="te" alt="" style="width:50px;height:50px;" src="<?php echo htmlentities($vo['img']['img_url']); ?><?php echo htmlentities($vo['img']['img_name']); ?>">
</i>
<p><?php echo htmlentities($vo['app_cate']['title']); ?></p>
</a>
<?php else: ?>
<img alt="" style="width:100%;height:100%" src="<?php echo htmlentities($vo['img']['img_url']); ?><?php echo htmlentities($vo['img']['img_name']); ?>">
<?php endif; ?>
</li>
<?php endforeach; endif; else: echo "" ;endif; ?>
</ul>
</section>
<section class="sec-4">
<ul class="clearfix">
<li>
<p class="tit"><a target="blank" href="<?php echo url('/servicehelp/help'); ?>">用户帮助<span class="arrows"></span></a></p>
<?php if(is_array($help_list) || $help_list instanceof \think\Collection || $help_list instanceof \think\Paginator): $k = 0; $__LIST__ = $help_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;?>
<p class="con">
<a target="blank" href="<?php echo url('/servicehelp/question',array('id'=>$vo['id'])); ?>"><?php echo htmlentities($vo['title']); ?><span class="arrows"></span></a>
</p>
<?php endforeach; endif; else: echo "" ;endif; ?>
</li>
<li>
<p class="tit"><a href="<?php echo url('/join'); ?>">凡骄招聘<span class="arrows"></span></a></p>
<p class="con">无论你是产品、技术还是设计大师,</p>
<p class="con">又或者在其他方面有所建树,</p>
<p class="con">随时欢迎热爱互联网的你,</p>
<p class="con">与凡骄一起创造更好的社交体验</p>
</li>
<li>
<p class="tit"><a target="blank" href="<?php echo url('/news'); ?>">凡骄动态<span class="arrows"></span></a></p>
<?php if(is_array($news_list) || $news_list instanceof \think\Collection || $news_list instanceof \think\Paginator): $k = 0; $__LIST__ = $news_list;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($k % 2 );++$k;?>
<p class="con">
<a target="blank" href="/news/<?php echo htmlentities($vo['id']); ?>.html"><?php echo htmlentities($vo['news_title']); ?><span class="arrows"></span></a>
</p>
<?php endforeach; endif; else: echo "" ;endif; ?>
</li>
</ul>
</section>
<section class="sec-4 i" style="margin-top:-150px;">
<ul class="clearfix">
<li style=" border-left: 0px;">
<img class="img" alt="" style="wdith:100%;height:100%;" src="/static/IMG/ICP.jpg">
</li>
<li style=" border-left: 0px;">
<img class="img" alt="" style="wdith:100%;height:100%;" src="/static/IMG/www.jpg">
</li>
<li style=" border-left: 0px;">
<img class="img" alt="" style="wdith:100%;height:100%;" src="/static/IMG/yyzz.jpg">
</li>
</ul>
</section>
<!-- The Modal -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption"></div>
</div>
</div>
</body>
<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 © 2019 <a href="<?php echo htmlentities($host_name); ?>" target="_blank">重庆凡骄网络科技有限公司</a>All Rights Reserved<br><a href="https://beian.miit.gov.cn/#/Integrated/recordQuery" target="_Blank"><?php echo $host_name=='http://www.fjkankan.com' ? '渝ICP备18007725号-2' : '渝ICP备18007725号'; ?></a>
<br/>
<a target="_blank" href="http://sq.ccm.gov.cn/ccnt/sczr/service/business/emark/toDetail/0327d7179b6c461681633f9389694746"> <img src="/static/common/img/wlwhjydw.png" style="width:25px;height:25px;"><p> 互联网文化经营单位</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=50010302002430" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;">
<img src="/fj.png" style="float:left;"/>
<p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">渝公网安备 50010302002430号</p >
</a>
</div>
<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=3165734538&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2:3165734538:51" alt="点击这里给我发消息" title="点击这里给我发消息"/></a>
</footer>
<script type="text/javascript" src = "/static/home/js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src = "/static/admin/layer/layer.js"></script>
<!-- -->
<script>
$(function(){
$('.common-header .active').addClass('on');
})
</script>
</html>
<script>
$(document).ready(function(){
var modal = document.getElementById('myModal');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
$(".img").click(function(){
// 获取图片模态框,alt 属性作为图片弹出中文本描述
modal.style.display = "block";
modalImg.src = $(this).attr('src');
modalImg.alt = $(this).attr('alt');
captionText.innerHTML = $(this).attr('alt');
});
// 获取 <span> 元素,设置关闭模态框按钮
var span = document.getElementsByClassName("close")[0];
// 点击 <span> 元素上的 (x), 关闭模态框
span.onclick = function() {
modal.style.display = "none";
}
$.post('/getConfig',function (data){
if (data.banner){
// $('#playerbanner').css('background','#1e78eb url('+data.banner+') no-repeat').css('backgroundSize','100% 100%')
$('.page-1').css('background','#1e78eb url('+data.banner+') no-repeat').css('backgroundSize','100% 100%')
}
if (data.button.length>0){
let html = ''
$.each(data.button, function(i, val) {
html +=`<a target="_target" _position="banner" href="//`+val.config_address+`"
style="color:#fff;background:url('`+val.icon+`') 25px center no-repeat;background-size: 30px 30px;
background-position:22px 13px;
margin-left:26px;" class="download-btn banner-btn ciqclickbtn te">`+val.name+`</a>`
});
$('#entryCon').append(html)
}else{
let html = `<a href="" class="ad-link banner-btn te">广告投放</a>
<!-- <a target="_blank" href="<?php echo url('/servicehelp/cate',array('id'=>11)); ?>" class="live-guild banner-btn te">公会入驻</a>-->`
$('#entryCon').append(html)
}
})
});
</script>
......@@ -125,14 +125,16 @@
<p class="line"></p>
<nav>
<ul class="clearfix">
<li class=" on "><a href="/aboutus/us.html" "="">关于凡骄</a></li>
<li class=""><a href="/aboutus/agreement.html" "="">用户协议</a></li>
<li class=""><a href="/aboutus/vipterms.html" "="">会员条款</a></li>
{volist name="list" id="vo"}
<li class="{if $id==$vo.id}on{/if}"><a href="/aboutus/us/article/{$vo.id}.html">{$vo.title}</a></li>
{/volist}
</ul>
</nav>
{if !empty($us)}
<section class="info-sec info-sec-1">
{:htmlspecialchars_decode($us.content)}
</section>
{/if}
......
......@@ -125,14 +125,16 @@
<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>
{volist name="list" id="vo"}
<li class="{if $id==$vo.id}on{/if}"><a href="/aboutus/us/article/{$vo.id}.html">{$vo.title}</a></li>
{/volist}
</ul>
</nav>
<section>
{:htmlspecialchars_decode($agreement.content)}
{if !empty($us)}
<section class="info-sec info-sec-1">
{:htmlspecialchars_decode($us.content)}
</section>
{/if}
</div>
......
......@@ -65,7 +65,7 @@
</nav>
<section>
{volist name="game_list" id="vo" key="k"}
<p><img src="{$vo.img.img_url}{$vo.img.img_name}" alt="{$vo.game_cate.title}" width="960" height="260" class="alignnone size-full wp-image-4485"></p>
<p><img src="{$vo.img_url}" style="margin-top: 10px;" alt="{$vo.game_cate.title}" width="960" height="260" class="alignnone size-full wp-image-4485"></p>
{/volist}
</section>
</div>
......
......@@ -256,16 +256,17 @@
</div>
</div>
</header>
{if !empty($know_list)}
<section class="sec-1">
<h2 class="tit">用视频认识我</h2>
<p class="note">进入凡骄的世界,去结识那些陌生而有趣的人</p>
<ul class="clearfix">
<li><img class="te" src="/static/common/img/fanjiao_1.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_2.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_3.png" style="width:290px"></li>
<li><img class="te" src="/static/common/img/fanjiao_4.png" style="width:290px"></li>
{volist name="know_list" id="vo"}
<li><img class="te" src="{$vo.img_url}" style="width:290px"></li>
{/volist}
</ul>
</section>
{/if}
<!-- <section class="sec-2">
<h2 class="tit">年轻人的社交选择</h2>
<p class="note">加入凡骄找到新朋友<br></p>
......@@ -309,6 +310,7 @@
</div>
</section>-->
<section id="downloads" name="downloads" class="sec-3">
{empty name="app_list"}{else}
<h2 class="tit">根据你的手机,选择下载</h2>
<ul class="clearfix">
......@@ -317,16 +319,17 @@
{if ( $vo.app_cate.title!='QC')}
<a href="{$vo.file_link}" target="_Blank" class="ciqclickbtn" _client="PC" _page="首页" _position="底部" _name="{$vo.app_cate.title}下载">
<i class="icon">
<img class="te" alt="" style="width:50px;height:50px;" src="{$vo.img.img_url}{$vo.img.img_name}">
<img class="te" alt="" style="width:50px;height:50px;" src="{$vo.img_url}">
</i>
<p>{$vo.app_cate.title}</p>
</a>
{else /}
<img alt="" style="width:100%;height:100%" src="{$vo.img.img_url}{$vo.img.img_name}">
<img alt="" style="width:100%;height:100%" src="{$vo.img_url}">
{/if}
</li>
{/volist}
</ul>
{/empty}
</section>
<section class="sec-4">
<ul class="clearfix">
......
......@@ -151,4 +151,13 @@
text-decoration: none;
}
.te{
cursor: pointer;
transition: all 0.6s;
}
.te:hover{
transform: scale(1.2);
z-index:1000;
}
</style>
\ No newline at end of file
......@@ -26,57 +26,37 @@
<header class="common-header">
<a class="logo-href" href="/"></a>
<ul class="clearfix">
<li class="no-border">
<a class="home" href="{:url('/home')}">首页</a>
</li>
<li>
<a class="news {$url=='News'?'active':''}" href="/nationalTide">国潮</a>
</li>
<li>
<a class="news {$url=='News'?'active':''}" href="{:url('/news')}">凡骄动态</a>
</li>
<li>
<a class="join {$url=='Join'?'active':''}" href="{:url('/join')}">加入我们</a>
</li>
{volist name="nav" id="vo" key="k"}
{if !empty($vo.child)}
<li class="white-bg-service">
<span class="service business">关于我们
<span class="down-list">
<span class="item colortext">
<a href="javascript:">关于我们&nbsp;&nbsp;</a>
</span>
<span class="item">
<a href="{:url('/aboutus')}">关于凡骄</a>
<span class="service">&nbsp;{$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:">{$vo.title}</a>
</span>
{volist name="vo.child" id="child" key="key"}
<span class="item">
<a href="{:url('/contact')}">联系我们</a>
<a href="{$child.url}" {if $child.show_type==1}target="_blank"{/if}>{$child.title}</a>
</span>
{/volist}
</span>
</span>
</li>
<li class="white-bg-service"><span class="service business" href="/business">业务体系<span class="down-list">
<span class="item colortext"><a href="javascript:">业务体系&nbsp;&nbsp;</a></span>
<span class="item"><a href="{:url('/game')}" >凡骄游戏</a></span>
</span></span></li>
<li class="
<span class="service"><a href="{:url('/servicehelp/help')}">帮助</a>
<!-- <span class="down-list"> -->
<!-- <span class="item colortext">-->
<!-- <a href="{:url('/servicehelp/help')}">充值与帮助</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="{:url('/servicehelp/service')}">在线充值</a>-->
<!-- </span>-->
<!-- <span class="item">-->
<!-- <a href="{:url('/servicehelp/help')}">帮助中心</a>-->
<!-- </span>-->
<!-- </span>-->
</span>
</li>
<!-- <li>
<a class="guild {$url=='Guild'?'active':''}" href="http://guild-rds.3yakj.com">公会入口</a>
</li> -->
<li>
<!-- <a class="servicehelp {$url=='ServiceHelp'?'active':''}" href="{:url('/servicehelp/info')}">凡骄麻将</a> -->
{else \}
<li {if $k==1}class="no-border"{else}class="white-bg-service"{/if}>
<a class="{$vo.class} {$url==ucfirst($vo.class)?'active':''}" href="{$vo.url}" {if $vo.show_type==1}target="_blank"{/if}>{$vo.title}</a>
</li>
{/if}
{/volist}
</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>
\ No newline at end of file
......@@ -186,6 +186,7 @@
</div>
{/volist}
</div>
{if !empty($question_cate_list)}
<div class="usercontext">
<div class="tips-container">
<form id="search-form" method="get" action="/servicehelp/search.html">
......@@ -226,6 +227,7 @@
{/if}
</div>
</div>
{/if}
</section>
</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