@charset "utf-8";
/* ====================公共样式========================= */

/* 头部 */
.zdHead {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 4%;

	box-sizing: border-box;
	z-index: 99;
	transition: all 0.28s;
}

.zdHead_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.zdHead_logo {

	transition: all 0.48s;
}

.zdHead_logo a {
	display: block;
}

.zdHead_logo img {
	max-width: 100%;
	height: 110px;
}

.zdHead_logo_c {
	display: none;
}

.zdHead_nav li {
	position: relative;
	display: inline-block;
	padding: 0 0.25rem;
}

.zdHead_nav a {
	line-height: 68px;
	color: #fff;
	font-size: 18px;
	opacity: 1;
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
	transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.zdHead_nav ul li>a.hover{
	color: #fff;
}

.zdHead_nav li .sub {
	position: absolute;
	top: 38px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	background: #fff;
	border-radius: 6px;
	min-width: 189px;
	padding: 10px 0 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.48s;
	z-index: -1;
}

/* .zdHead_nav li:last-child .sub {
	left: auto;
	transform: translateX(0);
	right: 0;
} */

.zdHead_nav li:hover .sub {
	opacity: 1;
	visibility: inherit;
	z-index: 999;
	top: 68px;
}

.zdHead_nav li .sub a {
	color: #333;
	display: block;
	opacity: 1;
	text-align: center;
	font-size: 18px !important;
	border-bottom: 1px solid #eee;
	line-height: 2;
	padding: 10px 0;
}

.zdHead_nav li .sub a:last-child {
	border-bottom: 0;
}

.zdHead_nav li .sub a:hover{
	color: #c40025;
}

.zdHead_nav a:hover {
	opacity: 1;
}

.zdHead.bg,
.zdHead.on {
	padding: 16px 50px;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.zdHead.bg .zdHead_logo img,
.zdHead.on .zdHead_logo img {
	height: 60px;
}

.zdHead.bg .zdHead_logo_c,
.zdHead.on .zdHead_logo_c {
	display: block;
}

.zdHead.bg .zdHead_logo_w,
.zdHead.on .zdHead_logo_w {
	display: none;
}

.zdHead.bg .zdHead_nav a,
.zdHead.on .zdHead_nav a {
	color: #333;
	opacity: 1;
}

.zdHead.bg .zdHead_nav a:hover,
.zdHead.on .zdHead_nav a:hover {
	color: #c40025;
}

.zdHead.bg .zdHead_nav .hover,
.zdHead.on .zdHead_nav .hover {
	color: #c40025;
}


.zdHead .nav_r {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: 25px;
}

.zdHead .language {
	position: relative;
	text-align: center;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding-left: 0.18rem;
}

.zdHead .language::before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	left: 0;
	top: 0;
	margin-left: -0.5px;
	background-color: #fff;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .language>a {
	position: relative;
	color: white;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	letter-spacing: 0.5px;
}

.zdHead .language>a: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;
}

.zdHead .language.on>a:after {
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.zdHead .language>a img {
	width: auto;
	height: 30px;
	margin-right: 0.1rem;
}

.zdHead .language div {
	display: none;
	position: absolute;
	z-index: 2;
	left: 5px;
	top: calc(100% + 20px);
	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;
}

.zdHead.on .language div {
	top: calc(100% + 35px);
}


.zdHead .language div a {
	display: block;
	font-size: 16px;
	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;
}

.zdHead .language div a:hover {
	background-color: #c40025;
	color: white;
}

.zdHead .search {
	position: relative;
	margin-right: 0.18rem;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .search a {
	display: block;
}

.zdHead .search a img {
	height: 28px;
}

#formsearh {
	position: absolute;
	z-index: 3;
	top: calc(100% + 20px);
	right: -20px;
	width: 320px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 2px;
	overflow: hidden;
	display: none;
	border: 1px solid #c40025;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.zdHead.on #formsearh {
	top: calc(100% + 36px);
}

#formsearh input[type="text"] {
	float: left;
	font-size: 16px;
	height: 42px;
	line-height: 42px;
	padding-left: 15px;
	width: 80%;
	border: none;
	background-color: transparent;
	color: #333;
	box-sizing: border-box;
	overflow: hidden;
}

