@charset "utf-8";
@import url(./animate.css);
@import url(./iconfont.css);


*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
	font-family: "SourceHanSansCNR";
	font-weight: normal;
	font-style: normal;
	src: url('./SourceHanSansCN-Regular.woff2');
}

html {
	-webkit-text-size-adjust: 100%;
	font-size: 5.2083333vw;
	/* overflow-x: hidden; */
}

html,
body {
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	font-size: 0.16rem;
	line-height: 0.3rem;
	color: #333333;
	width: 100%;
	zoom: 1;
	font-family: SourceHanSansCNR,arial,sans-serif;
	background: #fff;
}

ul,
li,
form,
dl,
dt,
dd,
div,
ul,
li,
p,
em,
i,
address,
ol {
	font-style: normal;
	list-style: none;
	padding: 0px;
	margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0px;
	margin: 0px;
}

select,
input,
textarea,
button {
	font-size: 0.16rem;
	border-radius: 0;
	-webkit-border-radius: 0;
	color: #545454;
	font-family: SourceHanSansCNR,arial,sans-serif;
}

input:focus {
	outline: none;
}

input,
button,
select,
textarea {
	border: 0px;
	outline: none;
	/*-webkit-appearance:none;*/
	/*强制去除表单自带的样式*/
}

button {
	cursor: pointer;
}

textarea {
	resize: none;
	/*-webkit-appearance:none;*/
	/*强制去除textarea自带的样式*/
}

textarea,
input,
select {
	background: none;
	border: none;
	margin: 0;
	padding: 0;
}

article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
fxigcaption,
address,
pre,
time,
menu {
	padding: 0px;
	margin: 0;
	display: block;
	font-family: SourceHanSansCNR,arial,sans-serif;
}

pre {
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
}

/*html5设置*/

figure,
figcaption {
	margin: 0px;
	padding: 0px;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

img {
	max-width: 100%;
	border: none;
	border: 0;
	display: inline-block;
	vertical-align: middle;
}

a {
	color: #333333;
	text-decoration: none;
	/* noline: -webkit-tap-highlight-color:rgba(0, 0, 0, 0); */
	/*transition: all ease 0.3s;*/
}

a:focus {
	outline: none;
	-moz-outline: none;
}

a:hover {
	text-decoration: none;
	color: #00479d;
}

/**:hover{transition: all ease 0.3s;}*/

/*input字体*/
:-moz-placeholder {
	color: #999999;
}

::-moz-placeholder {
	color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999999;
}

select {
	/*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
	/*很关键：将默认的select选择框样式清除*/
	appearance: none;
	color: #999999;
	-moz-appearance: none;
	-webkit-appearance: none;
	/*在选择框的最右侧中间显示小箭头图片*/
	border: 1px solid #e5e5e5;
	background: #fff url(../img/selectarr.svg) no-repeat right 0.18rem center;
	/*为下拉小箭头留出一点位置，避免被文字覆盖*/
	padding-left: 12px;
	padding-right: 0.5rem;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
	display: none;
}

input[type="radio"],
input[type="checkbox"] {
	width: 0.18rem;
	height: 0.18rem;
	vertical-align: middle;
	appearance: none;
	print-color-adjust: exact;
	cursor: pointer;
	border: 1px solid #dddddd;
	position: relative;
	margin: -0.04rem 0.11rem 0 0;
}

input[type="radio"] {
	border-radius: 50%;
}

input[type="radio"]:checked:after {
	left: 3px;
	top: 3px;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	background: #00479d;
	content: "";
	position: absolute;
	border-radius: 50%;
}

input[type="radio"]:checked {
	border: 1px solid #00479d;
}

input[type="checkbox"] {
	border-radius: 4px;
	border: 1px solid #bfbfbf;
	background-color: #fff;
}

input[type="checkbox"]:checked {
	background: #fff url(../img/gou.png) no-repeat center center;
	border: 1px solid #00479d;
}

/*网页滚动条*/
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	-webkit-overflow-scrolling: touch;
	background-color: #ebeced;
}

::-webkit-scrollbar:hover {
	display: block;
}

::-webkit-scrollbar-track {
	background: url(../img/scrollbartrack.gif) center top repeat-y;
}

::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #666 url(../img/scrollbg.png) center center no-repeat;
}

::-webkit-scrollbar-button {
	height: 0px;
	width: 0;
	background-color: #ebeced;
}

/*公用样式*/
.fl {
	float: left;
}

.fr {
	float: right;
}

.tl {
	text-align: left !important;
}

.tr {
	text-align: right;
}

.tc {
	text-align: center !important;
}

/* .auto{margin:0px auto;} */
.show {
	display: inline-block;
	vertical-align: middle;
}

.hide {
	display: none;
}

.block {
	display: block;
}

.clear {
	clear: both;
}

.clearfix {
	overflow: hidden;
	_zoom: 1;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	zoom: 1;
}

.relative {
	position: relative;
}

.bodyon {
	overflow: hidden;
}

.w1600 {
	z-index: 1;
	position: relative;
	clear: both;
	max-width: 16rem;
	width: 88%;
	margin: 0px auto;
}

.w1440 {
	z-index: 1;
	position: relative;
	clear: both;
	max-width: 14.4rem;
	width: 88%;
	margin: 0px auto;
}

.table {
	display: table;
	width: 100%;
}

.table .row {
	display: table-row;
}

.table .cell {
	display: table-cell;
	vertical-align: middle;
}

.iblock {
	font-size: 0;
}

.iblock div,
.iblock li {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
}

.ptb100 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.pt60 {
	padding-top: 0.6rem;
}

.pb150 {
	padding-bottom: 1.5rem;
}

.pt100 {
	padding-top: 1rem;
}

.pt70 {
	padding-top: 0.7rem;
}

.pb100 {
	padding-bottom: 1rem;
}

