@font-face {
	font-family: "SourceHanSansCN";
	font-display: swap;
	src: url('SourceHanSansCN-Normal.otf');
}

@font-face {
	font-family: "SourceHanSansCN-Bold";
	font-display: swap;
	src: url('SourceHanSansCN-Bold.otf');
}

@font-face {
	font-family: "SourceHanSansCN-Light";
	font-display: swap;
	src: url('SourceHanSansCN-Light.otf');
}

html,
body {
	font-family: "SourceHanSansCN";
	color: #21201f;
}

input,
textarea,
select,
button,
area {
	font-family: "SourceHanSansCN";
}

.family-Bold {
	font-family: "SourceHanSansCN-Bold";
}

.section {
	width: 86%;
	margin: auto;
	max-width: 1485px;
}

.header {
	width: 100%;
	height: 120px;
	position: fixed;
	transition: all 0.3s linear;
	left: 0;
	top: 0;
	z-index: 999;
}

.header .section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.header .logo {
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20%;
	max-width: 282px;
}

.header .logo a {
	width: 100%;
	display: block;
	position: relative;
}

.header .logo a img {
	max-width: 100%;
}

.header .logo a img.logo2 {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}

.searchform {
	float: left;
	position: relative;
	width: 25%;
	margin-left: 4%;
	display: flex;
	align-items: center;
}

.searchform form {
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(242, 242, 242, 0.55);
	border-radius: 30px;
}

.searchform form .search_input {
	border: none;
	outline: none;
	width: 85%;
	font-size: 16px;
	box-sizing: border-box;
	padding: 0 25px;
	line-height: 48px;
	background: none;
}

.searchform form .submit {
	width: 15%;
	height: 48px;
	border: none;
	outline: none;
	background: none;
	background-image: url(../search.png);
	background-repeat: no-repeat;
	background-position: center;
}

.header .menu {
	width: 31%;
	margin-left: 10%;
	float: right;
}

.header .menu ul.menu-ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.header .menu ul li.menu-li {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header .menu ul li a.menu-a {
	display: block;
	font-size: 19px;
	position: relative;
	line-height: 52px;
}

.header .menu ul li a.menu-a::before {
	content: '';
	width: 0;
	height: 1px;
	left: 0;
	position: absolute;
	z-index: 2;
	transition: 0.3s;
	bottom: 0;
	background: #fff;
}

.header .menu ul li.on .menu-a::before,
.header .menu ul li:hover .menu-a::before {
	width: 100%;
}

.header .menu li .drop {
	background: #f6f6f6;
	overflow: hidden;
	position: absolute;
	width: 100%;
	left: 0;
	padding: 32px 0;
	top: 100%;
	display: none;
}

.header .menu li .drop-link {
	width: 86%;
	margin: auto;
	max-width: 1485px;
	position: relative;
}

.drop-link-title {
	width: 15%;
	height: 100%;
	position: absolute;
	left: 0;
	padding: 0 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 35px;
	border-right: 1px solid #a0a0a0;
}

.drop-link-title a {
	color: #3a7caa;
}

.drop-link-list {
	width: 85%;
	margin-left: 15%;
	display: flex;
	flex-wrap: wrap;
	padding-left: 30px;
}

.drop-link-list a {
	margin: 8px 1% 8px 0;
	padding: 8px 5px;
	width: 13.25%;
	border-radius: 5px;
	text-align: center;
	border: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 24px;
	position: relative;
}

.drop-link-list a:hover {
	color: #fff;
	border: 1px solid #3a7caa;
	background: #3a7caa;
}

.lang_item {
	display: flex;
	align-items: center;
}

.lang_icon {
	position: relative;
	float: right;
	z-index: 1000;
	height: 24px;
	cursor: pointer;
}

.lang_icon span {
	display: block;
	padding: 0 25px;
	line-height: 25px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	position: relative;
}

.lang_icon span::before {
	content: '';
	width: 2px;
	height: 18px;
	left: 0;
	position: absolute;
	z-index: 2;
	transition: 0.3s;
	top: 50%;
	margin-top: -9px;
	background: #fff;
}

.lang_icon span::after {
	content: '';
	width: 12px;
	height: 9px;
	right: 0;
	position: absolute;
	z-index: 2;
	transition: 0.3s;
	top: 50%;
	margin-top: -4.5px;
	background-image: url(../icon01.png);
	background-size: 100%;
}

.lang_link {
	background: #fff;
	position: absolute;
	width: 110px;
	left: 50%;
	margin-left: -55px;
	padding: 10px 10px;
	top: 125%;
	display: none;
	transition: 0.2s;
	text-align: center;
	border-radius: 6px;
	box-shadow: 0 0 10px #cccccc;
}

.lang_link::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
}

.lang_link a {
	display: block;
	font-size: 16px;
	padding: 5px 0;
	color: #000;
}

.lang_link a:hover {
	color: #3a7caa;
}

.m_menu {
	align-items: center;
	justify-content: center;
	width: 24px;
	position: absolute;
	right: 20px;
	top: 0;
	height: 70px;
	display: none;
	transition: 0.4s;
	z-index: 9999999;
}

.m_menu span {
	display: block;
	transition: ease .6s;
	width: 24px;
	height: 2px;
	background: #000;
}

.m_menu .line2 {
	margin: 4px 0;
}

.m_menu.on .line3 {
	transform: translateY(-1px) rotate(-45deg);
}

.m_menu.on .line1 {
	transform: translateY(1px) rotate(45deg);
}

.m_menu.on .line2 {
	display: none;
}

.inner-header,
.fixnav {
	background: #fff;
}

.fixnav {
	height: 90px;
}

.fixnav .menu ul li.menu-li {
	height: 90px;
}

.inner-header .logo a img.logo2,
.fixnav .logo a img.logo2 {
	opacity: 1;
}

.inner-header .searchform form,
.fixnav .searchform form {
	background: #f6f6f6;
}

.indexform .searchform form .search_input::placeholder {
	color: #eee;
}

.fixnav .searchform form .search_input::placeholder {
	color: #999;
}

.fixnav .searchform form .search_input {
	color: #000;
}

.header .menu ul li a.menu-a {
	color: #fff;
}

.header .menu ul li.on a.menu-a,
.header .menu ul li a.menu-a:hover {
	color: #fff;
}

.inner-header .menu ul li a.menu-a,
.fixnav .menu ul li a.menu-a {
	color: #000;
}

.inner-header .menu ul li.on a.menu-a,
.inner-header .menu ul li a.menu-a:hover,
.fixnav .menu ul li.on a.menu-a,
.fixnav .menu ul li a.menu-a:hover {
	color: #3a7caa;
}

.inner-header .menu ul li a.menu-a::before,
.fixnav .menu ul li a.menu-a::before {
	background: #3a7caa;
}

.inner-header .lang_icon::before,
.fixnav .lang_icon::before {
	background: #666;
}

.inner-header .lang_icon span,
.fixnav .lang_icon span {
	color: #000;
}

.inner-header .lang_icon span::before,
.fixnav .lang_icon span::before {
	background: #000;
}

.inner-header .lang_icon span::after,
.fixnav .lang_icon span::after {
	background-image: url(../icon01-black.png);
}

.index-title h2 {
	font-family: 'SourceHanSansCN-Bold';
}

