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

/* 头部 */
.zdHead {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 50px;
	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: 52px;
}

.zdHead_logo_c {
	display: none;
}

.zdHead_nav li {
	position: relative;
	display: inline-block;
	padding: 0 0.38rem;
}

.zdHead_nav a {
	line-height: 68px;
	color: #fff;
	font-size: 18px;
	opacity: .8;
	-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);
	font-family: "SY-R";
}

.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: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: 14px !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: #ff5200;
}

.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: 50px;
}

.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: #ff5200;
}

.zdHead.bg .zdHead_nav .hover,
.zdHead.on .zdHead_nav .hover {
	color: #ff5200;
}


.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;
}

.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: #ff5200;
	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 #ff5200;
	-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(/template/cn/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: #ff5200;
}

.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: #ff5200;
	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: #ff5200;
	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: 14px;
	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: 14px;
}

.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 #fd7635;
	line-height: 50px;
	font-size: 18px;
	color: #555;
	padding: 0 15px;
	background: url(/template/cn/images/jia1.png) no-repeat 96% center;
	color: #fff;
}

.subNav1 a {
	display: block;
	margin-right: 60px;
}


.currentDt1 {
	background: url(/template/cn/images/jian1.png) no-repeat 96% center #f34f01;
}

.navContent1 {
	display: none;
	border-bottom: 1px solid #d6d6d6;
	padding: 10px 0;
	background: #f34f01;
	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(/template/cn/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.8rem 0 0.6rem;
}

.Footer-container .fl {
	width: 25%;

}

.Footer-container .fl .foot_logo {}

.Footer-container .fl .foot_logo img {}

.Footer-container .fl .txt {
	margin-top: 0.5rem;
}

.Footer-container .fl .txt p {
	position: relative;
	color: #000000;
	font-size: 14px;
	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(/template/cn/images/foot_address.png) no-repeat center/100%;
	width: 12px;
	height: 23px;
}

.Footer-container .fl .txt p:nth-child(2):after {
	background: url(/template/cn/images/foot_phone.png) no-repeat center/100%;
	width: 20px;
	height: 20px;
}

.Footer-container .fl .txt p:nth-child(3):after {
	background: url(/template/cn/images/foot_tel.png) no-repeat center/100%;
	width: 20px;
	height: 20px;
}

.Footer-container .fl .txt p:nth-child(4):after {
	background: url(/template/cn/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(/template/cn/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: 14px;
	line-height: 40px;
}

.Footer-container .fl .f_select .f_xl a:hover {
	background-color: #ff5200;
	color: white;
}

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

.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;
}

.Footer-container .fr .foot_nav_item ul li .foot_menu {
	font-size: 16px;
	font-weight: bold;
}

.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: 14px;
	color: #656565;
	margin-bottom: 0.12rem;
}

.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-container .foot_link{
	font-size: 16px;
	margin-top: 0.4rem;
}

.Footer-copyright {
	text-align: center;
	background-color: #464646;
	padding: 0.3rem 0;
	font-size: 14px;
	line-height: 1.3;
	color: white;
}

.Footer-copyright a {
	margin-left: 5px;
}

/* 中心+共用部分 */

/* 首页问题 */
.ind_tit {
	text-align: center;
}

.ind_tit h3 {
	font-size: 0.45rem;
	color: #262626;
	font-weight: 700;
}

.ind_tit h3 span {
	color: #ff5200;
}

.ind_tit p {
	font-size: 18px;
	color: #2a2a2a;
	margin-top: 0.2rem;
}

.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: #ff5200;
}

.ind_tit2 p {
	color: #333333;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 30px;
}

.ind_tit2 h3 {
	color: #ff5200;
	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: #ff5200;
}

.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: #ff5200;
	background-color: #ff5200;
}

/* 首页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: 58px;
	font-size: 18px;
	color: #505050;
	/* border-radius: 25px; */
	width: 240px;
	border: 1px solid #898989;
	margin: 0 auto;
	font-weight: normal;
}

.ind_more img {
	margin-left: 0.12rem;
}

.ind_more:hover {
	color: #fff;
	border-color: #ff5200;
	background-color: #ff5200;
}

