html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
}

body {
	background-color: #f7fafb;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
i {
	font-weight: 100;
	font-style: normal;
}

ul,
ol,
li {
	list-style-type: none;
}

a {
	color: #666;
	text-decoration: none;
	outline: 0;
	font-weight: 400;
	font-family: "微软雅黑";
}

a:hover {
	text-decoration: none;
}
/* footer end */
/* 滚动条 */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
	box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 6px rgba(161, 73, 73, 0.3);
	-moz-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-ms-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
	-o-shadow: inset 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.3);
	/* background: linear-gradient(360deg, #3991F5 0%, #3067E3 100%); */
	box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-ms-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
	-o-shadow: inset 6px rgba(0, 0, 0, 0.5);
}
/* ::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(48, 106, 228, 1);
} */
/* 滚动条 end */
#header {
	width: 100%;
	height: 632px;
	box-sizing: border-box;
	background: url(../images/header-bg.jpg) no-repeat center center;
	background-size: cover;
	display: flex;
	justify-content: center;
	position: relative;
	flex-direction: column;
	align-items: center;
    overflow: hidden;
}
.header-top {
	width: 100%;
	height: 43px;
	box-sizing: border-box;
	background-color: rgba(63, 101, 226, .2);
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 999;
}
.top-link {
	width: 1260px;
	display: flex;
	justify-content: space-between;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.top-link.en-enter{
	display:none;
}
.link-left{
	display: flex;
	height: 43px;
	align-items: center;
}
.link-left-item {
	margin-right: 20px;
	color: #d9e6f3;
}
.right-grzx {
	/* margin-left: 79px; */
	display: flex;
	align-items: center;
}
.link-left-item label{
	font-size: 14px;
	color: #d9e6f3;
}
.right-grzx img {
	margin-right: 8px;
}
.link-left-item a{
	font-size: 14px;
	color: #d9e6f3;
}
.link-left-item:last-child {
	margin-right: 0;
}
.link-left-item a:hover{color: #fcff41 !important;}
.code-rain {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 632px;
	left: 0;
	top: 0;
	background: url(../images/code-rain.png) no-repeat center center;
	background-size: cover;
	opacity: 0;
    animation: digitalFlow 5s infinite linear;
	-webkit-animation: digitalFlow 5s infinite linear;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    animation-delay: 1.2s;
    z-index: 1;
}
@keyframes digitalFlow {
	0% {
		opacity: 0;
		transform: translateY(-632px);
		-webkit-transform: translateY(-632px);
		-moz-transform: translateY(-632px);
		-o-transform: translateY(-632px);
		-ms-transform: translateY(-632px);
	}
	50% {
		opacity: 1;
        transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
	}
	100% {
		opacity: 0.5;
        transform: translateY(632px);
		-webkit-transform: translateY(632px);
		-moz-transform: translateY(632px);
		-o-transform: translateY(632px);
		-ms-transform: translateY(632px);
	}
}
/* header-center */
.header-center {
	width: 1260px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding-top: 34px;
	position: relative;
	z-index: 998;
}
.header-center .logo {
	text-align: center;
}
.header-center .logo img{
	height:220px;
}
.search {
	width: 725px;
	height: 57px;
	background: #ffffff;
	border-radius: 29px;
	margin-top: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.search select {
	width: 124px;
	height: 100%;
	border: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	box-sizing: border-box;
	padding-left: 34px;
	padding-right: 20px;
	color: #3c3c3c;
	font-size: 16px;
	border-right: 1px solid rgba(231, 231, 231, 1);
	background: url(../images/seact-sanj.png) no-repeat 85% center;
	display: none;
}
.search input {
	width: calc(100% - (119px + 124px));
	height: 100%;
	box-sizing: border-box;
	outline: none;
	border: none;
	padding-left: 60px;
	font-family: "微软雅黑";
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}
.search input::placeholder,
.search input::-webkit-input-placeholder,
.search input::-moz-placeholder,
.search input::-o-placeholder,
.search input::-ms-placeholder {
	color: #b3b3b3;
	font-size: 16px;
}
.search input:focus {
	outline: none;
	border: none;
}
.search-btn {
	width: 119px;
	height: 100%;
	background-color: #3f65e2;
	border: none;
	outline: none;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}
.search-btn:focus {
	border: none;
	outline: none;
}
.hot-search {
	margin-top: 19px;
	box-sizing: border-box;
	text-align: center;
	display: inline-block;
	width: 100%;
}
.hot-search span,
.hot-search a {
	font-size: 14px;
	color: #fefefe;
	display: inline-block;
}
.hot-search a {
	margin-right: 18px;
}
.hot-search a:hover {
	color:#fcff41 !important;
}
.hot-search a:last-child {
	margin-right: 0px;
}
#nav {
	width: 100%;
	/*height: 90px;*/
	background: rgba(63, 101, 226, .7);
	display: flex;
	justify-content: center;
	/* align-items: center; */
	box-sizing: border-box;
	position: relative;
	z-index: 9999;
}
.nav-list {
	width: 1260px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
select::-ms-expand {
	display: none;
}
.nav-item {
	width: calc(100% / 6);
	height: 90px;
	background: url(../images/nav-item_bg1.png) no-repeat left center;
	text-align: center;
	cursor: pointer;
	position: relative;
}
.nav-item::before{
	content: "";
	width: 99%;
	height: 8px;
	background-color: rgba(255, 255, 255, 0.33);
	display: inline-block;
	position: absolute;
	top: -8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.nav-item:hover{
	background: url(../images/nav-item_bg2.png) no-repeat left center;
}
.nav-item.curcol{background: url(../images/nav-item_bg2.png) no-repeat left center;}
.nav-item:hover::before{
	background: rgba(63, 101, 226, .33);
	display: none;
}
.nav-item:last-child{
	box-shadow: 8px 0px 8px rgba(25, 68, 211, .25);
}
.nav-item > a {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	display: inline-block;
	width: 100%;
	line-height: 90px;
}
.nav-item > a:hover {
	color: #fff;
}
.sub-box {
	position: absolute;
	width: 92%;
	height: auto;
	bottom: 90px;
	background: rgba(63, 101, 226, .6);
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	display: none;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.subnav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	box-sizing: border-box;
	padding-top: 8px;
}
.subnav-item {
	width: calc(100% / 2);
	height: 45px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	/*border-bottom: 1px solid rgba(59, 133, 240, 1);*/
	border-bottom: 1px solid rgba(59, 168, 240, 1);
	position: relative;
	padding-left: 5px;
}
.subnav-item > a {
	/*font-size: 14px;*/
	font-size: 12px;
	color: #fff;
	line-height: 45px;
	font-weight: bold;
}
/*.subnav-item::before{
	content: "";
	width: 5px;
	height: 5px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	left: 17px;
}*/
.subnav-item:hover a{
	color: #0BD2AD;
	font-weight: bold;
}
/*.subnav-item:hover::before{
	background-color: #0BD2AD;
}*/
/* header-center end */
/* friendlink */
.friendlink {
	width: 100%;
	height: 70px;
	box-sizing: border-box;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.friendlink-list {
	width: 1260px;
	height: 44px;
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: relative;
	background-color: #EEF3F4;
	box-sizing: border-box;
	padding: 0 20px;
}
.friendlink-list > span{
	font-size: 16px;
}
.friendlink-list > li{
	width: calc((100% / 6) - 14px);
	height: 40px;
	text-align: center;
	border-radius: 5px;
	line-height: 40px;
	font-size: 16px;
	color: #414141;
}
.friendlink-list li a{
	font-size: 14px;
	display: block;
	width: 100%;
	height: 100%;
}
.friendlink-list li a:hover{color: #EF6210;}
.friendlink-item span {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
	padding-right: 14px;
	box-sizing: border-box;
	font-size: 14px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.friendlink-item span::after {
	content: "";
	width: 9px;
	height: 5px;
	display: inline-block;
	position: absolute;
	background: url(../images/jt.png) no-repeat center center;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
}
.friendlink-item:hover span::after {
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
}
.subfriendlink-list {
	width: 100%;
	background-color: #fff;
	position: absolute;
	bottom: 44px;
	z-index: 9999;
	box-sizing: border-box;
	left: 0;
	padding: 10px;
	text-align: left;
	display: none;
}
.subfriendlink-item {
	padding: 5px;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	width: 172px;
}
/* friendlink end */
/* footer */
#footer {
	width: 100%;
	height: 220px;
	background-color: #3f65e2;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer-layout {
	width: 1260px;
	height: 177px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transiton: all 0.3s;
	-o-transition: all 0.3s;
}
.footer-link {
	width: 476px;
	height: 124px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 30px 106px;
}
.footer-link li {
	width: calc(100% / 3);
	box-sizing: border-box;
	text-align: center;
	line-height: 30px;
}
.footer-link li a:hover{color: #fcff41 !important;}
.footer-link a {
	font-size: 14px;
	color: #d9e4ee !important;
}
.footer-host {
	width: 319px;
	height: 124px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	box-sizing: border-box;
	/*text-align: center;*/
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.footer-host p {
	font-size: 14px;
	color: #d9e4ee;
	line-height: 30px;
	margin-left: 65px;
}
.dzjg {
	margin-left: 10px;
}
.dzjg,
.jiucuo {
	width: 217px;
	height: 124px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
/* copyright */
.copyright {
	width: 100%;
	height: 42px;
	background-color: #365BD4;
	display: flex;
	justify-content: center;
	align-items: center;
}
.copyright-list {
	width: 1260px;
	height: 100%;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.copyright-list li {
	margin-right: 52px;
	color: #d9e4ee;
}
.copyright-list li:last-child {
	margin-right: 0px;
}
.copyright-list,
.copyright-list a {
	font-size: 14px;
	color: #d9e4ee;
}
.copyright-list a:hover {
	color: #fcff41 !important;;
}
.wangbei {
	display: flex;
	align-items: center;
}
.wangbei img {
	margin-right: 10px;
}
/* copyright end */
/* footer end */
.mobile-box {
	display: none;
}
.canvi-navbar {
	background: rgba(5, 95, 178, 1) !important;
}
.mobile-nav {
	width: 100% !important;
	background: rgba(5, 95, 178, 1) !important;
}
.close-new {
	display: inline-block;
	text-align: right;
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
}
.close-new img {
	width: 30px;
	height: 30px;
}
.layui-nav-tree .layui-nav-item a {
	font-size: 20px;
}
.layui-nav-tree .layui-nav-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.canvi-content {
	background: transparent !important;
}
.main_32221{font-size: 16px;display: flex; justify-content: start;}
.main_32221 a{
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 100px);
}
.main_32221 a:hover{color: #055fb2;}

.main_32221-pic{font-size: 16px;}
.main_32221-pic a{
	overflow: hidden;
}
.main_32221-pic a:hover{color: #055fb2;}



.main_3212{font-size: 16px;}
.main_3212:hover{color: #055fb2;}
.return_assist{
	position: absolute;
    right: 0;
    line-height: 40px;
	color: #666;
}
.return_assist a{
	color: #666;
	border: 1px solid #666;
    border-radius: 10px;
    padding: 0 10px;
	font-size: 16px;
}
.return_assist.white{
	position: absolute;
    right: 0;
    line-height: 40px;
    color: #ffffff;
}
.return_assist.white a{
	color: #ffffff;
	border: 1px solid #FFFFFF;
    border-radius: 10px;
    padding: 0 10px;
	font-size: 16px;
}
.return_assist.top0{
	top:0px;
}
.return_assist.top-28{
	top:-28px;
}
.return_assist.top-400{
	top:-400px;
}

@media screen and (max-width: 1440px) {
	.top-link {
		box-sizing: border-box;
		padding: 0 20px;
	}
	.footer-layout {
		width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
	}
	.dzjg {
		margin-left: 0;
	}
	.copyright-list {
		width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
	}
}
@media screen and (max-width: 1280px) {
	.friendlink-list {
		width: 100%;
	}
	.friendlink-item {
		width: 185px;
	}
	.header-center {
		width: 100%;
	}
}
/* @media screen and (max-width: 1024px) {
	.link-left li,
	.link-right li {
		display: none;
	}
	.link-left li:first-child,
	.link-right li:last-child {
		display: block;
	}
} */
@media screen and (max-width: 996px) {
	.footer-link {
		padding: 30px 40px;
	}
	.dzjg,
	.jiucuo,
	.footer-link,
	.footer-host {
		width: 50%;
	}
	.friendlink{
		display: block;
		height: 120px;
		margin-bottom: 20px;
	}
	.friendlink-list{
		display: inherit;
		height: 120px;
	}
	.friendlink-list > span{
		display: none;
	}
	.friendlink-list > li{
		float: left;
		width: calc((100% / 2));
	}
	.subfriendlink-list{bottom: 120px;}
	.friendlink-list .friendlink-item:nth-child(5) .subfriendlink-list{
		bottom: 120px;
	}
	.friendlink-list .friendlink-item:nth-child(6) .subfriendlink-list{
		bottom: 120px;
	}
	#footer,
	.footer-layout {
		height: auto;
	}
	.footer-layout {
		width: 750px;
		flex-wrap: wrap;
	}
	.copyright-list {
		width: 750px;
		flex-wrap: wrap;
	}
	#nav {
		height: 55px;
	}
	#header {
		height: auto;
	}
	.nav-container {
		margin-top: 20px;
		padding: 0 20px;
	}
	.mobile-box {
		width: 750px;
		height: 55px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.mobile-btn {
		width: 90px;
		display: flex;
		height: 55px;
		justify-content: flex-end;
		align-items: center;
		cursor: pointer;
	}
	.mobile-btn img {
		width: 50px;
		height: 50px;
	}
	.mobile-btn span {
		color: #fff;
		font-size: 20px;
		font-family: "微软雅黑";
	}
}
@media screen and (max-width: 768px) {
	#header {
		height: auto;
	}
	/* .footer-link,
	.footer-host {
		height: auto;
	} */
	.dzjg,
	.jiucuo {
		padding: 10px 0;
	}
	.copyright {
		height: auto;
	}
}
@media screen and (max-width: 616px) {
	.nav-container,
	.footer-layout {
		padding: 0 10px;
	}
	.footer-link{
		height: 45px;
	}
	.footer-link,
	.footer-host {
		padding: 0;
		width: 100%;
	}
	.footer-link li{width: calc(100% / 3);}
	.search input {
		padding-left: 10px;
	}
	.header-top{display: none;}
	.top-link.en-enter{
		display:flex;
		justify-content: end;
		width: 100%;
		padding: 0 10px;
		padding-top: 15px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
	}
	.top-link.en-enter a{
		border: 1px solid #ffffff;
		border-radius: 11px;
		text-align: center;
		color: #4ba6a7;
		margin-top: 10px;
		background: #c0ecf9;
		font-weight: bold;
		padding: 5px 20px;
	}
	.header-center .logo img{
		height: 140px !important;
	}
}
@media screen and (max-width: 515px) {
	.search-btn {
		width: 75px;
	}
	.search {
		height: 40px;
	}
	.search select {
		width: 75px;
		padding-left: 5px;
		padding-right: 0px;
	}
	.search input {
		width: calc(100% - (75px * 2));
	}
	.header-top{display: none;}
}


.znwd-span{height: 180px;width: 130px;right: 115px;position: fixed;bottom: 0px;z-index: 9999;}
.znwd-span span{width:20px;height:20px;display:block;background:url(../images/jiqiren_close.png) center no-repeat; cursor:pointer;position: absolute;display:none;}
.bubble{-webkit-box-shadow: 0 0 3px #bba4a4;box-shadow: 0 0 3px #bba4a4;background-color: #fff;height: 60px;line-height:20px;width: 200px;border-radius: 5px;padding: 8px 10px;font-size: 14px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;margin-bottom: 22px;
    -webkit-transition: all .3s linear;transition: all .3s linear;position: absolute;margin-left: 20px;top: -75px;display:none;}
.bubble:before {
	    position: absolute;
	    left: 40px;
	    top: 72px;
	    content: " ";
	    width: 0;
	    height: 0;
	    opacity: 1;
	    border: 10px solid;
	    border-color: #fff transparent transparent transparent;
	    -webkit-transform: rotate(22deg);
	    transform: rotate(22deg);
}