@charset "utf-8";
/* ====================公共样式========================= */


/* 头部 */
.Header-wrapper {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	/* background-color: rgb(255,255,255); */
	z-index: 99;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.Header-wrapper:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	opacity: .3;
	transition: opacity .3s;
}

.Header-wrapper.on,
.Header-wrapper:hover {
	background-color: rgb(255, 255, 255);
	/* box-shadow: 0 0 15px rgb(0 0 0 / 20%); */
}

.Header-wrapper.fixed {
	box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

.Header-wrapper.on::after,
.Header-wrapper:hover::after {
	opacity: 0;
}

.Header-container {}

.Header-container .logo {}

.Header-container .logo h1 {
	font-size: 0;

}

.Header-container .logo h1 a {
	font-size: 0;
}

.Header-container .logo h1 a img,
.Header-wrapper.on .logo h1 a img+img,
.Header-wrapper:hover .logo h1 a img+img {
	width: auto;
	height: 74px;
	display: block;
}

.Header-container .logo h1 a img+img,
.Header-wrapper.on .logo h1 a img,
.Header-wrapper:hover .logo h1 a img {
	display: none;
}


.Header-container .nav_item {
	/* margin-right: 0.2rem; */
}

.Header-container .nav_item>ul {}

.Header-container .nav_item>ul>li {
	float: left;
	position: relative;
	margin: 0 0.6rem 0 0;
}

.Header-container .nav_item>ul>li:nth-child(3) {
	position: static;
}

.Header-container .nav_item>ul>li>a {
	display: inline-block;
	font-size: 18px;
	line-height: 90px;
	color: #fff;
}

.Header-container .nav_item>ul>li>a>i {
	margin-left: 0.04rem;
}

.Header-wrapper.on .Header-container .nav_item>ul>li>a,
.Header-wrapper:hover .Header-container .nav_item>ul>li>a {
	color: #221815;
}

.Header-container .nav_item>ul>li>a:hover,
.Header-container .nav_item>ul>li.active>a {
	color: #054391 !important;
}

.Header-container .nav_item .sub_nav {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	background-color: #fff;
	display: none;
	z-index: 2;
	min-width: 100%;
	box-shadow: 0 10px 15px rgb(0 0 0 / 17%);
	border-bottom: 2px solid #054391;
}

.Header-container .nav_item>ul>li:hover .sub_nav {
	display: block;
}

.Header-container .nav_item .sub_nav>li {
	display: block;
}

.Header-container .nav_item .sub_nav>li>a {
	line-height: 24px;
	font-size: 16px;
	padding: 10px 30px 10px 20px;
	display: block;
	white-space: nowrap;
	text-align: left;
	min-width: 180px;
}

.Header-container .nav_item .sub_nav>li:hover>a {
	background-color: #054391;
	color: white;
}

.Header-container .nav_item .sub_nav>li:not(:last-child)>a {
	border-bottom: 1px solid #e5e5e5;
}

.Header-container .nav_item .pro_sub_nav {
	display: none;
	position: absolute;
	padding: 0.3rem 5%;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
	clear: both;
	overflow: hidden;
	background: #fff;
	border-top: 1px solid #eee;
	visibility: hidden;
}

.Header-container .nav_item>ul>li:hover .pro_sub_nav {
	display: flex;
	visibility: visible;
}

.Header-container .nav_item .pro_sub_nav>li {
	float: left;
	width: 25%;
	margin-bottom: 0.4rem;
	line-height: 1.75;
}

.Header-container .nav_item .pro_sub_nav>li>a {
	display: block;
	font-size: 20px;
	color: #000;
	font-family: 'OS-B';
	margin-bottom: 0.06rem;
}

.Header-container .nav_item .pro_sub_nav li a:hover {
	color: #054391;
}

.Header-container .nav_item .pro_sub_nav>li>ul {}

.Header-container .nav_item .pro_sub_nav>li>ul>li {}

.Header-container .nav_item .pro_sub_nav>li>ul>li>a {
	display: block;
	font-size: 16px;
	color: #999;
	margin-top: 0.04rem;
}

.Header-container .tool {
	color: #fff;
}

.Header-wrapper.on .Header-container .tool,
.Header-wrapper:hover .Header-container .tool {
	color: #333;
}

.Header-container .tool .search {}

.Header-container .tool .search i {
	position: relative;
	font-size: 24px;
	padding-right: 0.18rem;
	margin-right: 0.2rem;
	cursor: pointer;
}

.Header-container .tool .search i::after {
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: rgb(255, 255, 255, .3);
}

.Header-wrapper.on .Header-container .tool .search i::after,
.Header-wrapper:hover .Header-container .tool .search i::after {
	background-color: rgb(0, 0, 0, .3);
}

.Header-container .tool .language {
	position: relative;
}

.Header-container .tool .language a {}

.Header-container .tool .language i {
	font-size: 24px;
}

.Header-container .tool .language p {
	font-size: 14px;
	margin-left: 0.08rem;
	display: inline-block;
}

.Header-container .tool .language p::after {
	display: inline-block;
	margin-left: 5px;
	content: "\f0d7";
	font-size: 12px;
	font-family: 'fontawesome';
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	/* -webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); */
}

.Header-container .tool .language.on p::after {
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.Header-container .tool .language .language_down {
	display: none;
	position: absolute;
	z-index: 2;
	left: 5px;
	top: calc(100% + 14px);
	width: 100%;
	height: auto;
	background: rgba(0, 0, 0, .8);
	text-align: left;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.Header-container .tool .language .language_down a {
	display: block;
	font-size: 14px;
	padding: 10px 15px;
	color: rgba(255, 255, 255, .8);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	/* letter-spacing: 0.5px; */
	text-align: center;
}

.Header-container .tool .language .language_down a:hover {
	background-color: #054391;
}

/* 产品下拉 */
.Header-container .nav_item ul li .drop_pro {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100vw;
	background: #fff;
	padding: 0.55rem 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	/* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
	border-top: 1px solid #E5E5E5;
}

.Header-container .nav_item ul li:hover .drop_pro {
	opacity: 1;
	visibility: visible;
}

.Header-container .nav_item ul li .drop_pro .w16 {
	padding: 0 10%;
}

.Header-container .nav_item ul li .drop_pro .fl {
	width: 70%;
	padding-right: 0.3rem;
}

.Header-container .nav_item ul li .drop_pro .fl dl {
	float: left;
	/* width: calc(100% / 3); */
	width: 50%;
	margin: 0.12rem 0;
}

.Header-container .nav_item ul li .drop_pro .fl dl a {
	font-size: 16px;
	letter-spacing: 1px;
	/*font-family: "OBS";*/
	font-weight: 700;
	line-height: 24px;
	text-transform: capitalize;
	color: #242424;
}

.Header-container .nav_item ul li .drop_pro .fl dl a:hover {
	/* color: rgba(255,255,255,0.95); */
	-webkit-transform: translateX(8px);
	-ms-transform: translateX(8px);
	transform: translateX(8px);
	color: #054391;
}

.Header-container .nav_item ul li .drop_pro .fl dl dt {}

.Header-container .nav_item ul li .drop_pro .fl dl dt a {
	height: 48px;
}


.Header-container .nav_item ul li .drop_pro .fl dl dd {}

.Header-container .nav_item ul li .drop_pro .fl dl dd a {}

.Header-container .nav_item ul li .drop_pro .fr {
	width: 30%;
}

.Header-container .nav_item ul li .drop_pro .fr .pic {
	/* background-color: white; */
}

.Header-container .nav_item ul li .drop_pro .fr .pic img {
	/* width: 100%; */
	height: 100%;
	object-fit: contain;
}


/*顶部导航开关*/
#c-header .c-switch {
	display: none;
	width: 24px;
	height: 20px;
	cursor: pointer;
}

@media (max-width: 991px) {
	#c-header .c-switch {
		display: block;
	}
}

#c-header .c-switch i {
	position: relative;
	display: block;
	height: 2px;
	background: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
	top: 0;
}