/* 首页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: #142756 url(../images/bBg.png) no-repeat center; */
	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: #ff5200;
}

/* 箭头 */
/* 
.ind_banner .swiper-button-next,.ind_banner .swiper-button-prev{
	position: absolute;
	left: 4%;
	top: 50%;
	margin-top: -26px;
	display: block;
	width: 50px;
	height: 52px;
	background: url(/template/cn/images/banner-pre.png) no-repeat center center;
	border: 2px solid #fff;
	transition-duration: .5s;
}
.ind_banner .swiper-button-next{
	left: auto;
	right: 4%;
	background: url(/template/cn/images/banner-next.png) no-repeat center center;
}
.ind_banner .swiper-button-prev{}
.ind_banner .swiper-button-next::after,.ind_banner .swiper-button-prev::after{
	display: none;
}
.ind_banner .swiper-button-next:hover,.ind_banner .swiper-button-prev:hover{
	background-color: #ff5200;
	border-color: #ff5200;
} */

.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: #ff5200;
	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: #ff5200;
}

.banner .zdMore .more:hover svg {
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}

.banner .zdMore.blue svg path {
	fill: #fff;
}

.zdMore svg path {
	stroke: #ff5200;
	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: #ff5200;
}

.zdMore.blue .more {
	background: #ff5200;
	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 #8ec21f;
	color: #8ec21f;
}

.zdMore.border.green svg path {
	stroke: #8ec21f;
}

.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: #c9c2c2;
	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: #ff5200;
}

/* 公共banner e */

/* 公共问题 s */
.ab_tit {
	text-align: center;
}

.ab_tit.tal {
	text-align: left;
}

.ab_tit h3 {
	font-size: 0.42rem;
	color: #ff5200;
	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: #ff5200;
}

/* 公共分页器 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: #ff5200;
	color: #fff;
	border: 1px solid #ff5200;
}

.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: #ff5200;
}

.online_r ul li span {
	position: absolute;
	background: #ff5200;
	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 #ff5200;
	right: -15px;
	top: 50%;
	margin-top: -10px;
}

.online_r ul li.back_top {
	box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
	background: #ff5200;
}

/* 右侧客服 e */


/* swiper-page01 */
.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	-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-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #ff5200;
	width: 30px;
	height: 8px;
	border-radius: 4px;
}

.swiper-next01.swiper-button-next,
.swiper-prev01.swiper-button-prev {
	position: absolute;
	width: 50px;
	height: 100px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background-color: rgba(0, 0, 0, .4);
	cursor: pointer;
	-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;
	opacity: 0;
}

.swiper-next01.swiper-button-next:hover,
.swiper-prev01.swiper-button-prev:hover {
	background-color: rgb(255, 82, 0, .8);
}

.swiper-prev01.swiper-button-prev {
	right: auto;
	left: 0;
}

.swiper:hover .swiper-prev01.swiper-button-prev {
	left: 0.3rem;
}

.swiper-next01.swiper-button-next {
	left: auto;
	right: 0;
}

.swiper:hover .swiper-next01.swiper-button-next {
	right: 0.3rem;
}

.swiper:hover .swiper-next01.swiper-button-next,
.swiper:hover .swiper-prev01.swiper-button-prev {
	opacity: 1;
}

.swiper-next01.swiper-button-next:after,
.swiper-prev01.swiper-button-prev:after {
	color: white;
	font-size: 36px;
}



/* md-sideBar */
.md-sideBar {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0.1rem;
	z-index: 200;
	/* box-shadow: 0 0.8rem 1.4rem 1px hsl(0deg 0% 80% / 35%); */
	/* background-color: white; */
	box-shadow: 0 2px 15px 0 rgb(0 0 0 / 10%);
	border-radius: 50px;
}

.md-sideBar .side_item {
	display: block;
	width: auto;
	position: relative;
	cursor: pointer;
	zoom: 1;
}

.md-sideBar .side_item:not(:last-child)::after{
	content: "";
	position: absolute;
	display: block;
	width: 60%;
	height: 1px;
	left: 20%;
	bottom: 0;
	background-color: #ededec;
	z-index: 222;
}