#formsearh input::-webkit-input-placeholder,
#formsearh textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .5);
	color: #333;
}

#formsearh button {
	float: right;
	width: 20%;
	height: 42px;
	border: none;
	background: url(../images/icon-search-w.png) no-repeat center center;
	background-size: auto 50%;
	color: #fff;
	border-left: 1px solid rgba(255, 255, 255, .2);
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #c40025;
}

.zdHead.on .language>a {
	color: #333;
}

.zdHead.on .language::before {
	background-color: #333;
}

.zdHead .nav_r img.black,
.zdHead.on .nav_r img {
	display: none;
}

.zdHead.on .nav_r img.black {
	display: block;
}

/* 手机导航 s */
.mobile-inner-header-icon {
	color: #ffffff;
	background: #c40025;
	height: 60px;
	font-size: 24px;
	text-align: center;
	float: right;
	width: 60px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 30px) / 2);
	top: calc((100% - 5px) / 2);
	width: 30px;
	height: 3px;
	background-color: #fff;
	transition-duration: 0.5s;
}

.mobile-inner-header-icon span:nth-child(1) {
	transform: translateY(10px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
	transform: translateY(-10px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(3) {
	width: 20px;
}

.mobile-inner-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}

.mobile-inner-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}

.mobile-inner-nav{
	background: #c40025;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 55px;
	left: 0px;
	display: none ;
	overflow-y: auto;
	z-index: 2;
}

.active_mobile span:nth-child(3) {
	opacity: 0;
}

.active_mobile span:nth-child(1) {
	transform: rotate(45deg);
	width: 30px;
}

.active_mobile span:nth-child(2) {
	transform: rotate(-45deg);
	width: 30px;
}

.header-search{
	padding: 0 10px;
}
.header-search form{
	height: 40px;
	border-radius: 20px;
	border: 1px solid #e5e5e5;
	position: relative;
	width: 100%;
	margin: 0.3rem 0 0.2rem;
}
.header-search form input{
	font-size: 16px;
	color: #fff;
	height: 38px;
	line-height: 38px;
	padding: 0 0.2rem;
	box-shadow: none;
	-webkit-appearance: none;
	border-right: 0;
	background: none;
	width: 100%;
}
.header-search form input::placeholder{
	color: white;
	font-size: 16px;
}
.header-search form button{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 38px;
	line-height: 38px;
	border: 0;
	background-color: transparent;
	color: white;
	font-size: 18px;
}

.subNavBox1 {
	width: 100%;
}
.subNav1 {
	display: block;
	width: 100%;
	border-bottom: 1px solid #fff;
	line-height: 50px;
	font-size: 18px;
	color: #555;
	padding: 0 15px;
	background: url(../images/jia1.png) no-repeat 96% center;
	color: #fff;
}
.subNav1 a{
	display: block;
	margin-right: 60px;
}


.currentDt1 {
	background: url(../images/jian1.png) no-repeat 96% center #ff4632;
}

.navContent1 {
	display: none;
	border-bottom: 1px solid #d6d6d6;
	padding: 10px 0;
	background: #ff4632;
	overflow: hidden;
}

.navContent1 li {
	line-height: 40px;
}

.navContent1 li a {
	display: block;
	font-size: 16px;
	color: #fff;
	padding-left: 40px;
}

.so-mobile-fl {
	width: 100%;
	padding: 10px 10px 10px 40px;
	font-size: 0;
}

.so-mobile-fl a{
	width: 50%;
	padding-right: 2%;
	display: inline-block;
	padding-bottom: 10px;
	color: #fff;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	/* padding: 10px 10px 10px 40px; */
}
.so-mobile-fl p{
	padding-bottom: 10px;
}
.so-mobile-fl p a{
	width: 100%;
	margin-bottom: 0;
}


.xg-mobile-bt {
	font-size: 16px;
	padding: 10px 20px;
}

.xg-mobile-bt a {
	color: #fff;
	position: relative;
	padding-left: 20px;
}

.xg-mobile-bt a:before {
	content: '';
	width: 15px;
	height: 15px;
	background: url(../images/m_anniu1.png) no-repeat center;
	position: absolute;
	left: 0;
	top: 2px;
	background-size: cover;
}

/* 手机导航 e */



/* 底部 */
.Footer-wrapper{}
.Footer-container{
	background-color: #f1f1f1;
	padding: 0.3rem 0 0.55rem;
}
.Footer-container .fl{
	width: 25%;
	
}
.Footer-container .fl .foot_logo{}
.Footer-container .fl .foot_logo img{}
.Footer-container .fl .txt{
	margin-top: 0.3rem;
}
.Footer-container .fl .txt p{
	position: relative;
	color: #000000;
	font-size: 16px;
	line-height: 24px;
	padding-left: 30px;
	margin-top: 15px;
}
.Footer-container .fl .txt p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}

.Footer-container .fl .txt p:nth-child(1):after {
    background: url(../images/foot_address.png) no-repeat center/100%;
    width: 12px;
    height: 23px;
}
.Footer-container .fl .txt p:nth-child(2):after {
    background: url(../images/foot_phone.png) no-repeat center/100%;
    width: 20px;
    height: 20px;
}
.Footer-container .fl .txt p:nth-child(3):after {
    background: url(../images/foot_fax.png) no-repeat center/100%;
    width: 22px;
    height: 22px;
}
.Footer-container .fl .f_select{
	width: 80%;
	height: 40px;
	margin-top: 0.2rem;
	position: relative;
	cursor: pointer;
}
.Footer-container .fl .f_select .note{
	color: #787878;
	background: url(../images/sanjiao.png) no-repeat 94% center;
	font-size: 16px;
	line-height: 38px;
	padding-left: 25px;
	border: solid 1px #787878;
}
.Footer-container .fl .f_select .f_xl{
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	border: solid 1px rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.8);
	/* height: 150px; */
	overflow-y: auto;
	display: none;
}
.Footer-container .fl .f_select .f_xl a{
	display: block;
	padding-left: 25px;
	color: #333;
	font-size: 16px;
	line-height: 40px;
}
.Footer-container .fl .f_select .f_xl a:hover{
	background-color: #c40025;
	color: white;
}

.Footer-container .fr{
	width: 75%;
	padding-top: 0.6rem;
}
.Footer-container .fr .foot_nav_item{
	float: left;
	width: 80%;
}
.Footer-container .fr .foot_nav_item ul{}
.Footer-container .fr .foot_nav_item ul li{}
.Footer-container .fr .foot_nav_item ul li .foot_menu{
	color: #2a2a2a;
	margin-bottom: 0.2rem;
	font-weight: bold;
	font-size: 16px;
}
.Footer-container .fr .foot_nav_item ul li .foot_drop{}
.Footer-container .fr .foot_nav_item ul li .foot_drop a{
	display: block;
	font-size: 16px;
	color: #656565;
	margin-bottom: 0.12rem;
}
.Footer-container .fr .foot_nav_item ul li .foot_drop a:hover{
	color: #c40025;
}
.Footer-container .fr .foot_nav_item ul li .foot_drop a:last-child{
	margin-bottom: 0;
}

.Footer-container .fr .foot_wx{
	float: right;
	width: 20%;
}
.Footer-container .fr .foot_wx .top{}
.Footer-container .fr .foot_wx .top img{
	width: 160px;
}
.Footer-container .fr .foot_wx .top p{
	text-align: center;
	font-size: 16px;
	color: #2a2a2a;
	margin-top: 0.15rem;
}
.Footer-container .fr .foot_wx .bot{
	margin-top: 0.2rem;
	width: 100%;
}
.Footer-container .fr .foot_wx .bot ul{
	text-align: center;
	font-size: 0;
}
.Footer-container .fr .foot_wx .bot ul li{
	display: inline-block;
	margin-right: 10px;
}
.Footer-container .fr .foot_wx .bot ul li a{
	display: inline-block;
	width: 38px;
	height: 38px;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
	background-color: #bdbdbd;
}
.Footer-container .fr .foot_wx .bot ul li a img{
	display: inline-block;
}
.Footer-container .fr .foot_wx .bot ul li:last-child{
	margin-right: 0;
}

.Footer-copyright{
	text-align: center;
	background-color: #404040;
	padding: 0.3rem 0;
	font-size: 16px;
	line-height: 1.3;
	color: white;
}
.Footer-copyright a{
	margin-left: 5px;
}
/* 中间+共用部分 */

/* 首页标题 */
.ind_tit{
	text-align: center;
}
.ind_tit h3{
	font-size: 45px;
	color: #262626;
	font-weight: 700;
}
.ind_tit h3 span{
	color: #c40025;
}
.ind_tit p{
	font-size: 18px;
	line-height: 1.3;
	color: #2a2a2a;
	margin-top: 0.25rem;
}

.ind_tit2{
	overflow: hidden;
}
.ind_tit2 .fl{
	position: relative;
	padding-left: 0.25rem;
}
.ind_tit2 .fl:before{
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #c40025;
}
.ind_tit2 p{
	color: #333333;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 30px;
}
.ind_tit2 h3{
	color: #c40025;
	margin-top: 10px;
	font-size: 36px;
	font-weight: bold;
}

.ind_tit2 ul{}
.ind_tit2 ul li{}
.ind_tit2 ul li a{
	position: relative;
	padding: 0 0.3rem;
	font-size: 20px;
	color: #262626;
	line-height: 1;
}
.ind_tit2 ul li.active a,.ind_tit2 ul li:hover a{
	color: #c40025;
}
.ind_tit2 ul li a::after{
	position: absolute;
	content: "";
	right: 0;
	top: 5%;
	height: 90%;
	width: 2px;
	background-color: #262626;
}
.ind_tit2 ul li:last-child a{
	padding-right: 0;
}
.ind_tit2 ul li:last-child a::after{
	display: none;
}

/* 首页分页器 */
.ind_page.swiper-pagination-horizontal.swiper-pagination .swiper-pagination-bullet{
	margin: 0 0.1rem;
	bottom: 0;
	width: 0.18rem;
	height: 0.18rem;
	background-color: transparent;
	border: 2px solid #aaaaaa;
	border-radius: 50%;
	opacity: 1;
}
.ind_page.swiper-pagination-horizontal.swiper-pagination .swiper-pagination-bullet-active{
	border-color: #c40025;
	background-color: #c40025;
}

/* 首页more */
.ind_more{
	display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-webkit-justify-content: center;-ms-flex-pack: center;justify-content: center;
	height: 50px;
	font-size: 18px;
	color: #ffffff;
	border-radius: 25px;
	width: 180px;
	background-color: #c40025;
	margin: 0 auto;
	font-weight: normal;
}
.ind_more img{
	margin-left: 0.12rem;
}

/* 首页banner */
/* banner */
.ind_banner {
	position: relative;
	height: 100vh;
}

.ind_banner img {
	width: 100%;
	object-fit: cover;
}

.ind_banner .swiper {
	height: 100%;
}

.banA {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.ind_banner .swiper-pagination-bullet {
	background-color: rgb(255, 255, 255);
}

.ind_banner .swiper-pagination-bullet-active,
.ind_mb_banner .swiper-pagination-bullet-active {
	background-color: #c40025;
}

.banA::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: hsl(0 0% 0% / 0.58);
}

.banA video {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	top: 0;
	left: 50%;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.banBg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, .18);
}

.banBg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.banTxt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10%;
	z-index: 99;
	width: 50%;
}


.banTxt .banTxt_en {
	color: #fff;
	display: block;
	text-transform: capitalize;
	font-weight: bold;
	font-size: 64px;
	opacity: 0.15;
	line-height: 1;
	font-style: italic;

}

.banTxt .banTxt_cn {
	color: #fff;
	font-size: 42px;
	line-height: 1.8;
	margin-top: -18px;
	display: block;
	letter-spacing: 1px;
	margin-bottom: 18px;
	/* text-shadow: 2px 4px 6px rgb(125,179,40,.5); */
	text-shadow: 2px 4px 8px rgb(0, 0, 0, .4);
	font-weight: bold;
}


.banTxt .banTxt_p {
	color: #fff;
	font-size: 18px;
	line-height: 2.1;
	max-width: 72%;
	margin-bottom: 42px;
	text-align: justify;
	letter-spacing: 0.5px;
	text-shadow: 2px 4px 8px rgb(0, 0, 0, .4);
	text-transform: uppercase;
}

.zdMore {
	position: relative;
	margin-top: 45px;
}

.zdMore .more {
	position: relative;
	width: 238px;
	height: 58px;
	line-height: 58px;
	border-radius: 35px;
	padding: 0 48px;
	font-size: 15px;
	letter-spacing: 1px;
	box-sizing: border-box;
	background-color: #fff;
	color: #c40025;
	text-transform: capitalize;
	display: inline-block;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.zdMore svg {
	width: 14px;
	height: 12px;
	vertical-align: middle;
	pointer-events: none;
	-webkit-transition: -webkit-transform .25s ease-in-out;
	transition: -webkit-transform .25s ease-in-out;
	-o-transition: .25s transform ease-in-out;
	transition: transform .25s ease-in-out;
	transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}


.banner .zdMore svg {
	width: 18px;
	height: 18px;
	margin-left: 13%;
}

.banner .zdMore svg path {
	stroke: none;
	fill: #c40025;
}

.banner .zdMore .more:hover svg {
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}

.banner .zdMore.blue svg path {
	fill: #fff;
}

.zdMore svg path {
	stroke: #c40025;
	fill: none;
	-webkit-transition: stroke .25s ease-out;
	-o-transition: stroke .25s ease-out;
	transition: stroke .25s ease-out;
}

.zdMore span {
	content: "";
	width: 150px;
	height: 100%;
	position: absolute;
	top: -1;
	right: 0;
	background-color: #fff;
	border-radius: 35px;
	display: block;
	-webkit-transition: background-color .25s ease-out, -webkit-transform .25s ease-out;
	transition: background-color .25s ease-out, -webkit-transform .25s ease-out;
	-o-transition: .25s background-color ease-out, .25s transform ease-out;
	transition: background-color .25s ease-out, transform .25s ease-out;
	transition: background-color .25s ease-out, transform .25s ease-out, -webkit-transform .25s ease-out;
	z-index: -1;
	pointer-events: none;
}

.zdMore .more:hover svg {
	-webkit-transform: translateX(25px);
	transform: translateX(25px);
}

.zdMore .more:hover span {
	-webkit-transform: translateX(25px);
	transform: translateX(25px);
}


.zdMore.center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.zdMore.blue span {
	background: #c40025;
}

.zdMore.blue .more {
	background: #c40025;
	color: #Fff;
	font-size: 16px;

}

.zdMore.blue svg path {
	stroke: #fff;
}

.zdMore.blue .more span {

	color: #Fff;
}


.zdMore.sm .more {
	width: 198px;
	padding: 0 28px;
	line-height: 50px;
	height: 50px;
}

.zdMore.border .more {
	border: 1px solid #0072be;
	background-color: transparent;
}

.zdMore.border.green .more {
	border: 1px solid #c40025;
	color: #c40025;
}

.zdMore.border.green svg path {
	stroke: #c40025;
}

.zdMore.inner {
	margin-top: 38px;
}

.zdMore.inner .more {
	width: 158px;
	padding: 0 24px;
	font-size: 13px;
	height: 40px;
	line-height: 40px;
}

.zdMore.inner .more:hover svg {
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
}

#ter1 {
    position: relative;
    top: -100px;
}
/* banner  end */

/* 公共banner s */
.com_ban{
	/* height: 100vh; */
	position: relative;
	overflow: hidden;
}
.com_ban img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ban_txt{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
	line-height: 1.8;
}
.ban_txt h3{
	font-size: 46px;
}
.ban_txt p{
	font-size: 26px;
	text-transform: capitalize;
}