#c-header .c-switch i:nth-child(3) {
	bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
	margin: 6px 0;
}

.c-open #c-header .c-switch i {
	background: #000000;
}

body.c-open #c-header .c-switch i:nth-child(2) {
	opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
	bottom: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*顶部移动端导航*/
#c-header .c-nav2 {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 0;
	line-height: 50px;
	background: #fff;
	overflow-y: auto;
	transition: all 0.5s;
	text-align: left;
}

#c-header .c-nav2>li:last-child {
	border-bottom: 1px solid #f1f1f1;
}

#c-header .c-nav2 li {
	padding: 0 20px;
	border-top: 1px solid #f1f1f1;
}

@media (max-width: 767px) {
	#c-header .c-nav2 li {
		padding: 0 4%;
	}

	#c-header .c-nav2 ul li {
		font-size: 16px;
		line-height: 45px;
	}
}

#c-header .c-nav2 li .c-title-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#c-header .c-nav2 li a {
	display: block;
	color: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	font-size: 16px;
}

#c-header .c-nav2 li i {
	font-size: 20px;
	color: #333;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#c-header .c-nav2 li .c-title-box.on i {
	transform: rotate(180deg);
}

#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on>a {
	color: #508cc9;
}

#c-header .c-nav2 li ul {
	display: none;
}