.md-sideBar .side_item .hd {
	width: 0.5rem;
	/* height: 0.5rem; */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-direction: column;
	/* border-bottom: 1px solid #ececec; */
	position: relative;
	z-index: 221;
	background-color: #fff;
	padding: 12px 6px;
}

.md-sideBar .side_item:first-child .hd{
	border-radius: 50px 50px 0 0;
}
.md-sideBar .side_item:last-child .hd{
	border-radius: 0 0 50px 50px;
}

.md-sideBar .side_item .hd i {
	font-size: 0.2rem;
	color: #ff5200;
}

.md-sideBar .side_item .hd p {
	font-size: 12px;
	color: #ff5200;
	margin-top: 0.06rem;
	/* display: none; */
}

.md-sideBar .side_item .bd {
	color: #ff5200;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #fff;
	padding: 0 0.18rem;
	white-space: nowrap;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	right: 0;
	width: auto;
	font-size: 18px;
	line-height: 0.6rem;
	z-index: 201;
}

.md-sideBar .side_item:hover .bd {
	opacity: 1;
	right: calc(100% + 8px);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

.md-sideBar .side_item .bd::before{
	content: "";
	position: absolute;
	right: -8px;
	top: calc(50% - 4px);
	border-left: 8px solid #fff;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
.md-sideBar .side_item .bd.wx {
	padding: 0.08rem;
}

.md-sideBar .side_item:hover .bd.wx {
	width: calc(100px + 0.16rem);
}

.md-sideBar .side_item .bd img {
	width: 100px;
	height: 100px;
}

@media all and (max-width: 1000px) {
	.md-sideBar {
		display: none !important;
	}
}

/* -------------------------PC端--------------------------- */

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

@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) */
}

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

	/* 1152 × (864) */
	.zdHead_nav a {
		font-size: 16px;
	}

	.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;
	}
}

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

	/* 1024 × (600/768) */
	.head_r {
		display: none;
	}

	.headMenu {
		display: block;
	}

	.mobile-inner-header-icon {
		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: 32px;
	}

	.zdHead_logo_c {
		display: block;
	}

	.zdHead_logo_w {
		display: none;
	}

	.zdHead .search a img {
		height: 20px;
	}

	.mt {
		margin-top: 60px;
	}
	.com_ban {
	    height: 36vh;
	}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
	.Footer-container {
		padding: 0.6rem 0;
	}

	.ban_txt {
		line-height: 1.5;
	}

	.ban_txt h3 {
		font-size: 36px;
	}

	.ban_txt p {
		font-size: 22px;
	}
	
	.ban_nav {
	    display: none;
	}
}

@media all and (max-width:768px) {
	.subNav1 a {
		margin-right: 40px;
	}

	.ind_tit h3 {
		font-size: 0.54rem;
	}

	.ind_more {
		width: 180px;
		font-size: 16px;
		line-height: 45px;
		height: 45px;
	}
}

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

	/* 移动终端以上 360 适配 */
	.subNav1 a {
		margin-right: 30px;
	}

	.ind_pro .pic_view ul li .info h4 {
		font-size: 16px;
	}

	.ind_tit p {
		font-size: 14px;
	}

	.Footer-container .fl,
	.Footer-container .fr {
		float: none;
		width: 100%;
	}


	.Footer-container .fl .txt p {
		font-size: 13px;
	}

	.Footer-container .fr .foot_wx {
		float: none;
		text-align: center;
		margin-top: 0.4rem;
	}

	.Footer-container .fr .foot_wx .top img {
		width: 140px;
	}

	.Footer-container .fr .foot_wx .top p {
		font-size: 14px;
	}

	.Footer-container .fl .foot_logo img {
		height: 60px;
	}
	
	.ban_txt h3{
		font-size: 28px;
	}
	.ban_txt p{
		font-size: 16px;
	}
	
	.Footer-container .foot_link{
    	font-size: 14px;
    	/*margin-top: 0.4rem;*/
    }
}

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

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

@media all and (max-width:376px) {}
<!--耗时1751333526.9287秒-->