Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
3
3yakj
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
甘剑浪
3yakj
Commits
425291a8
Commit
425291a8
authored
Mar 24, 2022
by
liukang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改提交
parent
75022995
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
3635 additions
and
86 deletions
+3635
-86
Base.php
application/common/controller/Base.php
+32
-2
Index.php
application/index/controller/Index.php
+10
-0
Join.php
application/join/controller/Join.php
+1
-0
route.php
route/route.php
+1
-1
01310e44750eeeef78e5833a910e6b24.php
runtime/temp/01310e44750eeeef78e5833a910e6b24.php
+439
-0
2da956607ef19d92cf3094022ca9be60.php
runtime/temp/2da956607ef19d92cf3094022ca9be60.php
+391
-0
4290dff9b123619dc351053b45862416.php
runtime/temp/4290dff9b123619dc351053b45862416.php
+394
-0
6a22201b8b6cbed8f0570187ec64115e.php
runtime/temp/6a22201b8b6cbed8f0570187ec64115e.php
+762
-0
8b116787e5d2b185b0b45b3a202f557e.php
runtime/temp/8b116787e5d2b185b0b45b3a202f557e.php
+543
-0
bd53d07525251e1d7f391d509a459ecc.php
runtime/temp/bd53d07525251e1d7f391d509a459ecc.php
+453
-0
ec78db132bb8404f0528892cdde94782.php
runtime/temp/ec78db132bb8404f0528892cdde94782.php
+576
-0
index.html
template/home/index/Index/index.html
+3
-1
huatai.html
template/home/index/huatai.html
+3
-6
list.html
template/home/join/list.html
+1
-1
nav_bar.html
template/home/public/nav_bar.html
+26
-75
No files found.
application/common/controller/Base.php
View file @
425291a8
...
...
@@ -19,8 +19,8 @@ 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
;
...
...
@@ -31,9 +31,39 @@ class Base extends Error
if
(
!
empty
(
$vedio
)){
$this
->
vedio_url
=
$vedio
->
img
->
img_url
.
$vedio
->
img
->
img_name
;
}
$this
->
getNav
();
$this
->
assign
(
"other_logo_url"
,
$this
->
other_logo_url
);
$this
->
assign
(
"logo_url"
,
$this
->
logo_url
);
$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'
)
->
find
();
$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'
=>
$bannerImgId
[
'id'
]))
->
field
(
'picSrc'
)
->
select
();
$imagePre
=
"https://oss.3yakj.com/application_static_data"
;
$bannerImg
=
[];
if
(
$bannerImgId
[
'mintype'
]
==
0
){
$bannerImg
=
$imagePre
.
$cont
[
mt_rand
(
0
,
count
(
$cont
)
-
1
)][
'picSrc'
];
}
else
{
foreach
(
$cont
as
$value
){
$bannerImg
[]
=
$imagePre
.
$value
[
'picSrc'
];
}
}
return
$bannerImg
;
}
public
function
getNav
(){
$nav
=
db
(
'menu'
)
->
where
(
array
(
'status'
=>
1
,
'type'
=>
0
))
->
field
(
'id,title,url,show_type'
)
->
order
(
'order desc'
)
->
select
();
foreach
(
$nav
as
$key
=>
$value
){
$child
=
db
(
'menu_child'
)
->
where
(
array
(
'pid'
=>
$value
[
'id'
],
'status'
=>
1
))
->
field
(
'title,show_type,url'
)
->
order
(
'order desc'
)
->
select
();
$nav
[
$key
][
'child'
]
=
$child
;
}
$this
->
assign
(
'nav'
,
$nav
);
}
}
\ No newline at end of file
application/index/controller/Index.php
View file @
425291a8
...
...
@@ -75,6 +75,16 @@ class Index extends Base
{
$this
->
assign
(
'domain'
,
$request
->
domain
());
$this
->
assign
(
'url'
,
$this
->
url
);
$this
->
assign
(
'imageList'
,
$this
->
getImage
(
3
));
return
view
(
"/home/index/huatai"
);
}
public
function
getConfig
(){
$type
=
input
(
'type'
);
//获取首页背景图
$bannerImg
=
$this
->
getImage
(
$type
);
//获取按钮
$button
=
array
();
return
json
([
'banner'
=>
$bannerImg
,
'button'
=>
$button
]
);
}
}
application/join/controller/Join.php
View file @
425291a8
...
...
@@ -19,6 +19,7 @@ class Join extends Base
$join_list
=
$join
->
where
(
'isdeleted'
,
0
)
->
order
(
'join_cate_id'
,
'asc'
)
->
order
(
'current'
,
'desc'
)
->
select
();
$join_cate_list
=
$join_cate
->
where
(
'isdeleted'
,
0
)
->
order
(
'id'
,
'asc'
)
->
select
();
$this
->
assign
(
'url'
,
$this
->
url
);
$this
->
assign
(
'join_image'
,
$this
->
getImage
(
2
));
$this
->
assign
(
'join_cate_list'
,
$join_cate_list
);
$this
->
assign
(
'join_list'
,
$join_list
);
return
view
(
"/home/join/list"
);
...
...
route/route.php
View file @
425291a8
...
...
@@ -19,7 +19,7 @@ Route::get('home/', 'index/Index/index');
Route
::
get
(
''
,
'index/Index/index'
);
Route
::
get
(
'mobile'
,
'index/Index/mobile'
);
Route
::
any
(
'uploads_file'
,
'admin/Uploads/uploads'
);
Route
::
post
(
'getConfig'
,
'
admin/Uploads
/getConfig'
);
Route
::
post
(
'getConfig'
,
'
index/Index
/getConfig'
);
Route
::
get
(
'hello/:name'
,
'index/hello'
);
...
...
runtime/temp/01310e44750eeeef78e5833a910e6b24.php
0 → 100644
View file @
425291a8
<?php
/*a:4:{s:66:"D:\PHPStormProject\3yakj\config/../template/home\index\huatai.html";i:1647940258;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648105487;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/
?>
<html>
<head>
<title>
朱贝-全民娱乐直播平台
</title>
<meta
name=
"chinaz-site-verification"
content=
"AC2EF776C208BC35"
>
<meta
name=
"keywords"
content=
"朱贝、朱贝软件、短视频直播、娱乐直播"
/>
<meta
name=
"description"
content=
"朱贝是一款由三丫互娱专注于打造全民娱乐直播平台。多功能直播间互动、便捷分享模式,给你带来不同直播互动体验。互动视频娱乐直播交友,汇集各类优秀主播在线互动,24小时不间断嗨歌热舞,为您带来超凡体验!"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/common.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/home/css/swiper3.07.min.css"
>
<style>
.wrapper
{
overflow
:
hidden
}
.banner
{
background
:
#1e78eb
;
height
:
540px
;
padding-top
:
120px
;}
.banner
.page-1
{
width
:
960px
;
height
:
540px
;
margin
:
0
auto
;
position
:
relative
;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner
a
,
.banner
a
:hover
{
text-decoration
:
none
;
cursor
:
pointer
;}
.banner
.play-btn
{
width
:
84px
;
height
:
84px
;
display
:
block
;
background
:
url(/static/common/img/play.png)
0
0
no-repeat
;
left
:
50%
;
position
:
absolute
;
top
:
165px
;
z-index
:
2000
;
margin-left
:
114px
;
cursor
:
pointer
;}
.banner
.play-btn
,
.banner
.play-close-btn
{
display
:
block
;}
.banner
.play-close-btn
{
width
:
52px
;
height
:
52px
;
background
:
url(/static/common/img/close.jpg)
0
0
no-repeat
;
position
:
absolute
;
right
:
0
;
top
:
0
;
z-index
:
30000
;
opacity
:
0
;}
.banner
.page-2
:hover
.play-close-btn
{
opacity
:
1
;}
@media
screen
and
(
-webkit-min-device-pixel-ratio
:
0
)
{
.banner
.play-close-btn
{
right
:
2px
;
}
}
.banner
.banner-btn
{
width
:
105px
;
height
:
51px
;
display
:
inline-block
;
border
:
2px
solid
#fff
;
font-size
:
20px
;
line-height
:
51px
;
padding-left
:
65px
;}
.banner
.download-btn
{
color
:
#267be5
;
background
:
#fff
url(/static/common/img/icon.1.1.png)
21px
-57px
no-repeat
;}
.banner
.member-center
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
20px
-163px
no-repeat
;
margin-left
:
26px
;}
.banner
.ad-link
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
-250px
-32px
no-repeat
;
margin-left
:
26px
;}
.live-guild
{
color
:
#fff
;
background
:
url("/static/common/img/people.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
.microvideo
{
color
:
#fff
;
background
:
url("/static/common/img/vedio.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
#entryCon
{
display
:
flex
;
position
:
absolute
;
justify-content
:
space-between
;
flex-wrap
:
nowrap
;
top
:
398px
;
left
:
0px
;
}
.banner
object
{
position
:
relative
;
z-index
:
1000
;}
.banner
.page-2
{
position
:
absolute
;
z-index
:
3000
;
left
:
629px
;
top
:
240px
;
left
:
455px
\
0
;
top
:
190px
\
0
;
*
left
:
456px
;
*
top
:
190px
;
text-align
:
center
;
padding
:
6px
;
width
:
0
;
height
:
0
;
background
:
#0d0d0d
;
opacity
:
0
;
overflow
:
hidden
;
-webkit-transition
:
all
0.3s
;
transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.banner
.page-2
.jwlogo
{
display
:
none
;}
.banner.videoplaying
.page-1
.bg
{
background
:
#267be5
;}
.banner.videoplaying
.page-2
{
opacity
:
1
;
width
:
948px
;
height
:
528px
;
top
:
0
;
left
:
0
;}
.banner
.qr-code-con
{
width
:
121px
;
height
:
121px
;
border
:
2px
solid
#fff
;
position
:
absolute
;
top
:
341px
;
left
:
198px
;}
.banner
.qr-code-con
.qr-code
{
margin
:
12px
;}
.banner
.qr-code-con
.qr-note
{
color
:
#fff
;
font-size
:
20px
;
position
:
absolute
;
bottom
:
-36px
;
width
:
100%
;
text-align
:
center
;}
.banner
.qr-code-con
.qr-code
img
{
display
:
block
;
width
:
100%
;
height
:
100%
;
background
:
#fff
;}
.tit
{
font-size
:
30px
;
color
:
#4a4a4a
;
font-weight
:
100
;
height
:
30px
;
line-height
:
30px
;}
.tit
a
{
display
:
block
;
color
:
#434343
;
text-decoration
:
none
;}
.note
{
font-size
:
20px
;
line-height
:
20px
;
color
:
#6f6f6f
;
font-weight
:
100
;
margin
:
22px
0
80px
;}
.sec-1
{
padding-left
:
10px
;}
.sec-1
li
{
float
:
left
;
margin-right
:
3px
;}
.sec-1
li
img
{
display
:
block
;}
.high-blue
{
color
:
#007aff
;}
.sec-3
ul
{
margin
:
75px
auto
0
;
width
:
1020px
;}
.sec-3
li
{
float
:
left
;
margin-right
:
10px
;
width
:
243px
;
height
:
243px
;
border
:
1px
solid
#e4e4e4
;
color
:
#8b8a8a
;
font-family
:
'Myriad Pro'
;
font-size
:
18px
;
background-color
:
#fff
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
.icon
{
width
:
43px
;
height
:
50px
;
display
:
block
;
margin
:
0px
auto
18px
;}
.sec-3
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
0
no-repeat
;}
.sec-3
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-78px
0
no-repeat
;}
.sec-3
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-155px
0
no-repeat
;}
.sec-3
a
{
text-decoration
:
none
;
display
:
block
;
color
:
#8b8a8a
;
height
:
174px
;
padding-top
:
70px
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
li
.qr-code
img
{
margin-top
:
70px
}
.sec-3
li
.qr-code
p
{
font-size
:
12px
;
margin-top
:
-8px
;}
.sec-3
li
.down.on
{
background-color
:
#007aff
;
box-shadow
:
5px
15px
30px
rgba
(
0
,
0
,
0
,
.3
);
border
:
1px
solid
#007aff
;}
.sec-3
li
.down.on
a
{
color
:
#fff
;}
.sec-3
li
.down.on
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
-110px
no-repeat
;}
.sec-3
li
.down.on
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-77px
-111px
no-repeat
;}
.sec-3
li
.down.on
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-154px
-110px
no-repeat
;}
.sec-3.download-popup
{
width
:
690px
;
height
:
374px
;
background
:
#ffffff
;
padding-top
:
1px
;}
.sec-3.download-popup
li
{
width
:
134px
;
height
:
134px
;
margin-right
:
25px
;}
.sec-3.download-popup
ul
{
margin
:
106px
0px
0px
38px
;}
.sec-3.download-popup
a
{
padding-top
:
24px
;
height
:
110px
;}
.sec-3.download-popup
li
.qr-code
img
{
margin-top
:
15px
;}
.sec-4
{
margin-bottom
:
180px
;}
.sec-4
ul
{
width
:
1020px
;
margin
:
0
auto
;}
.sec-4
li
{
width
:
259px
;
height
:
140px
;
border-left
:
1px
dashed
#9d9d9d
;
text-align
:
left
;
padding-left
:
20px
;
padding-right
:
60px
;
float
:
left
;}
.sec-4
li
.tit
{
color
:
#434343
;
font-size
:
22px
;
position
:
relative
;
padding-bottom
:
5px
;}
.sec-4
li
.tit
.arrows
{
background
:
url(/static/common/img/icon.1.1.png)
-176px
-69px
no-repeat
;
width
:
25px
;
height
:
25px
;
display
:
block
;
position
:
absolute
;
right
:
0px
;
top
:
7px
;}
.sec-4
li
.con
{
color
:
#8a8a8a
;
font-size
:
14px
;
line-height
:
26px
;
width
:
230px
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
overflow
:
hidden
;}
.sec-4
li
.con
a
{
text-decoration
:
none
;
color
:
#8a8a8a
;
font-size
:
14px
;}
.sec-4
li
.con
a
:hover
{
color
:
#00A2FF
;}
.screen
{
width
:
200px
;
height
:
345px
;
position
:
absolute
;
left
:
50%
;
margin-left
:
29px
;
top
:
218px
;
overflow
:
hidden
;}
.scroll-img
{
position
:
absolute
;}
/**
* 照片墙
*/
div
,
ul
,
li
,
img
,
dl
,
dt
,
dd
{
margin
:
0
;
padding
:
0
;}
.photo-wall
{
width
:
1200px
;
padding
:
0
7px
;
overflow
:
hidden
;
box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
;}
.wall-pace
{
width
:
392px
;
list-style
:
none
;
overflow
:
hidden
;
float
:
left
;
position
:
relative
;}
.wall-pace
li
{
position
:
relative
;
float
:
left
;
margin
:
0
5px
5px
0
;
overflow
:
hidden
;
background
:
#efefef
}
.wall-last-3
{
position
:
absolute
!important
;
top
:
151px
;}
.wall-last-4
{
margin-left
:
128px
!important
;}
.wall-pace
img
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
}
.wall-pace
.sq-sm
{
width
:
145px
;
height
:
145px
;}
.wall-pace
.rect-x
,
.intr-x
{
width
:
235px
;
height
:
146px
;}
.wall-pace
.sq-lg
{
width
:
258px
;
height
:
258px
;}
.wall-pace
.rect-y
{
width
:
123px
;
height
:
258px
;}
.intr-x
,
.intr-s
{
padding
:
8px
;
color
:
#fff
;
background
:
rgb
(
1
,
122
,
255
);
position
:
absolute
;
top
:
100%
;}
.intr-x
{
padding-top
:
12px
;
width
:
219px
;}
.intr-s
{
width
:
242px
;
height
:
128px
;}
.wall-pace
dl
{
text-align
:
left
;}
.wall-pace
dt
{
font-size
:
22px
;
line-height
:
44px
;}
.wall-pace
dd
{
font-size
:
14px
;
line-height
:
24px
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;}
.banner
.youku-btn
{
top
:
339px
;
background
:
none
;
color
:
#fff
;
width
:
125px
;
margin-left
:
96px
;
cursor
:
pointer
;
height
:
20px
;}
.ad-identity
{
position
:
fixed
;
right
:
28px
;
top
:
50px
;
width
:
38px
;
height
:
21px
;
z-index
:
99999
;}
.ad-identity-bg
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
background
:
#000
;
opacity
:
0.17
;
}
.ad-identity-text
{
position
:
absolute
;
top
:
0
;
left
:
0
;
color
:
#fff
;
font-size
:
13px
;
width
:
100%
;
height
:
100%
;
text-align
:
center
;
line-height
:
21px
;
}
.page-2
.ad-identity
{
position
:
absolute
;
right
:
55px
;
top
:
10px
;
}
.quest-mobile-link
{
display
:
inline-block
;
color
:
#6f6f6f
;
font-size
:
12px
;
font-weight
:
100
;
line-height
:
20px
;
padding-top
:
16px
;
text-decoration
:
none
;
}
.te
{
cursor
:
pointer
;
transition
:
all
0.6s
;
}
.te
:hover
{
transform
:
scale
(
1.2
);
z-index
:
1000
;
}
</style>
<title>
华泰证券
</title>
<style>
.wrapper
{
padding-top
:
120px
;}
article
{
width
:
960px
;
margin
:
0
auto
;}
.line
{
border
:
0
;
height
:
1px
;
background-color
:
#e4e4e4
;
margin-bottom
:
60px
;}
.line2
{
border
:
0
;
border-bottom
:
1px
dashed
#7994b6
;
margin
:
40px
0
24px
0
;
width
:
590px
;}
aside
{
font-family
:
'Myriad Pro'
;
color
:
#737373
;
border-top
:
3px
solid
#067efc
;
float
:
left
;
width
:
76px
;
text-align
:
center
;
padding-top
:
13px
;}
aside
.day
{
font-size
:
48px
;
line-height
:
42px
;}
aside
.month
{
font-size
:
16px
;}
.dynamic-list
{
padding
:
0
25px
0
188px
;}
section
a
{
color
:
#2e2e2e
;
font-size
:
24px
;
text-decoration
:
none
;
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
;
}
.common-header
li
.service.business
.down-list
{
left
:
-3px
;
}
.common-header
{
margin-left
:
-560px
;
ness
.down-list{
left
:
-3px
;
}
body
{
margin
:
0
;
}
.common-header
li
.service.busi
padding
:
0
;
}
.th
{
width
:
1020px
;
}
img
{
max-width
:
100%
;
display
:
block
;
margin
:
0
auto
;
pointer-events
:
none
;
}
.divcontainer
{
width
:
960px
;
/*border: 1px solid darkgoldenrod;*/
margin
:
0
auto
;
}
p
{
margin-bottom
:
10px
;
}
</style>
</head>
<body
class=
"white-bg"
>
<style>
.common-header
{
margin-left
:
-560px
;
width
:
1000px
;
}
.common-header
li
.service.business
.down-list
{
left
:
-3px
;
}
<?php
if
((
!
empty
(
$logo_url
)))
:
?>
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
if
((
!
empty
(
$other_logo_url
)))
:
?>
.white-bg
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$other_logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
?>
</style>
<header
class=
"common-header"
>
<a
class=
"logo-href"
href=
"/"
></a>
<ul
class=
"clearfix"
>
<?php
if
(
is_array
(
$nav
)
||
$nav
instanceof
\think\Collection
||
$nav
instanceof
\think\Paginator
)
:
$k
=
0
;
$__LIST__
=
$nav
;
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$vo
)
:
$mod
=
(
$k
%
2
);
++
$k
;
if
(
!
empty
(
$vo
[
'child'
]))
:
?>
<li
class=
"white-bg-service"
>
<span
class=
"service"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
<span
class=
"down-list"
style=
"position: relative;top: -30px;left: 0px;"
>
<span
class=
"item colortext"
style=
"left: -1px;width: 100%"
>
<a
href=
"javascript:"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
</a>
</span>
<?php
if
(
is_array
(
$vo
[
'child'
])
||
$vo
[
'child'
]
instanceof
\think\Collection
||
$vo
[
'child'
]
instanceof
\think\Paginator
)
:
$key
=
0
;
$__LIST__
=
$vo
[
'child'
];
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$child
)
:
$mod
=
(
$key
%
2
);
++
$key
;
?>
<span
class=
"item"
>
<a
href=
"
<?php
echo
htmlentities
(
$child
[
'url'
]);
?>
"
>
<?php
echo
htmlentities
(
$child
[
'title'
]);
?>
</a>
</span>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
</span>
</span>
<li>
<?php
else
:
?>
<li
<?php
if
(
$k
==
1
)
:
?>
class=
"no-border"
<?php
else
:
?>
class=
"white-bg-service"
<?php
endif
;
?>
>
<a
class=
"home"
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">-->
<!-- <img class="th" src="
<?php
echo
htmlentities
(
$domain
);
?>
/images/htzq(1).jpg">-->
<!-- <img class="th" src="
<?php
echo
htmlentities
(
$domain
);
?>
/images/htzq(2).jpg">-->
<!-- <img class="th" src="
<?php
echo
htmlentities
(
$domain
);
?>
/images/htzq(3).jpg">-->
<!-- <img class="th" src="
<?php
echo
htmlentities
(
$domain
);
?>
/images/htzq(4).jpg">-->
<!--</div>-->
<div
class=
"wrapper"
>
<section
class=
"info-sec info-sec-1"
>
<div
class=
"divcontainer"
>
<b
style=
"font-size: 10.5pt; font-family: KaiTi; text-align: justify;"
>
<p>
华泰证券股份有限公司成立于1991年5月,是一家国内领先的大型综合性证券集团,具有庞大的客户基础、领先的互联网平台和敏捷协同的全业务链体系。
</p>
</b>
<b
style=
"font-size: 10.5pt; font-family: KaiTi; text-align: justify;"
>
<p>
公司于2010年和 2015年分别在上交所和港交所上市,是一家A+H股上市公司。主要财务指标和业务指标均位居国内证券行业前列。
</p>
</b>
<b
style=
"font-size: 10.5pt; font-family: KaiTi; text-align: justify;"
>
<p>
公司在全国拥有30家分公司, 242家证券营业部,分支机构遍布全国各地,支持业务办理全柜通。
</p>
</b>
<b
style=
"font-size: 10.5pt; font-family: KaiTi; text-align: justify;"
>
<p>
手机APP“涨乐财富通”下载量以及日活率近几年一直保持行业前列。
</p>
</b>
</div>
</section>
</div>
<div
class=
"swiper-container"
style=
"width: 960px;height: 2400px"
id=
"swiper_container"
>
<div
class=
"swiper-wrapper"
>
<?php
if
(
is_array
(
$imageList
)
||
$imageList
instanceof
\think\Collection
||
$imageList
instanceof
\think\Paginator
)
:
$k
=
0
;
$__LIST__
=
$imageList
;
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$vo
)
:
$mod
=
(
$k
%
2
);
++
$k
;
?>
<div
class=
"swiper-slide"
style=
"width: 960px!important;"
><img
src=
"
<?php
echo
htmlentities
(
$vo
);
?>
"
alt=
""
></div>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
</div>
<div
class=
"swiper-pagination swiper-pagination-clickable swiper-pagination-bullets"
></div>
</div>
<script
src=
"/static/home/js/swiper3.07.min.js"
></script>
<script>
var
mySwiper
=
new
Swiper
(
'.swiper-container'
,{
pagination
:
'.swiper-pagination'
,
paginationClickable
:
true
,
width
:
960
,
//你的slide宽度
// height: 2400,//你的slide高度
loop
:
true
,
setWrapperSize
:
true
,
//自动轮播
autoplay
:
1500
,
//轮播的时间
// width : 800, //你的slide宽度
// height: 300,//你的slide高度
// scrollbar:'.swiper-scrollbar' ,
// scrollbarHide:false,
});
var
comtainer
=
document
.
getElementById
(
'swiper_container'
);
comtainer
.
onmouseenter
=
function
()
{
mySwiper
.
stopAutoplay
();
};
comtainer
.
onmouseleave
=
function
()
{
mySwiper
.
startAutoplay
();
}
</script>
<style>
._link
{
position
:
fixed
;
_position
:
absolute
;
bottom
:
20px
;
right
:
20px
;
z-index
:
214748000
;
width
:
60px
;
height
:
60px
;
border
:
1px
solid
#ddd
\
0
;
border-radius
:
30px
;
cursor
:
pointer
;
background
:
#23a0ee
;
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
from
(
#23a0ee
),
to
(
#2b73d3
));
background
:
-o-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
-webkit-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
linear-gradient
(
to
bottom
,
#23a0ee
0
,
#2b73d3
100%
);
-webkit-box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
-webkit-animation-duration
:
.3s
;
animation-duration
:
.3s
;
-webkit-animation-fill-mode
:
both
;
animation-fill-mode
:
both
;
-webkit-animation-name
:
lim_mini_zoomIn
;
animation-name
:
lim_mini_zoomIn
;
}
</style>
<footer
class=
"common-footer"
>
<ul
class=
"clearfix"
style=
"width: 510px;"
>
<li><a
href=
"
<?php
echo
url
(
'/aboutus'
);
?>
"
>
关于我们
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/aboutus/agreement'
);
?>
"
>
用户协议
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/join'
);
?>
"
>
招聘信息
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/contact'
);
?>
"
>
联系我们
</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div
style=
"text-align:center; "
>
Copyright © 2018
<a
href=
"/"
target=
"_blank"
>
重庆三丫互娱网络科技有限公司
</a>
All Rights Reserved
<br><a
href=
"https://beian.miit.gov.cn/#/Integrated/recordQuery"
target=
"_Blank"
>
渝ICP备19002633号-1
</a><br>
统一社会信用代码 91500103MA6089GG94
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/wen.png"
style=
"float:left;width:20px;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
互联网文化经营单位
</p
></a>
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/f.png"
style=
"float:left;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
渝公网安备 50010302002432号
</p
></a>
</div>
<a
target=
"_blank"
href=
"https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002"
>
<div
id=
"customer"
class=
"_link"
style=
"display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;"
>
<div
id=
"lim_mini_icon"
style=
"position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;"
>
<div
id=
"lim_mini_new"
style=
"height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;"
>
</div>
</div>
</div>
</a>
</footer>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery.1.9.1.min.js"
></script>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery-2.1.4.min.js"
></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$
(
function
(){
$
(
'.common-header .active'
).
addClass
(
'on'
);
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
\ No newline at end of file
runtime/temp/2da956607ef19d92cf3094022ca9be60.php
0 → 100644
View file @
425291a8
<?php
/*a:4:{s:66:"D:\PHPStormProject\3yakj\config/../template/home\public\error.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/
?>
<html>
<head>
<title>
朱贝-全民娱乐直播平台
</title>
<meta
name=
"chinaz-site-verification"
content=
"AC2EF776C208BC35"
>
<meta
name=
"keywords"
content=
"朱贝、朱贝软件、短视频直播、娱乐直播"
/>
<meta
name=
"description"
content=
"朱贝是一款由三丫互娱专注于打造全民娱乐直播平台。多功能直播间互动、便捷分享模式,给你带来不同直播互动体验。互动视频娱乐直播交友,汇集各类优秀主播在线互动,24小时不间断嗨歌热舞,为您带来超凡体验!"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/common.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/home/css/swiper3.07.min.css"
>
<style>
.wrapper
{
overflow
:
hidden
}
.banner
{
background
:
#1e78eb
;
height
:
540px
;
padding-top
:
120px
;}
.banner
.page-1
{
width
:
960px
;
height
:
540px
;
margin
:
0
auto
;
position
:
relative
;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner
a
,
.banner
a
:hover
{
text-decoration
:
none
;
cursor
:
pointer
;}
.banner
.play-btn
{
width
:
84px
;
height
:
84px
;
display
:
block
;
background
:
url(/static/common/img/play.png)
0
0
no-repeat
;
left
:
50%
;
position
:
absolute
;
top
:
165px
;
z-index
:
2000
;
margin-left
:
114px
;
cursor
:
pointer
;}
.banner
.play-btn
,
.banner
.play-close-btn
{
display
:
block
;}
.banner
.play-close-btn
{
width
:
52px
;
height
:
52px
;
background
:
url(/static/common/img/close.jpg)
0
0
no-repeat
;
position
:
absolute
;
right
:
0
;
top
:
0
;
z-index
:
30000
;
opacity
:
0
;}
.banner
.page-2
:hover
.play-close-btn
{
opacity
:
1
;}
@media
screen
and
(
-webkit-min-device-pixel-ratio
:
0
)
{
.banner
.play-close-btn
{
right
:
2px
;
}
}
.banner
.banner-btn
{
width
:
105px
;
height
:
51px
;
display
:
inline-block
;
border
:
2px
solid
#fff
;
font-size
:
20px
;
line-height
:
51px
;
padding-left
:
65px
;}
.banner
.download-btn
{
color
:
#267be5
;
background
:
#fff
url(/static/common/img/icon.1.1.png)
21px
-57px
no-repeat
;}
.banner
.member-center
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
20px
-163px
no-repeat
;
margin-left
:
26px
;}
.banner
.ad-link
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
-250px
-32px
no-repeat
;
margin-left
:
26px
;}
.live-guild
{
color
:
#fff
;
background
:
url("/static/common/img/people.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
.microvideo
{
color
:
#fff
;
background
:
url("/static/common/img/vedio.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
#entryCon
{
display
:
flex
;
position
:
absolute
;
justify-content
:
space-between
;
flex-wrap
:
nowrap
;
top
:
398px
;
left
:
0px
;
}
.banner
object
{
position
:
relative
;
z-index
:
1000
;}
.banner
.page-2
{
position
:
absolute
;
z-index
:
3000
;
left
:
629px
;
top
:
240px
;
left
:
455px
\
0
;
top
:
190px
\
0
;
*
left
:
456px
;
*
top
:
190px
;
text-align
:
center
;
padding
:
6px
;
width
:
0
;
height
:
0
;
background
:
#0d0d0d
;
opacity
:
0
;
overflow
:
hidden
;
-webkit-transition
:
all
0.3s
;
transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.banner
.page-2
.jwlogo
{
display
:
none
;}
.banner.videoplaying
.page-1
.bg
{
background
:
#267be5
;}
.banner.videoplaying
.page-2
{
opacity
:
1
;
width
:
948px
;
height
:
528px
;
top
:
0
;
left
:
0
;}
.banner
.qr-code-con
{
width
:
121px
;
height
:
121px
;
border
:
2px
solid
#fff
;
position
:
absolute
;
top
:
341px
;
left
:
198px
;}
.banner
.qr-code-con
.qr-code
{
margin
:
12px
;}
.banner
.qr-code-con
.qr-note
{
color
:
#fff
;
font-size
:
20px
;
position
:
absolute
;
bottom
:
-36px
;
width
:
100%
;
text-align
:
center
;}
.banner
.qr-code-con
.qr-code
img
{
display
:
block
;
width
:
100%
;
height
:
100%
;
background
:
#fff
;}
.tit
{
font-size
:
30px
;
color
:
#4a4a4a
;
font-weight
:
100
;
height
:
30px
;
line-height
:
30px
;}
.tit
a
{
display
:
block
;
color
:
#434343
;
text-decoration
:
none
;}
.note
{
font-size
:
20px
;
line-height
:
20px
;
color
:
#6f6f6f
;
font-weight
:
100
;
margin
:
22px
0
80px
;}
.sec-1
{
padding-left
:
10px
;}
.sec-1
li
{
float
:
left
;
margin-right
:
3px
;}
.sec-1
li
img
{
display
:
block
;}
.high-blue
{
color
:
#007aff
;}
.sec-3
ul
{
margin
:
75px
auto
0
;
width
:
1020px
;}
.sec-3
li
{
float
:
left
;
margin-right
:
10px
;
width
:
243px
;
height
:
243px
;
border
:
1px
solid
#e4e4e4
;
color
:
#8b8a8a
;
font-family
:
'Myriad Pro'
;
font-size
:
18px
;
background-color
:
#fff
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
.icon
{
width
:
43px
;
height
:
50px
;
display
:
block
;
margin
:
0px
auto
18px
;}
.sec-3
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
0
no-repeat
;}
.sec-3
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-78px
0
no-repeat
;}
.sec-3
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-155px
0
no-repeat
;}
.sec-3
a
{
text-decoration
:
none
;
display
:
block
;
color
:
#8b8a8a
;
height
:
174px
;
padding-top
:
70px
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
li
.qr-code
img
{
margin-top
:
70px
}
.sec-3
li
.qr-code
p
{
font-size
:
12px
;
margin-top
:
-8px
;}
.sec-3
li
.down.on
{
background-color
:
#007aff
;
box-shadow
:
5px
15px
30px
rgba
(
0
,
0
,
0
,
.3
);
border
:
1px
solid
#007aff
;}
.sec-3
li
.down.on
a
{
color
:
#fff
;}
.sec-3
li
.down.on
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
-110px
no-repeat
;}
.sec-3
li
.down.on
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-77px
-111px
no-repeat
;}
.sec-3
li
.down.on
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-154px
-110px
no-repeat
;}
.sec-3.download-popup
{
width
:
690px
;
height
:
374px
;
background
:
#ffffff
;
padding-top
:
1px
;}
.sec-3.download-popup
li
{
width
:
134px
;
height
:
134px
;
margin-right
:
25px
;}
.sec-3.download-popup
ul
{
margin
:
106px
0px
0px
38px
;}
.sec-3.download-popup
a
{
padding-top
:
24px
;
height
:
110px
;}
.sec-3.download-popup
li
.qr-code
img
{
margin-top
:
15px
;}
.sec-4
{
margin-bottom
:
180px
;}
.sec-4
ul
{
width
:
1020px
;
margin
:
0
auto
;}
.sec-4
li
{
width
:
259px
;
height
:
140px
;
border-left
:
1px
dashed
#9d9d9d
;
text-align
:
left
;
padding-left
:
20px
;
padding-right
:
60px
;
float
:
left
;}
.sec-4
li
.tit
{
color
:
#434343
;
font-size
:
22px
;
position
:
relative
;
padding-bottom
:
5px
;}
.sec-4
li
.tit
.arrows
{
background
:
url(/static/common/img/icon.1.1.png)
-176px
-69px
no-repeat
;
width
:
25px
;
height
:
25px
;
display
:
block
;
position
:
absolute
;
right
:
0px
;
top
:
7px
;}
.sec-4
li
.con
{
color
:
#8a8a8a
;
font-size
:
14px
;
line-height
:
26px
;
width
:
230px
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
overflow
:
hidden
;}
.sec-4
li
.con
a
{
text-decoration
:
none
;
color
:
#8a8a8a
;
font-size
:
14px
;}
.sec-4
li
.con
a
:hover
{
color
:
#00A2FF
;}
.screen
{
width
:
200px
;
height
:
345px
;
position
:
absolute
;
left
:
50%
;
margin-left
:
29px
;
top
:
218px
;
overflow
:
hidden
;}
.scroll-img
{
position
:
absolute
;}
/**
* 照片墙
*/
div
,
ul
,
li
,
img
,
dl
,
dt
,
dd
{
margin
:
0
;
padding
:
0
;}
.photo-wall
{
width
:
1200px
;
padding
:
0
7px
;
overflow
:
hidden
;
box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
;}
.wall-pace
{
width
:
392px
;
list-style
:
none
;
overflow
:
hidden
;
float
:
left
;
position
:
relative
;}
.wall-pace
li
{
position
:
relative
;
float
:
left
;
margin
:
0
5px
5px
0
;
overflow
:
hidden
;
background
:
#efefef
}
.wall-last-3
{
position
:
absolute
!important
;
top
:
151px
;}
.wall-last-4
{
margin-left
:
128px
!important
;}
.wall-pace
img
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
}
.wall-pace
.sq-sm
{
width
:
145px
;
height
:
145px
;}
.wall-pace
.rect-x
,
.intr-x
{
width
:
235px
;
height
:
146px
;}
.wall-pace
.sq-lg
{
width
:
258px
;
height
:
258px
;}
.wall-pace
.rect-y
{
width
:
123px
;
height
:
258px
;}
.intr-x
,
.intr-s
{
padding
:
8px
;
color
:
#fff
;
background
:
rgb
(
1
,
122
,
255
);
position
:
absolute
;
top
:
100%
;}
.intr-x
{
padding-top
:
12px
;
width
:
219px
;}
.intr-s
{
width
:
242px
;
height
:
128px
;}
.wall-pace
dl
{
text-align
:
left
;}
.wall-pace
dt
{
font-size
:
22px
;
line-height
:
44px
;}
.wall-pace
dd
{
font-size
:
14px
;
line-height
:
24px
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;}
.banner
.youku-btn
{
top
:
339px
;
background
:
none
;
color
:
#fff
;
width
:
125px
;
margin-left
:
96px
;
cursor
:
pointer
;
height
:
20px
;}
.ad-identity
{
position
:
fixed
;
right
:
28px
;
top
:
50px
;
width
:
38px
;
height
:
21px
;
z-index
:
99999
;}
.ad-identity-bg
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
background
:
#000
;
opacity
:
0.17
;
}
.ad-identity-text
{
position
:
absolute
;
top
:
0
;
left
:
0
;
color
:
#fff
;
font-size
:
13px
;
width
:
100%
;
height
:
100%
;
text-align
:
center
;
line-height
:
21px
;
}
.page-2
.ad-identity
{
position
:
absolute
;
right
:
55px
;
top
:
10px
;
}
.quest-mobile-link
{
display
:
inline-block
;
color
:
#6f6f6f
;
font-size
:
12px
;
font-weight
:
100
;
line-height
:
20px
;
padding-top
:
16px
;
text-decoration
:
none
;
}
.te
{
cursor
:
pointer
;
transition
:
all
0.6s
;
}
.te
:hover
{
transform
:
scale
(
1.2
);
z-index
:
1000
;
}
</style>
<title>
404
</title>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/w3-style.css"
>
<style>
.common-header
{
margin-left
:
-560px
;
}
.common-header
li
.service.business
.down-list
{
left
:
-3px
;
}
.common-footer
ul
{
width
:
428px
!important
;
}
.common-footer
li
{
margin
:
0
17px
30px
17px
;
}
</style>
</head>
<body
class=
"white-bg"
>
<style>
.common-header
{
margin-left
:
-560px
;
width
:
1000px
;
}
.common-header
li
.service.business
.down-list
{
left
:
-3px
;
}
<?php
if
((
!
empty
(
$logo_url
)))
:
?>
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
if
((
!
empty
(
$other_logo_url
)))
:
?>
.white-bg
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$other_logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
?>
</style>
<header
class=
"common-header"
>
<a
class=
"logo-href"
href=
"/"
></a>
<ul
class=
"clearfix"
>
<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 aboutuson"
>
关于我们
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
"javascript:"
>
关于我们
</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 helpon"
>
服务与帮助
<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/help'
);
?>
"
>
帮助中心
</a>
</span>
</span>
</span>
</li>
<li
class=
"white-bg-service"
>
<span
class=
"service helpon"
>
朱贝直播助手
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
""
>
朱贝直播助手
</a>
</span>
<span
class=
"item"
>
<a
href=
"http://oss.3yakj.com/app/zhuBeiLive3.0.rar"
>
for Windows
</a>
</span>
<span
class=
"item"
>
<a
target=
"_blank"
href=
"https://obsproject.com"
>
OBS下载地址
</a>
</span>
<!--<span class="item">-->
<!--<a href="https://cdn-fastly.obsproject.com/downloads/obs-mac-27.1.dmg">for mac</a>-->
<!--</span>-->
<span
class=
"item"
>
<a
target=
"_blank"
href=
"https://lcnsc3uqhj.feishu.cn/docs/doccnJ8LBZipIQUarP0Sous9ouc"
>
帮助中心
</a>
</span>
</span>
</span>
</li>
<li
class=
"white-bg-service"
>
<a
class=
"home"
href=
"http://guild-rds.3yakj.com"
target=
"_blank"
>
公会入口
</a>
<!--<span class="service business guildon">工会入口
<span class="down-list">
<span class="item colortext">
<a href="javascript:">工会入口 </a>
</span>
<span class="item">
<a href="http://guild-rds.3yakj.com" target="_blank">mcn机构入口</a>
</span>
<span class="item">
<a href="http://guild-rds.3yakj.com" target="_blank">公会入口</a>
</span>
</span>
</span>-->
</li>
<li
class=
"white-bg-service"
>
<a
class=
"home"
href=
"
<?php
echo
url
(
'/index/index/huatai'
);
?>
"
>
华泰证券
</a>
</li>
</ul>
</header>
<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>
<div
id=
"hiddenTip"
class=
"hiddenTip"
style=
"display: block;"
>
其实人生很短暂,这一分钟,你想明白了什么?
</div>
</div>
</div>
<style>
._link
{
position
:
fixed
;
_position
:
absolute
;
bottom
:
20px
;
right
:
20px
;
z-index
:
214748000
;
width
:
60px
;
height
:
60px
;
border
:
1px
solid
#ddd
\
0
;
border-radius
:
30px
;
cursor
:
pointer
;
background
:
#23a0ee
;
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
from
(
#23a0ee
),
to
(
#2b73d3
));
background
:
-o-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
-webkit-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
linear-gradient
(
to
bottom
,
#23a0ee
0
,
#2b73d3
100%
);
-webkit-box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
-webkit-animation-duration
:
.3s
;
animation-duration
:
.3s
;
-webkit-animation-fill-mode
:
both
;
animation-fill-mode
:
both
;
-webkit-animation-name
:
lim_mini_zoomIn
;
animation-name
:
lim_mini_zoomIn
;
}
</style>
<footer
class=
"common-footer"
>
<ul
class=
"clearfix"
style=
"width: 510px;"
>
<li><a
href=
"
<?php
echo
url
(
'/aboutus'
);
?>
"
>
关于我们
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/aboutus/agreement'
);
?>
"
>
用户协议
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/join'
);
?>
"
>
招聘信息
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/contact'
);
?>
"
>
联系我们
</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div
style=
"text-align:center; "
>
Copyright © 2018
<a
href=
"/"
target=
"_blank"
>
重庆三丫互娱网络科技有限公司
</a>
All Rights Reserved
<br><a
href=
"https://beian.miit.gov.cn/#/Integrated/recordQuery"
target=
"_Blank"
>
渝ICP备19002633号-1
</a><br>
统一社会信用代码 91500103MA6089GG94
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/wen.png"
style=
"float:left;width:20px;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
互联网文化经营单位
</p
></a>
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/f.png"
style=
"float:left;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
渝公网安备 50010302002432号
</p
></a>
</div>
<a
target=
"_blank"
href=
"https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002"
>
<div
id=
"customer"
class=
"_link"
style=
"display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;"
>
<div
id=
"lim_mini_icon"
style=
"position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;"
>
<div
id=
"lim_mini_new"
style=
"height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;"
>
</div>
</div>
</div>
</a>
</footer>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery.1.9.1.min.js"
></script>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery-2.1.4.min.js"
></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$
(
function
(){
$
(
'.common-header .active'
).
addClass
(
'on'
);
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
\ No newline at end of file
runtime/temp/4290dff9b123619dc351053b45862416.php
0 → 100644
View file @
425291a8
<?php
/*a:4:{s:63:"D:\PHPStormProject\3yakj\config/../template/home\news\list.html";i:1647937410;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648105487;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/
?>
<html>
<head>
<title>
朱贝直播官方热门动态
</title>
<meta
name=
"chinaz-site-verification"
content=
"AC2EF776C208BC35"
>
<meta
name=
"keywords"
content=
"朱贝动态,朱贝要闻,行业热闻,朱贝大事件,朱贝官方媒体"
/>
<meta
name=
"description"
content=
"朱贝直播在自身发展的同时,不忘紧跟时代步伐,发布自我产品动态的同时,随时关注行业动态,并加以记录,旨在为广大用户提供信息的及时性以及便利性。"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/common.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/home/css/swiper3.07.min.css"
>
<style>
.wrapper
{
overflow
:
hidden
}
.banner
{
background
:
#1e78eb
;
height
:
540px
;
padding-top
:
120px
;}
.banner
.page-1
{
width
:
960px
;
height
:
540px
;
margin
:
0
auto
;
position
:
relative
;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner
a
,
.banner
a
:hover
{
text-decoration
:
none
;
cursor
:
pointer
;}
.banner
.play-btn
{
width
:
84px
;
height
:
84px
;
display
:
block
;
background
:
url(/static/common/img/play.png)
0
0
no-repeat
;
left
:
50%
;
position
:
absolute
;
top
:
165px
;
z-index
:
2000
;
margin-left
:
114px
;
cursor
:
pointer
;}
.banner
.play-btn
,
.banner
.play-close-btn
{
display
:
block
;}
.banner
.play-close-btn
{
width
:
52px
;
height
:
52px
;
background
:
url(/static/common/img/close.jpg)
0
0
no-repeat
;
position
:
absolute
;
right
:
0
;
top
:
0
;
z-index
:
30000
;
opacity
:
0
;}
.banner
.page-2
:hover
.play-close-btn
{
opacity
:
1
;}
@media
screen
and
(
-webkit-min-device-pixel-ratio
:
0
)
{
.banner
.play-close-btn
{
right
:
2px
;
}
}
.banner
.banner-btn
{
width
:
105px
;
height
:
51px
;
display
:
inline-block
;
border
:
2px
solid
#fff
;
font-size
:
20px
;
line-height
:
51px
;
padding-left
:
65px
;}
.banner
.download-btn
{
color
:
#267be5
;
background
:
#fff
url(/static/common/img/icon.1.1.png)
21px
-57px
no-repeat
;}
.banner
.member-center
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
20px
-163px
no-repeat
;
margin-left
:
26px
;}
.banner
.ad-link
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
-250px
-32px
no-repeat
;
margin-left
:
26px
;}
.live-guild
{
color
:
#fff
;
background
:
url("/static/common/img/people.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
.microvideo
{
color
:
#fff
;
background
:
url("/static/common/img/vedio.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
#entryCon
{
display
:
flex
;
position
:
absolute
;
justify-content
:
space-between
;
flex-wrap
:
nowrap
;
top
:
398px
;
left
:
0px
;
}
.banner
object
{
position
:
relative
;
z-index
:
1000
;}
.banner
.page-2
{
position
:
absolute
;
z-index
:
3000
;
left
:
629px
;
top
:
240px
;
left
:
455px
\
0
;
top
:
190px
\
0
;
*
left
:
456px
;
*
top
:
190px
;
text-align
:
center
;
padding
:
6px
;
width
:
0
;
height
:
0
;
background
:
#0d0d0d
;
opacity
:
0
;
overflow
:
hidden
;
-webkit-transition
:
all
0.3s
;
transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.banner
.page-2
.jwlogo
{
display
:
none
;}
.banner.videoplaying
.page-1
.bg
{
background
:
#267be5
;}
.banner.videoplaying
.page-2
{
opacity
:
1
;
width
:
948px
;
height
:
528px
;
top
:
0
;
left
:
0
;}
.banner
.qr-code-con
{
width
:
121px
;
height
:
121px
;
border
:
2px
solid
#fff
;
position
:
absolute
;
top
:
341px
;
left
:
198px
;}
.banner
.qr-code-con
.qr-code
{
margin
:
12px
;}
.banner
.qr-code-con
.qr-note
{
color
:
#fff
;
font-size
:
20px
;
position
:
absolute
;
bottom
:
-36px
;
width
:
100%
;
text-align
:
center
;}
.banner
.qr-code-con
.qr-code
img
{
display
:
block
;
width
:
100%
;
height
:
100%
;
background
:
#fff
;}
.tit
{
font-size
:
30px
;
color
:
#4a4a4a
;
font-weight
:
100
;
height
:
30px
;
line-height
:
30px
;}
.tit
a
{
display
:
block
;
color
:
#434343
;
text-decoration
:
none
;}
.note
{
font-size
:
20px
;
line-height
:
20px
;
color
:
#6f6f6f
;
font-weight
:
100
;
margin
:
22px
0
80px
;}
.sec-1
{
padding-left
:
10px
;}
.sec-1
li
{
float
:
left
;
margin-right
:
3px
;}
.sec-1
li
img
{
display
:
block
;}
.high-blue
{
color
:
#007aff
;}
.sec-3
ul
{
margin
:
75px
auto
0
;
width
:
1020px
;}
.sec-3
li
{
float
:
left
;
margin-right
:
10px
;
width
:
243px
;
height
:
243px
;
border
:
1px
solid
#e4e4e4
;
color
:
#8b8a8a
;
font-family
:
'Myriad Pro'
;
font-size
:
18px
;
background-color
:
#fff
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
.icon
{
width
:
43px
;
height
:
50px
;
display
:
block
;
margin
:
0px
auto
18px
;}
.sec-3
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
0
no-repeat
;}
.sec-3
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-78px
0
no-repeat
;}
.sec-3
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-155px
0
no-repeat
;}
.sec-3
a
{
text-decoration
:
none
;
display
:
block
;
color
:
#8b8a8a
;
height
:
174px
;
padding-top
:
70px
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
li
.qr-code
img
{
margin-top
:
70px
}
.sec-3
li
.qr-code
p
{
font-size
:
12px
;
margin-top
:
-8px
;}
.sec-3
li
.down.on
{
background-color
:
#007aff
;
box-shadow
:
5px
15px
30px
rgba
(
0
,
0
,
0
,
.3
);
border
:
1px
solid
#007aff
;}
.sec-3
li
.down.on
a
{
color
:
#fff
;}
.sec-3
li
.down.on
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
-110px
no-repeat
;}
.sec-3
li
.down.on
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-77px
-111px
no-repeat
;}
.sec-3
li
.down.on
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-154px
-110px
no-repeat
;}
.sec-3.download-popup
{
width
:
690px
;
height
:
374px
;
background
:
#ffffff
;
padding-top
:
1px
;}
.sec-3.download-popup
li
{
width
:
134px
;
height
:
134px
;
margin-right
:
25px
;}
.sec-3.download-popup
ul
{
margin
:
106px
0px
0px
38px
;}
.sec-3.download-popup
a
{
padding-top
:
24px
;
height
:
110px
;}
.sec-3.download-popup
li
.qr-code
img
{
margin-top
:
15px
;}
.sec-4
{
margin-bottom
:
180px
;}
.sec-4
ul
{
width
:
1020px
;
margin
:
0
auto
;}
.sec-4
li
{
width
:
259px
;
height
:
140px
;
border-left
:
1px
dashed
#9d9d9d
;
text-align
:
left
;
padding-left
:
20px
;
padding-right
:
60px
;
float
:
left
;}
.sec-4
li
.tit
{
color
:
#434343
;
font-size
:
22px
;
position
:
relative
;
padding-bottom
:
5px
;}
.sec-4
li
.tit
.arrows
{
background
:
url(/static/common/img/icon.1.1.png)
-176px
-69px
no-repeat
;
width
:
25px
;
height
:
25px
;
display
:
block
;
position
:
absolute
;
right
:
0px
;
top
:
7px
;}
.sec-4
li
.con
{
color
:
#8a8a8a
;
font-size
:
14px
;
line-height
:
26px
;
width
:
230px
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
overflow
:
hidden
;}
.sec-4
li
.con
a
{
text-decoration
:
none
;
color
:
#8a8a8a
;
font-size
:
14px
;}
.sec-4
li
.con
a
:hover
{
color
:
#00A2FF
;}
.screen
{
width
:
200px
;
height
:
345px
;
position
:
absolute
;
left
:
50%
;
margin-left
:
29px
;
top
:
218px
;
overflow
:
hidden
;}
.scroll-img
{
position
:
absolute
;}
/**
* 照片墙
*/
div
,
ul
,
li
,
img
,
dl
,
dt
,
dd
{
margin
:
0
;
padding
:
0
;}
.photo-wall
{
width
:
1200px
;
padding
:
0
7px
;
overflow
:
hidden
;
box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
;}
.wall-pace
{
width
:
392px
;
list-style
:
none
;
overflow
:
hidden
;
float
:
left
;
position
:
relative
;}
.wall-pace
li
{
position
:
relative
;
float
:
left
;
margin
:
0
5px
5px
0
;
overflow
:
hidden
;
background
:
#efefef
}
.wall-last-3
{
position
:
absolute
!important
;
top
:
151px
;}
.wall-last-4
{
margin-left
:
128px
!important
;}
.wall-pace
img
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
}
.wall-pace
.sq-sm
{
width
:
145px
;
height
:
145px
;}
.wall-pace
.rect-x
,
.intr-x
{
width
:
235px
;
height
:
146px
;}
.wall-pace
.sq-lg
{
width
:
258px
;
height
:
258px
;}
.wall-pace
.rect-y
{
width
:
123px
;
height
:
258px
;}
.intr-x
,
.intr-s
{
padding
:
8px
;
color
:
#fff
;
background
:
rgb
(
1
,
122
,
255
);
position
:
absolute
;
top
:
100%
;}
.intr-x
{
padding-top
:
12px
;
width
:
219px
;}
.intr-s
{
width
:
242px
;
height
:
128px
;}
.wall-pace
dl
{
text-align
:
left
;}
.wall-pace
dt
{
font-size
:
22px
;
line-height
:
44px
;}
.wall-pace
dd
{
font-size
:
14px
;
line-height
:
24px
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;}
.banner
.youku-btn
{
top
:
339px
;
background
:
none
;
color
:
#fff
;
width
:
125px
;
margin-left
:
96px
;
cursor
:
pointer
;
height
:
20px
;}
.ad-identity
{
position
:
fixed
;
right
:
28px
;
top
:
50px
;
width
:
38px
;
height
:
21px
;
z-index
:
99999
;}
.ad-identity-bg
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
background
:
#000
;
opacity
:
0.17
;
}
.ad-identity-text
{
position
:
absolute
;
top
:
0
;
left
:
0
;
color
:
#fff
;
font-size
:
13px
;
width
:
100%
;
height
:
100%
;
text-align
:
center
;
line-height
:
21px
;
}
.page-2
.ad-identity
{
position
:
absolute
;
right
:
55px
;
top
:
10px
;
}
.quest-mobile-link
{
display
:
inline-block
;
color
:
#6f6f6f
;
font-size
:
12px
;
font-weight
:
100
;
line-height
:
20px
;
padding-top
:
16px
;
text-decoration
:
none
;
}
.te
{
cursor
:
pointer
;
transition
:
all
0.6s
;
}
.te
:hover
{
transform
:
scale
(
1.2
);
z-index
:
1000
;
}
</style>
<title>
动态
</title>
<style>
.wrapper
{
padding-top
:
120px
;}
article
{
width
:
960px
;
margin
:
0
auto
;}
.line
{
border
:
0
;
height
:
1px
;
background-color
:
#e4e4e4
;
margin-bottom
:
60px
;}
.line2
{
border
:
0
;
border-bottom
:
1px
dashed
#7994b6
;
margin
:
40px
0
24px
0
;
width
:
590px
;}
aside
{
font-family
:
'Myriad Pro'
;
color
:
#737373
;
border-top
:
3px
solid
#067efc
;
float
:
left
;
width
:
76px
;
text-align
:
center
;
padding-top
:
13px
;}
aside
.day
{
font-size
:
48px
;
line-height
:
42px
;}
aside
.month
{
font-size
:
16px
;}
.dynamic-list
{
padding
:
0
25px
0
188px
;}
section
a
{
color
:
#2e2e2e
;
font-size
:
24px
;
text-decoration
:
none
;
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
;
}
.common-header
li
.service.business
.down-list
{
left
:
-3px
;
}
.common-header
{
margin-left
:
-560px
;
}
.common-header
li
.service.business
.down-list
{
left
:
-3px
;
}
</style>
</head>
<body
class=
"white-bg"
>
<style>
.common-header
{
margin-left
:
-560px
;
width
:
1000px
;
}
.common-header
li
.service.business
.down-list
{
left
:
-3px
;
}
<?php
if
((
!
empty
(
$logo_url
)))
:
?>
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
if
((
!
empty
(
$other_logo_url
)))
:
?>
.white-bg
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$other_logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
?>
</style>
<header
class=
"common-header"
>
<a
class=
"logo-href"
href=
"/"
></a>
<ul
class=
"clearfix"
>
<?php
if
(
is_array
(
$nav
)
||
$nav
instanceof
\think\Collection
||
$nav
instanceof
\think\Paginator
)
:
$k
=
0
;
$__LIST__
=
$nav
;
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$vo
)
:
$mod
=
(
$k
%
2
);
++
$k
;
if
(
!
empty
(
$vo
[
'child'
]))
:
?>
<li
class=
"white-bg-service"
>
<span
class=
"service"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
<span
class=
"down-list"
style=
"position: relative;top: -30px;left: 0px;"
>
<span
class=
"item colortext"
style=
"left: -1px;width: 100%"
>
<a
href=
"javascript:"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
</a>
</span>
<?php
if
(
is_array
(
$vo
[
'child'
])
||
$vo
[
'child'
]
instanceof
\think\Collection
||
$vo
[
'child'
]
instanceof
\think\Paginator
)
:
$key
=
0
;
$__LIST__
=
$vo
[
'child'
];
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$child
)
:
$mod
=
(
$key
%
2
);
++
$key
;
?>
<span
class=
"item"
>
<a
href=
"
<?php
echo
htmlentities
(
$child
[
'url'
]);
?>
"
>
<?php
echo
htmlentities
(
$child
[
'title'
]);
?>
</a>
</span>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
</span>
</span>
<li>
<?php
else
:
?>
<li
<?php
if
(
$k
==
1
)
:
?>
class=
"no-border"
<?php
else
:
?>
class=
"white-bg-service"
<?php
endif
;
?>
>
<a
class=
"home"
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>
</article>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
<div>
<?php
echo
$news_list
;
?>
</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>
<style>
._link
{
position
:
fixed
;
_position
:
absolute
;
bottom
:
20px
;
right
:
20px
;
z-index
:
214748000
;
width
:
60px
;
height
:
60px
;
border
:
1px
solid
#ddd
\
0
;
border-radius
:
30px
;
cursor
:
pointer
;
background
:
#23a0ee
;
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
from
(
#23a0ee
),
to
(
#2b73d3
));
background
:
-o-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
-webkit-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
linear-gradient
(
to
bottom
,
#23a0ee
0
,
#2b73d3
100%
);
-webkit-box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
-webkit-animation-duration
:
.3s
;
animation-duration
:
.3s
;
-webkit-animation-fill-mode
:
both
;
animation-fill-mode
:
both
;
-webkit-animation-name
:
lim_mini_zoomIn
;
animation-name
:
lim_mini_zoomIn
;
}
</style>
<footer
class=
"common-footer"
>
<ul
class=
"clearfix"
style=
"width: 510px;"
>
<li><a
href=
"
<?php
echo
url
(
'/aboutus'
);
?>
"
>
关于我们
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/aboutus/agreement'
);
?>
"
>
用户协议
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/join'
);
?>
"
>
招聘信息
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/contact'
);
?>
"
>
联系我们
</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div
style=
"text-align:center; "
>
Copyright © 2018
<a
href=
"/"
target=
"_blank"
>
重庆三丫互娱网络科技有限公司
</a>
All Rights Reserved
<br><a
href=
"https://beian.miit.gov.cn/#/Integrated/recordQuery"
target=
"_Blank"
>
渝ICP备19002633号-1
</a><br>
统一社会信用代码 91500103MA6089GG94
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/wen.png"
style=
"float:left;width:20px;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
互联网文化经营单位
</p
></a>
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/f.png"
style=
"float:left;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
渝公网安备 50010302002432号
</p
></a>
</div>
<a
target=
"_blank"
href=
"https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002"
>
<div
id=
"customer"
class=
"_link"
style=
"display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;"
>
<div
id=
"lim_mini_icon"
style=
"position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;"
>
<div
id=
"lim_mini_new"
style=
"height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;"
>
</div>
</div>
</div>
</a>
</footer>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery.1.9.1.min.js"
></script>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery-2.1.4.min.js"
></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$
(
function
(){
$
(
'.common-header .active'
).
addClass
(
'on'
);
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
runtime/temp/6a22201b8b6cbed8f0570187ec64115e.php
0 → 100644
View file @
425291a8
<?php
/*a:4:{s:71:"D:\PHPStormProject\3yakj\config/../template/home\index\Index\index.html";i:1647939856;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648106266;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/
?>
<html>
<head>
<title>
朱贝—全民娱乐直播平台
</title>
<meta
name=
"chinaz-site-verification"
content=
"AC2EF776C208BC35"
>
<meta
name=
"keywords"
content=
"朱贝,朱贝娱乐,朱贝直播,直播短视频,重庆直播"
/>
<meta
name=
"description"
content=
"朱贝是一款由三丫互娱专注于打造全民娱乐直播平台。多功能直播间互动、高性价商城产品、便捷分享模式,给你带来不同直播互动体验。互动视频娱乐直播交友,汇集各类优秀主播在线互动,24小时不间断嗨歌热舞,为您带来超凡体验!"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/common.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/home/css/swiper3.07.min.css"
>
<style>
.wrapper
{
overflow
:
hidden
}
.banner
{
background
:
#1e78eb
;
height
:
540px
;
padding-top
:
120px
;}
.banner
.page-1
{
width
:
960px
;
height
:
540px
;
margin
:
0
auto
;
position
:
relative
;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner
a
,
.banner
a
:hover
{
text-decoration
:
none
;
cursor
:
pointer
;}
.banner
.play-btn
{
width
:
84px
;
height
:
84px
;
display
:
block
;
background
:
url(/static/common/img/play.png)
0
0
no-repeat
;
left
:
50%
;
position
:
absolute
;
top
:
165px
;
z-index
:
2000
;
margin-left
:
114px
;
cursor
:
pointer
;}
.banner
.play-btn
,
.banner
.play-close-btn
{
display
:
block
;}
.banner
.play-close-btn
{
width
:
52px
;
height
:
52px
;
background
:
url(/static/common/img/close.jpg)
0
0
no-repeat
;
position
:
absolute
;
right
:
0
;
top
:
0
;
z-index
:
30000
;
opacity
:
0
;}
.banner
.page-2
:hover
.play-close-btn
{
opacity
:
1
;}
@media
screen
and
(
-webkit-min-device-pixel-ratio
:
0
)
{
.banner
.play-close-btn
{
right
:
2px
;
}
}
.banner
.banner-btn
{
width
:
105px
;
height
:
51px
;
display
:
inline-block
;
border
:
2px
solid
#fff
;
font-size
:
20px
;
line-height
:
51px
;
padding-left
:
65px
;}
.banner
.download-btn
{
color
:
#267be5
;
background
:
#fff
url(/static/common/img/icon.1.1.png)
21px
-57px
no-repeat
;}
.banner
.member-center
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
20px
-163px
no-repeat
;
margin-left
:
26px
;}
.banner
.ad-link
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
-250px
-32px
no-repeat
;
margin-left
:
26px
;}
.live-guild
{
color
:
#fff
;
background
:
url("/static/common/img/people.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
.microvideo
{
color
:
#fff
;
background
:
url("/static/common/img/vedio.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
#entryCon
{
display
:
flex
;
position
:
absolute
;
justify-content
:
space-between
;
flex-wrap
:
nowrap
;
top
:
398px
;
left
:
0px
;
}
.banner
object
{
position
:
relative
;
z-index
:
1000
;}
.banner
.page-2
{
position
:
absolute
;
z-index
:
3000
;
left
:
629px
;
top
:
240px
;
left
:
455px
\
0
;
top
:
190px
\
0
;
*
left
:
456px
;
*
top
:
190px
;
text-align
:
center
;
padding
:
6px
;
width
:
0
;
height
:
0
;
background
:
#0d0d0d
;
opacity
:
0
;
overflow
:
hidden
;
-webkit-transition
:
all
0.3s
;
transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.banner
.page-2
.jwlogo
{
display
:
none
;}
.banner.videoplaying
.page-1
.bg
{
background
:
#267be5
;}
.banner.videoplaying
.page-2
{
opacity
:
1
;
width
:
948px
;
height
:
528px
;
top
:
0
;
left
:
0
;}
.banner
.qr-code-con
{
width
:
121px
;
height
:
121px
;
border
:
2px
solid
#fff
;
position
:
absolute
;
top
:
341px
;
left
:
198px
;}
.banner
.qr-code-con
.qr-code
{
margin
:
12px
;}
.banner
.qr-code-con
.qr-note
{
color
:
#fff
;
font-size
:
20px
;
position
:
absolute
;
bottom
:
-36px
;
width
:
100%
;
text-align
:
center
;}
.banner
.qr-code-con
.qr-code
img
{
display
:
block
;
width
:
100%
;
height
:
100%
;
background
:
#fff
;}
.tit
{
font-size
:
30px
;
color
:
#4a4a4a
;
font-weight
:
100
;
height
:
30px
;
line-height
:
30px
;}
.tit
a
{
display
:
block
;
color
:
#434343
;
text-decoration
:
none
;}
.note
{
font-size
:
20px
;
line-height
:
20px
;
color
:
#6f6f6f
;
font-weight
:
100
;
margin
:
22px
0
80px
;}
.sec-1
{
padding-left
:
10px
;}
.sec-1
li
{
float
:
left
;
margin-right
:
3px
;}
.sec-1
li
img
{
display
:
block
;}
.high-blue
{
color
:
#007aff
;}
.sec-3
ul
{
margin
:
75px
auto
0
;
width
:
1020px
;}
.sec-3
li
{
float
:
left
;
margin-right
:
10px
;
width
:
243px
;
height
:
243px
;
border
:
1px
solid
#e4e4e4
;
color
:
#8b8a8a
;
font-family
:
'Myriad Pro'
;
font-size
:
18px
;
background-color
:
#fff
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
.icon
{
width
:
43px
;
height
:
50px
;
display
:
block
;
margin
:
0px
auto
18px
;}
.sec-3
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
0
no-repeat
;}
.sec-3
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-78px
0
no-repeat
;}
.sec-3
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-155px
0
no-repeat
;}
.sec-3
a
{
text-decoration
:
none
;
display
:
block
;
color
:
#8b8a8a
;
height
:
174px
;
padding-top
:
70px
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
li
.qr-code
img
{
margin-top
:
70px
}
.sec-3
li
.qr-code
p
{
font-size
:
12px
;
margin-top
:
-8px
;}
.sec-3
li
.down.on
{
background-color
:
#007aff
;
box-shadow
:
5px
15px
30px
rgba
(
0
,
0
,
0
,
.3
);
border
:
1px
solid
#007aff
;}
.sec-3
li
.down.on
a
{
color
:
#fff
;}
.sec-3
li
.down.on
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
-110px
no-repeat
;}
.sec-3
li
.down.on
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-77px
-111px
no-repeat
;}
.sec-3
li
.down.on
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-154px
-110px
no-repeat
;}
.sec-3.download-popup
{
width
:
690px
;
height
:
374px
;
background
:
#ffffff
;
padding-top
:
1px
;}
.sec-3.download-popup
li
{
width
:
134px
;
height
:
134px
;
margin-right
:
25px
;}
.sec-3.download-popup
ul
{
margin
:
106px
0px
0px
38px
;}
.sec-3.download-popup
a
{
padding-top
:
24px
;
height
:
110px
;}
.sec-3.download-popup
li
.qr-code
img
{
margin-top
:
15px
;}
.sec-4
{
margin-bottom
:
180px
;}
.sec-4
ul
{
width
:
1020px
;
margin
:
0
auto
;}
.sec-4
li
{
width
:
259px
;
height
:
140px
;
border-left
:
1px
dashed
#9d9d9d
;
text-align
:
left
;
padding-left
:
20px
;
padding-right
:
60px
;
float
:
left
;}
.sec-4
li
.tit
{
color
:
#434343
;
font-size
:
22px
;
position
:
relative
;
padding-bottom
:
5px
;}
.sec-4
li
.tit
.arrows
{
background
:
url(/static/common/img/icon.1.1.png)
-176px
-69px
no-repeat
;
width
:
25px
;
height
:
25px
;
display
:
block
;
position
:
absolute
;
right
:
0px
;
top
:
7px
;}
.sec-4
li
.con
{
color
:
#8a8a8a
;
font-size
:
14px
;
line-height
:
26px
;
width
:
230px
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
overflow
:
hidden
;}
.sec-4
li
.con
a
{
text-decoration
:
none
;
color
:
#8a8a8a
;
font-size
:
14px
;}
.sec-4
li
.con
a
:hover
{
color
:
#00A2FF
;}
.screen
{
width
:
200px
;
height
:
345px
;
position
:
absolute
;
left
:
50%
;
margin-left
:
29px
;
top
:
218px
;
overflow
:
hidden
;}
.scroll-img
{
position
:
absolute
;}
/**
* 照片墙
*/
div
,
ul
,
li
,
img
,
dl
,
dt
,
dd
{
margin
:
0
;
padding
:
0
;}
.photo-wall
{
width
:
1200px
;
padding
:
0
7px
;
overflow
:
hidden
;
box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
;}
.wall-pace
{
width
:
392px
;
list-style
:
none
;
overflow
:
hidden
;
float
:
left
;
position
:
relative
;}
.wall-pace
li
{
position
:
relative
;
float
:
left
;
margin
:
0
5px
5px
0
;
overflow
:
hidden
;
background
:
#efefef
}
.wall-last-3
{
position
:
absolute
!important
;
top
:
151px
;}
.wall-last-4
{
margin-left
:
128px
!important
;}
.wall-pace
img
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
}
.wall-pace
.sq-sm
{
width
:
145px
;
height
:
145px
;}
.wall-pace
.rect-x
,
.intr-x
{
width
:
235px
;
height
:
146px
;}
.wall-pace
.sq-lg
{
width
:
258px
;
height
:
258px
;}
.wall-pace
.rect-y
{
width
:
123px
;
height
:
258px
;}
.intr-x
,
.intr-s
{
padding
:
8px
;
color
:
#fff
;
background
:
rgb
(
1
,
122
,
255
);
position
:
absolute
;
top
:
100%
;}
.intr-x
{
padding-top
:
12px
;
width
:
219px
;}
.intr-s
{
width
:
242px
;
height
:
128px
;}
.wall-pace
dl
{
text-align
:
left
;}
.wall-pace
dt
{
font-size
:
22px
;
line-height
:
44px
;}
.wall-pace
dd
{
font-size
:
14px
;
line-height
:
24px
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;}
.banner
.youku-btn
{
top
:
339px
;
background
:
none
;
color
:
#fff
;
width
:
125px
;
margin-left
:
96px
;
cursor
:
pointer
;
height
:
20px
;}
.ad-identity
{
position
:
fixed
;
right
:
28px
;
top
:
50px
;
width
:
38px
;
height
:
21px
;
z-index
:
99999
;}
.ad-identity-bg
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
background
:
#000
;
opacity
:
0.17
;
}
.ad-identity-text
{
position
:
absolute
;
top
:
0
;
left
:
0
;
color
:
#fff
;
font-size
:
13px
;
width
:
100%
;
height
:
100%
;
text-align
:
center
;
line-height
:
21px
;
}
.page-2
.ad-identity
{
position
:
absolute
;
right
:
55px
;
top
:
10px
;
}
.quest-mobile-link
{
display
:
inline-block
;
color
:
#6f6f6f
;
font-size
:
12px
;
font-weight
:
100
;
line-height
:
20px
;
padding-top
:
16px
;
text-decoration
:
none
;
}
.te
{
cursor
:
pointer
;
transition
:
all
0.6s
;
}
.te
:hover
{
transform
:
scale
(
1.2
);
z-index
:
1000
;
}
</style>
<title>
首页
</title>
<style>
.wrapper
{
overflow
:
hidden
}
.banner
{
background
:
#1e78eb
;
height
:
540px
;
padding-top
:
120px
;}
.banner
.page-1
{
width
:
100%
;
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
:
23%
;
}
.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
;
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>
<meta
name=
"baidu-site-verification"
content=
"fGH1jG2naz"
/>
<meta
name=
"360-site-verification"
content=
"4102c44eaf358245f951d41ab59b2fd6"
/>
<meta
name=
"sogou_site_verification"
content=
"5w9foQpvXj"
/>
</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
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
if
((
!
empty
(
$other_logo_url
)))
:
?>
.white-bg
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$other_logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
?>
</style>
<header
class=
"common-header"
>
<a
class=
"logo-href"
href=
"/"
></a>
<ul
class=
"clearfix"
>
<?php
if
(
is_array
(
$nav
)
||
$nav
instanceof
\think\Collection
||
$nav
instanceof
\think\Paginator
)
:
$k
=
0
;
$__LIST__
=
$nav
;
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$vo
)
:
$mod
=
(
$k
%
2
);
++
$k
;
if
(
!
empty
(
$vo
[
'child'
]))
:
?>
<li
class=
"white-bg-service"
>
<span
class=
"service"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
<span
class=
"down-list"
style=
"position: relative;top: -30px;left: 0px;"
>
<span
class=
"item colortext"
style=
"left: -1px;width: 100%"
>
<a
href=
"javascript:"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
</a>
</span>
<?php
if
(
is_array
(
$vo
[
'child'
])
||
$vo
[
'child'
]
instanceof
\think\Collection
||
$vo
[
'child'
]
instanceof
\think\Paginator
)
:
$key
=
0
;
$__LIST__
=
$vo
[
'child'
];
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$child
)
:
$mod
=
(
$key
%
2
);
++
$key
;
?>
<span
class=
"item"
>
<a
href=
"
<?php
echo
htmlentities
(
$child
[
'url'
]);
?>
"
<?php
if
(
$child
[
'show_type'
]
==
1
)
:
?>
target=
"_blank"
<?php
endif
;
?>
>
<?php
echo
htmlentities
(
$child
[
'title'
]);
?>
</a>
</span>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
</span>
</span>
<li>
<?php
else
:
?>
<li
<?php
if
(
$k
==
1
)
:
?>
class=
"no-border"
<?php
else
:
?>
class=
"white-bg-service"
<?php
endif
;
?>
>
<a
class=
"home"
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"
>
<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/1290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/2290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/3290.png"></li>-->
<!-- <li><img class="te" src="/static/common/img/4290.png"></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 gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716">
<img class="te" src="/static/common/img/1.jpg"></li>
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=29751716">
<img class="te" src="/static/common/img/2.png">
</li>
<li class="sq-lg gg" href="https://wap.fjkankan.com/zhibo?roomnumber=76533387">
<img class="te" src="/static/common/img/3.jpg">
</li>
<li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48281734">
<img class="te" src="/static/common/img/4.jpg"></li>
</ul>
<ul class="wall-pace">
<li class="sq-lg gg">
<img class="te" src="/static/common/img/7.jpg">
</li>
<li class="rect-y gg" href="https://wap.fjkankan.com/zhibo?roomnumber=26062203">
<img class="te" src="/static/common/img/8.jpg"></li>
<li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=49892134">
<img class="te" src="/static/common/img/5.jpg"></li>
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095">
<img class="te" src="/static/common/img/6.jpg">
</li>
</ul>
<ul class="wall-pace">
<li class="rect-x gg" href="https://wap.fjkankan.com/zhibo?roomnumber=67993095">
<img class="te" src="/static/common/img/10.jpg">
</li>
<li class="sq-sm gg" href="https://wap.fjkankan.com/zhibo?roomnumber=64343767">
<img class="te" src="/static/common/img/9.jpg"></li>
<li class="rect-y wall-last-3 gg">
<img class="te" src="/static/common/img/12.jpg"></li>
<li class="sq-lg wall-last-4 gg" href="https://wap.fjkankan.com/zhibo?roomnumber=48041785">
<img class="te" src="/static/common/img/11.jpg">
</li>
</ul>
</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"
>
<?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
style=
"text-align: center;"
href=
"
<?php
echo
htmlentities
(
$vo
[
'file_link'
]);
?>
"
target=
"_Blank"
class=
"ciqclickbtn"
_client=
"PC"
_page=
"首页"
_position=
"底部"
_name=
"
<?php
echo
htmlentities
(
$vo
[
'app_cate'
][
'title'
]);
?>
下载"
>
<img
class=
"te"
alt=
""
style=
"width:100px;height:100px;text-align: center!important;"
src=
"
<?php
echo
htmlentities
(
$vo
[
'img'
][
'img_url'
]);
?><?php
echo
htmlentities
(
$vo
[
'img'
][
'img_name'
]);
?>
"
>
<p
style=
"margin-top: 20px"
>
<?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>
<?php
endif
;
?>
</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/yyzz3y.jpg">-->
<!-- </li>-->
<!-- <li style=" border-left: 0px;">-->
<!-- <img class="img" alt="" style="wdith:100%;height:100%;" src="/static/IMG/wenhua.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>
<style>
._link
{
position
:
fixed
;
_position
:
absolute
;
bottom
:
20px
;
right
:
20px
;
z-index
:
214748000
;
width
:
60px
;
height
:
60px
;
border
:
1px
solid
#ddd
\
0
;
border-radius
:
30px
;
cursor
:
pointer
;
background
:
#23a0ee
;
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
from
(
#23a0ee
),
to
(
#2b73d3
));
background
:
-o-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
-webkit-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
linear-gradient
(
to
bottom
,
#23a0ee
0
,
#2b73d3
100%
);
-webkit-box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
-webkit-animation-duration
:
.3s
;
animation-duration
:
.3s
;
-webkit-animation-fill-mode
:
both
;
animation-fill-mode
:
both
;
-webkit-animation-name
:
lim_mini_zoomIn
;
animation-name
:
lim_mini_zoomIn
;
}
</style>
<footer
class=
"common-footer"
>
<ul
class=
"clearfix"
style=
"width: 510px;"
>
<li><a
href=
"
<?php
echo
url
(
'/aboutus'
);
?>
"
>
关于我们
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/aboutus/agreement'
);
?>
"
>
用户协议
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/join'
);
?>
"
>
招聘信息
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/contact'
);
?>
"
>
联系我们
</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div
style=
"text-align:center; "
>
Copyright © 2018
<a
href=
"/"
target=
"_blank"
>
重庆三丫互娱网络科技有限公司
</a>
All Rights Reserved
<br><a
href=
"https://beian.miit.gov.cn/#/Integrated/recordQuery"
target=
"_Blank"
>
渝ICP备19002633号-1
</a><br>
统一社会信用代码 91500103MA6089GG94
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/wen.png"
style=
"float:left;width:20px;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
互联网文化经营单位
</p
></a>
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/f.png"
style=
"float:left;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
渝公网安备 50010302002432号
</p
></a>
</div>
<a
target=
"_blank"
href=
"https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002"
>
<div
id=
"customer"
class=
"_link"
style=
"display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;"
>
<div
id=
"lim_mini_icon"
style=
"position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;"
>
<div
id=
"lim_mini_new"
style=
"height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;"
>
</div>
</div>
</div>
</a>
</footer>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery.1.9.1.min.js"
></script>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery-2.1.4.min.js"
></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$
(
function
(){
$
(
'.common-header .active'
).
addClass
(
'on'
);
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
<script>
(
function
(){
var
bp
=
document
.
createElement
(
'script'
);
var
curProtocol
=
window
.
location
.
protocol
.
split
(
':'
)[
0
];
if
(
curProtocol
===
'https'
)
{
bp
.
src
=
'https://zz.bdstatic.com/linksubmit/push.js'
;
}
else
{
bp
.
src
=
'http://push.zhanzhang.baidu.com/push.js'
;
}
var
s
=
document
.
getElementsByTagName
(
"script"
)[
0
];
s
.
parentNode
.
insertBefore
(
bp
,
s
);
})();
</script>
<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'
);
});
$
(
".gg"
).
click
(
function
(){
// 获取图片模态框,alt 属性作为图片弹出中文本描述
if
(
Boolean
(
$
(
this
).
attr
(
"href"
))){
window
.
open
(
$
(
this
).
attr
(
"href"
));
}
});
// 获取
<
span
>
元素,设置关闭模态框按钮
var
span
=
document
.
getElementsByClassName
(
"close"
)[
0
];
// 点击
<
span
>
元素上的
(
x
),
关闭模态框
span
.
onclick
=
function
()
{
modal
.
style
.
display
=
"none"
;
}
$
.
post
(
'/getConfig'
,{
type
:
1
},
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>
runtime/temp/8b116787e5d2b185b0b45b3a202f557e.php
0 → 100644
View file @
425291a8
<?php
/*a:4:{s:70:"D:\PHPStormProject\3yakj\config/../template/home\servicehelp\help.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\header.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1648106266;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/
?>
<html>
<head>
<title>
朱贝-全民娱乐直播平台
</title>
<meta
name=
"chinaz-site-verification"
content=
"AC2EF776C208BC35"
>
<meta
name=
"keywords"
content=
"朱贝、朱贝软件、短视频直播、娱乐直播"
/>
<meta
name=
"description"
content=
"朱贝是一款由三丫互娱专注于打造全民娱乐直播平台。多功能直播间互动、便捷分享模式,给你带来不同直播互动体验。互动视频娱乐直播交友,汇集各类优秀主播在线互动,24小时不间断嗨歌热舞,为您带来超凡体验!"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/common.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/home/css/swiper3.07.min.css"
>
<style>
.wrapper
{
overflow
:
hidden
}
.banner
{
background
:
#1e78eb
;
height
:
540px
;
padding-top
:
120px
;}
.banner
.page-1
{
width
:
960px
;
height
:
540px
;
margin
:
0
auto
;
position
:
relative
;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner
a
,
.banner
a
:hover
{
text-decoration
:
none
;
cursor
:
pointer
;}
.banner
.play-btn
{
width
:
84px
;
height
:
84px
;
display
:
block
;
background
:
url(/static/common/img/play.png)
0
0
no-repeat
;
left
:
50%
;
position
:
absolute
;
top
:
165px
;
z-index
:
2000
;
margin-left
:
114px
;
cursor
:
pointer
;}
.banner
.play-btn
,
.banner
.play-close-btn
{
display
:
block
;}
.banner
.play-close-btn
{
width
:
52px
;
height
:
52px
;
background
:
url(/static/common/img/close.jpg)
0
0
no-repeat
;
position
:
absolute
;
right
:
0
;
top
:
0
;
z-index
:
30000
;
opacity
:
0
;}
.banner
.page-2
:hover
.play-close-btn
{
opacity
:
1
;}
@media
screen
and
(
-webkit-min-device-pixel-ratio
:
0
)
{
.banner
.play-close-btn
{
right
:
2px
;
}
}
.banner
.banner-btn
{
width
:
105px
;
height
:
51px
;
display
:
inline-block
;
border
:
2px
solid
#fff
;
font-size
:
20px
;
line-height
:
51px
;
padding-left
:
65px
;}
.banner
.download-btn
{
color
:
#267be5
;
background
:
#fff
url(/static/common/img/icon.1.1.png)
21px
-57px
no-repeat
;}
.banner
.member-center
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
20px
-163px
no-repeat
;
margin-left
:
26px
;}
.banner
.ad-link
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
-250px
-32px
no-repeat
;
margin-left
:
26px
;}
.live-guild
{
color
:
#fff
;
background
:
url("/static/common/img/people.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
.microvideo
{
color
:
#fff
;
background
:
url("/static/common/img/vedio.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
#entryCon
{
display
:
flex
;
position
:
absolute
;
justify-content
:
space-between
;
flex-wrap
:
nowrap
;
top
:
398px
;
left
:
0px
;
}
.banner
object
{
position
:
relative
;
z-index
:
1000
;}
.banner
.page-2
{
position
:
absolute
;
z-index
:
3000
;
left
:
629px
;
top
:
240px
;
left
:
455px
\
0
;
top
:
190px
\
0
;
*
left
:
456px
;
*
top
:
190px
;
text-align
:
center
;
padding
:
6px
;
width
:
0
;
height
:
0
;
background
:
#0d0d0d
;
opacity
:
0
;
overflow
:
hidden
;
-webkit-transition
:
all
0.3s
;
transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.banner
.page-2
.jwlogo
{
display
:
none
;}
.banner.videoplaying
.page-1
.bg
{
background
:
#267be5
;}
.banner.videoplaying
.page-2
{
opacity
:
1
;
width
:
948px
;
height
:
528px
;
top
:
0
;
left
:
0
;}
.banner
.qr-code-con
{
width
:
121px
;
height
:
121px
;
border
:
2px
solid
#fff
;
position
:
absolute
;
top
:
341px
;
left
:
198px
;}
.banner
.qr-code-con
.qr-code
{
margin
:
12px
;}
.banner
.qr-code-con
.qr-note
{
color
:
#fff
;
font-size
:
20px
;
position
:
absolute
;
bottom
:
-36px
;
width
:
100%
;
text-align
:
center
;}
.banner
.qr-code-con
.qr-code
img
{
display
:
block
;
width
:
100%
;
height
:
100%
;
background
:
#fff
;}
.tit
{
font-size
:
30px
;
color
:
#4a4a4a
;
font-weight
:
100
;
height
:
30px
;
line-height
:
30px
;}
.tit
a
{
display
:
block
;
color
:
#434343
;
text-decoration
:
none
;}
.note
{
font-size
:
20px
;
line-height
:
20px
;
color
:
#6f6f6f
;
font-weight
:
100
;
margin
:
22px
0
80px
;}
.sec-1
{
padding-left
:
10px
;}
.sec-1
li
{
float
:
left
;
margin-right
:
3px
;}
.sec-1
li
img
{
display
:
block
;}
.high-blue
{
color
:
#007aff
;}
.sec-3
ul
{
margin
:
75px
auto
0
;
width
:
1020px
;}
.sec-3
li
{
float
:
left
;
margin-right
:
10px
;
width
:
243px
;
height
:
243px
;
border
:
1px
solid
#e4e4e4
;
color
:
#8b8a8a
;
font-family
:
'Myriad Pro'
;
font-size
:
18px
;
background-color
:
#fff
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
.icon
{
width
:
43px
;
height
:
50px
;
display
:
block
;
margin
:
0px
auto
18px
;}
.sec-3
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
0
no-repeat
;}
.sec-3
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-78px
0
no-repeat
;}
.sec-3
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-155px
0
no-repeat
;}
.sec-3
a
{
text-decoration
:
none
;
display
:
block
;
color
:
#8b8a8a
;
height
:
174px
;
padding-top
:
70px
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
li
.qr-code
img
{
margin-top
:
70px
}
.sec-3
li
.qr-code
p
{
font-size
:
12px
;
margin-top
:
-8px
;}
.sec-3
li
.down.on
{
background-color
:
#007aff
;
box-shadow
:
5px
15px
30px
rgba
(
0
,
0
,
0
,
.3
);
border
:
1px
solid
#007aff
;}
.sec-3
li
.down.on
a
{
color
:
#fff
;}
.sec-3
li
.down.on
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
-110px
no-repeat
;}
.sec-3
li
.down.on
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-77px
-111px
no-repeat
;}
.sec-3
li
.down.on
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-154px
-110px
no-repeat
;}
.sec-3.download-popup
{
width
:
690px
;
height
:
374px
;
background
:
#ffffff
;
padding-top
:
1px
;}
.sec-3.download-popup
li
{
width
:
134px
;
height
:
134px
;
margin-right
:
25px
;}
.sec-3.download-popup
ul
{
margin
:
106px
0px
0px
38px
;}
.sec-3.download-popup
a
{
padding-top
:
24px
;
height
:
110px
;}
.sec-3.download-popup
li
.qr-code
img
{
margin-top
:
15px
;}
.sec-4
{
margin-bottom
:
180px
;}
.sec-4
ul
{
width
:
1020px
;
margin
:
0
auto
;}
.sec-4
li
{
width
:
259px
;
height
:
140px
;
border-left
:
1px
dashed
#9d9d9d
;
text-align
:
left
;
padding-left
:
20px
;
padding-right
:
60px
;
float
:
left
;}
.sec-4
li
.tit
{
color
:
#434343
;
font-size
:
22px
;
position
:
relative
;
padding-bottom
:
5px
;}
.sec-4
li
.tit
.arrows
{
background
:
url(/static/common/img/icon.1.1.png)
-176px
-69px
no-repeat
;
width
:
25px
;
height
:
25px
;
display
:
block
;
position
:
absolute
;
right
:
0px
;
top
:
7px
;}
.sec-4
li
.con
{
color
:
#8a8a8a
;
font-size
:
14px
;
line-height
:
26px
;
width
:
230px
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
overflow
:
hidden
;}
.sec-4
li
.con
a
{
text-decoration
:
none
;
color
:
#8a8a8a
;
font-size
:
14px
;}
.sec-4
li
.con
a
:hover
{
color
:
#00A2FF
;}
.screen
{
width
:
200px
;
height
:
345px
;
position
:
absolute
;
left
:
50%
;
margin-left
:
29px
;
top
:
218px
;
overflow
:
hidden
;}
.scroll-img
{
position
:
absolute
;}
/**
* 照片墙
*/
div
,
ul
,
li
,
img
,
dl
,
dt
,
dd
{
margin
:
0
;
padding
:
0
;}
.photo-wall
{
width
:
1200px
;
padding
:
0
7px
;
overflow
:
hidden
;
box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
;}
.wall-pace
{
width
:
392px
;
list-style
:
none
;
overflow
:
hidden
;
float
:
left
;
position
:
relative
;}
.wall-pace
li
{
position
:
relative
;
float
:
left
;
margin
:
0
5px
5px
0
;
overflow
:
hidden
;
background
:
#efefef
}
.wall-last-3
{
position
:
absolute
!important
;
top
:
151px
;}
.wall-last-4
{
margin-left
:
128px
!important
;}
.wall-pace
img
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
}
.wall-pace
.sq-sm
{
width
:
145px
;
height
:
145px
;}
.wall-pace
.rect-x
,
.intr-x
{
width
:
235px
;
height
:
146px
;}
.wall-pace
.sq-lg
{
width
:
258px
;
height
:
258px
;}
.wall-pace
.rect-y
{
width
:
123px
;
height
:
258px
;}
.intr-x
,
.intr-s
{
padding
:
8px
;
color
:
#fff
;
background
:
rgb
(
1
,
122
,
255
);
position
:
absolute
;
top
:
100%
;}
.intr-x
{
padding-top
:
12px
;
width
:
219px
;}
.intr-s
{
width
:
242px
;
height
:
128px
;}
.wall-pace
dl
{
text-align
:
left
;}
.wall-pace
dt
{
font-size
:
22px
;
line-height
:
44px
;}
.wall-pace
dd
{
font-size
:
14px
;
line-height
:
24px
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;}
.banner
.youku-btn
{
top
:
339px
;
background
:
none
;
color
:
#fff
;
width
:
125px
;
margin-left
:
96px
;
cursor
:
pointer
;
height
:
20px
;}
.ad-identity
{
position
:
fixed
;
right
:
28px
;
top
:
50px
;
width
:
38px
;
height
:
21px
;
z-index
:
99999
;}
.ad-identity-bg
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
background
:
#000
;
opacity
:
0.17
;
}
.ad-identity-text
{
position
:
absolute
;
top
:
0
;
left
:
0
;
color
:
#fff
;
font-size
:
13px
;
width
:
100%
;
height
:
100%
;
text-align
:
center
;
line-height
:
21px
;
}
.page-2
.ad-identity
{
position
:
absolute
;
right
:
55px
;
top
:
10px
;
}
.quest-mobile-link
{
display
:
inline-block
;
color
:
#6f6f6f
;
font-size
:
12px
;
font-weight
:
100
;
line-height
:
20px
;
padding-top
:
16px
;
text-decoration
:
none
;
}
.te
{
cursor
:
pointer
;
transition
:
all
0.6s
;
}
.te
:hover
{
transform
:
scale
(
1.2
);
z-index
:
1000
;
}
</style>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/my.css"
>
<title>
帮助中心
</title>
<style>
.wrapper
{
padding-top
:
0px
;}
.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
;
}
.pagination
{
height
:
40px
;
margin
:
20px
0
;
}
.pagination
ul
{
border-radius
:
3px
3px
3px
3px
;
box-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,
0.05
);
display
:
inline-block
;
margin-bottom
:
0
;
margin-left
:
0
;
}
.pagination
li
{
display
:
inline
;
}
.pagination
a
,
.pagination
span
{
-moz-border-bottom-colors
:
none
;
-moz-border-left-colors
:
none
;
-moz-border-right-colors
:
none
;
-moz-border-top-colors
:
none
;
background-color
:
#FFFFFF
;
border-color
:
#DDDDDD
;
border-image
:
none
;
border-style
:
solid
;
border-width
:
1px
1px
1px
0
;
float
:
left
;
line-height
:
38px
;
padding
:
0
14px
;
text-decoration
:
none
;
}
.pagination
a
:hover
,
.pagination
.active
a
,
.pagination
.active
span
{
background-color
:
#F5F5F5
;
}
.pagination
.active
a
,
.pagination
.active
span
{
color
:
#999999
;
cursor
:
default
;
}
.pagination
.disabled
span
,
.pagination
.disabled
a
,
.pagination
.disabled
a
:hover
{
background-color
:
transparent
;
color
:
#999999
;
cursor
:
default
;
}
.pagination
li
:first-child
a
,
.pagination
li
:first-child
span
{
border-left-width
:
1px
;
border-radius
:
3px
0
0
3px
;
}
.pagination
li
:last-child
a
,
.pagination
li
:last-child
span
{
border-radius
:
0
3px
3px
0
;
}
.pagination-centered
{
text-align
:
center
;
}
.pagination-right
{
text-align
:
right
;
}
</style>
</head>
<body
class=
"white-bg"
>
<style>
.common-header
{
margin-left
:
-560px
;
width
:
1000px
;
}
.common-header
li
.service.business
.down-list
{
left
:
-3px
;
}
<?php
if
((
!
empty
(
$logo_url
)))
:
?>
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
if
((
!
empty
(
$other_logo_url
)))
:
?>
.white-bg
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$other_logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
?>
</style>
<header
class=
"common-header"
>
<a
class=
"logo-href"
href=
"/"
></a>
<ul
class=
"clearfix"
>
<?php
if
(
is_array
(
$nav
)
||
$nav
instanceof
\think\Collection
||
$nav
instanceof
\think\Paginator
)
:
$k
=
0
;
$__LIST__
=
$nav
;
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$vo
)
:
$mod
=
(
$k
%
2
);
++
$k
;
if
(
!
empty
(
$vo
[
'child'
]))
:
?>
<li
class=
"white-bg-service"
>
<span
class=
"service"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
<span
class=
"down-list"
style=
"position: relative;top: -30px;left: 0px;"
>
<span
class=
"item colortext"
style=
"left: -1px;width: 100%"
>
<a
href=
"javascript:"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
</a>
</span>
<?php
if
(
is_array
(
$vo
[
'child'
])
||
$vo
[
'child'
]
instanceof
\think\Collection
||
$vo
[
'child'
]
instanceof
\think\Paginator
)
:
$key
=
0
;
$__LIST__
=
$vo
[
'child'
];
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$child
)
:
$mod
=
(
$key
%
2
);
++
$key
;
?>
<span
class=
"item"
>
<a
href=
"
<?php
echo
htmlentities
(
$child
[
'url'
]);
?>
"
<?php
if
(
$child
[
'show_type'
]
==
1
)
:
?>
target=
"_blank"
<?php
endif
;
?>
>
<?php
echo
htmlentities
(
$child
[
'title'
]);
?>
</a>
</span>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
</span>
</span>
<li>
<?php
else
:
?>
<li
<?php
if
(
$k
==
1
)
:
?>
class=
"no-border"
<?php
else
:
?>
class=
"white-bg-service"
<?php
endif
;
?>
>
<a
class=
"home"
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>
<section
class=
"wrapper userPageWrapper"
>
<div
id=
"SubMenu"
class=
"wrapper user-tabs left-tabs"
>
<?php
if
(
is_array
(
$question_cate_list
)
||
$question_cate_list
instanceof
\think\Collection
||
$question_cate_list
instanceof
\think\Paginator
)
:
$i
=
0
;
$__LIST__
=
$question_cate_list
;
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$vo
)
:
$mod
=
(
$i
%
2
);
++
$i
;
?>
<div
id=
"question_cate_
<?php
echo
htmlentities
(
$vo
[
'id'
]);
?>
"
class=
"tab
<?php
echo
$cate_id
==
$vo
[
'id'
]
?
'on'
:
''
;
?>
"
>
<a
href=
"/servicehelp/cate.html?id=
<?php
echo
htmlentities
(
$vo
[
'id'
]);
?>
"
><img
class=
"icon"
src=
"
<?php
echo
htmlentities
(
$vo
[
'img_url'
]);
?>
"
>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
</a>
</div>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
</div>
<div
class=
"usercontext"
>
<div
class=
"tips-container"
>
<form
id=
"search-form"
method=
"get"
action=
"/servicehelp/search.html"
>
<div
class=
"search-bar"
>
<div
class=
"input-sec"
>
<div
class=
"panel"
>
<input
name=
"s_key"
type=
"text"
placeholder=
"搜点什么呢?"
>
</div>
</div>
<a
onclick=
"$('#search-form').submit();"
href=
"javascript:;"
class=
"blueBtn search-btn"
><img
src=
"/static/common/img/s.png"
></a>
</div>
</form>
<section
class=
"post-titles color_gray"
>
<?php
if
(
$q_id
==
0
)
:
?>
<h3>
<?php
echo
htmlentities
(
$cate
[
'title'
]);
?>
</h3>
<ul>
<?php
if
(
is_array
(
$question_list
)
||
$question_list
instanceof
\think\Collection
||
$question_list
instanceof
\think\Paginator
)
:
$key
=
0
;
$__LIST__
=
$question_list
;
if
(
count
(
$__LIST__
)
==
0
)
:
echo
""
;
else
:
foreach
(
$__LIST__
as
$key
=>
$vo
)
:
$mod
=
(
$key
%
2
);
++
$key
;
?>
<li><a
href=
"/servicehelp/question.html?id=
<?php
echo
htmlentities
(
$vo
[
'id'
]);
?>
"
><span
class=
"i"
>
<?php
echo
htmlentities
(
$key
);
?>
.
</span>
<?php
echo
htmlentities
(
$vo
[
'title'
]);
?>
</a></li>
<?php
endforeach
;
endif
;
else
:
echo
""
;
endif
;
?>
</ul>
<?php
else
:
?>
<h3>
<span
class=
"color_gray"
>
<?php
echo
htmlentities
(
$cate
[
'title'
]);
?>
>
</span>
<?php
echo
htmlentities
(
$question
[
'title'
]);
?>
</h3>
<div
class=
"post-main"
>
<?php
echo
htmlspecialchars_decode
(
$question
[
'content'
]);
?>
</div>
<?php
endif
;
?>
</section>
</div>
<div
class=
"pg-wrapper-bottom clearfix"
style=
"padding-left:45px;"
>
<?php
if
(
$q_id
==
0
)
:
?>
<?php
echo
htmlspecialchars_decode
(
$question_list
->
render
());
?>
<?php
endif
;
?>
</div>
</div>
</section>
</div>
<style>
._link
{
position
:
fixed
;
_position
:
absolute
;
bottom
:
20px
;
right
:
20px
;
z-index
:
214748000
;
width
:
60px
;
height
:
60px
;
border
:
1px
solid
#ddd
\
0
;
border-radius
:
30px
;
cursor
:
pointer
;
background
:
#23a0ee
;
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
from
(
#23a0ee
),
to
(
#2b73d3
));
background
:
-o-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
-webkit-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
linear-gradient
(
to
bottom
,
#23a0ee
0
,
#2b73d3
100%
);
-webkit-box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
-webkit-animation-duration
:
.3s
;
animation-duration
:
.3s
;
-webkit-animation-fill-mode
:
both
;
animation-fill-mode
:
both
;
-webkit-animation-name
:
lim_mini_zoomIn
;
animation-name
:
lim_mini_zoomIn
;
}
</style>
<footer
class=
"common-footer"
>
<ul
class=
"clearfix"
style=
"width: 510px;"
>
<li><a
href=
"
<?php
echo
url
(
'/aboutus'
);
?>
"
>
关于我们
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/aboutus/agreement'
);
?>
"
>
用户协议
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/join'
);
?>
"
>
招聘信息
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/contact'
);
?>
"
>
联系我们
</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div
style=
"text-align:center; "
>
Copyright © 2018
<a
href=
"/"
target=
"_blank"
>
重庆三丫互娱网络科技有限公司
</a>
All Rights Reserved
<br><a
href=
"https://beian.miit.gov.cn/#/Integrated/recordQuery"
target=
"_Blank"
>
渝ICP备19002633号-1
</a><br>
统一社会信用代码 91500103MA6089GG94
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/wen.png"
style=
"float:left;width:20px;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
互联网文化经营单位
</p
></a>
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/f.png"
style=
"float:left;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
渝公网安备 50010302002432号
</p
></a>
</div>
<a
target=
"_blank"
href=
"https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002"
>
<div
id=
"customer"
class=
"_link"
style=
"display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;"
>
<div
id=
"lim_mini_icon"
style=
"position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;"
>
<div
id=
"lim_mini_new"
style=
"height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;"
>
</div>
</div>
</div>
</a>
</footer>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery.1.9.1.min.js"
></script>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery-2.1.4.min.js"
></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$
(
function
(){
$
(
'.common-header .active'
).
addClass
(
'on'
);
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
<script>
$
(
function
(){
$
(
'#user_service_tab'
).
addClass
(
'on'
);
});
$
(
function
(){
$
(
'.common-header .helpon'
).
addClass
(
'on'
);
});
</script>
runtime/temp/bd53d07525251e1d7f391d509a459ecc.php
0 → 100644
View file @
425291a8
<?php
/*a:4:{s:67:"D:\PHPStormProject\3yakj\config/../template/home\about\contact.html";i:1647937410;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/
?>
<html>
<head>
<title>
朱贝在线客服联系我们
</title>
<meta
name=
"chinaz-site-verification"
content=
"AC2EF776C208BC35"
>
<meta
name=
"keywords"
content=
"朱贝热线,合作热线,客服电话,合作伙伴,朱贝联系电话,朱贝热线"
/>
<meta
name=
"description"
content=
"朱贝稳步发展的同时,需要大量的专业人员加入,如果想要深入了解朱贝,或者有合作需求,请联系我们,和朱贝一起共谋发展!"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/common.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/home/css/swiper3.07.min.css"
>
<style>
.wrapper
{
overflow
:
hidden
}
.banner
{
background
:
#1e78eb
;
height
:
540px
;
padding-top
:
120px
;}
.banner
.page-1
{
width
:
960px
;
height
:
540px
;
margin
:
0
auto
;
position
:
relative
;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner
a
,
.banner
a
:hover
{
text-decoration
:
none
;
cursor
:
pointer
;}
.banner
.play-btn
{
width
:
84px
;
height
:
84px
;
display
:
block
;
background
:
url(/static/common/img/play.png)
0
0
no-repeat
;
left
:
50%
;
position
:
absolute
;
top
:
165px
;
z-index
:
2000
;
margin-left
:
114px
;
cursor
:
pointer
;}
.banner
.play-btn
,
.banner
.play-close-btn
{
display
:
block
;}
.banner
.play-close-btn
{
width
:
52px
;
height
:
52px
;
background
:
url(/static/common/img/close.jpg)
0
0
no-repeat
;
position
:
absolute
;
right
:
0
;
top
:
0
;
z-index
:
30000
;
opacity
:
0
;}
.banner
.page-2
:hover
.play-close-btn
{
opacity
:
1
;}
@media
screen
and
(
-webkit-min-device-pixel-ratio
:
0
)
{
.banner
.play-close-btn
{
right
:
2px
;
}
}
.banner
.banner-btn
{
width
:
105px
;
height
:
51px
;
display
:
inline-block
;
border
:
2px
solid
#fff
;
font-size
:
20px
;
line-height
:
51px
;
padding-left
:
65px
;}
.banner
.download-btn
{
color
:
#267be5
;
background
:
#fff
url(/static/common/img/icon.1.1.png)
21px
-57px
no-repeat
;}
.banner
.member-center
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
20px
-163px
no-repeat
;
margin-left
:
26px
;}
.banner
.ad-link
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
-250px
-32px
no-repeat
;
margin-left
:
26px
;}
.live-guild
{
color
:
#fff
;
background
:
url("/static/common/img/people.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
.microvideo
{
color
:
#fff
;
background
:
url("/static/common/img/vedio.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
#entryCon
{
display
:
flex
;
position
:
absolute
;
justify-content
:
space-between
;
flex-wrap
:
nowrap
;
top
:
398px
;
left
:
0px
;
}
.banner
object
{
position
:
relative
;
z-index
:
1000
;}
.banner
.page-2
{
position
:
absolute
;
z-index
:
3000
;
left
:
629px
;
top
:
240px
;
left
:
455px
\
0
;
top
:
190px
\
0
;
*
left
:
456px
;
*
top
:
190px
;
text-align
:
center
;
padding
:
6px
;
width
:
0
;
height
:
0
;
background
:
#0d0d0d
;
opacity
:
0
;
overflow
:
hidden
;
-webkit-transition
:
all
0.3s
;
transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.banner
.page-2
.jwlogo
{
display
:
none
;}
.banner.videoplaying
.page-1
.bg
{
background
:
#267be5
;}
.banner.videoplaying
.page-2
{
opacity
:
1
;
width
:
948px
;
height
:
528px
;
top
:
0
;
left
:
0
;}
.banner
.qr-code-con
{
width
:
121px
;
height
:
121px
;
border
:
2px
solid
#fff
;
position
:
absolute
;
top
:
341px
;
left
:
198px
;}
.banner
.qr-code-con
.qr-code
{
margin
:
12px
;}
.banner
.qr-code-con
.qr-note
{
color
:
#fff
;
font-size
:
20px
;
position
:
absolute
;
bottom
:
-36px
;
width
:
100%
;
text-align
:
center
;}
.banner
.qr-code-con
.qr-code
img
{
display
:
block
;
width
:
100%
;
height
:
100%
;
background
:
#fff
;}
.tit
{
font-size
:
30px
;
color
:
#4a4a4a
;
font-weight
:
100
;
height
:
30px
;
line-height
:
30px
;}
.tit
a
{
display
:
block
;
color
:
#434343
;
text-decoration
:
none
;}
.note
{
font-size
:
20px
;
line-height
:
20px
;
color
:
#6f6f6f
;
font-weight
:
100
;
margin
:
22px
0
80px
;}
.sec-1
{
padding-left
:
10px
;}
.sec-1
li
{
float
:
left
;
margin-right
:
3px
;}
.sec-1
li
img
{
display
:
block
;}
.high-blue
{
color
:
#007aff
;}
.sec-3
ul
{
margin
:
75px
auto
0
;
width
:
1020px
;}
.sec-3
li
{
float
:
left
;
margin-right
:
10px
;
width
:
243px
;
height
:
243px
;
border
:
1px
solid
#e4e4e4
;
color
:
#8b8a8a
;
font-family
:
'Myriad Pro'
;
font-size
:
18px
;
background-color
:
#fff
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
.icon
{
width
:
43px
;
height
:
50px
;
display
:
block
;
margin
:
0px
auto
18px
;}
.sec-3
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
0
no-repeat
;}
.sec-3
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-78px
0
no-repeat
;}
.sec-3
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-155px
0
no-repeat
;}
.sec-3
a
{
text-decoration
:
none
;
display
:
block
;
color
:
#8b8a8a
;
height
:
174px
;
padding-top
:
70px
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
li
.qr-code
img
{
margin-top
:
70px
}
.sec-3
li
.qr-code
p
{
font-size
:
12px
;
margin-top
:
-8px
;}
.sec-3
li
.down.on
{
background-color
:
#007aff
;
box-shadow
:
5px
15px
30px
rgba
(
0
,
0
,
0
,
.3
);
border
:
1px
solid
#007aff
;}
.sec-3
li
.down.on
a
{
color
:
#fff
;}
.sec-3
li
.down.on
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
-110px
no-repeat
;}
.sec-3
li
.down.on
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-77px
-111px
no-repeat
;}
.sec-3
li
.down.on
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-154px
-110px
no-repeat
;}
.sec-3.download-popup
{
width
:
690px
;
height
:
374px
;
background
:
#ffffff
;
padding-top
:
1px
;}
.sec-3.download-popup
li
{
width
:
134px
;
height
:
134px
;
margin-right
:
25px
;}
.sec-3.download-popup
ul
{
margin
:
106px
0px
0px
38px
;}
.sec-3.download-popup
a
{
padding-top
:
24px
;
height
:
110px
;}
.sec-3.download-popup
li
.qr-code
img
{
margin-top
:
15px
;}
.sec-4
{
margin-bottom
:
180px
;}
.sec-4
ul
{
width
:
1020px
;
margin
:
0
auto
;}
.sec-4
li
{
width
:
259px
;
height
:
140px
;
border-left
:
1px
dashed
#9d9d9d
;
text-align
:
left
;
padding-left
:
20px
;
padding-right
:
60px
;
float
:
left
;}
.sec-4
li
.tit
{
color
:
#434343
;
font-size
:
22px
;
position
:
relative
;
padding-bottom
:
5px
;}
.sec-4
li
.tit
.arrows
{
background
:
url(/static/common/img/icon.1.1.png)
-176px
-69px
no-repeat
;
width
:
25px
;
height
:
25px
;
display
:
block
;
position
:
absolute
;
right
:
0px
;
top
:
7px
;}
.sec-4
li
.con
{
color
:
#8a8a8a
;
font-size
:
14px
;
line-height
:
26px
;
width
:
230px
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
overflow
:
hidden
;}
.sec-4
li
.con
a
{
text-decoration
:
none
;
color
:
#8a8a8a
;
font-size
:
14px
;}
.sec-4
li
.con
a
:hover
{
color
:
#00A2FF
;}
.screen
{
width
:
200px
;
height
:
345px
;
position
:
absolute
;
left
:
50%
;
margin-left
:
29px
;
top
:
218px
;
overflow
:
hidden
;}
.scroll-img
{
position
:
absolute
;}
/**
* 照片墙
*/
div
,
ul
,
li
,
img
,
dl
,
dt
,
dd
{
margin
:
0
;
padding
:
0
;}
.photo-wall
{
width
:
1200px
;
padding
:
0
7px
;
overflow
:
hidden
;
box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
;}
.wall-pace
{
width
:
392px
;
list-style
:
none
;
overflow
:
hidden
;
float
:
left
;
position
:
relative
;}
.wall-pace
li
{
position
:
relative
;
float
:
left
;
margin
:
0
5px
5px
0
;
overflow
:
hidden
;
background
:
#efefef
}
.wall-last-3
{
position
:
absolute
!important
;
top
:
151px
;}
.wall-last-4
{
margin-left
:
128px
!important
;}
.wall-pace
img
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
}
.wall-pace
.sq-sm
{
width
:
145px
;
height
:
145px
;}
.wall-pace
.rect-x
,
.intr-x
{
width
:
235px
;
height
:
146px
;}
.wall-pace
.sq-lg
{
width
:
258px
;
height
:
258px
;}
.wall-pace
.rect-y
{
width
:
123px
;
height
:
258px
;}
.intr-x
,
.intr-s
{
padding
:
8px
;
color
:
#fff
;
background
:
rgb
(
1
,
122
,
255
);
position
:
absolute
;
top
:
100%
;}
.intr-x
{
padding-top
:
12px
;
width
:
219px
;}
.intr-s
{
width
:
242px
;
height
:
128px
;}
.wall-pace
dl
{
text-align
:
left
;}
.wall-pace
dt
{
font-size
:
22px
;
line-height
:
44px
;}
.wall-pace
dd
{
font-size
:
14px
;
line-height
:
24px
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;}
.banner
.youku-btn
{
top
:
339px
;
background
:
none
;
color
:
#fff
;
width
:
125px
;
margin-left
:
96px
;
cursor
:
pointer
;
height
:
20px
;}
.ad-identity
{
position
:
fixed
;
right
:
28px
;
top
:
50px
;
width
:
38px
;
height
:
21px
;
z-index
:
99999
;}
.ad-identity-bg
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
background
:
#000
;
opacity
:
0.17
;
}
.ad-identity-text
{
position
:
absolute
;
top
:
0
;
left
:
0
;
color
:
#fff
;
font-size
:
13px
;
width
:
100%
;
height
:
100%
;
text-align
:
center
;
line-height
:
21px
;
}
.page-2
.ad-identity
{
position
:
absolute
;
right
:
55px
;
top
:
10px
;
}
.quest-mobile-link
{
display
:
inline-block
;
color
:
#6f6f6f
;
font-size
:
12px
;
font-weight
:
100
;
line-height
:
20px
;
padding-top
:
16px
;
text-decoration
:
none
;
}
.te
{
cursor
:
pointer
;
transition
:
all
0.6s
;
}
.te
:hover
{
transform
:
scale
(
1.2
);
z-index
:
1000
;
}
</style>
<title>
联系我们
</title>
<style>
.wrapper
{
padding-top
:
120px
;}
.line
{
border
:
0
;
height
:
1px
;
background-color
:
#e4e4e4
;}
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
:
340px
;
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
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
if
((
!
empty
(
$other_logo_url
)))
:
?>
.white-bg
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$other_logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
?>
</style>
<header
class=
"common-header"
>
<a
class=
"logo-href"
href=
"/"
></a>
<ul
class=
"clearfix"
>
<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 aboutuson"
>
关于我们
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
"javascript:"
>
关于我们
</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 helpon"
>
服务与帮助
<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/help'
);
?>
"
>
帮助中心
</a>
</span>
</span>
</span>
</li>
<li
class=
"white-bg-service"
>
<span
class=
"service helpon"
>
朱贝直播助手
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
""
>
朱贝直播助手
</a>
</span>
<span
class=
"item"
>
<a
href=
"http://oss.3yakj.com/app/zhuBeiLive3.0.rar"
>
for Windows
</a>
</span>
<span
class=
"item"
>
<a
target=
"_blank"
href=
"https://obsproject.com"
>
OBS下载地址
</a>
</span>
<!--<span class="item">-->
<!--<a href="https://cdn-fastly.obsproject.com/downloads/obs-mac-27.1.dmg">for mac</a>-->
<!--</span>-->
<span
class=
"item"
>
<a
target=
"_blank"
href=
"https://lcnsc3uqhj.feishu.cn/docs/doccnJ8LBZipIQUarP0Sous9ouc"
>
帮助中心
</a>
</span>
</span>
</span>
</li>
<li
class=
"white-bg-service"
>
<a
class=
"home"
href=
"http://guild-rds.3yakj.com"
target=
"_blank"
>
公会入口
</a>
<!--<span class="service business guildon">工会入口
<span class="down-list">
<span class="item colortext">
<a href="javascript:">工会入口 </a>
</span>
<span class="item">
<a href="http://guild-rds.3yakj.com" target="_blank">mcn机构入口</a>
</span>
<span class="item">
<a href="http://guild-rds.3yakj.com" target="_blank">公会入口</a>
</span>
</span>
</span>-->
</li>
<li
class=
"white-bg-service"
>
<a
class=
"home"
href=
"
<?php
echo
url
(
'/index/index/huatai'
);
?>
"
>
华泰证券
</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>
地址:重庆市渝中区民生路235号海航保利国际中心43-C
<br>
</p>
<p>
邮编:400010
</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="/images/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px"><p>4000238896-1</p>
</li>
<li>
<h4>公会入驻</h4>
<img src="/images/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px">
<p>4000238896-2</p>
</li>
<li>
<h4>主播申请</h4>
<img src="/images/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px">
<p>4000238896-5</p>
</li>
<li>
<h4>商城加盟</h4>
<img src="/images/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px">
<p>4000238896-8</p>
</li>
<li>
<h4>投诉建议</h4>
<img src="/images/contact_phone.png" style="float: left;width: 20px;height: 20px;margin-right: 5px">
<p>4000238896-9</p>
</li>
</ul>
</section>
-->
</div>
<style>
._link
{
position
:
fixed
;
_position
:
absolute
;
bottom
:
20px
;
right
:
20px
;
z-index
:
214748000
;
width
:
60px
;
height
:
60px
;
border
:
1px
solid
#ddd
\
0
;
border-radius
:
30px
;
cursor
:
pointer
;
background
:
#23a0ee
;
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
from
(
#23a0ee
),
to
(
#2b73d3
));
background
:
-o-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
-webkit-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
linear-gradient
(
to
bottom
,
#23a0ee
0
,
#2b73d3
100%
);
-webkit-box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
-webkit-animation-duration
:
.3s
;
animation-duration
:
.3s
;
-webkit-animation-fill-mode
:
both
;
animation-fill-mode
:
both
;
-webkit-animation-name
:
lim_mini_zoomIn
;
animation-name
:
lim_mini_zoomIn
;
}
</style>
<footer
class=
"common-footer"
>
<ul
class=
"clearfix"
style=
"width: 510px;"
>
<li><a
href=
"
<?php
echo
url
(
'/aboutus'
);
?>
"
>
关于我们
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/aboutus/agreement'
);
?>
"
>
用户协议
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/join'
);
?>
"
>
招聘信息
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/contact'
);
?>
"
>
联系我们
</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div
style=
"text-align:center; "
>
Copyright © 2018
<a
href=
"/"
target=
"_blank"
>
重庆三丫互娱网络科技有限公司
</a>
All Rights Reserved
<br><a
href=
"https://beian.miit.gov.cn/#/Integrated/recordQuery"
target=
"_Blank"
>
渝ICP备19002633号-1
</a><br>
统一社会信用代码 91500103MA6089GG94
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/wen.png"
style=
"float:left;width:20px;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
互联网文化经营单位
</p
></a>
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/f.png"
style=
"float:left;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
渝公网安备 50010302002432号
</p
></a>
</div>
<a
target=
"_blank"
href=
"https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002"
>
<div
id=
"customer"
class=
"_link"
style=
"display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;"
>
<div
id=
"lim_mini_icon"
style=
"position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;"
>
<div
id=
"lim_mini_new"
style=
"height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;"
>
</div>
</div>
</div>
</a>
</footer>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery.1.9.1.min.js"
></script>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery-2.1.4.min.js"
></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$
(
function
(){
$
(
'.common-header .active'
).
addClass
(
'on'
);
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
<script>
$
(
function
(){
$
(
'.common-header .aboutuson'
).
addClass
(
'on'
);
});
</script>
runtime/temp/ec78db132bb8404f0528892cdde94782.php
0 → 100644
View file @
425291a8
<?php
/*a:4:{s:63:"D:\PHPStormProject\3yakj\config/../template/home\join\list.html";i:1647940467;s:72:"D:\PHPStormProject\3yakj\config/../template/home\public\header_meta.html";i:1647937410;s:68:"D:\PHPStormProject\3yakj\config/../template/home\public\nav_bar.html";i:1647937410;s:67:"D:\PHPStormProject\3yakj\config/../template/home\public\footer.html";i:1647937410;}*/
?>
<html>
<head>
<title>
朱贝招聘|人才招募|招商加盟|主播入驻|颜值主播
</title>
<meta
name=
"chinaz-site-verification"
content=
"AC2EF776C208BC35"
>
<meta
name=
"keywords"
content=
"朱贝招聘,加入朱贝,朱贝招人,技术人员,朱贝官方运营"
/>
<meta
name=
"description"
content=
"在这里,你将拥有宽松、愉悦、平等的工作环境,你将收获友爱、尊重、温暖的创业伙伴,更重要的是,你有可能实现自己最大的价值。"
/>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/common/css/common.css"
>
<link
type=
"text/css"
rel=
"stylesheet"
href=
"/static/home/css/swiper3.07.min.css"
>
<style>
.wrapper
{
overflow
:
hidden
}
.banner
{
background
:
#1e78eb
;
height
:
540px
;
padding-top
:
120px
;}
.banner
.page-1
{
width
:
960px
;
height
:
540px
;
margin
:
0
auto
;
position
:
relative
;}
/*.banner .page-1 .bg{width:1288px;height: 540px;background:#1e78eb url('/static/common/img/index_bg.jpg') 0px 5px no-repeat;}*/
.banner
a
,
.banner
a
:hover
{
text-decoration
:
none
;
cursor
:
pointer
;}
.banner
.play-btn
{
width
:
84px
;
height
:
84px
;
display
:
block
;
background
:
url(/static/common/img/play.png)
0
0
no-repeat
;
left
:
50%
;
position
:
absolute
;
top
:
165px
;
z-index
:
2000
;
margin-left
:
114px
;
cursor
:
pointer
;}
.banner
.play-btn
,
.banner
.play-close-btn
{
display
:
block
;}
.banner
.play-close-btn
{
width
:
52px
;
height
:
52px
;
background
:
url(/static/common/img/close.jpg)
0
0
no-repeat
;
position
:
absolute
;
right
:
0
;
top
:
0
;
z-index
:
30000
;
opacity
:
0
;}
.banner
.page-2
:hover
.play-close-btn
{
opacity
:
1
;}
@media
screen
and
(
-webkit-min-device-pixel-ratio
:
0
)
{
.banner
.play-close-btn
{
right
:
2px
;
}
}
.banner
.banner-btn
{
width
:
105px
;
height
:
51px
;
display
:
inline-block
;
border
:
2px
solid
#fff
;
font-size
:
20px
;
line-height
:
51px
;
padding-left
:
65px
;}
.banner
.download-btn
{
color
:
#267be5
;
background
:
#fff
url(/static/common/img/icon.1.1.png)
21px
-57px
no-repeat
;}
.banner
.member-center
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
20px
-163px
no-repeat
;
margin-left
:
26px
;}
.banner
.ad-link
{
color
:
#fff
;
background
:
url(/static/common/img/icon.1.1.png)
-250px
-32px
no-repeat
;
margin-left
:
26px
;}
.live-guild
{
color
:
#fff
;
background
:
url("/static/common/img/people.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
.microvideo
{
color
:
#fff
;
background
:
url("/static/common/img/vedio.png")
no-repeat
;
background-position
:
18px
8px
;
margin-left
:
26px
;
}
#entryCon
{
display
:
flex
;
position
:
absolute
;
justify-content
:
space-between
;
flex-wrap
:
nowrap
;
top
:
398px
;
left
:
0px
;
}
.banner
object
{
position
:
relative
;
z-index
:
1000
;}
.banner
.page-2
{
position
:
absolute
;
z-index
:
3000
;
left
:
629px
;
top
:
240px
;
left
:
455px
\
0
;
top
:
190px
\
0
;
*
left
:
456px
;
*
top
:
190px
;
text-align
:
center
;
padding
:
6px
;
width
:
0
;
height
:
0
;
background
:
#0d0d0d
;
opacity
:
0
;
overflow
:
hidden
;
-webkit-transition
:
all
0.3s
;
transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.banner
.page-2
.jwlogo
{
display
:
none
;}
.banner.videoplaying
.page-1
.bg
{
background
:
#267be5
;}
.banner.videoplaying
.page-2
{
opacity
:
1
;
width
:
948px
;
height
:
528px
;
top
:
0
;
left
:
0
;}
.banner
.qr-code-con
{
width
:
121px
;
height
:
121px
;
border
:
2px
solid
#fff
;
position
:
absolute
;
top
:
341px
;
left
:
198px
;}
.banner
.qr-code-con
.qr-code
{
margin
:
12px
;}
.banner
.qr-code-con
.qr-note
{
color
:
#fff
;
font-size
:
20px
;
position
:
absolute
;
bottom
:
-36px
;
width
:
100%
;
text-align
:
center
;}
.banner
.qr-code-con
.qr-code
img
{
display
:
block
;
width
:
100%
;
height
:
100%
;
background
:
#fff
;}
.tit
{
font-size
:
30px
;
color
:
#4a4a4a
;
font-weight
:
100
;
height
:
30px
;
line-height
:
30px
;}
.tit
a
{
display
:
block
;
color
:
#434343
;
text-decoration
:
none
;}
.note
{
font-size
:
20px
;
line-height
:
20px
;
color
:
#6f6f6f
;
font-weight
:
100
;
margin
:
22px
0
80px
;}
.sec-1
{
padding-left
:
10px
;}
.sec-1
li
{
float
:
left
;
margin-right
:
3px
;}
.sec-1
li
img
{
display
:
block
;}
.high-blue
{
color
:
#007aff
;}
.sec-3
ul
{
margin
:
75px
auto
0
;
width
:
1020px
;}
.sec-3
li
{
float
:
left
;
margin-right
:
10px
;
width
:
243px
;
height
:
243px
;
border
:
1px
solid
#e4e4e4
;
color
:
#8b8a8a
;
font-family
:
'Myriad Pro'
;
font-size
:
18px
;
background-color
:
#fff
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
.icon
{
width
:
43px
;
height
:
50px
;
display
:
block
;
margin
:
0px
auto
18px
;}
.sec-3
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
0
no-repeat
;}
.sec-3
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-78px
0
no-repeat
;}
.sec-3
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-155px
0
no-repeat
;}
.sec-3
a
{
text-decoration
:
none
;
display
:
block
;
color
:
#8b8a8a
;
height
:
174px
;
padding-top
:
70px
;
-webkit-transition
:
all
0.3s
;
-transition
:
all
0.3s
;
-ms-transition
:
all
0.3s
;
-moz-transition
:
all
0.3s
;}
.sec-3
li
.qr-code
img
{
margin-top
:
70px
}
.sec-3
li
.qr-code
p
{
font-size
:
12px
;
margin-top
:
-8px
;}
.sec-3
li
.down.on
{
background-color
:
#007aff
;
box-shadow
:
5px
15px
30px
rgba
(
0
,
0
,
0
,
.3
);
border
:
1px
solid
#007aff
;}
.sec-3
li
.down.on
a
{
color
:
#fff
;}
.sec-3
li
.down.on
.icon.ios
{
background
:
url(/static/common/img/icon.1.1.png)
0
-110px
no-repeat
;}
.sec-3
li
.down.on
.icon.android
{
background
:
url(/static/common/img/icon.1.1.png)
-77px
-111px
no-repeat
;}
.sec-3
li
.down.on
.icon.wp
{
background
:
url(/static/common/img/icon.1.1.png)
-154px
-110px
no-repeat
;}
.sec-3.download-popup
{
width
:
690px
;
height
:
374px
;
background
:
#ffffff
;
padding-top
:
1px
;}
.sec-3.download-popup
li
{
width
:
134px
;
height
:
134px
;
margin-right
:
25px
;}
.sec-3.download-popup
ul
{
margin
:
106px
0px
0px
38px
;}
.sec-3.download-popup
a
{
padding-top
:
24px
;
height
:
110px
;}
.sec-3.download-popup
li
.qr-code
img
{
margin-top
:
15px
;}
.sec-4
{
margin-bottom
:
180px
;}
.sec-4
ul
{
width
:
1020px
;
margin
:
0
auto
;}
.sec-4
li
{
width
:
259px
;
height
:
140px
;
border-left
:
1px
dashed
#9d9d9d
;
text-align
:
left
;
padding-left
:
20px
;
padding-right
:
60px
;
float
:
left
;}
.sec-4
li
.tit
{
color
:
#434343
;
font-size
:
22px
;
position
:
relative
;
padding-bottom
:
5px
;}
.sec-4
li
.tit
.arrows
{
background
:
url(/static/common/img/icon.1.1.png)
-176px
-69px
no-repeat
;
width
:
25px
;
height
:
25px
;
display
:
block
;
position
:
absolute
;
right
:
0px
;
top
:
7px
;}
.sec-4
li
.con
{
color
:
#8a8a8a
;
font-size
:
14px
;
line-height
:
26px
;
width
:
230px
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
overflow
:
hidden
;}
.sec-4
li
.con
a
{
text-decoration
:
none
;
color
:
#8a8a8a
;
font-size
:
14px
;}
.sec-4
li
.con
a
:hover
{
color
:
#00A2FF
;}
.screen
{
width
:
200px
;
height
:
345px
;
position
:
absolute
;
left
:
50%
;
margin-left
:
29px
;
top
:
218px
;
overflow
:
hidden
;}
.scroll-img
{
position
:
absolute
;}
/**
* 照片墙
*/
div
,
ul
,
li
,
img
,
dl
,
dt
,
dd
{
margin
:
0
;
padding
:
0
;}
.photo-wall
{
width
:
1200px
;
padding
:
0
7px
;
overflow
:
hidden
;
box-sizing
:
border-box
;
-moz-box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
;}
.wall-pace
{
width
:
392px
;
list-style
:
none
;
overflow
:
hidden
;
float
:
left
;
position
:
relative
;}
.wall-pace
li
{
position
:
relative
;
float
:
left
;
margin
:
0
5px
5px
0
;
overflow
:
hidden
;
background
:
#efefef
}
.wall-last-3
{
position
:
absolute
!important
;
top
:
151px
;}
.wall-last-4
{
margin-left
:
128px
!important
;}
.wall-pace
img
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
top
:
0
;
left
:
0
}
.wall-pace
.sq-sm
{
width
:
145px
;
height
:
145px
;}
.wall-pace
.rect-x
,
.intr-x
{
width
:
235px
;
height
:
146px
;}
.wall-pace
.sq-lg
{
width
:
258px
;
height
:
258px
;}
.wall-pace
.rect-y
{
width
:
123px
;
height
:
258px
;}
.intr-x
,
.intr-s
{
padding
:
8px
;
color
:
#fff
;
background
:
rgb
(
1
,
122
,
255
);
position
:
absolute
;
top
:
100%
;}
.intr-x
{
padding-top
:
12px
;
width
:
219px
;}
.intr-s
{
width
:
242px
;
height
:
128px
;}
.wall-pace
dl
{
text-align
:
left
;}
.wall-pace
dt
{
font-size
:
22px
;
line-height
:
44px
;}
.wall-pace
dd
{
font-size
:
14px
;
line-height
:
24px
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;}
.banner
.youku-btn
{
top
:
339px
;
background
:
none
;
color
:
#fff
;
width
:
125px
;
margin-left
:
96px
;
cursor
:
pointer
;
height
:
20px
;}
.ad-identity
{
position
:
fixed
;
right
:
28px
;
top
:
50px
;
width
:
38px
;
height
:
21px
;
z-index
:
99999
;}
.ad-identity-bg
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
background
:
#000
;
opacity
:
0.17
;
}
.ad-identity-text
{
position
:
absolute
;
top
:
0
;
left
:
0
;
color
:
#fff
;
font-size
:
13px
;
width
:
100%
;
height
:
100%
;
text-align
:
center
;
line-height
:
21px
;
}
.page-2
.ad-identity
{
position
:
absolute
;
right
:
55px
;
top
:
10px
;
}
.quest-mobile-link
{
display
:
inline-block
;
color
:
#6f6f6f
;
font-size
:
12px
;
font-weight
:
100
;
line-height
:
20px
;
padding-top
:
16px
;
text-decoration
:
none
;
}
.te
{
cursor
:
pointer
;
transition
:
all
0.6s
;
}
.te
:hover
{
transform
:
scale
(
1.2
);
z-index
:
1000
;
}
</style>
<title>
招聘
</title>
<style>
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
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
if
((
!
empty
(
$other_logo_url
)))
:
?>
.white-bg
.common-header
{
background
:
url
(
<?php
echo
htmlentities
(
$other_logo_url
);
?>
)
-3px
37px
no-repeat
;
background-size
:
18%
;
}
<?php
endif
;
?>
</style>
<header
class=
"common-header"
>
<a
class=
"logo-href"
href=
"/"
></a>
<ul
class=
"clearfix"
>
<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 aboutuson"
>
关于我们
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
"javascript:"
>
关于我们
</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 helpon"
>
服务与帮助
<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/help'
);
?>
"
>
帮助中心
</a>
</span>
</span>
</span>
</li>
<li
class=
"white-bg-service"
>
<span
class=
"service helpon"
>
朱贝直播助手
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
""
>
朱贝直播助手
</a>
</span>
<span
class=
"item"
>
<a
href=
"http://oss.3yakj.com/app/zhuBeiLive3.0.rar"
>
for Windows
</a>
</span>
<span
class=
"item"
>
<a
target=
"_blank"
href=
"https://obsproject.com"
>
OBS下载地址
</a>
</span>
<!--<span class="item">-->
<!--<a href="https://cdn-fastly.obsproject.com/downloads/obs-mac-27.1.dmg">for mac</a>-->
<!--</span>-->
<span
class=
"item"
>
<a
target=
"_blank"
href=
"https://lcnsc3uqhj.feishu.cn/docs/doccnJ8LBZipIQUarP0Sous9ouc"
>
帮助中心
</a>
</span>
</span>
</span>
</li>
<li
class=
"white-bg-service"
>
<a
class=
"home"
href=
"http://guild-rds.3yakj.com"
target=
"_blank"
>
公会入口
</a>
<!--<span class="service business guildon">工会入口
<span class="down-list">
<span class="item colortext">
<a href="javascript:">工会入口 </a>
</span>
<span class="item">
<a href="http://guild-rds.3yakj.com" target="_blank">mcn机构入口</a>
</span>
<span class="item">
<a href="http://guild-rds.3yakj.com" target="_blank">公会入口</a>
</span>
</span>
</span>-->
</li>
<li
class=
"white-bg-service"
>
<a
class=
"home"
href=
"
<?php
echo
url
(
'/index/index/huatai'
);
?>
"
>
华泰证券
</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=
"
<?php
echo
htmlentities
(
$join_image
);
?>
"
>
</div>
<div
class=
"swiper-slide btn swiper-slide-active"
banner_id=
"ba55e41fa01ad59"
banner_link=
""
is_video=
"0"
style=
"width: 1020px; margin-right: 30px;"
>
<img
src=
"
<?php
echo
htmlentities
(
$join_image
);
?>
"
>
</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>
<style>
._link
{
position
:
fixed
;
_position
:
absolute
;
bottom
:
20px
;
right
:
20px
;
z-index
:
214748000
;
width
:
60px
;
height
:
60px
;
border
:
1px
solid
#ddd
\
0
;
border-radius
:
30px
;
cursor
:
pointer
;
background
:
#23a0ee
;
background
:
-webkit-gradient
(
linear
,
left
top
,
left
bottom
,
from
(
#23a0ee
),
to
(
#2b73d3
));
background
:
-o-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
-webkit-linear-gradient
(
top
,
#23a0ee
0
,
#2b73d3
100%
);
background
:
linear-gradient
(
to
bottom
,
#23a0ee
0
,
#2b73d3
100%
);
-webkit-box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
box-shadow
:
0
13px
40px
0
rgba
(
35
,
169
,
238
,
.4
);
-webkit-animation-duration
:
.3s
;
animation-duration
:
.3s
;
-webkit-animation-fill-mode
:
both
;
animation-fill-mode
:
both
;
-webkit-animation-name
:
lim_mini_zoomIn
;
animation-name
:
lim_mini_zoomIn
;
}
</style>
<footer
class=
"common-footer"
>
<ul
class=
"clearfix"
style=
"width: 510px;"
>
<li><a
href=
"
<?php
echo
url
(
'/aboutus'
);
?>
"
>
关于我们
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/aboutus/agreement'
);
?>
"
>
用户协议
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/join'
);
?>
"
>
招聘信息
</a></li>
<li><a
href=
"
<?php
echo
url
(
'/contact'
);
?>
"
>
联系我们
</a></li>
<!-- <li><a href="https://pc.immomo.com">凡骄电脑版</a></li> -->
</ul>
<div
style=
"text-align:center; "
>
Copyright © 2018
<a
href=
"/"
target=
"_blank"
>
重庆三丫互娱网络科技有限公司
</a>
All Rights Reserved
<br><a
href=
"https://beian.miit.gov.cn/#/Integrated/recordQuery"
target=
"_Blank"
>
渝ICP备19002633号-1
</a><br>
统一社会信用代码 91500103MA6089GG94
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://sq.ccm.gov.cn:80/ccnt/sczr/service/business/emark/toDetail/83be2445856b4c5b9894639cdbd024ff"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/wen.png"
style=
"float:left;width:20px;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
互联网文化经营单位
</p
></a>
</div>
<div
style=
"width:300px;margin:0 auto; padding:20px 0;"
>
<a
target=
"_blank"
href=
"http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=50010302002432"
style=
"display:inline-block;text-decoration:none;height:20px;line-height:20px;"
><img
src=
"/f.png"
style=
"float:left;"
/><p
style=
"float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;"
>
渝公网安备 50010302002432号
</p
></a>
</div>
<a
target=
"_blank"
href=
"https://im.7x24cc.com/phone_webChat.html?accountId=N000000024095&chatId=5fa1dd8a-70c6-4fe5-9ba4-f48548ebe584&skillGroupId=c04f5290-0872-11eb-84c7-0be4f98d83c0&agentExten=8002"
>
<div
id=
"customer"
class=
"_link"
style=
"display: block;right: 30px;left: auto;background: linear-gradient(rgb(35, 160, 238) 0%, rgb(5, 130, 208) 100%);box-shadow: rgba(35, 160, 238, 0.4) 0px 13px 40px 0px;"
>
<div
id=
"lim_mini_icon"
style=
"position: absolute;top: 10px;left: 10px;width: 40px;height: 40px;background: url(https://st16.live800.com/live800/chatClient/version8/images/icon_chat1.png) 0 0 no-repeat;"
>
<div
id=
"lim_mini_new"
style=
"height: 20px;top: -10px;right: -10px;font-size: 12px;color: #fff;line-height: 18px;text-align: center;border-radius: 12px;"
>
</div>
</div>
</div>
</a>
</footer>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery.1.9.1.min.js"
></script>
<script
type=
"text/javascript"
src =
"/static/home/js/jquery-2.1.4.min.js"
></script>
<!--<script language="javascript" src="https://chat32.live800.com/live800/chatClient/monitor.js?jid=8817742327&companyID=1239402&configID=108185&codeType=custom&ss=1"></script>-->
<!--<script language="javascript" src="https://v2.live800.com/live800/chatClient/monitor.js?jid=8814088685&companyID=1303657&configID=127882&codeType=custom&ss=1"></script>-->
<!-- -->
<script>
$
(
function
(){
$
(
'.common-header .active'
).
addClass
(
'on'
);
})
</script>
<!--
<script>
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>-->
</html>
<script>
//该事件的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>
template/home/index/Index/index.html
View file @
425291a8
...
...
@@ -317,6 +317,7 @@
</div>
</section>-->
<section
id=
"downloads"
name=
"downloads"
class=
"sec-3"
>
{empty name="app_list"}{else}
<h2
class=
"tit"
>
根据你的手机,选择下载
</h2>
<ul
class=
"clearfix"
>
...
...
@@ -335,6 +336,7 @@
</li>
{/volist}
</ul>
{/empty}
</section>
<section
class=
"sec-4"
>
<ul
class=
"clearfix"
>
...
...
@@ -430,7 +432,7 @@ $(document).ready(function(){
modal
.
style
.
display
=
"none"
;
}
$
.
post
(
'/getConfig'
,
function
(
data
){
$
.
post
(
'/getConfig'
,
{
type
:
1
},
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%'
)
...
...
template/home/index/huatai.html
View file @
425291a8
...
...
@@ -102,12 +102,9 @@
</div>
<div
class=
"swiper-container"
style=
"width: 960px;height: 2400px"
id=
"swiper_container"
>
<div
class=
"swiper-wrapper"
>
<div
class=
"swiper-slide"
style=
"width: 960px!important;"
><img
src=
"/images/ht(1).jpg"
alt=
""
></div>
<div
class=
"swiper-slide"
style=
"width: 960px!important;"
><img
src=
"/images/ht(2).jpg"
alt=
""
></div>
<div
class=
"swiper-slide"
style=
"width: 960px!important;"
><img
src=
"/images/ht(3).jpg"
alt=
""
></div>
<!-- <div class="swiper-slide" style="width: 960px!important;"><img src="/images/ht(4).jpg" alt=""></div>-->
<div
class=
"swiper-slide"
style=
"width: 960px!important;"
><img
src=
"/images/ht(5).jpg"
alt=
""
></div>
<div
class=
"swiper-slide"
style=
"width: 960px!important;"
><img
src=
"/images/ht(6).jpg"
alt=
""
></div>
{volist name="imageList" id="vo" key="k"}
<div
class=
"swiper-slide"
style=
"width: 960px!important;"
><img
src=
"{$vo}"
alt=
""
></div>
{/volist}
</div>
<div
class=
"swiper-pagination swiper-pagination-clickable swiper-pagination-bullets"
></div>
</div>
...
...
template/home/join/list.html
View file @
425291a8
...
...
@@ -98,7 +98,7 @@
<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
"
>
<img
src=
"
{$join_image}
"
>
</div>
</div>
</div>
...
...
template/home/public/nav_bar.html
View file @
425291a8
...
...
@@ -26,86 +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>
<li
class=
"white-bg-service"
>
<span
class=
"service business aboutuson"
>
关于我们
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
"javascript:"
>
关于我们
</a>
</span>
<span
class=
"item"
>
<a
href=
"{:url('/aboutus')}"
>
关于我们
</a>
</span>
<span
class=
"item"
>
<a
href=
"{:url('/contact')}"
>
联系我们
</a>
</span>
</span>
</span>
</li>
<li
class=
"white-bg-service"
>
<span
class=
"service helpon"
>
服务与帮助
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
"{:url('/servicehelp/help')}"
>
服务与帮助
</a>
</span>
<span
class=
"item"
>
<a
href=
"{:url('/servicehelp/help')}"
>
帮助中心
</a>
</span>
</span>
</span>
</li>
{volist name="nav" id="vo" key="k"}
{if !empty($vo.child)}
<li
class=
"white-bg-service"
>
<span
class=
"service helpon"
>
朱贝直播助手
<span
class=
"down-list"
>
<span
class=
"item colortext"
>
<a
href=
""
>
朱贝直播助手
</a>
</span>
<span
class=
"item"
>
<a
href=
"http://oss.3yakj.com/app/zhuBeiLive3.0.rar"
>
for Windows
</a>
</span>
<span
class=
"item"
>
<a
target=
"_blank"
href=
"https://obsproject.com"
>
OBS下载地址
</a>
<span
class=
"service"
>
{$vo.title}
<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>
<!--<span class="item">-->
<!--<a href="https://cdn-fastly.obsproject.com/downloads/obs-mac-27.1.dmg">for mac</a>-->
<!--</span>-->
{volist name="vo.child" id="child" key="key"}
<span
class=
"item"
>
<a
target=
"_blank"
href=
"https://lcnsc3uqhj.feishu.cn/docs/doccnJ8LBZipIQUarP0Sous9ouc"
>
帮助中心
</a>
<a
href=
"{$child.url}"
{
if
$
child
.
show_type=
=1}target="_blank"{/if}
>
{$child.title}
</a>
</span>
{/volist}
</span>
</span>
<li>
{else \}
<li
{
if
$
k=
=1}class="no-border"{else}class="white-bg-service"{/if}
>
<a
class=
"home"
href=
"{$vo.url}"
{
if
$
vo
.
show_type=
=1}target="_blank"{/if}
>
{$vo.title}
</a>
</li>
<li
class=
"white-bg-service"
>
<a
class=
"home"
href=
"http://guild-rds.3yakj.com"
target=
"_blank"
>
公会入口
</a>
<!--<span class="service business guildon">工会入口
<span class="down-list">
<span class="item colortext">
<a href="javascript:">工会入口 </a>
</span>
<span class="item">
<a href="http://guild-rds.3yakj.com" target="_blank">mcn机构入口</a>
</span>
<span class="item">
<a href="http://guild-rds.3yakj.com" target="_blank">公会入口</a>
</span>
</span>
</span>-->
</li>
<li
class=
"white-bg-service"
>
<a
class=
"home"
href=
"{:url('/index/index/huatai')}"
>
华泰证券
</a>
</li>
{/if}
{/volist}
</ul>
</header>
\ No newline at end of file
</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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment