:root {
	--pm-c: #1AC789;
}

/*隐藏类*/
.hide {
	display: none !important;
}

/*隐藏遮罩*/
#aq-model {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: hidden;
	/* background: #fff url(/themes/default/404.png) no-repeat center; */
}

/*应用信息样式*/
#app_info {
	margin: 20px 0
}

#app_info li {
	display: inline-block;
	width: 33.33%;

}

#app_info li b {
	cursor: pointer;
}

#app_info_cover {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	text-align: center;
	z-index: 9999
}

#app_info_cover .app_info_main {
	background: #fff;
	width: 520px;
	margin: auto;
	margin-top: 100px;
	border-radius: 8px;
	overflow: hidden;
}

#app_info_cover .app_info_title {
	background: #5CA8F6;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 50px;
}

#app_info_cover .app_info_body {
	padding: 20px;
	height: 320px;
	overflow-y: scroll;
	text-align: left;
}

#app_info_cover .app_info_close {
	margin: 20px;
	font-size: 17px;
	color: #fff;
	background: #5CA8F6;
	line-height: 48px;
	border-radius: 20px;
	cursor: pointer;
	display: block;
	font-weight: bold;
	margin-top: 30px;
}

@media (max-width: 760px) {
	#app_info li {
		width: 100%;
		margin-top: 10px;
	}

	#app_info_cover .app_info_main {
		width: 98%;
	}

	#app_info_cover .app_info_close {
		font-size: 16px;
		line-height: 42px;
	}
}

/* 禁用iPhone中Safari的字号自动调整 */
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	/* 解决IOS默认滑动很卡的情况 */
	-webkit-overflow-scrolling: touch;
}

/*修改UIKIT框架自带样式*/
body,
html {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

body {
	background-color: #fff;
}

.uk-container {
	box-sizing: border-box;
	padding: 0px;
}

a,
a:hover {
	text-decoration: none;
}

ol,
ul,
p {
	padding: 0;
	margin: 0;
	list-style: none;
}

/*图片高清*/
img {
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	object-fit: cover;
}

/*边框样式*/
.b-a {
	border: 1px solid #F4F4F4 !important;
}

.b-b {
	border-bottom: 1px solid #F4F4F4 !important;
}

.b-t {
	border-top: 1px solid #F4F4F4 !important;
}

.b-l {
	border-left: 1px solid #F4F4F4 !important;
}

.b-r {
	border-right: 1px solid #F4F4F4 !important;
}

/* 虚线上边框 */
.b-t-dashed {
	border-top: 1px dashed #F4F4F4 !important;
}

/* 虚线下边框 */
.b-b-dashed {
	border-bottom: 1px dashed #F4F4F4 !important;
}

/* 内边距  */
.p-a-0 {
	padding: 0px;
}

.p-a-5 {
	padding: 5px;
}

.p-a-10 {
	padding: 10px;
}

.p-a-15 {
	padding: 15px;
}

.p-a-20 {
	padding: 20px;
}

.p-a-25 {
	padding: 25px;
}

.p-a-30 {
	padding: 30px;
}

/* 内上边距 */
.p-t-0 {
	padding-top: 0px !important;
}

.p-t-5 {
	padding-top: 5px;
}

.p-t-10 {
	padding-top: 10px;
}

.p-t-15 {
	padding-top: 15px;
}

.p-t-20 {
	padding-top: 20px;
}

.p-t-30 {
	padding-top: 30px;
}

/* 内下边距 */
.p-b-0 {
	padding-bottom: 0px !important;
}

.p-b-5 {
	padding-bottom: 5px;
}

.p-b-10 {
	padding-bottom: 10px;
}

.p-b-15 {
	padding-bottom: 15px;
}

.p-b-20 {
	padding-bottom: 20px;
}

.p-b-30 {
	padding-bottom: 30px !important;
}

/* 内右边距 */
.p-r-0 {
	padding-right: 0px;
}

.p-r-5 {
	padding-right: 5px;
}

.p-r-10 {
	padding-right: 10px;
}

.p-r-15 {
	padding-right: 15px;
}

.p-r-20 {
	padding-right: 20px;
}

.p-r-30 {
	padding-right: 30px;
}

/* 内左边距 */
.p-l-0 {
	padding-left: 0px;
}

.p-l-5 {
	padding-left: 5px;
}

.p-l-10 {
	padding-left: 10px;
}

.p-l-15 {
	padding-left: 15px;
}

.p-l-20 {
	padding-left: 20px;
}

.p-l-30 {
	padding-left: 30px;
}

/*圆角样式*/
.b-r-4 {
	border-radius: 4px !important;
}

.b-r-6 {
	border-radius: 6px !important;
}

.b-r-8 {
	border-radius: 8px !important;
}

.b-r-10 {
	border-radius: 10px !important;
}

.b-r-12 {
	border-radius: 12px !important;
}

.b-r-24 {
	border-radius: 24px !important;
}

/* 上外边距 */
.m-t-0 {
	margin-top: 0px !important;
}

.m-t-5 {
	margin-top: 5px !important;
}

.m-t-10 {
	margin-top: 10px !important;
}

.m-t-15 {
	margin-top: 15px !important;
}

.m-t-20 {
	margin-top: 20px !important;
}

.m-t-25 {
	margin-top: 25px !important;
}

.m-t-30 {
	margin-top: 30px !important;
}

.m-t-35 {
	margin-top: 35px !important;
}
.m-t-40 {
	margin-top: 40px !important;
}
.m-t-50 {
	margin-top: 50px !important;
}

/* 下外边距 */
.m-b-0 {
	margin-bottom: 0px !important;
}

.m-b-5 {
	margin-bottom: 5px !important;
}

.m-b-10 {
	margin-bottom: 10px !important;
}

.m-b-15 {
	margin-bottom: 15px !important;
}

.m-b-20 {
	margin-bottom: 20px !important;
}

.m-b-25 {
	margin-bottom: 25px !important;
}

.m-b-30 {
	margin-bottom: 30px !important;
}
.m-b-40 {
	margin-bottom: 40px !important;
}

/* 左外边距 */
.m-l-0 {
	margin-left: 0px !important;
}

.m-l-5 {
	margin-left: 5px !important;
}

.m-l-10 {
	margin-left: 10px !important;
}

.m-l-15 {
	margin-left: 15px !important;
}

.m-l-20 {
	margin-left: 20px !important;
}

.m-l-25 {
	margin-left: 25px !important;
}

.m-l-30 {
	margin-left: 30px !important;
}

.m-l-40 {
	margin-left: 40px !important;
}


/* 右外边距 */
.m-r-0 {
	margin-right: 0px !important;
}

.m-r-5 {
	margin-right: 5px !important;
}

.m-r-10 {
	margin-right: 10px !important;
}

.m-r-15 {
	margin-right: 15px !important;
}

.m-r-20 {
	margin-right: 20px !important;
}

.m-r-30 {
	margin-right: 30px !important;
}
.m-r-40 {
	margin-right: 40px !important;
}

/* 溢出2行省略号 */
.line-2 {
	display: -webkit-box !important;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}

/* 溢出3行省略号 */
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

/* 溢出4行省略号 */
.line-4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
}

/*伪类居中*/
/* 增加伪类 前置 */
.before-middle {
	position: relative;
}

.before-middle::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

/* 增加伪类 后置 */
.after-middle {
	position: relative;
}

.after-middle::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.before-center {
	position: relative;
}

.before-center::before {
	content: "";
	position: absolute;
}

.after-center {
	position: relative;
}

.after-center::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

/* 分页 */
.pagination {
	margin: 100px 0 90px !important;
	text-align: center;
}

.pagination .page-item {
	display: inline-block;
	margin: 0 3px;
	font-size: 14px;
	border-radius: 2px;
	border: 1px solid #EEEEEE;
	background: #fff;
	box-sizing: border-box;
}

.pagination .active span {
	background: var(--pm-c);
	color: #fff;
}

.pagination .page-item:hover {
	background: var(--pm-c);
	color: #fff;
}

.pagination .page-item .page-link {
	display: block;
	padding: 5px 12px;
	border: 1px solid transparent;
	box-sizing: border-box;
	border-radius: 2px;
}

.pagination li a {
	display: inline-block;
	color: #555555;
}

.pagination li a:hover {
	background: var(--pm-c);
	color: #fff;
	/* border: 1px solid var(--pm-c) !important; */
}
/* 评分 */
.score{
	font-size: 12px;
	color: var(--pm-c);
	background: url(../images/score.png) no-repeat left / contain;
	padding-left: 18px;
}

/*面包屑导航*/
.crumbs {
	font-size: 12px;
	color: #999;
	box-sizing: border-box;
	position: relative;
	margin: 15px 0 25px;
	/* padding-left: 18px; */
}
/* .crumbs::before{
	position: absolute;
	content: "";
	width: 14px;
	height: 14px;
	left: 0px;
	background: url(../images/location.png) no-repeat left/contain;
} */
.crumbs a {
	display: inline-block;
	position: relative;
	font-size: 12px;
	color: #999;
}

.crumbs a::after {
	content: ">";
}

.crumbs a:last-child:after {
	content: "";
}
.crumbs .toMyself{
	color: #4D4D4D ;
}

/* 平台 安卓 苹果 图标显示 */
.platform i{
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 3px;
	padding: 2px;
	box-sizing: border-box;
	margin: 0;
}
.platform .az{
	background: #1DC86A url(../images/az.png) no-repeat center / contain;
	background-size: 12px;
}
.platform .az_{
	background: #BFBFBF url(../images/az.png) no-repeat center / contain;
	background-size: 12px;
}
.platform .ios{
	background: var(--pm-c) url(../images/ios.png) no-repeat center / contain;
	background-size: 12px;
}
.platform .ios_{
	background: #BFBFBF url(../images/ios.png) no-repeat center / contain;
	background-size: 12px;
}

/* 公共标题 */
.module-title {
	/* position: relative; */	
	/* height: 50px;
	line-height: 50px;
	background: #F5F9FF;
	padding-right: 18px; */
	box-sizing: border-box;
	height: 33px;
}

.module-title .title {
	font-weight: bold;
	font-size: 16px;
	color: #333333;
	position: relative;
	/* padding-left: 18px; */
	box-sizing: border-box;
	padding-left: 7px;
	letter-spacing: 1px;
}

.module-title .more {
	display: block;
	font-weight: 400;
	font-size: 12px;
	color: #999999;
}

.module-title .title::before {
	display: inline-block;
	width: 40px;
	height: 15px;
	background: url('../images/module_title_bg.png') no-repeat center/contain;
	top: 0px;
	left: 0px;
	position: absolute;
}

/*默认图标尺寸*/
.item .icon {
	margin: 0 auto;
	overflow: hidden;
}

.item .icon img {
	width: 100%;
	height: 100%;
}

/* 默认缩略图尺寸 */
.item .thumb img {
	width: 100%;
	height: 100%;
}

.item .thumb a,
.item .icon a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

/* .item:hover .title, */
.list:hover .title,
ul li:hover .title {
	color: var(--pm-c);
}

.item .title:hover {
	color: var(--pm-c);
}

/* 默认的一些文字大小和颜色 */
.info {
	flex: 1;
	overflow: hidden;
}

.info .title {
	font-size: 14px;
	color: #333;
	display: block;
}

.info .title:hover,
.title_:hover {
	color: var(--pm-c);
}

.info .text,
.info .time {
	font-size: 12px;
	color: #999;
}

.title {
	display: block;
	font-size: 14px;
	color: #333333;
}
.title_{
	color: #666;
	display: block;
	font-size: 14px;
}

.text,
.time,
.type,
.desc,
.size,
.num {
	font-size: 12px;
	color: #999;
}

/* list 样式 */
.list-container li {
	margin-top: 16px;
}

.list-container li .title {
	font-size: 14px;
	color: #333333;
}

/* .list-container li .title::before {
	display: inline-block;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--pm-c);
	border-radius: 50%;
} */

.list-container li .time {
	font-size: 12px;
	color: #999;
	margin-left: 5px;
}

/* 图标 */
.list-container li .dot {
	display: block;
	width: 22px;
	height: 22px;
	margin-right: 10px;
	background: url('../images/home_video_icon.png') no-repeat center/contain;
}

/* 圆点 */
.list-container li .dot_ {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--pm-c);
	border-radius: 50%;
	margin-right: 12px;
}

/* 类别 */
.list-container li .tag {
	width: 44px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	border-radius: 4px;
	border: 1px solid #EEEEEE;
	font-size: 12px;
	color: #999999;
	margin-right: 8px;
}
/* .list-container li .tag::after{
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	background: var(--pm-c);
	border-radius: 50%;
	margin-left: 5px;
    margin-right: 8px;
	transform: translateY(-50%);
} */
/* 序号 */
.list-container li .order{
	width: 22px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background: #DADADA;
	font-weight: bold;
	font-size: 12px;
	color: #FFFFFF;
	line-height: 18px;
	margin-right: 20px;
}
/* 序号2 */
.list-container li .gl_order{
	width: 18px;
	height: 18px;
	background: #D9D9D9;
	border-radius: 4px;
	font-weight: bold;
	font-size: 12px;
	color: #FFFFFF;
	text-align: center;
	line-height: 18px;
	margin-right: 8px;
}
/* 数字 */
.list-container li .num{
	font-size: 16px;
	color: #333333;
	font-style: italic;
	margin-right: 10px;
}

/* 公共头部样式 */
/* 首页页面 */
.head{
	height: 122px;
	background: #0C0C15;
	/* border-bottom: 1px solid #F4F4F4; */
	padding: 37px 0;
	box-sizing: border-box;
}
.head .logo {
	display: block;
	width: 208px;
	height: 100%;
	overflow: hidden;
}
.head .nav li{
	margin-left: 20px;
}
.head .nav li:first-of-type{
	margin-left: 0;
}
.head .nav li a{
	display: inline-block;
	width: 130px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	color: #FFFFFF;
	box-sizing: border-box;
	position: relative;
	border-radius: 19px;
	border: 1px solid #EEEEEE;
}
/* .head .nav li a::before{
	content: "";
	display: inline-block;
	width: 100%;
	height: 4px;
	background-color: transparent;
	border-radius: 2px;
	position: absolute;
	bottom: -14px;
	left: 0px;
} */
.head .nav li.active a,
.head .nav li:hover a {
	background: #FFFFFF;
	border-radius: 19px;
	border: 1px solid #00C474;
	color: var(--pm-c);
	/* color: var(--pm-c); */
	/* border-bottom-color: var(--pm-c); */
}
.head .btn{
	display: inline-block;
	width: 59px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	color: #0068FF;
	border-radius: 6px;
	border: 1px solid #1878FD;
	margin-left: 20px;
}
.head .btn:first-of-type{
	margin-left: 114px;
}

/* 公共尾部样式 */
.footer {
	background-color: #333;
	padding: 50px 0 155px;
	box-sizing: border-box;
	font-size: 14px;
	color: #999999;
	text-align: center;
}

.footer span,
.footer a,
.footer p {
	font-size: 14px;
	color: #999;
}
.footer p {
	margin-top: 24px;
}
.footer span:last-child,
.footer a:last-child {
	margin-right: 0;
}

/* .footer .name {
	color: #ccc;
	margin-bottom: 24px;
	margin-top: 0;
} */

.footer .aBox span,
.footer .aBox a {
	margin-right: 6px;
}

.footer .aBox a::after {
	content: '|';
	display: inline-block;
	color: #999;
	margin-left: 15px;
}

.footer .aBox a:last-child::after {
	content: "";
}

.footer .footer_p {
	line-height: 34px;
}

/* 侧边栏 */
.sidebar {
	margin-left: 30px;
	width: 350px;
}

.single .single_content iframe {
	display: block;
	margin: 0 auto;
	width: 520px;
	height: 320px;
}

.single .single_content p {
	font-weight: 400;
	font-size: 16px;
	color: #555555;
	text-indent: 2em;
	line-height: 36px;
}

.single .single_content p img {
	max-width: 68% !important;
	margin: 20px auto;
	display: block;
}
.single .single_content h2,
.single .single_content h3 {
	background: url(../images/single_h1_icon.png) no-repeat left / contain;
	background-size: 14px;
	padding-left: 18px;
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	margin: 20px 0;
}

.single .down-btn .none {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-webkit-filter: grayscale(1);
	opacity: .4;
	border: none;
}

/* 404 500 错误页面 */
.page-error {
	background: #FFFFFF;
	border-radius: 5px;
	min-height: 520px;
	margin-bottom: 30px !important;
	margin-top: 18px;
	padding-top: 120px;
}

.page-error .page-404 {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	/* background: url(../images/404.png) no-repeat center/contain; */
}

.page-error .page-500 {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	/* background: url(../images/500.png) no-repeat center/contain; */
}

.page-error p {
	font-size: 14px;
	color: #999999;
	margin: 25px 0;
}

.page-error .go-home {
	display: inline-block;
	width: 110px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--pm-c);
	line-height: 40px;
	font-size: 14px;
	color: var(--pm-c);
	text-align: center;
	box-sizing: border-box;
}

/* 列表页公共样式 */
/* 菜单栏 */
.menu_nav{
	/* background: #FFFFFF;
	border-radius: 5px;
	padding: 0px 15px 10px;
	box-sizing: border-box; */
}
.menu_nav li{
	margin-left: 20px;
}
.menu_nav li:first-of-type{
	margin-left: 0;
}
.menu_nav li a{
	height: 36px;
	line-height: 36px;
	border-radius: 18px;
	border: 1px solid #E5E5E5;
	display: inline-block;
	padding: 0 25px;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 16px;
	color: #333333;
}
.menu_nav li.active a,
.menu_nav li:hover a{
	color: var(--pm-c);
	border-color: var(--pm-c);
}

/* 下载按钮 */
.down-btn{
	/* margin-top: 87px; */
}
.down-btn .btn {
	width: 232px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background: #FFFFFF;
	border-radius: 30px;
	position: relative;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 18px;
	color: #14141C;
}
.down-btn .az{
	margin-right: 36px;
}
.down-btn .az span{	
	background: url('../images/az_icon.png') no-repeat left / contain;
	background-size: 24px 24px;
	padding-left: 36px;
	box-sizing: border-box;
}
.down-btn .ios span{
	background: url('../images/ios_icon.png') no-repeat left / cover;
	background-size: 24px 24px;
	padding-left: 36px;
	box-sizing: border-box;
}

.down-btn .btn:hover .qrcode {
	display: block;
}

/* .down-btn .btn:hover a {
	color: #fff !important;
} */

.down-btn .btn .qrcode {
	display: none;
	background-color: #fff;
	z-index: 999;
	position: absolute;
	right: 5%;
	top: 120%;
	border-radius: 10px;
	padding: 5px;
	font-size: 12px;
	text-align: center;
	border: 1px solid var(--pm-c);
}

.down-btn .btn .qrcode img {
	width: 120px;
	height: 120px;
}

/* .down-btn .btn a,
.down-btn .btn span {
	position: relative;
	font-weight: bold;
	font-size: 14px;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center left;
	box-sizing: border-box;
} */

/* 首页 */
.h1{
	font-weight: bold;
	font-size: 50px;
	color: #FFFFFF;
	letter-spacing: 2px;
}
.h2{
	font-weight: bold;
	font-size: 36px;
	color: #333333;
	position: relative;
	display: inline;
	letter-spacing: 2px;
}
.h2::before{
	content: "";
	display: inline-block;
	width: 112px;
	height: 41px;
	background: url('../images/title_bg.png') no-repeat center / contain;
	padding-left: 21px;
	box-sizing: border-box;
	position: absolute;
	top: 0px;
	left: -21px;
}
.h3{
	font-weight: bold;
	font-size: 20px;
	color: #222222;
}
.h4{
	font-weight: 400;
	font-size: 18px;
	color: #888888;
}
.h5{
	font-weight: 400;
	font-size: 16px;
	color: #888888;
}
.home_xz{
	background: url('../images/top_bg.png') no-repeat top / cover;
	padding-top: 200px;
	padding-bottom: 249px;
	box-sizing: border-box;
	text-align: left;
}
.home_xz .h6{
	font-weight: 400;
	font-size: 20px;
	color: rgba(255, 255, 255, .5);
	margin-bottom: 134px;
}
.home_xz .gif_box{
	width: 470px;
	height: 80px;
	text-align: center;
	line-height: 80px;
	background: var(--pm-c);
	border-radius: 40px;
	margin: 97px 0 64px;
	box-sizing: border-box;
}
.home_xz .gif_box a{
	font-weight: 400;
	font-size: 38px;
	color: #FFFFFF;
	background: url('../images/gift_icon.png') no-repeat left / contain;
	background-size: 38px;
	padding-left: 63px;
	box-sizing: border-box;
}


.template1{
	background-color: #fff;
	padding-top: 115px;
	padding-bottom: 157px;
	box-sizing: border-box;
	text-align: center;
}
.template1 .h4{
	margin: 58px 0 140px;
}
.template1 .item{
	text-align: center;
	margin-left: 55px;
}
.template1 .item:first-of-type{
	margin-left: 0;
}
.template1 .item .thumb{
	width: 250px;
	height: 250px;
	margin-bottom: 40px;
}
.template1 .item .h5{
	margin-top: 47px;
	line-height: 36px;
}

.template2{
	background: #F9FDFB;
	padding: 150px 0 20px;
	box-sizing: border-box;
	text-align: center;
}
.template2 .h4{
	margin: 60px 0 120px;
}
.template2 .thumb{
	width: 723px;
	height: 839px;
	margin: 0 auto;
}

.template3{
	background-color: #fff;
	padding: 156px 0 168px;
	box-sizing: border-box;
	text-align: center;
}
.template3 .h4{
	margin: 60px 0 133px;
}
.template3 .thumb{
	width: 682px;
	height: 413px;
	margin-right: 46px;
}
.template3 .info p{
	text-align: left;
	font-weight: 400;
	font-size: 24px;
	color: #888888;
	margin-bottom: 42px;
}
.template3 .info .title{
	display: inline-block;
	width: 223px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 8px;
	border: 1px solid #EEEEEE;
	box-sizing: border-box;
	font-weight: 400;
	font-size: 18px;
	color: #666666;
}

.template4{
	background: #F9FDFB;
	padding: 115px 0 96px;
	box-sizing: border-box;
	text-align: center;
}
.template4 .h4{
	margin: 50px 0 70px;
}
.template4 .info{
	text-align: right;
}
.template4 ul{
	text-align: left;
}
.template4 li{
	margin-top: 50px;
}
.template4 li:first-of-type{
	margin-top: 0px;
}
.template4 li .order{
	background: url('../images/order_bg.png') no-repeat left / contain;
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
	width: 54px;
	height: 47px;
	text-align: center;
	line-height: 47px;
	margin-right: 20px;
}
.template4 li .title{
	font-weight: 400;
	font-size: 20px;
	color: #333333;
}
.template4 li .title:hover{
	color: #333333;
}
.template4 .down{
	display: inline-block;
	width: 280px;
	height: 64px;
	line-height: 64px;
	text-align: center;
	border-radius: 32px;
	border: 1px solid var(--pm-c);
	margin-top: 74px;
	font-weight: 400;
	font-size: 18px;
	color: var(--pm-c);
}
.template4 .thumb{
	width: 439px;
	height: 434px;
	margin-left: 200px;
}
.template5{
	background-color: #fff;
	padding: 120px 0 83px;
	box-sizing: border-box;
	text-align: center;
}
.template5 .h4{
	margin: 61px 0 109px;
}
.template5 .thumb{
	width: 447px;
	height: 419px;
	margin-right: 170px;
}
.template5 li{
	height: 76px;
	line-height: 76px;
	background: #F9F9F9;
	margin-top: 13px;
	padding-right: 20px;
	box-sizing: border-box;
}
.template5 li:first-of-type{
	margin-top: 0;
}
.template5 li .dot{
	width: 76px;
	height: 76px;
	background: #E4E4E4 url('../images/dot_bg.png') no-repeat center / contain;
	background-size: 37px 34px;
}
.template5 li .title{
	padding-left: 22px;
	box-sizing: border-box;
	font-weight: 400;
	font-size: 18px;
	color: #333333;
	text-align: left;
}
.template5 li .get{
	width: 23px;
	height: 9px;
	background: url('../images/get_icon.png') no-repeat center / contain;
	display: inline-block;
	margin-left: 10px;
}
.template5 li:hover .dot{
	background: var(--pm-c) url('../images/dot_bg.png') no-repeat center / contain;
	background-size: 37px 34px;
}
.template5 li:hover{
	background: #F5FFFB;
}
.template5 li:hover .title{
	color: var(--pm-c);
}



.btmBanner{
	background: var(--pm-c);
	height: 105px;
	padding: 21px 0;
	box-sizing: border-box;
	position: fixed;
	bottom: 0px;
	width: 100%;
	left: 0;
}
.btmBanner .uk-container{
	position: relative;
}
.btmBanner .icon{
	width: 63px;
	height: 63px;
	border-radius: 8px;
	margin-right: 17px;
}
.btmBanner .title{
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
	margin: 0 0 8px 0;
}
.btmBanner .title:hover{
	color: #FFFFFF;
}
.btmBanner .text{
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	margin: 0;
}
.btmBanner .down{
	display: inline-block;
	width: 142px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 20px;
	background: #fff url('../images/app_down.png') no-repeat 24px / contain;
	background-size: 15px;
	font-weight: bold;
	font-size: 16px;
	color: var(--pm-c);
	padding: 0 24px 0 49px;
	box-sizing: border-box;
	margin-right: 15px;
}
.btmBanner .close{
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url('../images/close.png') no-repeat center / contain;
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
}