.ban_nav{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.ban_nav ul{
	background: rgba(255, 255, 255, 0.88);
}
.ban_nav ul li{
	display: inline-block;
	padding: 0.25rem 0;
	text-align: center;
	font-size: 0.2rem;
	position: relative;
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.ban_nav ul li::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 35%;
    width: 1px;
    background: #cecece;
    transform: translateY(-50%);
}
.ban_nav ul li:last-child::after{
	display: none;
}
.ban_nav ul li a{
	display: block;
	color: #333;
}
.ban_nav ul li:hover a,.ban_nav ul li.active a{
	color: #c40025;
}
/* 公共banner e */

/* 公共标题 s */
.ab_tit{
	text-align: center;
}
.ab_tit.tal{
	text-align: left;
}
.ab_tit h3{
	font-size: 0.42rem;
	color: #c40025;
	font-weight: 600;
	line-height: 1.6;
}
.ab_tit p{
	color: #333;
	font-weight: bold;
	font-size: 0.26rem;
	line-height: 1.4;
	text-transform: uppercase;
}
/* 公共标题 e */

/* 公共分页器 s */
.round-page.swiper-pagination-bullets.swiper-pagination-horizontal{
	bottom: 0;
}
.round-page.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet{
	display: inline-block;
	width: 0.16rem;
	height: 0.16rem;
	border: 1px solid #1d1d1d;
	margin: 0 0.05rem;
	border-radius: 50%;
	background-color: white;
	cursor: pointer;
}
.round-page.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active{
	border-color: #c40025;
}
/* 公共分页器 e */

/* 分页条 s */
.com-page{
	padding: 0.2rem 0;
}
.com-page a,.com-page span{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid #bbbbbb;
	color: #333;
	font-size: 16px;
	margin: 0 3px;
	
}
.com-page a.page-num-current,.com-page a:hover{
	background: #c40025;
	color: #fff;
	border: 1px solid #c40025;
}
.com-page a i{
}

/* 右侧客服 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: #99999d;
	text-align: center;
}
.online_r ul li:hover i{
	background-color: #c40025;
}
.online_r ul li span{
	position: absolute;
	background: #c40025;
	border-radius: 3px;
	height: 100%;
	right: 95px;
	top: 0;
	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:before {
	position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 10px solid #c40025;
    right: -15px;
    top: 50%;
    margin-top: -10px;
}
.online_r ul li.back_top{
	box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
	background: #c40025;
}
/* 右侧客服 e */

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900/1024/1200) */
	.zdHead_nav li {
		padding: 0 0.28rem;
	}
}

@media all and (max-width:1599px) {
    /* 1440 × (900/1050) */
	.zdHead_nav li {
		padding: 0 0.2rem;
	}
	
	.zdHead .nav_r {
		margin-left: 0.2rem;
	}
	
	
}

@media all and (max-width:1439px) {
    /* 1360 × (768) */
}

@media all and (max-width:1359px) {
    /* 1280 × (800/854/1024) */
	.ind_pro .pic_view ul li a{
		padding: 0.4rem 5%;
	}
	
	.ind_tit2 p{
		font-size: 26px;
	}
	.ind_tit2 h3{
		font-size: 32px;
	}
}

@media all and (max-width:1279px) {
    /* 1152 × (864) */
	.zdHead_nav a {
		font-size: 16px;
	}
	
	.banTxt .banTxt_cn{
		font-size: 36px;
		margin-top: 0;
	}
	.banTxt .banTxt_p{
		font-size: 16px;
		max-width: 100%;
	}
	
	.Footer-container .fl{
		width: 60%;
	}
	.Footer-container .fr{
		width: 40%;
	}
	.Footer-container .fr .foot_wx{
		width: auto;
	}
	.Footer-container .fr .foot_nav_item ul{
		display: none;
	}
	
	.ab_his .con .swiper{
		margin-left: 4%;
	}
}