.c-open #c-header .c-nav2 {
	height: calc(100vh - 60px);
}


/* 底部 */
.Footer-wrapper {
	position: relative;
	/* background-color: #20232C; */
	background-color: #333333;
	margin-top: 1rem;
}

.Footer-top {
	padding: 0.32rem 0.84rem;
	position: absolute;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -0.64rem;
	background-color: #054391;
}

.Footer-top .fl {}

.Footer-top .fl h3 {
	font-size: 0.36rem;
	font-family: "OS-B";
}

.Footer-top .fl p {
	font-size: 0.2rem;
	font-weight: lighter;
	margin-top: 0.12rem;
}

.Footer-top .fr {}

.Footer-top .fr ul {
	display: flex;
	align-items: center;
}

.Footer-top .fr ul li {}

.Footer-top .fr ul li:first-child {
	margin-right: 0.2rem;
}

.Footer-top .fr ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.8rem;
	line-height: 0.56rem;
	font-size: 16px;
	border-radius: 0.04rem;
	border: 1px solid #fff;
	transition: all .3s;
}

.Footer-top .fr ul li:hover a {
	transform: translateY(-2px);
}

.Footer-top .fr ul li:last-child a {
	background-color: white;
	color: #054391;
}

.Footer-top .fr ul li a i {
	font-size: 24px;
	margin-right: 0.08rem;
}


.Footer-container {
	padding: 1.4rem 0 0.6rem;
}

.Footer-container .fl {
	width: 35%;
	padding-right: 5%;
}

.Footer-container .fl .foot_logo {}

.Footer-container .fl .foot_logo img {
	height: 0.74rem;
}

.Footer-container .fl .foot_info {}

.Footer-container .fl .foot_info ul {}

.Footer-container .fl .foot_info ul li {
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	color: rgb(255, 255, 255, .8);
	margin-bottom: 0.2rem;
}

.Footer-container .fl .foot_info ul li i {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 22px;
	color: #fff;
	margin-bottom: 0.1rem;
}

.Footer-container .fl .foot_info ul li:nth-child(2) {}

.Footer-container .fl .foot_info ul li:nth-child(3) {}

.Footer-container .fl .foot_info ul li span {
	display: inline-block;
}

.Footer-container .fl .foot_info ul li p {
	line-height: 1.3;
}

.Footer-container .fr {
	width: 65%;
}

.Footer-container .fr .foot_nav {
	width: 100%;
}

.Footer-container .fr .foot_nav {}

.Footer-container .fr .foot_nav li {
	margin-bottom: 0.6rem;
}
.Footer-container .fr .foot_nav li ul li{ margin-bottom:10px;}

.Footer-container .fr .foot_nav li p {
	font-size: 20px;
	font-family: 'OS-B';
	color: #fff;
	margin-bottom: 0.25rem;
}

.Footer-container .fr .foot_nav li p a {}

.Footer-container .fr .foot_nav li p i {}

.Footer-container .fr .foot_nav li .foot_nav_link {}

.Footer-container .fr .foot_nav li .foot_nav_link a {
	display: block;
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 0.12rem;
	color: rgb(255, 255, 255, .8);
}

.Footer-container .fr .foot_nav li .foot_nav_link a:hover {
	color: #054391;
}

.Footer-container .fr .foot_nav li .foot_nav_link a:last-child {
	margin-bottom: 0;
}

.Footer-container .fr .foot_link {}

.Footer-container .fr .foot_link a.mess_more {
	margin-left: 0.8rem;
	/* border: 1px solid #fff;
	background-color: transparent;
	color: white; */
}

.Footer-container .fr .foot_link a.mess_more:hover {
	background-color: white;
	color: #054391;
}

.media_ul {}

.media_ul li {
	margin-right: 10px;
}

.media_ul li:last-child {
	margin-right: 0;
}

.media_ul li a {
	display: block;
	padding: 8px;
	background-color: #fff;
	color: white;
	border-radius: 2px;
	font-size: 0;
}

.media_ul li a i {
	font-size: 18px;
	color: #494949;
}