.pb0 {
	padding-bottom: 0 !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pb50 {
	padding-bottom: 0.5rem !important;
}

.nones {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	top: 0;
	width: 100%;
	z-index: -10;
	left: 0;
}

.relative {
	position: relative;
}

.flex {
	display: flex;
	display: -ms-flexbox;
}

.flexj {
	display: flex;
	display: -ms-flexbox;
	justify-content: center;
	-ms-flex-pack: center;
}

.flexa {
	display: flex;
	display: -ms-flexbox;
	align-items: center;
}

.flexja {
	display: flex;
	display: -ms-flexbox;
	justify-content: center;
	-ms-flex-pack: center;
	align-items: center;
	-ms-flex-align: center;
}

.flexjac {
	display: flex;
	display: -ms-flexbox;
	justify-content: center;
	-ms-flex-pack: center;
	align-items: center;
	-ms-flex-align: center;
	flex-direction: column;
	-ms-flex-direction: column;
}

.flexac {
	display: flex;
	display: -ms-flexbox;
	align-items: center;
	-ms-flex-align: center;
	flex-direction: column;
	-ms-flex-direction: column;
}

.flexjc {
	display: flex;
	display: -ms-flexbox;
	justify-content: center;
	-ms-flex-pack: center;
	flex-direction: column;
	-ms-flex-direction: column;
}

.flexbwa {
	display: flex;
	display: -ms-flexbox;
	justify-content: space-between;
	-ms-flex-pack: justify;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	align-items: center;
	-ms-flex-align: center;
}

.flexba {
	display: flex;
	display: -ms-flexbox;
	justify-content: space-between;
	-ms-flex-pack: justify;
	align-items: center;
	-ms-flex-align: center;
}

.flexbw {
	display: flex;
	display: -ms-flexbox;
	justify-content: space-between;
	-ms-flex-pack: justify;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

.flexbwt {
	display: flex;
	display: -ms-flexbox;
	justify-content: space-between;
	-ms-flex-pack: justify;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	align-items: flex-start;
}

.flexw {
	display: flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}

.flexaw {
	display: flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	align-items: center;
	-ms-flex-align: center;
}

.flexjw {
	display: flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	justify-content: center;
	-ms-flex-pack: center;
}

.flexb {
	display: flex;
	display: -ms-flexbox;
	justify-content: space-between;
	-ms-flex-pack: justify;
}

/*font*/
.f000 {
	color: #000;
}

.f999 {
	color: #999;
}

.f666 {
	color: #666;
}

.f555 {
	color: #555;
}

.f333 {
	color: #333 !important;
}

.fblue {
	color: #142233;
}

.fblue2 {
	color: #00479d;
}

.fred {
	color: #ed1600;
}

.forange {
	color: #af8b66;
}

.t_justify {
	text-align: justify;
}

.f_lighter {
	font-weight: lighter;
}

.f_normal {
	font-weight: normal;
}

.DINM {
	font-family: "DINM";
}

.f14 {
	font-size: 14px;
}

.f16 {
	font-size: 0.16rem;
}

.f18 {
	font-size: 0.18rem;
}

.f20 {
	font-size: 0.2rem;
}

.f22 {
	font-size: 0.22rem;
}

.f24 {
	font-size: 0.24rem;
}

.f26 {
	font-size: 0.26rem;
}

.f28 {
	font-size: 0.28rem;
}

.f30 {
	font-size: 0.30rem;
}

.f36 {
	font-size: 0.36rem;
}

.f40 {
	font-size: 0.40rem;
}

.l28 {
	line-height: 0.28rem;
}

.l32 {
	line-height: 0.32rem;
}

.l33 {
	line-height: 0.33rem;
}

.l36 {
	line-height: 0.36rem;
}

.l38 {
	line-height: 0.38rem;
}

.l40 {
	line-height: 0.40rem;
}

.l42 {
	line-height: 0.42rem;
}

.l48 {
	line-height: 0.40rem;
}

.iconfont {
	font-size: 22px;
	display: inline-block;
	vertical-align: middle;
}

.date {
	color: #666;
}

.tit {
	display: block;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	width: 100%;
	-webkit-line-clamp: 1;
}

.dot1,
.dot2,
.dot3,
.dot4,
.dot5,
.dot6,
.dot7 {
	overflow: hidden;
	word-break: normal;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.dot1 {
	-webkit-line-clamp: 1;
}

.dot2 {
	-webkit-line-clamp: 2;
}

.dot3 {
	-webkit-line-clamp: 3;
}

.dot4 {
	-webkit-line-clamp: 4;
}

.dot5 {
	-webkit-line-clamp: 5;
}

.dot6 {
	-webkit-line-clamp: 6;
}

.dot7 {
	-webkit-line-clamp: 7;
}

@media (max-width:1440px) {
	html {
		font-size: 6.2vw
	}
}

@media (max-width:1024px) {
	body {
		min-width: 300px;
/* 		padding-top: 46px; */
	}

	::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}

	/* .f_lighter{font-weight:normal;} */
}

@media (min-width:769px) and (max-width:1024px) {
	html {
		font-size: calc((100 / 1000) * 100 * 1vw);
	}
}

@media (max-width:768px) {
	html {
		font-size: calc((100 / 750) * 100 * 1vw);
	}
}

@media (max-width:640px) {

	select,
	input,
	textarea,
	button {
		font-size: 14px;
	}

	body {
		font-size: 14px;
		line-height: 24px;
	}

	.f14 {
		font-size: 14px;
	}

	.f16 {
		font-size: 14px;
	}

	.f18 {
		font-size: 15px;
	}

	.f20 {
		font-size: 16px;
	}

	.f22 {
		font-size: 16px;
	}

	.f24 {
		font-size: 16px;
	}

	.f26 {
		font-size: 16px;
	}

	.f28 {
		font-size: 17px;
	}

	.f30 {
		font-size: 18px;
	}

	.f40 {
		font-size: 20px;
	}

	.l36,
	.l28,
	.l33,
	.l32,
	.l48,
	.l40,
	.l38 {
		line-height: 24px;
	}

	.iconfont {
		font-size: 16px;
	}

	.ptb100 {
		padding-top: 0.65rem;
		padding-bottom: 0.65rem;
	}

	.pb150 {
		padding-bottom: 0.65rem;
	}

	.pt100 {
		padding-top: 0.65rem;
	}

	.pb100 {
		padding-bottom: 0.65rem;
	}

	input[type="radio"],
	input[type="checkbox"] {
		width: 15px;
		height: 15px;
	}
}


/*effict*/
.Scale-img {
	overflow: hidden;
	zoom: 1;
	overflow: hidden;
}

.Scale-img img,
.Scale-img span {
	opacity: 1;
	-webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
	transition: opacity 0.6s, transform 0.6s;
}

.Scale-img:hover img {
	opacity: 1;
	-webkit-transform: scale3d(1.05, 1.05, 1.05);
	transform: scale3d(1.05, 1.05, 1.05);
	top: 0px;
	left: 0px;
}

.effict {
	transition: all ease 0.3s;
}

.imgbox {
	overflow: hidden;
	position: relative;
}

.imgbox span {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.imgbox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.imgbox.auto img {
	width: auto;
	height: auto;
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
}

.itemhover {
	transition: all ease 0.3s;
	display: block;
}

.activehover {
	-webkit-box-shadow: 0 10px 10px rgba(0, 64, 152, 0.09);
	box-shadow: 0 10px 10px rgba(0, 64, 152, 0.09);
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
}

.itemhover2 {
	transition: all ease 0.3s;
	display: block;
}

.activehover2 {
	-webkit-transform: translate3d(0, -2px, 0);
	transform: translate3d(0, -2px, 0);
}

.ico-zoom {
	display: inline-block;
	position: relative;
	align-items: center;
	justify-content: center;
	margin: 0px auto;
	vertical-align: middle;
}

.ico-zoom .i1,
.ico-zoom .i2 {
	position: absolute;
	z-index: 100;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.ico-zoom img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	left: 50%;
	top: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.ico-zoom .i1 {
	transition: 400ms;
}

.ico-zoom .i2 {
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	filter: alpha(opacity=0);
	transition: 500ms;
}

.li:hover .ico-zoom .i2,
.li.on .ico-zoom .i2,
.item:hover .ico-zoom .i2,
.item.slick-current .ico-zoom .i2,
.item.on .ico .i2 {
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	filter: alpha(opacity=100);
}

.li:hover .ico-zoom .i1,
.li.on .ico-zoom .i1,
.item:hover .ico-zoom .i1,
.item.slick-current .ico-zoom .i1,
.item.on .ico-zoom .i1 {
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: translate(-50%, -50%) scale(1.2);
	transform: translate(-50%, -50%) scale(1.2);
}

.ico-rotate {
	transition: 0.6s;
	transform-style: preserve-3d;
}

.ico-rotate .i1,
.ico-rotate .i2 {
	backface-visibility: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.item:hover .ico-rotate,
.item.on .ico-rotate {
	transform: rotateY(180deg);
}

.ico-rotate .i2 {
	z-index: 3;
	transform: translate(-50%, -50%) rotateY(180deg);
}

.moreBtn {
	display: inline-block;
	transition: all 0.3s;
	width: 1.95rem;
	line-height: 0.56rem;
	color: #fff;
	position: relative;
	overflow: hidden;
	text-align: center;
	border: 2px solid #fff;
}

.moreBtn em {
	position: relative;
	z-index: 1;
	display: inline-block;
}

.moreBtn em:after {
	display: inline-block;
	margin-left: 0.18rem;
	width: 17px;
	height: 8px;
	content: "";
	background: url(../img/arr_more_white.svg) right center no-repeat;
	position: relative;
	z-index: 1;
	transition: all 0.5s;
}

.moreBtn em:before {
	display: inline-block;
	width: 0;
	height: 8px;
	content: "";
	background: url(../img/arr_more_white.svg) right center no-repeat;
	position: relative;
	z-index: 1;
	transition: all 0.5s;
}

.moreBtn:before {
	left: 0;
	bottom: -200%;
	position: absolute;
	content: "";
	width: 200%;
	height: 200%;
	transition: all 0.5s 0.1s;
	background: #00479d;
}

.moreBtn:hover,
.moreBtn.blue {
	color: #fff;
	border: 2px solid #00479d;
}

.moreBtn:hover em:after,
.moreBtn.blue em:after {
	width: 0;
	margin: 0;
}

.moreBtn:hover em:before,
.moreBtn.blue em:before {
	width: 17px;
	margin-right: 0.18rem;
}

.moreBtn:hover:before,
.moreBtn.blue:before {
	bottom: 0%;
	width: 120%;
	height: 120%;
}

.moreBtn.auto {
	display: block;
	margin: 0px auto;
}

.moreBtn.on em:before {
	transform: rotate(90deg);
}

.btns {
	width: 1.65rem;
	height: 0.48rem;
	line-height: 0.48rem;
	text-align: center;
	color: #fff;
	border-radius: 0.48rem;
	transition: all 0.3s;
	display: inline-block;
}

.btns.blue {
	background: #00479d;
}

.btns.orange {
	background: #b39270;
}

.btns:hover {
	transform: translateY(-2px);
	color: #fff;
}

.more {
	color: #5a6470;
	transition: all 0.5s;
}

.more:after {
	display: inline-block;
	margin-left: 0.18rem;
	width: 17px;
	height: 8px;
	content: "";
	background: url(../img/arr_more_gray.svg) right center no-repeat;
	position: relative;
	z-index: 1;
	transition: all 0.5s;
}

.more:before {
	display: inline-block;
	width: 0;
	height: 8px;
	content: "";
	background: url(../img/arr_more_blue.svg) right center no-repeat;
	position: relative;
	z-index: 1;
	transition: all 0.5s;
}

.more:hover:after,
dd:hover .more:after,
.item:hover .more:after {
	width: 0;
	margin: 0;
}

.more:hover:before,
dd:hover .more:before,
.item:hover .more:before {
	width: 17px;
	margin-right: 0.18rem;
}

.more:hover,
dd:hover .more {
	color: #00479d;
}

.more.btn {
	width: 1.65rem;
	height: 0.48rem;
	line-height: 0.44rem;
	text-align: center;
	background: #00479d;
	color: #fff;
	border: 2px solid #00479d;
	border-radius: 0.48rem;
	transition: all 0.3s;
	display: inline-block;
}

.more.btn:after {
	background: url(../img/arr_more_blue.svg) right center no-repeat;
}

.more.btn:before {
	background: url(../img/arr_more_blue.svg) right center no-repeat;
}

.more.white {
	color: #fff;
}

.more.white:after {
	background: url(../img/arr_more_white.svg) right center no-repeat !important;
}

.more.white:before {
	background: url(../img/arr_more_white.svg) right center no-repeat !important;
}

.more.whiteline {
	background-color: transparent;
	border: 2px solid #fff;
}

.more.whiteline:hover {
	background: #00479d;
	border: 2px solid #00479d;
}

.more.whiteline.btn:after {
	background: url(../img/arr_more_white.svg) right center no-repeat;
}

.more.whiteline.btn:before {
	background: url(../img/arr_more_white.svg) right center no-repeat;
}

.more.blueline {
	background-color: transparent;
	border: 2px solid #00479d;
	color: #00479d;
}

.more.blueline:hover {
	background: #00479d;
	border: 2px solid #00479d;
	color: #fff;
}

.more.blueline.btn:hover:before {
	background: url(../img/arr_more_white.svg) right center no-repeat;
}

@media(max-width:640px) {
	.moreBtn {
		height: 35px;
		line-height: 31px;
		width: 100px;
		font-size: 14px;
	}

	.moreBtn:after {
		width: 20px;
		margin-left: 0.1rem;
	}

	.btns,
	.more.btn {
		width: 100px;
		height: 28px;
		line-height: 26px;
		font-size: 14px;
	}
}


/*pages*/
.Pages {
	clear: both;
	text-align: center;
	line-height: 0.48rem;
	position: relative;
	color: #666666;
	padding-top: 0.45rem;
}

.Pages a {
	display: inline-block;
	vertical-align: middle;
	width: 0.5rem;
	height: 0.5rem;
	color: #666666;
	border: 1px solid #cfcfcf;
	margin: 0 0.13rem;
	border-radius: 50%;
}

.Pages a:hover,
.Pages a.a_cur {
	color: #fff;
	background-color: #014095;
	border: 1px solid;
	border-color: #014095;
}

.Pages .arr {
	color: #919191;
}

.Pages .jump {
	padding-left: 0.08rem;
}

.Pages .text {
	width: 0.5rem;
	height: 0.5rem;
	line-height: 0.48rem;
	text-align: center;
	border: 1px solid #e0e0e0;
	margin: 0 0.1rem;
}

.Pages .go {
	width: 0.5rem;
	height: 0.5rem;
	color: #fff;
	background: #a37955;
	margin-left: 0.1rem;
	padding: 0;
}

.Pages .go:hover {
	background: #004898;
}

.Pages2 {
	clear: both;
	text-align: center;
	line-height: 0.36rem;
	position: relative;
	color: #666666;
	padding-top: 0.7rem;
}

.Pages2 a {
	display: inline-block;
	vertical-align: middle;
	width: 0.4rem;
	height: 0.4rem;
	color: #666666;
	border: 2px solid #00479d;
	margin: 0 0.13rem;
	border-radius: 50%;
}

.Pages2 a:hover,
.Pages2 a.a_cur {
	color: #fff;
	background-color: #014095;
	border: 1px solid;
	border-color: #014095;
}

.Pages2 .arr {
	color: #919191;
	margin: 0 0.2rem;
	position: relative;
	overflow: hidden;
}

.Pages2 .arr:after,
.Pages2 .arr:before {
	width: 17px;
	height: 8px;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	z-index: 1;
	transition: all 0.5s;
	position: absolute;
	top: 50%;
	margin-top: -4px;
}

.Pages2 .arr.a_prev:before {
	background-image: url(../img/arr_left.svg);
	left: 50%;
	margin-left: -8px;
}

.Pages2 .arr:hover.a_prev:before {
	left: 0;
}

.Pages2 .arr:hover.a_prev:after {
	background-image: url(../img/arr_left01.svg);
	left: 50%;
	margin-left: -8px;
}

.Pages2 .arr.a_next:before {
	background-image: url(../img/arr_right.svg);
	right: 50%;
	margin-right: -8px;
}

.Pages2 .arr:hover.a_next:before {
	right: 0;
}

.Pages2 .arr:hover.a_next:after {
	background-image: url(../img/arr_right01.svg);
	right: 50%;
	margin-right: -8px;
}

.Pages2 .arr:hover {
	background: #00479d;
}

@media (max-width:640px) {
	.Pages {
		line-height: 24px;
	}

	.Pages a,
	.Pages2 a,
	.Pages .text {
		width: 26px;
		height: 26px;
	}

	.Pages .go {
		width: 26px;
		height: 26px;
	}

	.Pages a {
		margin: 0 2px;
	}

	.Pages .iconfont {
		vertical-align: top;
	}
}

/*pages end*/


/*Top*/
.Header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	transition: all 0.3s;
	text-align: right;
	background: #fff;
}

.Header .auto {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 7.656vw 0 0.6rem;
	height: 1rem;
	transition: all 0.3s;
}

.Header .Logo {
	position: absolute;
	z-index: 10;
	left: 3.125vw;
	top: 50%;
	transform: translateY(-50%);
}

.Header .Logo img {
	height: 0.49rem;
	transition: all 0.3s;
}

.Header .Logo span {
	line-height: 0.26rem;
	text-align: center;
	width: 1.33rem;
}

.Header .Logo span i {
	display: block;
}

.Searchico {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	width: 4.2vw;
	text-align: center;
	background: #064b9f;
	color: #fff;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.Searchico:hover {
	color: #ffcc00;
}

.Searchico .icongb {
	display: none;
}

.Searchico.on .icongb {
	display: block;
}

.Searchico.on .iconso {
	display: none;
}

.Searchico .iconfont {
	font-size: 24px;
	vertical-align: middle;
}

.searchbox {
	width: 100%;
	position: absolute;
	line-height: 35px;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	top: 120%;
	transition: all 0.3s;
	text-align: left;
	width: 3.5rem;
	padding: 12px;
	background-color: #fff;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	right: 0;
}

.searchbox .input {
	width: calc(100% - 70px);
	height: 46px;
	line-height: 46px;
	text-indent: 1em;
	font-size: 14px;
	background: #eee;
}

.searchbox .input::-webkit-input-placeholder {
	color: #999;
}

.searchbox .btn {
	width: 70px;
	height: 46px;
	color: #fff;
	position: absolute;
	right: 12px;
	top: 12px;
	background-color: #00479d;
}

.searchbox.on {
	opacity: 1;
	visibility: visible;
	top: 94%;
	z-index: 10;
}

.Header .Ver {
	position: relative;
	line-height: 0.99rem;
	margin-right: 0.25rem;
}

.Header .Ver span {
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

.Header .Ver .icondq {
	font-size: 22px;
}

.Header .Ver dt:hover {
	color: #00479d;
}

.Header .Ver dd {
	position: absolute;
	left: 50%;
	top: 110%;
	width: 160px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	text-align: center;
	transform: translateX(-50%);
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: all 0.3s;
}

.Header .Ver dd a {
	display: block;
	line-height: 35px;
}

.Header .Ver dd a:hover {
	color: #00479d;
}

.Header .Ver.on dd {
	opacity: 1;
	z-index: 10;
	top: 90%;
	visibility: visible;
}

.Header .menu a {
	display: inline-block;
	margin-right: 1.82vw;
	vertical-align: middle;
}

.Header .menu .login {
	max-width: 100px;
}

.Header .menu a i {
	margin: -2px 0.07rem 0 0;
	font-size: 22px;
	transition: all 0.5s;
}

.Header .menu a:hover i {
	color: #00479d;
	transform: rotate(360deg);
}

.MainNav {
	padding-right: 4vw;
}

.MainNav li {
	margin: 0 0 0 2.6vw;
	display: inline-block;
}

.MainNav span a {
	position: relative;
	z-index: 100;
	display: block;
	line-height: 0.99rem;
	color: #000;
}

.MainNav .arr {
	display: none;
}

.MainNav li.onnav span a {
	color: #00479d !important;
}

.closebtn {
	position: fixed;
	left: 0px;
	top: 45px;
	width: 100%;
	height: 100%;
	z-index: 99;
	display: none;
	background: rgba(0, 0, 0, 0.5);
}

.openbtn {
	cursor: pointer;
	height: 25px;
	position: absolute;
	right: 5%;
	top: 8px;
	z-index: 1001;
	display: none;
	font-size: 12px;
	display: none;
	line-height: normal;
	transition: all 0.3s;
}

.openbtn span {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}

.openbtn i {
	display: block;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
	margin: 6px 0;
	transition: all ease 0.3s;
	width: 28px;
}

.openbtn.on .sp1 {
	-webkit-transform: translate(0, 9px) rotate(45deg) !important;
	-moz-transform: translate(0, 9px) rotate(45deg) !important;
	-ms-transform: translate(0, 9px) rotate(45deg) !important;
	-o-transform: translate(0, 9px) rotate(45deg) !important;
	transform: translate(0, 9px) rotate(45deg) !important;
}

.openbtn.on .sp2 {
	-webkit-transform: translate(0, 0) rotate(-45deg) !important;
	-moz-transform: translate(0, 0) rotate(-45deg) !important;
	-ms-transform: translate(0, 0) rotate(-45deg) !important;
	-o-transform: translate(0, 0) rotate(-45deg) !important;
	transform: translate(0, 0) rotate(-45deg) !important;
}

.openbtn.on .sp3 {
	width: 0;
}

/* 头部滑过 */
.Header.fix {
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
	border-bottom: 0;
}

.Header.fix .auto {
	height: 0.68rem;
}

.Header.fix .MainNav span a {
	line-height: 0.74rem;
}

/* 下拉 */
.NavPull {
	z-index: 99;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 0.2rem 0.3rem;
	background-color: #ffffff;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
	text-align: left;
	line-height: 0.3rem;
	overflow: hidden;
	border-top: 1px solid #e5e5e5;
	text-align: center;
}

.NavPull.null {
	display: none !important;
}

.NavPull dd {
	display: inline-block;
}

.NavPull dd a {
	display: block;
	padding: 0.05rem 0.18rem;
	color: #000 !important;
	border-radius: 5px;
}

.NavPull dd a:hover {
	background: #00479d;
	color: #fff !important;
}

.NavPull dd br {
	display: contents;
}

.MainNav li.onnav dd {
	animation: fadeInUp 0.2s .2s ease both;
	-webkit-animation: fadeInUp 0.2s .2s ease both;
	-moz-animation: fadeInUp 0.2s .2s ease both;
}

@media(max-width:1366px) {
	.MainNav {
		padding-right: 2vw;
	}

	.MainNav li {
		margin-left: 1.6vw;
	}

	.Header .auto {
		padding-right: 6.5vw;
	}

	.Header .Ver {
		margin-right: 0.15rem;
	}

	.Header .menu a {
		margin-right: 1.4vw;
	}
}

@media(max-width:1024px) {
	.Header .auto {
		padding: 0;
		width: 88%;
		margin: 0px auto;
		position: relative;
		height: 46px !important;
	}

	.Header .Logo {
		left: 0;
	}

	.Header .Logo span {
		line-height: 18px;
	}

	.Header .Logo img {
		height: 32px;
	}

	.Header a {
		color: #333333;
	}

	.Header .Ver {
		margin-right: 0.4rem;
		display: inline-block;
		vertical-align: top;
	}

	.Header .Ver em {
		display: inline-block !important;
	}

	.Header .Ver .icondq4,
	.Header .Ver .icondq2 {
		font-size: 22px;
	}

	.Header .openbtn {
		display: block;
	}

	.Header .openbtn i {
		background: #333;
	}

	.MainNav {
		position: fixed;
		right: 0;
		top: 45px;
		width: 80%;
		height: calc(100% - 45px);
		right: -100%;
		transition: all 0.3s;
		opacity: 0;
		background-color: #ffffff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		padding: 20px 0 0 0;
		overflow-y: auto;
		z-index: 100;
		text-align: center;
	}

	.MainNav.on {
		right: 0;
		opacity: 1;
	}

	.MainNav li {
		width: auto;
		float: none;
		text-align: left;
		margin: 0 15px;
		position: relative !important;
		padding: 0;
		display: block;
	}

	.MainNav span a {
		text-align: left;
		font-size: 15px;
		padding-left: 15px;
		line-height: 40px;
		border-bottom: 1px solid #eee;
		color: #333 !important;
	}

	.MainNav li:hover span a,
	.MainNav li.onnav span a {
		color: #02438d !important;
	}

	.MainNav li:not(:first-child):After {
		display: none;
	}

	.MainNav .arr {
		display: block;
		width: 80px;
		position: absolute;
		right: 0;
		top: 0;
		height: 40px;
		line-height: 40px;
		z-index: 101;
	}

	.MainNav .arr i {
		position: absolute;
		right: 10px;
		font-size: 14px;
		color: #666;
		top: 0;
		transition: all 0.3s;
	}

	.MainNav li.onnav .arr i {
		transform: rotate(-180deg);
	}

	.Header .MainNav span a:after {
		display: none;
	}

	.Searchico {
		margin-right: 32px;
		background-color: transparent !important;
		position: static;
		width: auto;
		color: #064b9f !important;
	}

	.searchbox {
		width: 100% !important;
		top: 110%;
		transform: translateY(0);
		padding: 10px;
		box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		border-radius: 0;
	}

	.NavPull {
		position: static;
		width: 100% !important;
		margin: 0;
		text-align: left;
		padding: 10px;
		transform: translateX(0) !important;
		line-height: 2.2;
		border-radius: 10px;
	}

	.NavPull a {
		font-size: 14px;
		padding: 2px 0 2px 15px;
	}

	.NavPull.pro dl {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.NavPull.pro dd {
		width: 33.333%;
	}
}

@media(max-width:640px) {
	.Header .menu .login {
		max-width: 65px;
	}

	.Header .Logo img {
		height: 28px;
	}

	.Header .menu a i,
	.Header .Ver .icondq {
		font-size: 20px;
	}

	.Searchico .iconfont {
		font-size: 22px;
	}

	.waphide {
		display: none;
	}

	.Header .menu a {
		margin-right: 0.2rem;
	}

	.Header .Logo span i,
	.Header .Logo span {
		font-size: 12px;
		line-height: 15px;
	}
}

/*Bottom*/
.Footer {
	position: relative;
	color: #fff;
	background: #2f3e51;
	z-index: 2;
}

.Footer .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.Footer .blank {
	position: absolute;
	left: 0;
	top: -60vh;
	height: 60vh;
	z-index: -2;
	width: 100%;
	visibility: hidden;
}

.Footer .w1600 {
	padding-top: 4.68vw;
}

.Footer .w1600:after {
	content: "";
	height: calc(100% + 0.39rem);
	width: 31.25vw;
	left: -8.33vw;
	top: -0.39rem;
	background: #314154;
	border-radius: 0 1rem 0 0;
	position: absolute;
}

.Footer .w1440 {
	padding-top: 4.68vw;
}

.Footer .w1440:after {
	content: "";
	height: calc(100% + 0.39rem);
	width: 31.25vw;
	left: -8.33vw;
	top: -0.39rem;
	background: #314154;
	border-radius: 0 1rem 0 0;
	position: absolute;
}

.Footer a {
	color: hsl(0, 0%, 100%);
}

.Footer a:hover {
	color: #00479d;
}

.Footer .Contact {
	width: 27.5%;
	position: relative;
	z-index: 10;
	padding-bottom: 0.4rem;
}

.Footer .Contact dl {
	padding-bottom: 0.3rem;
}

.Footer .Contact .tel {
	font-size: 0.42rem;
	line-height: 1;
	font-weight: bold;
}

.Footer .Contact .ewm {
	width: 1.63rem;
	text-align: center;
}

.Footer .Contact .ewm img {
	padding: 0.1rem;
	border-radius: 0.08rem;
	background: #fff;
	width: 100%;
	display: block;
	margin: 0px auto 0.08rem;
}

.Footer .rightBot {
	width: calc(100% - 27.5%);
	position: relative;
	z-index: 10;
}

.Footer .SiteMap {
	padding-left: 0.62rem;
}

.Footer .SiteMap .item {
	flex: 1;
}

.Footer .SiteMap .item:nth-child(1) {
	flex: 2.2;
}

.Footer .SiteMap .item:nth-child(1) dd {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.Footer .SiteMap .item:nth-child(1) dd p {
	width: 40%;
}

.Footer .SiteMap .item:nth-child(1) dd p:nth-child(odd) {
	width: 60%;
}

.Footer .SiteMap .item dt {
	position: relative;
	margin-bottom: 0.04rem;
}

.Footer .SiteMap .item dt i {
	font-size: 16px;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	text-align: right;
	display: none;
	z-index: 3;
}

.Footer .SiteMap .item dd p {
	padding-top: 0.1rem;
}

.Footer .SiteMap .item dd a {
	opacity: 0.7;
}

.Footer .SiteMap .item dd a:hover {
	opacity: 1;
	color: #fff;
}

.Footer .ewm dd {
	padding-top: 0.07rem;
	color: #5e5651;
	text-align: center;
}

.Footer .ewm dd img {
	width: 1.27rem;
	height: 1.27rem;
	padding: 0.08rem;
	background-color: #ffffff;
	display: block;
	margin: 0px auto 2px;
}

.Footer .copyRight {
	padding: 1.7vw 0 1.7vw 0.62rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 2vw;
	color: rgba(255, 255, 255, 0.7);
}

.Footer .copyRight a {
	color: rgba(255, 255, 255, 0.7);
}

.Footer .copyRight a:hover {
	color: #fff;
}

.Footer .fllowus li {
	position: relative;
	z-index: 10;
}

.Footer .fllowus li:not(:last-child) {
	margin-right: 0.17rem;
}

.Footer .fllowus .ico-zoom {
	width: 0.44rem;
	height: 0.44rem;
	display: inline-block;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
}

.Footer .fllowus .ico-zoom img {
	width: 20px;
	height: 20px;
}

.Footer .fllowus .ewm {
	padding: 10px;
	border-radius: 5px;
	background: #fff;
	width: 1.5rem;
	height: 1.5rem;
	bottom: 0.4rem;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s;
	position: absolute;
	opacity: 0;
	z-index: -1;
	visibility: hidden;
}

.Footer .fllowus .ewm img {
	width: 100%;
}

.Footer .fllowus .ewm:after {
	width: 10px;
	height: 10px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	content: "";
	position: absolute;
	background: #fff;
	bottom: -5px;
}

.Footer .fllowus li:hover .ewm {
	bottom: 0.68rem;
	visibility: visible;
	z-index: 1;
	opacity: 1;
}

.Footer .fllowus li:hover {
	z-index: 15;
}

.Footer .fllowus li:hover .ico-zoom {
	background: #fff;
	border: 1px solid #fff;
}

.Footer .totop {
	position: absolute;
	right: 0.54rem;
	top: 0.36rem;
	width: 0.48rem;
	height: 0.48rem;
	line-height: 0.48rem;
	background: #fff;
	border-radius: 50%;
	color: #00479d;
	text-align: center;
	cursor: pointer;
	z-index: 10;
	display: none;
}

.Footer .totop:hover {
	background: #00479d;
	color: #fff;
}

.Footer .totop i {
	font-weight: bold;
}

.Footer .totop.cd-is-visible {
	visibility: visible;
	opacity: 1;
	cursor: pointer;
	bottom: 0;
}

/* 右侧浮动 */
.RightFix {
	right: 0;
	top: 50%;
	z-index: 1000;
	position: fixed;
	width: 0.72rem;
	transform: translateY(-50%);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
	position: fixed;
	transition: all 0.5s;
}

.RightFix li {
	position: relative;
	cursor: pointer;
	background: #fff;
}

.RightFix .btn {
	text-align: center;
	position: relative;
	padding: 0.11rem 0;
	display: block;
	color: #888;
}

.RightFix .ico-zoom {
	width: 26px;
	height: 26px;
	margin: 0px auto;
}

.RightFix .info {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0.1rem;
	background: #fff;
	right: 100%;
	width: 1.68rem;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	visibility: hidden;
	opacity: 0;
	z-index: -10;
	transition: all 0.5s;
}

.RightFix .ewm {
	margin-bottom: 8px;
}

.RightFix .ewm img {
	width: 1.2rem;
}

.RightFix li:hover {
	background-color: #00479d;
}

.RightFix li:hover .btn {
	color: #fff;
}

.RightFix.fix {
	right: 1%;
	visibility: visible;
	opacity: 1;
	z-index: 100;
	transition: all 0.5s;
}

@media(min-width:1025px) {
	.RightFix {
		right: -100%;
		visibility: hidden;
		z-index: -1;
		opacity: 0;
	}

	.RightFix.on {
		right: 0.1rem;
		opacity: 1;
		visibility: visible;
		z-index: 500;
	}

	.RightFix .close {
		top: -35px;
		left: 50%;
		transform: translateX(-50%);
		width: 25px;
		height: 25px;
		line-height: 20px;
		text-align: center;
		border-radius: 50%;
		border: 2px solid #ddd;
		position: absolute;
		color: #ddd;
		cursor: pointer;
	}

	.RightFix .close .iconfont {
		font-size: 17px;
	}

	.RightFix li:not(:last-child) {
		border-bottom: #ccc 1px solid;
	}

	.RightFix li:first-child {
		border-radius: 6px 6px 0 0;
	}

	.RightFix li:last-child {
		border-radius: 0 0 6px 6px;
	}

	.RightFix li:first-child:hover {
		border-radius: 0.1rem 0.1rem 0 0;
	}

	.RightFix li:last-child:hover {
		border-radius: 0 0 0.1rem 0.1rem;
	}

	.RightFix li:hover .info {
		right: 110%;
		visibility: visible;
		z-index: 10;
		opacity: 1;
	}

	.flbtn {
		position: fixed;
		top: 50%;
		transform: translateX(-50%);
		text-align: center;
		z-index: 1000;
		width: 0.5rem;
		height: 0.9rem;
		right: -0.33rem;
		color: #fff;
		transition: all 0.5s;
		cursor: pointer;
		box-shadow: 0 7px 0.4rem -0.1rem rgba(29, 48, 48, .25);
		border-top-left-radius: 0.24rem;
		border-bottom-left-radius: 0.24rem;
		background-color: rgba(255, 255, 255, .75);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		color: #00479d;
	}

	.flbtn i {
		font-size: 25px;
		margin: 3px 0 -3px;
	}

	.flbtn.on {
		right: -100%;
		opacity: 0;
	}
}

@media(max-width:1440px) {
	.RightFix {
		right: 0.48vw;
	}

	.Footer .w1600 {
		padding-top: 3vw;
	}
}

@media(max-width:1366px) {
	.Footer .w1600 {
		padding-top: 2vw;
	}

	.Footer .SiteMap {
		line-height: 20px;
	}

	.RightFix .btn {
		font-size: 12px;
	}
}

@media(max-width:1024px) {
	.Footer {
		padding: 0.5rem 0 1.6rem;
	}

	.Footer .w1600:after {
		display: none;
	}

	.Footer .Contact {
		width: 100%;
	}

	.Footer .totop {
		display: none;
	}

	.Footer .rightBot {
		width: 100%;
	}

	.Footer .SiteMap {
		padding-left: 0;
		display: none;
	}

	.Footer .SiteMap .item {
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		float: none;
		margin: 0 !important;
		width: auto;
		padding: 0;
	}

	.Footer .SiteMap .item dt:After {
		margin-bottom: 0;
	}

	.Footer .SiteMap .item dd {
		display: none;
		padding: 9px 0;
	}

	.Footer .SiteMap .item dt {
		margin-bottom: 0;
		padding-bottom: 0;
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		line-height: 2.5;
		font-weight: normal;
	}

	.Footer .SiteMap .item dd a {
		margin-left: 15px;
	}

	.Footer .SiteMap .item dt i {
		display: block;
	}

	.Footer .SiteMap .ewm {
		padding-top: 0.2rem;
		text-align: center;
	}

	.Footer .SiteMap .ewm dt {
		margin-bottom: 0;
	}

	.Footer .copyRight {
		display: block;
		text-align: center;
		border-top: 0;
		padding: 0;
	}

	.Footer .fllowus {
		margin-bottom: 0.2rem;
		justify-content: center;
	}

	.flbtn,
	.RightFix .close {
		display: none;
	}

	.RightFix {
		top: auto;
		bottom: 0;
		transform: translateY(0);
	}

	.RightFix ul {
		display: flex;
		justify-content: space-between;
	}

	.RightFix li {
		flex: 1;
	}

	.RightFix .ico {
		width: 22px;
		height: 22px;
	}

	.RightFix .info {
		width: 150px;
		right: 50%;
		transform: translate(50%, 0);
		top: auto;
		bottom: 0.5rem;
	}

	.RightFix li:hover .info {
		bottom: 100%;
		visibility: visible;
		z-index: 10;
		opacity: 1;
	}

	.RightFix {
		width: 100%;
		right: 0;
		border-radius: 0;
		bottom: 0;
	}

	.RightFix .totop {
		display: block !important;
	}
}

@media(max-width:580px) {
	.RightFix li aside {
		line-height: 18px;
	}

	.Footer .fllowus .ico-zoom {
		width: 30px;
		height: 30px;
	}

	.Footer .fllowus .ico-zoom img {
		width: 18px;
		height: 18px;
	}

	.Footer .Contact .logo img {
		display: none;
	}
}

/*Bottom*/

.video_files {
	position: fixed;
	left: 50%;
	top: 50%;
	width: 75%;
	height: 75%;
	z-index: 1001;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.35rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.video_files .close {
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: #b3783a;
	color: #fff;
	z-index: 10;
	cursor: pointer;
}

.video_files video {
	width: 100%;
	height: 100%;
	object-fit: fill;
	background: #000;
}

@media(max-width:1024px) {
	.video_files {
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
	}

	.video_files video {
		object-fit: contain;
		height: auto;
		position: static;
	}
}

.wow {
	visibility: visible;
}

.TabSlide {
	position: relative;
}

.hoverline {
	position: relative;
}

.hoverline i::before {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	border-top: 2px solid #004898;
	transition: all .5s;
	-webkit-transition: all .5s;
	opacity: 0;
	position: absolute;
	z-index: 99;
}

.hoverline i::after {
	content: '';
	display: block;
	height: 0;
	width: 2px;
	border-left: 2px solid #004898;
	transition: all .5s;
	-webkit-transition: all .5s;
	opacity: 0;
	position: absolute;
	z-index: 99;
}

.hoverline i.l1::before {
	left: 0;
	top: 0;
}

.hoverline i.l1::after {
	right: 0;
	top: 0;
	transition: all .45s .5s;
	-webkit-transition: all .45s .5s;
}

.hoverline i.l2::before {
	left: 0;
	bottom: 0;
	transition: all .45s .5s;
	-webkit-transition: all .45s .5s;
}

.hoverline i.l2::after {
	left: 0;
	top: 0;
}

.hoverline:hover i::before,
.hoverline.onli i::before,
.hoverline:hover i::after,
.hoverline.onli i::after {
	opacity: 1;
}

.hoverline:hover i::before,
.hoverline.onli i::before {
	width: 100%;
}

.hoverline:hover i::after,
.hoverline.onli i::after {
	height: 100%;
}

/* cookies */
.cookiesBox {
	background: rgba(0, 0, 0, .6);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: -100;
	transition: all 0.5s;
}

.cookiesBox .dialog {
	background-color: #00479d;
	color: #fff;
	width: 6rem;
	padding: 0.3rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	z-index: 10001;
}

.cookiesBox .btn {
	padding-top: 0.3rem;
	text-align: center;
}

.cookiesBox .btn button {
	padding: 0 0.3rem;
	border: 1px solid #fff;
	color: #fff;
	background-color: transparent;
	height: 0.45rem;
}

.cookiesBox .btn button:hover {
	background: #fff;
	color: #00479d;
}

.cookiesBox .btn #accept {
	background: #fff;
	color: #00479d;
	margin-left: 0.1rem;
}

.cookiesBox.uk-open {
	opacity: 1;
	z-index: 10000;
	visibility: visible;
}

.modal-page {
	overflow: hidden;
}

/* 询价表单 */
.priceForm {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	overflow-y: auto;
	display: none;
}

.priceForm .content {
	max-width: 7.5rem;
	margin: 0.2rem auto;
	position: relative;
	background-color: #fff;
	border-radius: 0.1rem;
	padding: 0.5rem;
}

.priceForm .close {
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 0 0.1rem 0 0;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #01489d);
	padding: 0 0.16rem 0 0.5rem;
	line-height: 0.5rem;
	color: #fff;
	cursor: pointer;
}

.priceForm .close i {
	font-size: 19px;
	margin: -2px 0 0 4px;
}

.priceForm .title {
	padding: 0.1rem 0 0.35rem;
	text-align: center;
	line-height: 1.92;
}

.priceForm .title span {
	display: inline-block;
	font-weight: normal;
	color: #00479d;
	border-bottom: 3px solid #00479d;
}

.priceForm .desc {
	padding-bottom: 0.25rem;
	color: #555;
	text-align: center;
}

.priceForm .item {
	padding-bottom: 0.2rem;
}

.priceForm .ipt,
.priceForm .select,
.priceForm .textarea {
	border-radius: 0.1rem;
	padding: 0 0.2rem;
	border: 1px solid #d2d2d2;
	height: 0.5rem;
	width: 100%;
}

.priceForm .item .textarea {
	padding: 0.1rem 0.2rem;
	height: 1.8rem;
}

.priceForm .item.flexbw input {
	width: 32%;
}

.priceForm .item.flexbw select {
	width: 32%;
}

.priceForm .item label:not(:last-child) {
	margin-right: 0.5rem;
}

.priceForm .item.check {
	margin: -0.2rem 0 0.38rem;
	border-bottom: 1px solid #a0a0a0;
}

.priceForm .sendBtn {
	color: #fff;
	width: 1.5rem;
	height: 0.4rem;
	border-radius: 0.4rem;
	background-color: #00479d;
}

@media(max-width:768px) {
	.priceForm .content {
		max-width: 94%;
	}

	.priceForm .content {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}

	.priceForm .ipt,
	.priceForm .select,
	.priceForm .textarea {
		height: 32px;
	}

	.priceForm .sendBtn {
		width: 120px;
		height: 35px;
	}

	.priceForm .item .textarea {
		height: 2.5rem;
	}
}