@media all and (max-width:1151px) {
    /* 1024 × (600/768) */
	.head_r {
		display: none;
	}
	.headMenu{
		display: block;
	}
	.zdHead,.zdHead.pro_on{
		padding: 0 0 0 4% !important;
		background-color: white;
	}
	
	.zdHead_box{
		height: 60px;
	}
	.head_r{
		margin-right: 30px;
	}
	.zdHead_logo img,.zdHead.on .zdHead_logo img{
		height: 45px;
	}
	.zdHead_logo_c{
		display: block;
	}
	.zdHead_logo_w{
		display: none;
	}
	.zdHead .search a img{
		height: 20px;
	}
	.mt{
		margin-top: 60px;
	}
	
	.com_ban{
		height: 36vh;
	}
	.com_ban .txt{
		padding-top: 20%;
	}
	
	.mobile-inner-header-icon{
		display: block;
	}
	
	.banTxt{
		width: 92%;
		left: 4%;
		text-align: center;
	}
	.banTxt .banTxt_p{
		text-align: center;
	}
	.zdMore.blue .more{
		margin: 0 auto;
	}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
   .pc {
   	display: none;
   }
   .mb {
   	display: block;
   }
   .com_more{
   	width: 120px;
   	height: 32px;
   	line-height: 32px;
   	font-size: 16px;
   }
   
   .ind_tit h3{
	   font-size: 36px;
   }
   
   .ind_tit2 .fl:before{
	   width: 2px;
   }
   .ind_tit2 p{
	   font-size: 22px;
   }
   .ind_tit2 h3{
	   font-size: 18px;
   }
   
   .ind_page.swiper-pagination-horizontal.swiper-pagination .swiper-pagination-bullet{
	   border-width: 1px;
	   width: 0.24rem;
	   height: 0.24rem;
   }
   
   .Footer-container{
	   padding: 0.6rem 0;
   }
   
   .ban_nav{
	   display: none;
   }
   .ban_txt{
	   line-height: 1.5;
   }
   .ban_txt h3{
	   font-size: 36px;
   }
   .ban_txt p{
	   font-size: 22px;
   }
}


@media all and (max-width:768px) {
	.subNav1 a{
		margin-right: 40px;
	}
	
	.banTxt .banTxt_cn{
		font-size: 0.42rem;
		line-height: 1.6;
		margin-bottom: 0.2rem;
	}
	.banTxt .banTxt_p{
		letter-spacing: 0;
		font-size: 15px;
		margin-bottom: 0.45rem;
	}
	.zdMore{
		margin-top: 0.4rem;
	}
	.zdMore.blue .more{
		width: 3.2rem;
		height: 0.8rem;
		line-height: 0.8rem;
		padding: 0;
	}
	.banner .zdMore svg{
		margin-left: 3px;
	}
}

@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
	.subNav1 a{
		margin-right: 30px;
	}
	
	.ind_tit h3{
		font-size: 32px;
	}
	.ind_tit p{
		font-size: 16px;
	}
	
	.ind_more{
		font-size: 16px;
		width: 160px;
		height: 42px;
		line-height: 42px;
	}
	.ind_more img{
		height: 18px;
	}
	.ind_tit2 ul li a{
		font-size: 16px;
		padding: 0 0.2rem;
	}
	.ind_tit2 ul li a::after{
		width: 1px;
	}
	
	.Footer-container .fl,.Footer-container .fr{
		float: none;
		width: 100%;
	}
	.Footer-container .fl .f_select{
		margin-top: 0.4rem;
		width: 100%;
	}
	
	.Footer-container .fl .txt p{
		font-size: 13px;
	}
	.Footer-container .fr .foot_wx{
		float: none;
		text-align: center;
	}
	.Footer-container .fr .foot_wx .top img{
		width: 140px;
	}
	.Footer-container .fr .foot_wx .top p{
		font-size: 16px;
	}
	
	.round-page.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet{
		width: 0.20rem;
		height: 0.20rem;
	}
	
	.com-page a, .com-page span{
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
}

@media all and (max-width:480px) {
	.ind_tit h3{
		font-size: 28px;
	}
	.ind_more{
		width: 138px;
		height: 38px;
		line-height: 38px;
		font-size: 16px;
	}
	.ind_more img{
		height: 16px;
	}
	
	.ban_txt h3{
		font-size: 28px;
	}
	.ban_txt p{
	    font-size: 16px;
	}
}

@media all and (max-width:420px) {
	.ind_tit h3{
		font-size: 24px;
	}
	.Footer-copyright{
		padding: 0.4rem 0;
		font-size: 13px;
		line-height: 1.5;
	}
}

@media all and (max-width:376px) {
	
}