.media_ul li:hover a i {
	color: white;
}

.media_ul li:nth-child(1):hover a {
	background-color: #1278F3;
}

.media_ul li:nth-child(2):hover a {
	background-color: #1D9BF0;
}

.media_ul li:nth-child(3):hover a {
	background-color: #FD0200;
}

.media_ul li:nth-child(4):hover a {
	background-color: #0B66C1;
}

.media_ul li:nth-child(5):hover a {
	background-color: #C0359E;
}

.media_ul li:nth-child(6):hover a {
	background-color: #D60321;
}

.Footer-copy {
	text-align: center;
	padding: 0.22rem 0;
	/* background-color: #191b20; */
	background-color: #232323;
}

.Footer-copy,
.Footer-copy a {
	font-size: 16px;
	line-height: 1.3;
	color: #fff;
}


/* 中间+共用部分 */


/* 右侧客服 s */
.online_r {
	position: fixed;
	right: 10px;
	top: 50%;
	z-index: 9;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.online_r ul {}

.online_r ul li {
	position: relative;
	box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
	cursor: pointer;
	height: 55px;
	line-height: 55px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 5px;
	opacity: 1;
}

.online_r ul li.hide {
	display: block;
	opacity: 0;
}

.online_r ul li i {
	display: block;
	font-size: 12px;
	width: 55px;
	font-size: 24px;
	color: white;
	background-color: #054391;
	text-align: center;
}

.online_r ul li:hover i {
	background-color: #E16730;
}

.online_r ul li span {
	position: absolute;
	background: #E16730;
	border-radius: 3px;
	height: auto;
	min-height: 100%;
	right: 95px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	font-size: 18px;
	color: #fff;
	white-space: nowrap;
	padding: 0 15px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.online_r ul li:hover span {
	opacity: 1;
	right: 0.6rem;
	visibility: visible;
}

.online_r ul li span .pic {
	padding: 15px 0;
}

.online_r ul li span .pic img {
	width: 100px;
	max-width: none;
}

.online_r ul li span:before {
	position: absolute;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-left: 10px solid #E16730;
	right: -15px;
	top: 50%;
	margin-top: -10px;
}

.online_r ul li.back_top i {
	background: #054391;
}

/* 右侧客服 e */

/* ind_banner */
.ind_banner .swiper-pagination-bullet {
	background-color: white;
	opacity: 1;
}

.ind_banner .swiper-pagination-bullet-active {
	background-color: #054391;
}

.ind_banner .ban_txt {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 0.4rem;
	color: white;
	line-height: 1.45;
}

.ind_banner .ban_txt .w16 {
	padding-left: 0.8rem;
}

.ind_banner .ban_txt h3 {
	font-family: 'OS-B';
}

.ind_banner .ban_txt p {}

.ind_banner .ban_txt a.com_more {
	margin-top: 0.3rem;
}

/* .ind_banner .ban_txt a.com_more:hover{
	background-color: white;
	color: #054391;
} */

/* swiper-pro s */
.swiper-pro.swiper-button-prev {
	left: -50px;
}

.swiper-pro.swiper-button-next {
	right: -50px;
}

.swiper-pro.swiper-button-prev,
.swiper-pro.swiper-button-next {
	width: 50px;
	height: 50px;
	color: #212121;
	background-color: white;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.swiper-pro.swiper-button-prev::after,
.swiper-pro.swiper-button-next::after {
	font-family: 'iconfont';
	content: "\e63d";
	font-size: 20px;
	color: #054391;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.swiper-pro.swiper-button-prev::after {
	transform: rotateY(180deg);
}

.swiper-pro.swiper-button-prev:hover,
.swiper-pro.swiper-button-next:hover {
	background-color: #054391;
}

.swiper-pro.swiper-button-prev:hover::after,
.swiper-pro.swiper-button-next:hover::after {
	color: white;
}

/* swiper-pro e */

/* com_more s */
.com_more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	font-size: 16px;
	padding: 0.14rem 0.36rem;
	color: white;
	border: 1px solid #054391;
	color: #054391;
}

.com_more i {
	margin-left: 0.12rem;
}

.com_more:hover,
.com_more.on {
	background-color: #054391;
	border-color: #054391;
	color: white;
}

.com_more.white {
	border-color: white;
	color: white;
}

.com_more.white:hover {
	background-color: #fff;
	color: #054391;
}

/* com_more e */

/* tc_search s */
.tc_search {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10001;
	pointer-events: none;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.tc_search.act {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	display: block;
	pointer-events: auto;
}

.tc_search form {
	width: 9.6rem;
	max-width: 80%;
	margin: 0 auto;
	padding: 0 20px;
	border-bottom: 2px solid #eee;
	height: 0.7rem;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.tc_search input {
	width: 80%;
	height: 0.7rem;
	font-size: 0.34rem;
	color: #c1c1c1;
	box-shadow: none;
	-webkit-appearance: none;
	float: left;
	border-right: 0;
	background: none;
}

.tc_search input::placeholder {
	color: #c1c1c1;
}

.tc_search button {
	max-width: 20%;
	height: 0.7rem;
	border: 0;
	line-height: 0.7rem;
	color: #c1c1c1;
	cursor: pointer;
	text-transform: uppercase;
	float: right;
	font-size: 0.48rem;
	background-color: transparent;
}

.tc_search .search_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .85);
	z-index: 0;
}

/* tc_search e */

/* i_tit s */
.i_tit {
	color: #535353;
	line-height: 1.3;
	margin-bottom: 0.5rem;
}

.i_tit h3 {
	font-size: 0.42rem;
	text-transform: uppercase;
}

.i_tit p {
	font-size: 18px;
	margin-top: 0.12rem;
	color: #999;
}

.i_tit.white,
.i_tit.white p {
	color: white;
}

/* i_tit e */

/* n_ban s */
.n_ban {
	position: relative;
	height: 5rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.n_ban .ban_txt {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #fff;
	line-height: 1.3;
}

.n_ban .ban_txt .crumb {
	/*font-size: 0;*/
}

.n_ban .ban_txt .crumb a {
	font-size: 14px;
}

.n_ban .ban_txt .crumb i {
	font-size: 14px;
	margin: 0 0.06rem;
}

.n_ban .ban_txt .crumb a:last-child {
	opacity: 0.8;
}

.n_ban .ban_txt .tit {
	font-size: 0.36rem;
	font-family: 'OS-B';
	margin-top: 0.04rem;
}

.n_ban .sub_nav {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.5);
	text-align: center;
}
.n_ban .sub_nav .tit{
	display: none;
	color: white;
	padding: 0 15px;
	font-size: 14px;
	height: 42px;
	background: #054391;
	align-items: center;
	color: #fff;
}
.n_ban .sub_nav .tit h3{
	font-size: 20px;
	text-align: left;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}
.n_ban .sub_nav .tit i{
	
}

.n_ban .sub_nav ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.n_ban .sub_nav ul li {
	flex: 1;
	position: relative;
}

.n_ban .sub_nav ul li a {
	display: block;
	min-width: 240px;
	font-size: 18px;
	color: #3b3b3b;
	line-height: 60px;
	text-align: center;
	padding: 0 0.2rem;
}

.n_ban .sub_nav ul li.active a,
.n_ban .sub_nav ul li:hover a {
	color: #fff;
	background-color: #054391;
}

/* n_ban e */

/* ny_tit s */
.ny_tit {
	margin-bottom: 0.3rem;
}

.ny_tit h3 {
	font-size: 0.36rem;
	line-height: 1.3;
	color: #054391;
	font-family: 'OS-B';
	text-transform: uppercase;
}

.ny_tit h3::after {
	content: "";
	display: block;
	width: 0.8rem;
	height: 0.04rem;
	background-color: #054391;
	margin-top: 0.16rem;
}

.ny_tit.white h3 {
	color: white;
}

.ny_tit.white h3::after {
	background-color: white;
}

.ny_tit.tac h3{
	text-align: center;
}
.ny_tit.tac h3::after{
	margin: 0.16rem auto 0;
}

/* ny_tit e */

/* pst_pic s */
.pst_pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* pst_pic e */


/* com_page s */
.com_page {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0.45rem;
}

.com_page a,
.com_page span {
	width: .42rem;
	height: .42rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(222, 222, 222);
	font-size: .14rem;
	color: #333;
	background: #fff;
	margin: 0 .05rem;
	transition: all .3s;
	display:inline-block;
	font-size:16px;
	text-align:center;
	width:40px;
	height:40px;
	line-height:40px;
}

.com_page span.current{ border: 1px solid rgb(5, 67, 145); background: #054391; color:#fff}

.com_page a.page-num-current,
.com_page a:hover {
	border-color: #054391;
	background: #054391;
	color: #fff
}

/* com_page e */

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
	/* 1600 × (900/1024/1200) */
}

@media all and (max-width:1599px) {
	/* 1440 × (900/1050) */
}

@media all and (max-width:1439px) {
	/* 1360 × (768) */
}

@media all and (max-width:1359px) {
	/* 1280 × (800/854/1024) */
}

@media all and (max-width:1279px) {
	/* 1152 × (864) */
}

@media all and (max-width:1151px) {
	/* 1024 × (600/768) */
	.Header-container{
		height: 60px;
	}
	.Header-container .logo h1 a img{
		height: 37px !important;
	}
	.Header-wrapper.on .logo h1 a img{
		transform: none;
	}
	.Header-container .nav_item{
		display: none;
	}
	.mt{margin-top: 60px;}
	
	#c-header .c-switch{
		display: block;
		margin-left: 0.36rem;
	}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */
	.pc {
		display: none;
	}

	.mb {
		display: block;
	}
	
	.i_tit h3{
		font-size: 0.48rem;
	}
	.i_tit p{
		font-size: 16px;
	}
	
	.online_r{
		display: none;
	}
	
	.com_more{
		padding: 0.2rem 0.45rem;
	}
	
	.Footer-wrapper{
		margin-top: 0;
	}
	.Footer-top{
		display: none;
	}
	.Footer-container{
		padding: 0.6rem 0;
	}
	.Footer-container .fl,.Footer-container .fr{
		width: 100%;
	}
	.Footer-container .fl .foot_info ul li{
		font-size: 14px;
	}
	.Footer-container .fr .foot_nav li{
		width: 100%;
		border-bottom: 1px solid rgb(255,255,255,.8);
		margin-bottom: 0;
	}
	.Footer-container .fr .foot_link{
		flex-direction: column;
		align-items: flex-start;
		margin-top: 0.45rem;
	}
	.Footer-container .fr .foot_nav li .foot_nav_link{
		display: none;
		padding-bottom: 0.25rem;
	}
	
	.Footer-container .fr .foot_nav li p {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 18px;
		padding: 0.3rem 0;
		margin-bottom: 0;
	}
	.Footer-container .fr .foot_nav li .foot_nav_link a{
		line-height: 1.5;
		margin-bottom: 0.15rem;
	}
	
	.n_ban .sub_nav .tit{
		display: flex;
	}
	.n_ban .sub_nav ul{
		position: absolute;
		top: 42px;
		left: 0;
		background: #fff;
		display: none;
		box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 15%);
		max-width: 100%;
		z-index: 9;
	}
	.n_ban .sub_nav ul li{
		flex: none;
		width: 100%;
		border-bottom: 1px solid rgba(0,0,0,.05);
	}
	.n_ban .sub_nav ul li a{
		display: block;
		width: 100%;
		padding: 0 5%;
		font-size: 16px;
		line-height: 42px;
	}
	.n_ban .sub_nav .tit i{
		transition: all .5s ease;
		transform: rotate(-90deg);
	}
	.n_ban .sub_nav .tit.on i{
		transform: rotate(90deg);
	}
	
	.n_ban .ban_txt .tit{
		font-size: 0.4rem;
		margin-top: 0.08rem;
	}
	
	.ny_tit{
		margin-bottom: 0.45rem;
	}
	.ny_tit h3{
		font-size: 0.4rem;
	}
	.ny_tit h3::after,.ny_tit.tac h3::after{
		margin-top: 0.2rem;
	}
	
	.com_page a, .com_page span{
		width: 0.64rem;
		height: 0.64rem;
	}
	
	
}

@media all and (max-width:768px) {
	.tc_search form{
		width: 92%;
		max-width: 92%;
		padding: 0 0.2rem;
		margin-bottom: 1px;
		height: 0.8rem;
		border-width: 1px;
	}
	.tc_search input{
		font-size: 0.3rem;
		height: 0.8rem;
	}
}

@media all and (max-width:640px) {
	/* 移动终端以上 360 适配 */
	.swiper-pro.swiper-button-prev, .swiper-pro.swiper-button-next{
		width: 42px;
		height: 42px;
	}
	.swiper-pro.swiper-button-prev::after, .swiper-pro.swiper-button-next::after{
		font-size: 16px;
	}
	.n_ban .sub_nav .tit h3{
		font-size: 16px;
	}
	.n_ban .sub_nav ul li a{
		font-size: 14px;
	}
}

@media all and (max-width:480px) {
	.i_tit p,.Footer-copy, .Footer-copy a{
		font-size: 14px;
	}
}

@media all and (max-width:420px) {}

@media all and (max-width:376px) {}