.list_news{
	background-color: #fff;
}
.list_news_warp .item{
	background: linear-gradient(90deg, #F9F9F9, #FFFFFF);
	margin-top: 21px;
	padding: 25px 10px 25px 20px;
	box-sizing: border-box;
}
.list_news_warp .item:first-of-type{
	margin-top: 24px;
}
.list_news_warp .item .thumb{
	width: 190px;
	height: 140px;
	border-radius: 10px;
	margin-right: 20px;
}
.list_news_warp .item .info{
	/* padding: 10px 0; */
	box-sizing: border-box;
}
.list_news_warp .item .title{
	font-weight: bold;
	font-size: 18px;
}
.list_news_warp .item .desc{
	margin: 30px 0;
}
.list_news_warp .item .get{
	font-weight: 400;
	font-size: 12px;
	color: var(--pm-c);
}
.list_news_warp .item .get i{
	display: inline-block;
	width: 15px;
	height: 15px;
	line-height: 14px;
	text-align: center;
	background: var(--pm-c);
	border-radius: 2px;
	font-weight: 400;
	font-size: 12px;
	color: #FFFFFF;
	margin-left: 10px;
	font-style: normal;
}
.thumb_tj{
	width: 100%;
	height: 550px;
	margin-bottom: 33px;
}

.hot_finance .thumb{
	width: 100%;
	height: 200px;
	border-radius: 4px;
	margin-bottom: 14px;
	margin-top: 28px;
}
.hot_finance li{
	height: 54px;
	line-height: 54px;
	background: #F9F9F9;
	margin-top: 11px;
	padding-right: 18px;
	box-sizing: border-box;
}
.hot_finance li:first-of-type{
	margin-top: 0;
}
.hot_finance li .dot{
	width: 54px;
	height: 54px;
	background: #E4E4E4 url('../images/dot_bg.png') no-repeat center / contain;
	background-size: 28px 25px;
}
.hot_finance li .title{
	padding-left: 13px;
	box-sizing: border-box;
	font-size: 16px;
	text-align: left;
}
.hot_finance li .get{
	width: 16px;
	height: 5px;
	background: url('../images/get_icon.png') no-repeat center / contain;
	display: inline-block;
	margin-left: 10px;
}
.hot_finance li:hover .dot{
	background: var(--pm-c) url('../images/dot_bg.png') no-repeat center / contain;
	background-size: 28px 25px;
}
.hot_finance li:hover{
	background: #F5FFFB;
}
.hot_finance li:hover .title{
	color: var(--pm-c);
}

.finance_news{
	margin-top: 38px;
}
.finance_news .item{
	margin-top: 23px;
}
.finance_news .item:first-of-type{
	margin-top: 33px;
}
.finance_news .item .title{
	margin-bottom: 22px;
	font-weight: bold;
	font-size: 16px;
}
.finance_news .item .thumb{
	width: 112px;
	height: 72px;
	border-radius: 4px;
	margin-right: 12px;
}
.finance_news .item .desc{
	font-size: 14px;
	color: #666666;
	line-height: 36px;
}
.finance_news li{
	padding-bottom: 16px;
	box-sizing: border-box;
	border-bottom: 1px dashed #E5E5E5;
	margin-top: 20px;
}
.finance_news li:first-of-type{
	margin-top: 33px;
}
.finance_news li:last-of-type{
	padding-bottom: 0px;
	border-bottom: none;
}
.finance_news li .title{
	font-size: 16px;
}



.single_news .single_header{
	border-bottom: 1px solid #F1F1F1;
	padding-bottom: 39px;
	padding-top: 59px;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 25px;
}
.single_news .single_header p{
	font-weight: bold;
	font-size: 24px;
	color: #333333;
	margin-bottom: 52px;
}
.single_news .single_header span{
	font-weight: 400;
	font-size: 12px;
	color: #999999;
}
.single_news .single_header span:first-of-type{
	margin-right: 20px;
}
.single_news .single_news_warp{
	margin-bottom: 47px;
}
.single_news .list_news_warp{
	margin-top: 45px;
}
.single_news .list_news_warp .item:nth-of-type(2){
	margin-top: 40px;
}


.get_jys_link {
    cursor: pointer;
}