@keyframes move {
	0% {
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes move2 {
	0% {
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

.banner-swiper {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.swiper-slide-txt {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: 0;
	color: #fff;
}

.swiper-slide-txt .section {
	position: relative;
}

.bannerSwiper .content {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	letter-spacing: 0;
	-webkit-transform: translateY(calc(-50% + 30px));
	transform: translateY(calc(-50% + 30px));
	opacity: 0;
	transition: opacity 1s ease, transform 1s ease;
}

.bannerSwiper .content03 {
	text-align: right;
}

.bannerSwiper .content03 .banner-swiper-link {
	justify-content: end;
}

.bannerSwiper .content03 h2 {
	float: right;
}

.bannerSwiper .swiper-slide-active .content {
	opacity: 1;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.swiper-slide-txt h1 {
	font-size: 3vw;
	letter-spacing: 5px;
	font-weight: 600;
	overflow: hidden;
	text-shadow: 0 0 10px #777;
	font-family: 'SourceHanSansCN-Bold';
}

.swiper-slide-txt .txt {
	overflow: hidden;
}

.swiper-slide-txt h2 {
	font-size: 1vw;
	line-height: 1.6;
	max-width: 750px;
	margin-top: 20px;
	overflow: hidden;
	font-family: 'SourceHanSansCN-Light';
}

.banner-swiper-link {
	position: relative;
	width: 100%;
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.banner-swiper-link a {
	background: #3a7caa;
	color: #fff;
	width: 100%;
	max-width: 245px;
	border-radius: 30px;
	padding: 0 60px 0 30px;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 55px;
	font-size: 18px;
	position: relative;
	overflow: hidden;
}

.banner-swiper-link a::after {
	position: absolute;
	content: "";
	top: 50%;
	right: 30px;
	width: 21px;
	height: 21px;
	margin-top: -10.5px;
	background-image: url(../icn_arrow_right.svg);
	background-size: 100%;
	transition: all .3s linear;
}

.banner-swiper-link a:hover {
	background: #008cd6;
	transition: 0.3s linear;
}

.banner-swiper-link a:hover::after {
	right: 20px;
}

.index-banner-img {
	width: 100%;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #ecedef;
	background-size: cover;
}

.bannerSwiper .swiper-slide img {
	width: 100%;
	animation: move 9s ease-out infinite alternate;
}

.bannerSwiper .swiper-slide-active img {
	will-change: transform;
	animation: move2 9s ease-out infinite alternate;
}

.bannerSwiper .swiper-slide-active {
	z-index: 30;
}

@keyframes line {
	0% {
		transform: translateX(0%);
	}

	99.9%,
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes line2 {
	0% {
		transform: translateX(-100%);
	}

	99.9%,
	to {
		transform: translateX(0%);
	}
}

.button-pagination {
	width: 100%;
	position: absolute;
	height: 2px;
	bottom: 8%;
	left: 0;
	z-index: 10;
}

.bannerSwiper .swiper-pagination {
	width: 15.5%;
	height: 2px;
	z-index: 100;
}

.bannerSwiper .swiper-pagination-bullet {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: calc(100%/4 - 3px);
	height: 2px;
	margin-right: 3px;
	border-radius: 0;
	background: #fff;
	opacity: 1;
	transition: all .9s;
	outline: none;
}

.bannerSwiper .swiper-pagination-bullet::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00adee;
	animation: line .6s linear 1 forwards;
}

.bannerSwiper .swiper-pagination-bullet-active::after {
	animation: line2 4s linear 1 forwards;
}

.button-button {
	width: 100px;
	height: 42px;
	position: absolute;
	z-index: 10;
}

.button-next,
.button-prev {
	top: 50%;
	width: 42px;
	height: 42px;
	background: #e5e5e5;
	margin-top: -21px;
	transition: 0.4s;
	border-radius: 50%;
}

.button-next:after,
.button-prev:after {
	color: #fff;
	font-size: 20px;
}

.button-next {
	right: 0;
}

.button-prev {
	left: 0;
}

.button-next:hover,
.button-prev:hover {
	background: #000;
}

.service-button {
	right: 8%;
	top: 50%;
	margin-top: -32px;
}

/*section-product*/
.section-product {
	width: 100%;
	overflow: hidden;
	padding: 80px 0;
	position: relative;
	z-index: 10;
	background-color: #fff;
}

.section-product:before {
	width: 439px;
	height: 602px;
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 20%;
	background-size: 100%;
	background: url(../section-product-icon.png);
}

.product-title {
	display: inline-block;
	position: relative;
	padding-left: 65px;
}

.product-title:before {
	width: 50px;
	height: 40px;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -20px;
	background-size: 100%;
}

.product-title.icon01:before {
	background-image: url(../icon03.png);
}

.product-title.icon02:before {
	background-image: url(../icon04.png);
}

.product-title:hover {
	color: #3a7caa;
}

.product-list-a {
	width: 80%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 35px;
}

.product-list-a a {
	width: 15%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1%;
	font-size: 16px;
	margin-bottom: 12px;
	font-weight: 200;
	position: relative;
	transition: 0.7s ease;
	border-radius: 10px;
	padding: 12px 5px;
	text-align: center;
	background-color: #fff;
	border: 1px solid #a0a0a0;
	cursor: pointer;
}

.product-list-a a:hover {
	color: #3a7caa;
	border: 1px solid #3a7caa;
}

.form-link {
	width: 100%;
	overflow: hidden;
}

.productform {
	width: 45%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
}

.productform form {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f2f2f2;
	border-radius: 30px;
}

.productform form .search_input {
	border: none;
	outline: none;
	width: 85%;
	font-size: 16px;
	color: #000;
	box-sizing: border-box;
	padding: 0 35px;
	line-height: 50px;
	background: none;
}

.productform form .submit {
	width: 15%;
	height: 50px;
	border: none;
	outline: none;
	background: url(../search.png) center no-repeat;
}

.link-more {
	display: inline-block;
	font-size: 17px;
	line-height: 30px;
	padding-right: 45px;
	text-transform: uppercase;
	position: relative;
}

.link-more i {
	background: #222;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -15px;
	z-index: 10;
	font-style: normal;
	border-radius: 50%;
	font-weight: 300;
	transition: 0.7s;
}

.service-more {
	position: absolute;
	right: 80px;
	top: 75px;
	z-index: 10;
	color: #3a7caa;
}

.service-more i {
	background: #3a7caa;
}

.service-more:hover,
.link-more:hover {
	color: #3a7caa;
}

.service-more:hover i,
.link-more:hover i {
	transform: rotate(90deg);
	background-color: #3a7caa;
}

/*section-application*/
.section-application {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 10;
	background-color: #fff;
}

.section-application .section {
	position: relative;
}

.application-slid {
	width: 100%;
}

.application-button {
	right: 0;
	bottom: 0;
}

.application-slide {
	display: block;
	width: 100%;
	color: #000;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	overflow: hidden;
}

.application-slide .box {
	background-color: #f2f2f2;
	padding: 45px 20px 25px 20px;
	transition: 0.3s;
}

.application-slide .content {
	position: relative;
	overflow: hidden;
}

.application-slide .img {
	overflow: hidden;
	width: 26%;
	margin: auto;
}

.application-slide .img img {
	max-width: 100%;
}

.application-slide .imglink {
	overflow: hidden;
	margin-top: 15px;
}

.application-slide .imglink img {
	max-width: 35px;
}

.appcontent h4 {
	font-weight: bold;
}

.appcontent01 {
	margin-top: 85px;
	transition: 0.1s;
	opacity: 1;
}

.appcontent01 .imglink img {
	float: right;
}

.appcontent02 .txt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-height: 24px;
	height: 96px;
	overflow: hidden;
}

.appcontent01 .txt {
	line-height: 24px;
	height: 48px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.appcontent02 {
	margin-top: 20px;
	transition: 1s;
	opacity: 0;
	text-align: center;
	color: #ffffff;
	position: absolute;
	width: 100%;
	left: 0;
	top: 150px;
	z-index: 15;
}

.appcontent02 .imglink img {
	margin: auto;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.65);
}

.application-slide:hover .box {
	background: rgba(0, 0, 0, 0.55);
}

.application-slide:hover .img img {
	filter: brightness(100);
}

.application-slide:hover .appcontent01 {
	opacity: 0;
}

.application-slide:hover .appcontent02 {
	opacity: 1;
	top: 15px;
}

/*pro-service-section*/
.pro-service-section {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 10;
	background: #fff;
	padding: 60px 0;
}

.pro-service-icon {
	width: 100%;
	overflow: hidden;
	margin-bottom: 40px;
	position: relative;
	padding-right: 330px;
}

.service-icon-item {
	width: 100%;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.service-icon-item .box {
	height: 110px;
	overflow: hidden;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon-item .box .icon {
	width: 50%;
	max-width: 35px;
	background-color: #3a7caa;
	border-radius: 50%;
	margin: 0 auto;
	position: absolute;
}

.service-icon-item .box .icon img {
	width: 100%;
}

.service-icon-item .content {
	padding: 15px 15px;
	position: absolute;
	border-radius: 12px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: #f2f2f2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: 0.3s;
}

.service-icon-item .content .icon {
	width: 50%;
	max-width: 32px;
	margin: 5px auto;
}

.service-icon-item .content .icon img {
	width: 100%;
}

.service-icon-item .content h4 {
	text-align: center;
}

.swiper-slide-thumb-active .service-icon-item .content {
	display: none;
}

.rotating-circle {
	font-size: 20px !important;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}

.rotating-circle div {
	display: inline-block;
	z-index: 3;
	margin-top: 0;
	margin-left: 25px;
	border-radius: 50%;
	border: 1px solid #c8c9c7;
	height: 76px;
	width: 76px;
	text-align: center;
	line-height: 76px;
	position: relative;
	cursor: pointer;
	transition: opacity 1s .9s;
	transform: rotate(-90reg)
}

.rotating-circle div:before {
	content: "";
	display: block;
	position: absolute;
	top: -1.5px;
	left: -1.5px;
	height: calc(100% + 3px);
	width: calc(100% + 3px);
	border-color: #4fa9e9 transparent;
	border-style: solid;
	border-width: 2px;
	border-radius: 50%;
	box-sizing: border-box;
	transform: rotate(-45deg);
}

.rotating-circle-light {
	color: #ffffff;
}

.rotating-circle.rotating-circle-dark div::after {
	position: relative;
	left: -2px;
	/*top: 2px;*/
	top: 0px;
	/*width: 40%;
    height: 40%;*/
	width: 24%;
	height: 24%;
	display: inline-block;
}

.rotating-circle-dark div::after {
	content: url(../gray-arrow.svg);
}

.rotating-circle:hover div::before {
	-webkit-animation: rotate2 3s ease infinite;
	animation: rotate2 3s ease infinite
}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}

	80% {
		-webkit-transform: rotate(315deg);
		transform: rotate(315deg)
	}

	to {
		-webkit-transform: rotate(315deg);
		transform: rotate(315deg)
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}

	80% {
		-webkit-transform: rotate(315deg);
		transform: rotate(315deg)
	}

	to {
		-webkit-transform: rotate(315deg);
		transform: rotate(315deg)
	}
}

.rotating-circle div span {
	display: inline-block;
	color: #4fa9e9;
	font-size: 16px;
	font-weight: 700;
	-webkit-transform: rotate(90deg);
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
	transform: rotate(0deg);
}

@-webkit-keyframes rotate2 {
	0% {
		-webkit-transform: rotate(-125deg);
		transform: rotate(-125deg)
	}

	60% {
		-webkit-transform: rotate(235deg);
		transform: rotate(235deg)
	}

	to {
		-webkit-transform: rotate(235deg);
		transform: rotate(235deg)
	}
}

@keyframes rotate2 {
	0% {
		-webkit-transform: rotate(-125deg);
		transform: rotate(-125deg)
	}

	60% {
		-webkit-transform: rotate(235deg);
		transform: rotate(235deg)
	}

	to {
		-webkit-transform: rotate(235deg);
		transform: rotate(235deg)
	}
}

.service-img-item {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.service-img-box {
	width: 35.5%;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	left: 0;
	z-index: 10;
	top: 10%;
}

.service-img-box img {
	width: 100%;
}

.service-content {
	width: 80%;
	background: #f2f2f2;
	margin-left: 20%;
	min-height: 575px;
	padding: 75px 95px 85px 20%;
	position: relative;
	border-radius: 20px;
	font-size: 16px;
	line-height: 30px;
}

.service-content .container {
	width: 100%;
}

.service-content .container .title {
	position: relative;
	padding-left: 58px;
	color: #555555;
	font-family: 'SourceHanSansCN-Bold';
}

.service-content .container .title img {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -20px;
	width: 40px;
	z-index: 10;
}

.service-content .container i {
	display: inline-block;
	color: #fff;
	margin-top: 35px;
	padding: 10px 40px;
	background: #3a7caa;
	border-radius: 25px;
	font-style: normal;
}

.service-content .content {
	padding-left: 15px;
	margin: 35px 0;
}

.service-content .content span {
	display: block;
	color: #3a7caa;
	font-size: 24px;
	font-weight: bold;
	font-family: 'SourceHanSansCN-Bold';
	margin-bottom: 20px;
}

.service-content .content .txt {
	font-size: 18px;
	line-height: 40px;
}

.service-content .memo {}

.service-content .memo p {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service-content .memo em {
	display: inline-block;
	color: #333333;
	font-size: 20px;
	margin-bottom: 10px;
	font-style: normal;
	position: relative;
	padding-left: 35px;
}

.service-content .memo em:before {
	width: 27px;
	height: 27px;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -13.5px;
	background-size: 100%;
	background-image: url(../icon32.png);
}

.index-about {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 10;
	background-image: url(../about.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
}

.index-about .content {
	width: 52%;
	float: right;
	margin: 100px 0;
}

.about-link {
	position: relative;
	width: 100%;
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
}

.about-link a {
	border: 1px solid #a0a0a0;
	border-radius: 30px;
	color: #222222;
	max-width: 190px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	line-height: 48px;
	font-size: 16px;
	position: relative;
	overflow: hidden;
}

.about-link i {
	max-width: 6px;
	margin-left: 10px;
}

.about-link i img {
	width: 100%;
}

.about-link a:hover {
	border: 1px solid #3a7caa;
	color: #fff;
	background-color: #3a7caa;
	max-width: 200px;
	transition: 0.3s linear;
}

.about-link a:hover i img {
	filter: brightness(100);
}

.wx-img {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wx-img a {
	display: block;
	width: 31%;
	cursor: pointer;
}

.wx-img a .box {
	width: 88%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 25px;
	border: 7px solid #eeeeee;
	transition: 0.3s;
}

.wx-img a .box img {
	width: 100%;
}

.wx-img a .title {
	width: 100%;
	overflow: hidden;
	font-size: 18px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
}

.wx-img a h5 {
	text-align: center;
	font-size: 16px;
}

.wx-img a .icon-img {
	max-width: 30px;
	margin-right: 10px;
	position: relative;
}

.wx-img a .icon-img img {
	width: 100%;
}

.wx-img a .icon-more {
	max-width: 22px;
	margin-left: 10px;
	position: relative;
	border-radius: 50%;
}

.wx-img a .title .icon-img02 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: 0;
	transition: 0.3s;
}

.wx-img a.active .icon-img01 {
	opacity: 0.1;
}

.wx-img a.active .icon-img02 {
	opacity: 1;
}

.wx-img a.active .icon-more {
	background: #3a7caa;
}

.wx-img a.active img.wximg {
	border: 7px solid #3a7caa;
}

/*index-news*/
.index-news {
	width: 100%;
	overflow: hidden;
	padding-top: 40px;
}

.index-news .box {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
}

.news-recommend {
	width: 55%;
	padding: 70px 55px;
	position: relative;
	background: #f2f2f2;
	border-radius: 25px;
}

.recommend-news h3 {
	font-family: 'SourceHanSansCN-Bold';
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.recommend-news .txt {
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 30px;
	margin-top: 65px;
}

.news-recommend-icon {
	width: 50%;
	transition: 0.4s;
	position: absolute;
	right: 5%;
	bottom: 0;
	z-index: 5;
}

.recommend-news:hover h3 {
	color: #3a7caa;
}

.news-pagination {
	width: 100%;
	transition: 0.4s;
	position: absolute;
	left: 75px;
	bottom: 75px;
	z-index: 15;
}

.news-pagination span {
	margin-right: 15px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	transition: 0.4s;
	background: #333;
}

.news-pagination .swiper-pagination-bullet-active {
	background: #3a7caa;
}

.news-list {
	width: 42%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.news-list a {
	display: block;
	width: 100%;
	margin: 0 0;
	color: #000;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: 0.3s;
	border-radius: 30px;
	overflow: hidden;
}

.news-list a:last-child {
	margin-top: 20px;
}

.news-list .content {
	width: 100%;
	padding: 35px 55px;
	background: #f2f2f2;
	transition: 0.3s;
}

.news-list .content i {
	font-style: normal;
	background: #fff;
	border-radius: 30px;
	padding: 5px 20px;
}

.news-list .content h2 {
	margin: 20px 0 10px 0;
	line-height: 30px;
	height: 60px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.news-list a:hover h2,
.news-list a:hover span {
	color: #fff;
}

.news-list a:hover .content {
	background: none;
}

/*index-contact*/
.index-contact {
	width: 100%;
	overflow: hidden;
	padding: 80px 0 100px 0;
}

.index-contact .box {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 20px;
	border-radius: 40px;
	background: #f2f2f2;
}

.contact-content {
	width: 50%;
	position: relative;
	background: #000000;
	padding: 35px 35px;
	color: #fff;
	border-radius: 40px;
	background-image: url(../icon10.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.contact-content .content {
	margin-bottom: 30px;
}

.contact-content .content h2 {
	font-size: 30px;
	color: #3a7caa;
	font-family: 'SourceHanSansCN-Bold';
}

.contact-content .content h5 {
	font-size: 16px;
	margin-top: 10px;
	font-family: 'SourceHanSansCN-Light';
}

.contact-content ul {
	display: flex;
	flex-wrap: wrap;
}

.contact-content ul li {
	width: 49%;
	position: relative;
	padding-left: 40px;
	font-size: 18px;
	margin-bottom: 20px;
}

.contact-content ul li img {
	content: '';
	width: 22px;
	position: absolute;
	left: 0;
	top: 4px;
	z-index: 10;
}

.contact-icon {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.contact-icon a {
	width: 40px;
	padding: 8px 8px;
	display: flex;
	margin-right: 22px;
	background: #ffffff;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
}

.contact-icon a img {
	max-width: 100%;
	transition: 0.4s;
}

.contact-icon a:hover {
	background: #3a7caa;
}

.contact-icon a:hover img.icon {
	filter: invert(1);
}

.img-box {
	border-radius: 25px;
	overflow: hidden;
}

.img-box img {
	width: 100%;
	transform: translateZ(0px);
	transition: transform 0.7s ease 0s;
}

.img-box:hover img {
	transform: scale(1.15, 1.15);
}

.tel_icon_img {
	display: none;
	width: 120px;
	background-color: #fff;
	box-shadow: 0 0 5px #bbb;
	border-radius: 6px;
	padding: 5px 5px;
	position: absolute;
	z-index: 10;
	bottom: 120%;
	left: 50%;
	margin-left: -60px;
}

.tel_icon_img img {
	width: 100%;
}

.tel_icon_img::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
}

/*banner*/
.banner {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: 120px;
}

.inner-banner-img {
	width: 100%;
	height: 290px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.banner-content {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	z-index: 20;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: 'Microsoft YaHei';
}

.banner-content h2 {
	position: relative;
	font-family: 'SourceHanSansCN-Bold';
}

.banner-content h3 {
	letter-spacing: 2px;
}

.product-container {
	width: 100%;
	overflow: hidden;
	padding: 75px 0;
	background-color: #fff;
}

.product-left {
	width: 30%;
	float: left;
	padding: 20px 0;
	border-radius: 30px;
	background-color: #eeeeee;
}

.product-right {
	width: 64%;
	float: right;
	background-color: #fff;
}

.product-left .class-title {
	margin-left: 60px;
	padding: 35px 35px 35px 50px;
	position: relative;
	color: #555555;
	font-family: 'SourceHanSansCN-Bold';
}

.product-left .class-title:before {
	width: 36px;
	height: 36px;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -18px;
	background-size: 100%;
	background: url(../icon18.png);
}

.product-class {
	width: 100%;
	border-top: 1px solid #dadada;
}

.product-class ul {
	width: 100%;
}

.product-class ul li {
	position: relative;
	transition: 0.4s;
}

.product-class ul li a {
	color: #555555;
}

.product-class ul li.active {
	background: #3a7caa;
	color: #fff;
}

.product-class ul li .bigclass-link:before {
	width: 106%;
	height: 100%;
	z-index: 5;
	content: '';
	display: block;
	position: absolute;
	left: -3%;
	top: 0;
	z-index: 5;
	border-radius: 15px;
	opacity: 0;
	transition: 0.3s;
	background-color: #3a7caa;
}

.product-class ul li .bigclass-link {
	display: block;
	position: relative;
	padding: 30px 58px;
	cursor: pointer;
	border-bottom: 1px solid #dadada;
}

.product-class ul li .bigclass-link h4 {
	position: relative;
	z-index: 30;
	color: #555555;
}

.product-class ul li .bigclass-link span {
	position: absolute;
	right: 55px;
	top: 50%;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	z-index: 30;
	border: 2px solid #c9c9c9;
	border-radius: 50%;
	transition: 0.3s;
}

.product-class ul li .bigclass-link span img {
	max-width: 100%;
}

.product-class ul li:hover .bigclass-link:before,
.product-class ul li.active .bigclass-link:before {
	opacity: 1;
}

.product-class ul li:hover .bigclass-link h4,
.product-class ul li.active .bigclass-link h4 {
	color: #fff;
	font-family: 'SourceHanSansCN-Bold';
}

.product-class ul li:hover .bigclass-link span,
.product-class ul li.active .bigclass-link span {
	transform: rotate(90deg);
}

.product-class ul li .smallclass {
	background: #f1f1f1;
	width: 100%;
	overflow: hidden;
	display: none;
}

.product-class ul li .smallclass a {
	display: block;
	color: #555555;
	line-height: 25px;
	font-size: 19px;
	padding: 20px 86px 20px 60px;
	cursor: pointer;
	position: relative;
	border-bottom: 1px dashed #ccc;
}

.product-class ul li .smallclass a i {
	width: 25px;
	height: 25px;
	content: '';
	display: block;
	position: absolute;
	right: 60px;
	top: 50%;
	margin-top: -12.5px;
	border-radius: 50%;
	background-color: #aaaaaa;
}

.product-class ul li .smallclass a.on,
.product-class ul li .smallclass a:hover {
	color: #3a7caa;
}

.product-class ul li .smallclass a.on i,
.product-class ul li .smallclass a:hover i {
	background-color: #3a7caa;
}

.product-class ul li.active .smallclass {
	display: block;
}

.product-list a {
	border: 1px solid #efefef;
}

.product-list a h3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.product-list a h5 {
	margin-top: 10px;
	color: #999999;
	padding: 10px 15px;
	border-top: 1px solid #efefef;
}

.product-list a:hover {
	background-color: #0e61cf;
}

.product-list a:hover img {
	transform: scale(1.2, 1.2);
	transition: transform 0.6s ease 0s;
}

.product-list a:hover span,
.product-list a:hover h3,
.product-list a:hover h5 {
	color: #fff;
}

.product-memo {
	position: relative;
	line-height: 36px;
}

.product-xj-title,
.product-right h2 {
	font-family: 'SourceHanSansCN-Bold';
}

.cp-intro {
	width: 100%;
	overflow: hidden;
}

.cp-intro p {
	font-size: 16px;
	line-height: 34px;
}

.table {
	overflow: auto;
}

.cp-intro table,
.table table {
	width: 100%;
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	border-collapse: collapse;
}

.cp-intro table th,
.table table th,
.table table td {
	padding: 4px 18px;
	font-size: 16px;
	border-left: 1px solid #dcdcdc;
	border-top: 1px solid #dcdcdc
}

.cp-intro table tr:nth-child(odd),
.table table tr:nth-child(odd) {
	background-color: #fff;
}

.cp-intro table tr:nth-child(even),
.table table tr:nth-child(even) {
	background-color: #f6f6f6;
}

.cp-intro h3 {
	font-size: 18px;
	margin: 15px 0;
	font-weight: bold;
	padding: 5px 18px;
	color: #fff;
	background: #626262;
	border-radius: 8px;
}

.cp-intro img {
	max-width: 100%;
	margin: 10px auto;
}

.cp-intro .goBack {
	display: block;
	color: #003f8f;
	font-size: 18px;
	line-height: 45px;
	width: 195px;
	margin: auto;
	position: relative;
	text-align: center;
	border: 1px solid #003f8f;
}

.cp-intro .goBack:hover {
	background: #003f8f;
	color: #fff;
}

.cp-intro .box {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.cp-intro .box .introleft {
	width: 48%;
}

.cp-intro .box .introright {
	width: 48%;
}

.cp-intro ul {
	width: 100%;
	margin-top: 40px;
}

.cp-intro ul li {
	width: 100%;
	margin: 15px 0;
	line-height: 28px;
	background: #fff;
	color: #000;
	transition: 0.3s;
	padding-left: 30px;
	position: relative;
}

.cp-intro ul li:before {
	position: absolute;
	content: "";
	width: 21px;
	height: 9px;
	background-image: url(../icon21.png);
	background-size: 100%;
	top: 11px;
	left: 0;
	transition: ease .5s;
}

.color_3a {
	color: #3a7caa;
}

.product-form {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 40px;
	background: #f2f2f2;
	border-radius: 15px;
}

.inner-news {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 80px 0;
}

.news-class {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.news-class a {
	color: #000;
	font-size: 20px;
	display: inline-block;
	text-align: center;
	position: relative;
	line-height: 54px;
	padding: 0 44px;
	background: #ededed;
	border-radius: 40px;
	margin-right: 60px;
}

.news-class a.choose,
.news-class a.on,
.news-class a:hover {
	color: #fff;
	background: #3a7caa;
}

.newsquery {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.newsquery a {
	display: block;
	color: #555555;
	padding: 25px 35px;
	border-bottom: 1px dashed #bfbfbf;
	position: relative;
}

.newsquery a:nth-child(3n-1) {
	margin: 0 2%;
}

.newsquery a:before {
	width: 10px;
	height: 10px;
	content: '';
	display: block;
	position: absolute;
	left: 12px;
	top: 35px;
	background: #d2d2d2;
	border-radius: 50%;
}

.newsquery a h3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.newsquery a h5 {
	color: #999999;
}

.inner-newsquery a {
	width: 32%;
}

.inner-newsquery a:nth-child(3n-1) {
	margin: 0 2%;
}

.newsquery a:hover {
	color: #3a7caa;
	font-weight: bold;
}

.news-intro {
	width: 100%;
	overflow: hidden;
	padding: 80px 0;
}

.news-intro_left {
	width: 40%;
	float: left;
	padding-right: 80px;
}

.detail-news {
	width: 100%;
	background: #fff;
	padding: 15px 20px;
}

.detail-news h1 {
	position: relative;
	padding-left: 20px;
	line-height: 36px;
}

.detail-news h1:before {
	width: 5px;
	height: 100%;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: #3a7caa;
}

.hot-news ul li a:hover,
.detail-news ul li a:hover {
	color: #3a7caa;
}

.news-intro_right {
	width: 60%;
	border-left: 1px solid #bfbfbf;
	float: right;
	padding-left: 80px;
}

.news_time {
	width: auto;
	color: #888;
	font-size: 16px;
	margin: 40px 0;
}

.news-intro_right .content {
	font-size: 18px;
	line-height: 30px;
	overflow: hidden;
	color: #666666;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.news-intro_right .content h3 {
	height: 40px;
	color: #333333;
	font-weight: bold;
	font-size: 20px;
	line-height: 40px;
	padding: 10px 0;
	margin: 10px 0;
	border-bottom: 1px solid #dcdcdc;
}

.news-intro_right .content img {
	max-width: 100%;
	margin: 20px auto;
}

a.news-contact {
	background: #3a7caa;
	border-radius: 10px;
	color: #fff;
	width: 100%;
	max-width: 380px;
	padding: 0 35px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	line-height: 80px;
	font-size: 22px;
	position: relative;
	overflow: hidden;
	font-family: 'SourceHanSansCN-Bold';
}

a.news-contact i {
	margin-right: 18px;
}

a.news-contact i img {
	max-width: 100%;
}

a.news-contact:hover {
	box-shadow: 0 0 10px #cccccc;
}

.modNewsUpDown {
	width: 100%;
	overflow: hidden;
	padding: 50px 0;
}

.modNewsUpDown ul {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.modNewsUpDown ul li {
	width: 100%;
	padding: 20px 0;
	font-size: 18px;
	line-height: 30px;
	overflow: hidden;
	border-bottom: 1px solid #dcdcdc;
	display: flex;
	color: #666;
	flex-wrap: wrap;
}

.modNewsUpDown ul li a {
	color: #666;
	font-family: 'SourceHanSansCN-Bold';
}

.modNewsUpDown ul li span {
	display: inline-block;
}

.modNewsUpDown ul li a:hover {
	color: #3a7caa;
}

.modNewsUpDown ul li a:hover i {
	border: 1px solid #3a7caa;
}

.modNewsUpDown ul li:last-child {
	border-bottom: 0;
}

.inner-about {
	width: 100%;
	position: relative;
}

.about-title {
	font-style: italic;
}

.aboutcontent {
	width: 100%;
	position: relative;
	background: #111111;
	margin-top: 50px;
}

.aboutcontent .section {
	position: relative;
}

.about-left {
	width: 45%;
	position: relative;
	z-index: 20;
	color: #fff;
	padding: 50px 0;
}

.about-left .txt {
	line-height: 35px;
}

.about-right {
	width: 45%;
	height: 120%;
	right: 0;
	top: -10%;
	position: absolute;
	z-index: 20;
	overflow: hidden;
	border-radius: 15px;
}

.about-right p {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 100%;
	width: 100%;
}

.about-right img {
	height: 100%;
	border-radius: 15px;
}

.inventory-list ul {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.inventory-list ul li {
	width: 32%;
	margin: 20px 0;
}

.inventory-list ul li:nth-child(3n-1) {
	margin: 20px 2%;
}

.inventory-list ul li h4 {
	margin-top: 20px;
	font-weight: bold;
	color: #555555;
	text-align: center;
}

.partner-list ul {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.partner-list ul li {
	width: 18%;
	margin: 10px 1%;
	border: 1px solid #e5e5e5;
	overflow: hidden;
	border-radius: 10px;
}

.partner-list ul li img {
	width: 100%;
	transform: translateZ(0px);
	transition: transform 0.7s ease 0s;
}

.partner-list ul li:hover img {
	transform: scale(1.15, 1.15);
}

.certification-list ul {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.certification-list ul li {
	width: 23%;
	margin: 20px 1%;
	overflow: hidden;
	border: 1px solid #cfcfcf;
}

.certification-list ul li img {
	width: 100%;
	transform: translateZ(0px);
	transition: transform 0.7s ease 0s;
}

.certification-list ul li:hover img {
	transform: scale(1.15, 1.15);
}

.field_box {
	width: 100%;
	overflow: hidden;
	margin-bottom: 100px;
}

.field_item {
	width: 100%;
	-webkit-transition: all .5s;
	transition: all .5s;
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	padding-top: 100px;
}

.field_item_title {
	width: 100%;
	line-height: 35px;
	overflow: hidden;
	cursor: pointer;
	transition: 0.3s;
	padding-bottom: 30px;
	color: #333333;
	position: relative;
	border-bottom: 1px solid #cccccc;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.field_item_title h3 {
	font-weight: bold;
	position: relative;
	padding-left: 28px;
	font-family: 'SourceHanSansCN-Bold';
}

.field_item_title h3::before {
	display: block;
	content: '';
	width: 5px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #3a7caa;
}

.field_item_title span {
	font-weight: bold;
	position: relative;
	padding-right: 45px;
}

.field_item_title span::after {
	display: block;
	content: '';
	width: 26px;
	height: 26px;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -13px;
	background-size: 100%;
	background-image: url(../plus.png);
}

.field_item.active .field_item_title span::after {
	background-image: url(../reduce.png);
}

.field_item_content {
	width: 100%;
	margin-top: 30px;
	overflow: hidden;
}

.field_item_content .content {
	padding: 30px 30px;
	font-size: 17px;
	border-radius: 15px;
	color: #555555;
	background: #eeeeee;
	line-height: 36px;
}

.field_item_content .content h4 {
	font-size: 21px;
	padding: 10px 0;
	font-family: 'SourceHanSansCN-Bold';
	font-weight: bold;
}

.field_item_content img {
	max-width: 100%;
}

.field_item.active .field_item_content {
	display: block;
}

.inner-service {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 150px;
}

.service-item {
	padding-top: 150px;
}

.service-modEdit {
	width: 100%;
	background: #eeeeee;
	position: relative;
	border-radius: 20px;
}

.service-modEdit h1 {
	position: absolute;
	left: 4%;
	top: -45px;
	z-index: 10;
	padding: 25px 80px 25px 100px;
	background: #000;
	color: #fff;
	border-radius: 60px;
	font-family: 'SourceHanSansCN-Bold';
}

.service-modEdit h1 .img {
	width: 40px;
	position: absolute;
	left: 40px;
	top: 27px;
}

.service-modEdit h1 img {
	width: 100%;
	filter: brightness(100);
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.service-modEdit-dl {
	padding: 120px 85px 50px 85px;
}

.service-modEdit-dl dl {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service-modEdit-dl dl dt {
	width: 43%;
}

.service-modEdit-dl dl dt img {
	max-width: 100%;
}

.service-modEdit-dl dl dd {
	width: 51%;
	color: #333;
}

.service-modEdit-dl dl dd h3 {
	font-family: 'SourceHanSansCN-Bold';
}

.service-modEdit-dl dl dd .content,
.service-modEdit-dl dl dd .txt {
	line-height: 35px;
	font-size: 17px;
}

.service-modEdit-dl dl dd .txt p {
	position: relative;
	padding-left: 20px;
	margin: 2px 0;
}

.service-modEdit-dl dl dd .txt p:before {
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0;
	top: 16px;
	background-color: #333333;
	border-radius: 50%;
}

.service-modEdit-dl dl dd h5 {
	position: relative;
	padding: 0 20px;
	margin: 20px 0;
	font-size: 30px;
	display: inline-block;
}

.service-modEdit-dl dl dd h5 em {
	font-style: normal;
	position: relative;
	z-index: 10;
}

.service-modEdit-dl dl dd h5:before {
	display: block;
	content: '';
	width: 100%;
	height: 10px;
	position: absolute;
	left: 0;
	bottom: 5px;
	z-index: 5;
	background-color: #3a7caa;
	border-radius: 15px;
}

.service-modEdit-dl dl dd .content p {
	position: relative;
	padding-left: 45px;
	margin: 8px 0;
}

.service-modEdit-dl dl dd .content p:before {
	display: block;
	content: '';
	width: 32px;
	height: 28px;
	position: absolute;
	left: 0;
	top: 6px;
	background-size: 100%;
	background-image: url(../icon23.png);
}

.service-cases-dl dl {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.service-cases-dl dl dt {
	width: 50%;
}

.service-cases-dl dl dt img {
	max-width: 100%;
}

.service-cases-dl dl dd {
	width: 41%;
	margin-left: 4%;
}

.service-cases-dl dl dd h3 {
	margin-top: 80px;
	font-family: 'SourceHanSansCN-Bold';
}

.service-cases-dl dl dd .txt {
	color: #333;
	line-height: 35px;
}

/*联系我们*/
.index-form {
	width: 50%;
	padding: 25px 45px 25px 65px;
}

.product-form {
	width: 100%;
	padding: 20px 40px;
}

.form-form ul li {
	margin: 10px 0;
	overflow: hidden;
	position: relative;
}

.form-form ul {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form-form ul li.name,
.form-form ul li.tel,
.form-form ul li.company,
.form-form ul li.email {
	width: 46%;
}

.form-form ul li.address {
	width: 100%;
}

.form-form ul li.content {
	width: 60%;
}

.form-form ul li.button_li {
	width: 30%;
	display: flex;
	align-items: end;
}

.product-form ul li.button_li {
	display: flex;
	align-items: end;
}

.form-form ul li h4 {
	font-size: 18px;
	color: #000;
	text-align: left;
}

.form-form ul li input {
	line-height: 46px;
	width: 100%;
	font-size: 18px;
	padding: 0;
	color: #000;
	font-weight: 300;
	background: #f2f2f2;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 2px solid #d2d2d2;
	position: relative;
	border-radius: 0;
}

.form-form ul li textarea {
	width: 100%;
	line-height: 40px;
	padding: 0;
	font-size: 16px;
	background: #f2f2f2;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid #d2d2d2;
	position: relative;
}

.form-form ul li input::placeholder {
	color: #7d7d7d;
}

.form-form ul li textarea::placeholder {
	color: #7d7d7d;
}

.form-form ul li .button {
	width: 100%;
	max-width: 165px;
	font-size: 16px;
	outline: none;
	color: #fff;
	padding: 2px 10px;
	border-radius: 50px;
	background-color: #3a7caa;
	border: 1px solid #3a7caa;
}

.form-form ul li .button:hover {
	background-color: #000;
	color: #fff;
}

.form-form input::placeholder {
	color: #828282;
}

.qt-pagination {
	width: 94%;
	margin: auto;
	overflow: hidden;
	padding: 30px 0;
	text-align: center;
	font-size: 15px;
	line-height: 40px;
}

.qt-pagination a {
	background-color: #fff;
	border: 1px solid #e3e3e3;
	margin: 0 5px;
	min-width: 40px;
	font-size: 15px;
	padding: 0 10px;
	line-height: 40px;
	display: inline-block;
	text-align: center;
	cursor: pointer;
}

.qt-pagination .active,
.qt-pagination a:hover {
	background: #3a7caa;
	color: #fff;
	border: 1px solid #3a7caa;
}

.footer {
	width: 100%;
	background-color: #000000;
	padding: 80px 0 100px 0;
	overflow: hidden;
	background-image: url(../footer.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: bottom center;
}

.foot-box {
	width: 100%;
	padding: 10px 0;
}

.foot-logo img {
	width: 24.5%;
	margin: auto;
}

.foot-menu {
	width: 100%;
	padding: 50px 0 30px 0;
	overflow: hidden;
	text-align: center;
	border-bottom: 1px dashed #7b7b7b;
}

.foot-menu a {
	display: inline-block;
	color: #fff;
	font-size: 19px;
}

.foot-menu span {
	display: inline-block;
	margin: 0 30px;
	color: #fff;
	font-size: 19px;
}

.foot-menu span:last-child {
	display: none;
}

.foot-key {
	width: 100%;
	padding: 40px 0 20px 0;
	overflow: hidden;
	text-align: center;
	color: #fff;
	font-size: 19px;
}

.foot-key a {
	display: inline-block;
	margin: 0 5px;
	color: #fff;
}

.foot-menu a:hover,
.foot-key a:hover {
	color: #3a7caa
}

.foot-icon {
	width: 100%;
	padding: 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.foot-icon a {
	display: inline-block;
	margin: 0 18px;
	position: relative;
}

.foot-icon a img.icon {
	max-width: 45px;
	transition: 0.4s;
	filter: invert(1);
}

.footcopyright {
	width: 100%;
	color: #fff;
	line-height: 22px;
	padding: 10px 0 30px 0;
	font-size: 17px;
	overflow: hidden;
	font-weight: 400;
}

.footcopyright .section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.foot-Support {
	margin: 0 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.foot-Support .img {
	max-width: 55px;
	display: flex;
	align-items: center;
}

.foot-Support .img img {
	width: 100%;
}

.footcopyright a {
	color: #fff;
}

.footcopyright a:hover {
	color: #3a7caa;
}

@media (max-width:1560px) {
	.service-modEdit-dl dl dd .content p {
		padding-left: 35px;
	}

	.service-modEdit-dl dl dd .content p:before {
		width: 26px;
		height: 23px;
		top: 8px;
	}

	.section {
		width: 92%;
	}

	.header .menu li .drop-link {
		width: 92%;
	}

	.banner-swiper-link a {
		max-width: 210px;
		padding: 0 30px 0 15px;
		line-height: 52px;
		font-size: 16px;
	}

	.swiper-slide-txt h1 {
		font-size: 38px;
	}

	.swiper-slide-txt h2 {
		font-size: 17px;
	}

	.drop-link-title {
		font-size: 30px;
	}

	.drop-link-list a {
		font-size: 15px;
	}

	.product-left .class-title {
		margin-left: 35px;
	}

	.product-class ul li .bigclass-link {
		padding: 25px 37px;
	}

	.product-class ul li .bigclass-link span {
		right: 37px;
	}

	.product-class ul li .smallclass a i {
		right: 40px;
	}

	.product-class ul li .smallclass a {
		padding: 20px 89px 20px 49px;
	}

	.field_item_content .content {
		padding: 25px 25px;
		font-size: 16px;
		line-height: 32px;
	}

	.news-class a {
		font-size: 18px;
		line-height: 45px;
		padding: 0 34px;
		margin-right: 40px;
	}

	.news-intro_left {
		padding-right: 40px;
	}

	.news-intro_right {
		padding-left: 40px;
	}

	.news-intro_right .content {
		font-size: 16px;
	}

	.service-modEdit-dl {
		padding: 120px 55px 50px 55px;
	}

	.service-modEdit h1 {
		padding: 15px 80px 15px 100px;
	}

	.service-modEdit h1 .img {
		top: 16px;
		max-width: 35px;
	}

	.img-box {
		border-radius: 20px;
	}
}

@media (max-width:1199px) {
	.field_item {
		padding-top: 70px;
	}

	.service-item {
		padding-top: 70px;
	}

	.service-cases-dl {
		padding: 0 25px 25px 25px;
	}

	.product-class ul li .smallclass a {
		font-size: 17px;
	}

	.inner-banner-img {
		height: 200px;
	}

	.img-box {
		border-radius: 15px;
	}

	.service-cases-dl dl dt {
		display: none;
	}

	.service-cases-dl dl dd {
		width: 100%;
		margin: 10px 0;
	}

	.service-cases-dl dl dd h3 {
		margin-top: 0;
	}

	a.news-contact {
		border-radius: 6px;
		max-width: 259px;
		padding: 0 15px;
		line-height: 60px;
		font-size: 18px;
	}

	a.news-contact i {
		margin-right: 10px;
		max-width: 32px;
	}

	.service-icon-item .box {
		height: 85px;
	}

	.news-class a {
		font-size: 16px;
		line-height: 40px;
		padding: 0 20px;
		margin-right: 30px;
	}

	.newsquery {
		justify-content: space-between;
	}

	.inner-newsquery a {
		width: 48%;
	}

	.inner-newsquery a:nth-child(3n-1) {
		margin: 0;
	}

	.newsquery a:before {
		width: 8px;
		height: 8px;
		left: 12px;
		top: 34px;
	}

	.inventory-list ul li h4 {
		margin-top: 10px;
	}

	.inner-header .menu ul li.on a.menu-a,
	.inner-header .menu ul li a.menu-a:hover,
	.fixnav .menu ul li.on a.menu-a,
	.fixnav .menu ul li a.menu-a:hover {
		color: #fff;
	}

	.searchform {
		display: none;
	}

	.section {
		width: 92%;
	}

	.header .logo {
		width: 200px;
		height: 70px;
	}

	.lang_item {
		margin-right: 42px;
	}

	.lang_icon span::before {
		display: none;
	}

	.header .logo a img.logo2 {
		opacity: 1;
	}

	.lang_icon span {
		color: #000;
		padding: 0 25px 0 0;
	}

	.lang_icon span::after {
		background-image: url(../icon01-black.png);
	}

	.banner-img {
		display: block;
	}

	.header {
		height: 70px;
		background: #fff;
	}

	.header .section {
		width: 100%;
		padding: 0 20px;
	}

	.header .menu ul li.menu-li:nth-child(2):before,
	.header .menu ul li.menu-li:nth-child(3):before {
		left: auto;
		right: 20px;
		top: 28px;
	}

	.header .menu ul li:hover .menu-a::after,
	.header .menu ul li.on .menu-a::after {
		display: none;
	}

	.m_menu {
		display: flex;
	}

	.header .menu {
		position: absolute;
		left: 0;
		top: 70px;
		background: #3a7caa;
		width: 100%;
		display: none;
		z-index: 999;
		margin: 0;
	}

	.header .menu ul.menu-ul {
		width: 100%;
		display: block;
	}

	.header .menu ul li.menu-li {
		width: 100%;
		height: auto;
		display: block;
		position: relative;
		border-bottom: 1px solid rgba(242, 242, 242, 0.55);
	}

	.header .menu ul li a.menu-a {
		padding: 0;
		color: #fff;
		line-height: 55px;
		display: inline-block;
		margin-left: 20px;
	}

	.header .menu ul li a.menu-a::before {
		display: none;
	}

	.header .menu ul li.menu-li:nth-child(1):after,
	.header .menu ul li.menu-li:nth-child(2):after,
	.header .menu ul li.menu-li:nth-child(3):after,
	.header .menu ul li.menu-li:nth-child(4):after {
		width: 10px;
		height: 6px;
		content: '';
		display: block;
		position: absolute;
		right: 30px;
		top: 24px;
		background-image: url(../menu-span.png);
		background-size: 100%;
	}

	.header .menu li .drop-link {
		width: 100%;
		display: block;
	}

	.drop-link-list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		padding-left: 0;
		margin: 0;
	}

	.drop-link-list a {
		width: 24%;
	}

	.drop-link-title {
		display: none;
	}

	.header .menu li .drop ul {
		width: 100%;
		padding: 0;
	}

	.header .menu li .drop {
		position: static;
		width: 100%;
		overflow: hidden;
		background: #fff;
		padding: 10px 20px;
	}

	.header .menu li .drop::before {
		display: none;
	}

	.header .menu li .drop li {
		width: 100%;
		text-align: left;
		box-sizing: border-box;
		border: none;
	}

	.banner-swiper,
	.banner,
	.petshy-products-banner {
		margin-top: 70px;
	}

	.pro-service-icon {
		padding-right: 230px;
	}

	.swiper-slide-txt h1 {
		font-size: 30px;
	}

	.swiper-slide-txt h2 {
		font-size: 15px;
	}

	.banner-swiper-link a {
		max-width: 190px;
		padding: 0 30px 0 15px;
		line-height: 48px;
		font-size: 15px;
	}

	.product-list-a {
		width: 100%;
	}

	.rotating-circle div {
		height: 56px;
		width: 56px;
		line-height: 56px;
	}

	.service-img-box {
		display: none;
	}

	.service-content {
		width: 100%;
		margin-left: 0;
		min-height: 100%;
		padding: 45px 45px;
	}

	.index-about .content {
		width: 100%;
	}

	.news-recommend {
		padding: 45px 35px;
		border-radius: 18px;
	}

	.foot-key,
	.foot-menu a {
		font-size: 17px;
	}

	.footcopyright {
		font-size: 15px;
	}

	.foot-logo img {
		width: 100%;
		max-width: 275px;
	}

	.service-content .content .txt {
		font-size: 17px;
		line-height: 33px;
	}

	.wx-img {
		justify-content: left;
	}

	.wx-img a {
		width: 26%;
	}

	.contact-content,
	.index-form {
		width: 100%;
	}

	.index-form {
		padding: 25px 0;
	}

	.news-intro_left {
		display: none;
	}

	.news-intro_right {
		width: 100%;
		padding-left: 0;
		border-left: 0;
	}

	.service-modEdit-dl dl dd .content p:before {
		width: 26px;
		height: 23px;
	}

	.service-modEdit-dl dl dd,
	.service-modEdit-dl dl dt {
		width: 100%;
		margin: 20px 0;
	}

	.service-modEdit-dl {
		padding: 61px 25px 25px 25px;
	}

	.product-list-a a {
		width: 19%;
		margin-bottom: 8px;
	}

	.service-more {
		top: 45px;
		right: 45px;
	}

	.service-content .memo em {
		font-size: 18px;
		padding-left: 27px;
	}

	.service-content .memo em:before {
		width: 20px;
		height: 20px;
		margin-top: -10px;
	}

	.application-slide .box {
		background: rgba(0, 0, 0, 0.55);
	}

	.application-slide .img img {
		filter: brightness(100);
	}

	.appcontent01 {
		display: none;
	}

	.appcontent02 {
		opacity: 1;
		position: static;
	}

	.form-form ul li h4 {
		font-size: 17px;
	}

	.form-form ul li input {
		font-size: 16px;
		line-height: 45px;
	}

	.about-link a {
		max-width: 145px;
		line-height: 40px;
		font-size: 15px;
		background-color: #fff;
	}

	.product-left {
		width: 100%;
		padding: 0;
		border-radius: 0;
		background-color: #eeeeee;
	}

	.product-left .class-title {
		display: none;
	}

	.product-class ul li .bigclass-link,
	.bigclass {
		display: none;
	}

	.product-class {
		border-top: 0;
	}

	.product-class ul li.active {
		display: block;
	}

	.product-class ul li.active .smallclass {
		line-height: 50px;
		height: 50px;
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
	}

	.product-class ul li.active .smallclass::-webkit-scrollbar {
		display: none
	}

	.product-class ul li.active .smallclass a {
		border-bottom: 0;
		display: inline-block;
		width: auto;
		padding: 0 10px;
		margin: 0 10px 0 0;
	}

	.product-class ul li .smallclass a i {
		display: none;
	}

	.product-right {
		width: 100%;
		margin-top: 35px;
	}
}

@media (max-width:999px) {
	.pro-service-icon {
		padding-right: 176px;
	}
}

@media (max-width:856px) {
	.news-class a {
		font-size: 15px;
		line-height: 36px;
		padding: 0 12px;
		margin-right: 20px;
	}
}

@media (max-width:768px) {
	.index-banner-img {
		height: 480px;
	}

	.index-banner-img img {
		display: none;
	}

	.pro-service-icon {
		padding-right: 0;
	}

	.service-icon-item .content {
		padding: 8px 8px;
	}

	.service-content {
		padding: 25px 25px;
	}

	.service-more {
		top: 25px;
		right: 25px;
	}

	.service-button {
		display: none;
	}
}

@media (max-width:658px) {
	.news-class a {
		width: 24%;
		margin: 0 0.5%;
		font-size: 15px;
		line-height: 36px;
	}

	.inner-newsquery a {
		width: 100%;
		padding: 10px 0 10px 15px;
	}

	.newsquery a:before {
		width: 8px;
		height: 8px;
		left: 0;
		top: 18px;
	}

	.qt-pagination a {
		margin: 0 2.5px;
		min-width: 30px;
		font-size: 13px;
		padding: 0 4px;
		line-height: 30px;
	}

	.index-about .content {
		margin: 40px 0;
	}

	.inner-service {
		padding-bottom: 60px;
	}

	.news-intro,
	.inner-news {
		padding: 40px 0;
	}

	.news_time {
		font-size: 14px;
		margin: 10px 0;
	}

	.news-intro_right .content img {
		margin: 5px auto;
	}

	.index-contact {
		width: 100%;
		overflow: hidden;
		padding: 40px 0;
	}

	.about-link a {
		max-width: 135px;
		line-height: 34px;
		font-size: 14px;
		background-color: #fff;
	}

	.news-recommend,
	.wx-img {
		display: none;
	}

	.product-list-a a {
		width: 32.333%;
		font-size: 15px;
		border-radius: 5px;
		padding: 8px 4px;
		margin-bottom: 4px;
	}

	.news-list,
	.productform {
		width: 100%;
	}

	.news-list a {
		border-radius: 10px
	}

	.news-list .content {
		padding: 25px 20px;
	}

	.news-list .content h2 {
		height: auto;
	}

	.application-slide .img {
		width: 52px;
	}

	.application-slide .img {
		overflow: hidden;
		width: 13%;
		margin: auto;
	}

	.header .menu li .drop {
		padding: 5px 20px;
	}

	.header .menu ul li a.menu-a {
		font-size: 17px;
	}

	.index-banner-img {
		height: 380px;
	}

	.drop-link-list a {
		width: 32%;
		font-size: 13px;
		line-height: 18px;
		margin: 2px 1% 2px 0;
	}

	.swiper-slide-txt h1 {
		font-size: 25px;
		letter-spacing: 0;
	}

	.swiper-slide-txt h2 {
		font-size: 14px;
		margin-top: 10px;
		padding: 0 20px;
	}

	.banner-swiper-link {
		margin-top: 20px;
	}

	.banner-swiper-link a {
		max-width: 164px;
		padding: 0 17px 0 15px;
		line-height: 40px;
		font-size: 14px;
	}

	.banner-swiper-link a::after {
		position: absolute;
		content: "";
		top: 50%;
		right: 18px;
		width: 14px;
		height: 14px;
		margin-top: -7px;
	}

	.bannerSwiper .content {
		text-align: center;
	}

	.bannerSwiper .content03 .banner-swiper-link,
	.banner-swiper-link {
		align-items: center;
		justify-content: center;
	}

	.productform form .search_input {
		width: 85%;
		font-size: 14px;
		padding: 0 15px;
		line-height: 40px;
	}

	.productform form .submit {
		height: 40px;
	}

	.service-icon-item .content .icon {
		max-width: 22px;
		margin: 2px auto;
	}

	.service-icon-item .content {
		padding: 4px 4px;
	}

	.service-icon-item .box .icon {
		max-width: 25px;
	}

	.service-icon-item .box {
		height: 70px;
	}

	.service-content {
		padding: 15px 15px;
	}

	.service-content .container .title img {
		margin-top: -11px;
		width: 22px;
	}

	.service-content .container .title {
		padding-left: 35px;
	}

	.service-more {
		top: 15px;
		right: 15px;
		font-size: 14px;
		line-height: 30px;
		padding-right: 32px;
	}

	.link-more i {
		width: 20px;
		height: 20px;
		margin-top: -10px;
	}

	.service-content .container i {
		display: block;
		margin-top: 25px;
		padding: 5px 10px;
		text-align: center;
	}

	.service-content .content {
		padding-left: 0;
		margin: 15px 0;
	}

	.service-content .content .txt {
		font-size: 14px;
		line-height: 25px;
	}

	.service-content .content span {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.service-content .memo em {
		font-size: 15px;
		padding-left: 27px;
		width: 48%;
	}

	.service-content .memo em:before {
		width: 18px;
		height: 18px;
		margin-top: -9px;
	}

	.foot-logo img {
		max-width: 180px;
	}

	.foot-key,
	.foot-menu a {
		font-size: 15px;
	}

	.foot-menu span {
		margin: 0 10px;
		font-size: 15px;
	}

	.foot-menu {
		padding: 25px 0;
	}

	.foot-key {
		padding: 20px 0 10px 0;
	}

	.foot-icon a img.icon {
		max-width: 32px;
	}

	.foot-icon a {
		margin: 0 12px;
	}

	.footcopyright {
		text-align: center;
	}

	.footer {
		padding: 40px 0 40px 0;
	}

	.application-slide .imglink img {
		max-width: 30px;
	}

	.foot-icon {
		padding: 15px 0;
	}

	.product-title {
		padding-left: 49px;
	}

	.product-title:before {
		width: 35px;
		height: 28px;
		margin-top: -14px;
	}

	.index-contact .box {
		padding: 10px;
		border-radius: 10px;
	}

	.contact-content {
		padding: 25px 15px;
		border-radius: 10px;
		background-size: 40%;
	}

	.contact-content .content h2 {
		font-size: 22px;
	}

	.contact-content ul li {
		width: 100%;
		padding-left: 30px;
		font-size: 16px;
		margin-bottom: 10px;
	}

	.contact-content .content {
		margin-bottom: 15px;
	}

	.contact-content ul li img {
		width: 18px;
		top: 7px;
	}

	.contact-icon a {
		width: 34px;
		padding: 4px 4px;
		margin-right: 13px;
	}

	.form-form ul li.content,
	.form-form ul li.name,
	.form-form ul li.tel,
	.form-form ul li.company,
	.form-form ul li.email {
		width: 100%;
	}

	.form-form ul li h4 {
		font-size: 16px;
	}

	.form-form ul li input {
		font-size: 13px;
		line-height: 36px;
		border-bottom: 1px solid #d2d2d2
	}

	.inner-banner-img {
		height: 160px;
	}

	.table table th,
	.table table td {
		font-size: 14px;
	}

	.field_item_title {
		padding: 10px 0;
		line-height: 28px;
	}

	.field_item_title h3 {
		padding-left: 19px;
	}

	.aboutcontent {
		overflow: hidden;
		padding: 40px 0;
	}

	.about-left,
	.about-right {
		width: 100%;
		padding: 10px 0;
	}

	.about-right p,
	.about-right {
		position: static;
	}

	.about-right img {
		width: 100%;
		height: auto;
	}

	.about-left .txt {
		line-height: 28px;
	}

	.index-form {
		padding: 25px 25px;
	}

	.field_item {
		border-radius: 10px;
	}

	.field_item_title::after {
		width: 20px;
		height: 20px;
		margin-top: -10px;
	}

	.field_item_title span {
		padding-right: 28px;
	}

	.field_item_content .content {
		padding: 15px 15px;
		font-size: 15px;
		line-height: 26px;
	}

	.field_item_content {
		margin-top: 12px;
	}

	a.news-contact {
		border-radius: 6px;
		max-width: 215px;
		padding: 0 15px;
		line-height: 53px;
		font-size: 16px;
	}

	a.news-contact i {
		margin-right: 10px;
		max-width: 25px;
	}

	.modNewsUpDown ul li {
		font-size: 15px;
		line-height: 23px;
	}

	.img-box {
		border-radius: 10px;
	}

	.inventory-list ul {
		justify-content: space-between;
	}

	.inventory-list ul li {
		width: 48%;
		margin: 10px 0;
	}

	.inventory-list ul li:nth-child(3n-1) {
		margin: 10px 0;
	}

	.certification-list ul li {
		width: 48%;
		margin: 10px 1%;
	}

	.partner-list ul li {
		width: 31.333%;
		margin: 5px 1%;
		border-radius: 6px;
	}

	.section-product {
		padding: 50px 0;
	}

	.product-container {
		padding: 40px 0;
	}

	.header .logo {
		width: 162px;
	}

	.service-modEdit-dl dl dd {
		width: 100%;
		margin: 20px 0;
	}

	.service-modEdit-dl dl dt {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.service-modEdit h1 {
		color: #000;
		width: 100%;
		left: 0;
		position: static;
		text-align: center;
		padding: 14px 15px;
		background: none;
		border-radius: 0;
	}

	.service-modEdit h1 .img {
		width: 100%;
		max-width: 100%;
		position: static;
		margin: 9px 0;
	}

	.service-modEdit h1 .img img {
		max-width: 30px;
		margin: auto;
		filter: none;
	}

	.service-modEdit-dl dl dd h5:before {
		height: 3px;
	}

	.service-modEdit-dl {
		padding: 0 15px 25px 15px;
	}

	.service-modEdit-dl dl dd .content,
	.service-modEdit-dl dl dd .txt {
		line-height: 26px;
		font-size: 15px;
	}

	.service-modEdit-dl dl dd .txt p:before {
		top: 11px;
	}

	.service-modEdit-dl dl dd .content p:before {
		width: 16px;
		height: 14px;
	}

	.service-modEdit-dl dl dd h5 {
		position: relative;
		padding: 0 10px;
		margin: 10px 0;
		font-size: 20px;
	}

	.service-modEdit-dl dl dd .txt p {
		padding-left: 13px;
	}

	.service-modEdit-dl dl dd .content p {
		padding-left: 22px;
		margin: 8px 0;
	}

	.service-cases-dl dl dd .txt {
		line-height: 25px;
	}

	.service-modEdit {
		border-radius: 10px;
	}

	.lang_icon span {
		font-size: 16px;
		padding: 0 15px 0 0;
	}

	.lang_icon span::after {
		content: '';
		width: 8px;
		height: 6px;
		margin-top: -3px;
	}
}