/*
 *	Created by Edward on 25/03/24
*/

@font-face {
	font-family: 'iconfont';
	src: url('iconfont.woff2?t=1663740079843') format('woff2'),
		url('iconfont.woff?t=1663740079843') format('woff'),
		url('iconfont.ttf?t=1663740079843') format('truetype');
}

.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;
}

html.enable{
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-webkit-filter: grayscale(100%);
}


@font-face {
	font-family: din;
	src: url(../fonts/din-bold-webfont.woff2);
}

@font-face {
	font-family: Alimama;
	src: url(../fonts/AlimamaShuHeiTi-Bold.ttf);
}

.b1{
	padding-top: 150px;
}

html,
body {
	color: #272727;
	font-family: "PingFang SC", "Microsoft YaHei", Arial, SimSun, sans-serif;
}

input,
textarea {
	font-family: "PingFang SC", "Microsoft YaHei", Arial, SimSun, sans-serif;
}

.searchContent {
    width: 100%;
    height: auto;
    margin-top: 100px;
	padding: 0px 8vw;
}

.searchContent .scResult {
    width: 100%;
    height: auto;
    background: #999;
    color: #fff;
    font-weight: 700;
    text-indent: 45px;
    font-size: 20px;
    line-height: 40px;
    position: relative
}

.searchContent .scResult.b {
    background: #0c8bc0;
}

.searchContent .scResult:after {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 10px;
    top: 7.5px;
    background: url(../images/result_icon.png?v=1) no-repeat;
    background-size: cover;
    content: ''
}

.resultTips {
    width: 100%;
    height: auto;
    line-height: 40px;
    font-size: 14px
}

.resultTips span {
    color: #e10101;
    padding: 0 3px;
    font-weight: 700
}

.noData {
    width: 200px;
    height: 200px;
    margin: 0px auto;
    font-size: 14px;
    text-align: center;
    display: none;
    position: relative;
}

.noData::after {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 30px;
    background: url(../images/noData_img.png) no-repeat;
    background-size: cover;
    opacity: .2;
    content: '';
}

.noData p {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0px;
    top: 60%;
    color: rgba(0, 0, 0, .2);
}

.noData.active {
    display: block
}


.header {
	width: 100%;
	height: 90px;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #fff;
	display: flex;
	justify-content: space-between;
	padding: 15px 5%;
	align-items: center;
	z-index: 10;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .05);
}

.logo {
	width: 170px;
	height: auto;
	position: relative;

}

.nav {
	width: auto;
	display: flex;
	justify-content: space-between;
}

.nav a {
	font-size: 18px;
	margin-left: 2vw;
	font-weight: bold;
	position: relative;
	line-height: 30px;
	transition: all 0.4s;
}

.nav a:hover {
	color: #c81918;
}

.nav a::after {
	width: 0%;
	height: 4px;
	position: absolute;
	right: 0;
	left: auto;
	bottom: -30px;
	content: '';
	background: #c81918;
	transition: all 0.5s;
}



.nav a:hover::after {
	width: 100%;
	left: 0%;
}

.banner-swiper {
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 0px;
}

.banner-swiper .swiper-slide {
	overflow: hidden;
	background: url(../images/banner.jpg) bottom center no-repeat;
	background-size: cover;
	position: relative;
	height: 35vw;
	margin-top: 90px;
}

.banner-swiper.product-swiper .swiper-slide {
	background-image: url(../images/product_bg.jpg);
}

.banner-swiper .swiper-pagination {
	width: 100%;
	text-align: center;
	bottom: 5%;
}

.banner-swiper .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 1);
	width: 8px;
	height: 8px;
	opacity: 1;
	-webkit-transition: all .5s;
	margin: 0px 7px !important;
}

.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #c81918;
}

.parallax {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.back_img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: center center no-repeat;
	background-size: cover;
}

.banner-swiper .slogan {
	width: 40%;
	height: auto;
	position: absolute;
	left: 15%;
	top: 20%;
	color: #fff;
}

.banner-swiper .slogan .xh {
	color: #222222;
	font-size: 1.5vw;
	margin-bottom: 1vw;
	font-family: din;
}

.banner-swiper .slogan .mc {
	font-size: 3vw;
	font-weight: bold;
	font-family: Alimama;
	color: #c81918;

}

.banner-swiper.product-swiper .slogan {
	top: 35%;
	z-index: 2;
}

.banner-swiper .swiper-slide .pro {
	width: 30%;
	height: auto;
	position: absolute;
	right: 15%;
	top: 16%;
	transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
	opacity: 0;
	transform: translateX(75px);
}

.banner-swiper .swiper-slide.active .pro {
	opacity: 1;
	transform: translateX(0px);
}

.banner-swiper .swiper-slide.active .slogan .en,
.banner-swiper .swiper-slide.active .slogan .title,
.banner-swiper .swiper-slide.active .slogan .des,
.banner-swiper .swiper-slide.active .slogan .info,
.banner-swiper .swiper-slide.active .more_btn,
.banner-swiper .swiper-slide.active .slogan .xh,
.banner-swiper .swiper-slide.active .slogan .mc {
	opacity: 1;
	transform: translateY(0px);
}

.banner-swiper .slogan .en {
	font-family: din;
	font-size: 1.2vw;
	margin-bottom: 0.5vw;
	transition: all 0.7s cubic-bezier(0.215, 0.610, 0.355, 1);
	opacity: 0;
	transform: translateY(15px);
}

.banner-swiper .slogan .title {
	font-size: 2.5vw;
	font-weight: bold;
	font-family: Alimama;
	margin-bottom: 0.5vw;
	transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
	opacity: 0;
	transform: translateY(30px);
}

.banner-swiper .slogan .title span {
	color: #c81918;
	margin-right: 0.5vw;
}

.banner-swiper .slogan .des {
	font-size: 20px;
	margin-bottom: 1vw;
	transition: all 0.9s cubic-bezier(0.215, 0.610, 0.355, 1);
	opacity: 0;
	transform: translateY(45px);
}

.banner-swiper .slogan .info {
	font-size: 16px;
	opacity: 0.65;
	line-height: 1.7;
	width: 70%;
	margin-bottom: 2vw;
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
	opacity: 0;
	transform: translateY(65px);
}

.more_btn {
	width: 106px;
	height: 38px;
	position: relative;

	color: #fff;
	line-height: 38px;
	text-align: center;
	display: block;

	font-size: 14px;
	transition: all 1.1s cubic-bezier(0.215, 0.610, 0.355, 1);
	opacity: 0;
	transform: translateY(85px);
}

.more_btn:before {
	background: #c81918;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	border-radius: 50px;
	transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.more_btn:hover:before {
	background: #fff;
}

.more_btn:hover p {
	color: #c81918;
}

.more_btn p {
	position: relative;
}

.pro_name {
	width: 100%;
	height: auto;
	position: absolute;
	text-align: center;
	left: 0;
	top: 4vw;
	font-size: 2.5vw;
	font-weight: bold;
}

.products .item {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: space-between;
	padding: 3vw 8vw;
}

.products .item:nth-child(odd) {
	background: #f5f6f8;
	flex-direction: row-reverse;
}

.products .item .img {
	width: 35%;
}

.products .item .info {
	width: 55%;
}

.products .item .info .name {
	font-size: 1.8vw;
	font-weight: bold;
	margin-bottom: 1vw;
}

.products .item .info .des {
	width: 100%;
	height: auto;
	position: relative;
	font-size: 16px;
	line-height: 2;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 2vw;
}

.more_btn2 {
	width: 106px;
	height: 38px;
	position: relative;
	line-height: 36px;
	text-align: center;
	display: block;
	border-radius: 50px;
	font-size: 14px;
	border: 1px solid #c81918;
	color: #c81918;
}

.more_btn2 p {
	position: relative;
}

.more_btn2:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #fff;
	transition: all 0.5s;
	border-radius: 50px;
}

.more_btn2:hover:before {
	background: #c81918;
}

.more_btn2:hover p {
	color: #fff;
}

.news {
	padding: 6vw 8vw;
}

.news_name {
	width: 100%;
	height: auto;
	position: relative;
	font-size: 2.5vw;
	font-weight: bold;
}

.products {
	padding-bottom: 0vw;
}

.news_top {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-bottom: 3vw;
}

.news_top a {
	width: 100px;
	display: flex;
	justify-content: space-between;
	color: rgba(0, 0, 0, 0.4);
}

.news_top a img {
	width: 20px;
	height: auto;
	position: relative;
	opacity: 0.4;
}

.news_top a:hover {
	color: rgba(0, 0, 0, 1);
}

.news_top a:hover img {
	opacity: 1;
}

.news_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.news_box .item {
	width: 32%;
	margin-right: 2%;
	position: relative;
	margin-bottom: 1.5vw;
	display: block;
}

.news_box .item:nth-child(3n) {
	margin-right: 0%;
}

.news_box .item .inner {
	padding-top: 60%;
}

.news_box .item .name {
	width: 100%;
	height: 75px;
	position: relative;
	font-size: 18px;
	line-height: 30px;
	margin-top: 15px;
	padding-bottom: 15px;
	transition: all 0.5s;
}

.news_box .item .name::after {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: #ccc;
}

.footer {
	width: 100%;
	text-align: center;
	position: relative;
	color: #fff;
	background: #222222;
	padding: 1.5vw 0px;
}

.sub-banner {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-top: 90px;
}

.sub-banner .img {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.sub-banner img {
	-webkit-transform: scale(1.2) translateX(-5%);
	-webkit-animation: imgAnimate 20s linear 1 forwards;
	height: auto;
}

.sub-banner .txt {
	width: 100%;
	height: auto;
	position: relative;
	color: #fff;

	line-height: 1.2;
}

.sub-banner .txt .cn {
	font-family: Alimama;
	font-size: 3vw;
}

.sub-banner .txt .en {
	font-family: din;
	font-size: 2vw;
	text-transform: uppercase;
}

@-webkit-keyframes imgAnimate {
	0% {
		-webkit-transform: scale(1.1) translateX(-5%);
	}

	100% {
		-webkit-transform: scale(1.1) translateX(0%);
	}
}

.sub_slogan {
	width: 50%;
	height: auto;
	position: absolute;
	left: 7%;
	top: 50%;
	transform: translateY(-50%);
}

.focus_swiper {
	width: 84%;
	margin: 6vw auto 0px;
}

.focus_swiper .swiper-slide {
	display: flex;
	justify-content: space-between;
	opacity: 0;
	transition: all 0.5s;

}

.focus_swiper .swiper-slide.swiper-slide-active {
	opacity: 1;

}

.focus_swiper .swiper-slide .thum {
	width: 50%;
}

.focus_swiper .swiper-slide .thum:hover .inner img {
	transform: scale(1.05);
}

.focus_swiper .swiper-slide .inner {
	padding-top: 60%;
}

.focus_swiper .swiper-slide .info {
	width: 50%;
	height: auto;
	position: relative;
	padding: 5%;
}

.focus_swiper .swiper-slide .info .name {
	font-size: 2vw;
	line-height: 1.5;
	margin-bottom: 2vw;
	transition: all 0.5s;
	display: block;
}

.focus_swiper .swiper-slide .info .name b {
	background: linear-gradient(#c81918, #c81918) 0 100% / 0 2px no-repeat;
	text-decoration: none;
	transition: background .5s;
	display: inline;
}

.focus_swiper .swiper-slide .info .name:hover {
	color: #c81918;
}

.focus_swiper .swiper-slide .info .name:hover b {
	background-size: 100% 2px;
}

.focus_swiper .swiper-slide .info .des {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.focus_swiper .swiper-slide .info .des p {
	width: auto;
	height: auto;
	line-height: 25px;
	position: relative;
	padding-left: 15px;
	margin-right: 25px;
	color: #c3c3c3;
}

.focus_swiper .swiper-slide .info .des p:last-child{
	margin-right: 0;
}

.focus_swiper .swiper-slide .info .des p::after {
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	background: #c3c3c3;
}


.focus_swiper .swiper-pagination {
	bottom: 5%;
	width: auto;
	left: 40%;
}


.focus_swiper .swiper-button-next:after,
.focus_swiper .swiper-button-prev:after {
	display: none;
}

.focus_swiper .swiper-button-next,
.focus_swiper .swiper-button-prev {
	width: 50px;
	height: 50px;
	border: 1px solid #c81918;
	border-radius: 50%;
	left: 55%;
	right: auto;
	top: 80%;
}

.focus_swiper .swiper-button-next {
	left: calc(55% + 65px);
}


.focus_swiper .swiper-button-next img {
	transform: rotate(180deg);
}

.focus_swiper .swiper-button-next img,
.focus_swiper .swiper-button-prev img {
	width: 10px;
}

.focus_swiper .swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
}

.focus_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #c81918;
}

.focus_swiper {
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.focus_swiper .swiper-wrapper {
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.news_top.ns {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news_nav {
	width: auto;
	display: flex;
	position: relative;
	line-height: 50px;
	font-size: 18px;
	font-weight: bold;
}

.news_nav a {
	display: block;
	width: auto;
	margin-right: 2vw;
	position: relative;
	padding-bottom: 15px;
	font-size: 1.6vw;
	color: rgba(0, 0, 0, 0.5);
	transition: all 0.5s;
}

.news_warp{
	min-height: 100vh;
}

.news_nav a.active,
.news_nav a:hover {
	color: rgba(0, 0, 0, 1);
}

.search {
	width: 250px;
	display: flex;
	align-items: center;
	position: relative;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 50px;
	justify-content: space-between;
	padding: 0px 10px;
}

.search input {
	width: calc(100% - 50px);
	position: relative;
	outline: none;
	height: 40px;
	margin-left: 10px;
	font-size: 16px;
	border: none;
	background: transparent;
}

.search input::placeholder {
	color: rgba(0, 0, 0, .3);
}

.search .search_btn {
	width: 30px;
	height: auto;
	position: relative;
	text-align: right;
	cursor: pointer;
	padding: 3px;
	opacity: 0.5;
}

.search .search_btn:hover {
	opacity: 1;
}

.news_box.ipage .item {
	width: 48%;
	margin-right: 4%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 3.5vw;
}

.news_box.ipage .item:nth-child(3n) {
	margin-right: 4%;
}

.news_box.ipage .item:nth-child(2n) {
	margin-right: 0%;
}

.news_box.ipage .item .thum {
	width: 40%;
}

.news_box.ipage .item .info {
	width: 56%;
	position: relative;
}

.news_box.ipage .item .info::after {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: rgba(0, 0, 0, 0.1);
}

.news_box.ipage .item .info:before,
.news_box.home .item:before {
	width: 0%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: #c81918;
	z-index: 2;
	transition: all 0.35s;
}

.news_box.home .item:hover:before {
	width: 100%;
}

.news_box.ipage .item:hover .inner img,
.news_box.home .item:hover .inner img {
	transform: scale(1.1);
}

.news_box.ipage .item:hover .info:before {
	width: 100%;
}

.news_box.ipage .item .name {
	margin-top: 0px;
	font-size: 20px;
	height: 70px;
	line-height: 35px;
}

.news_box.ipage .item .name::after {
	display: none;
}

.news_box .item .des {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.news_box .item .des p {
	width: auto;
	height: auto;
	line-height: 25px;
	position: relative;
	padding-left: 15px;
	margin-right: 25px;
	color: #c3c3c3;
}

.news_box .item .des p::after {
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	background: #c3c3c3;
}

.product_inro {
	width: 100%;
	padding: 5vw 8vw;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.cp_name {
	width: 35%;
	font-size: 2vw;
	font-weight: bold;
}

.inro_left {
	width: 65%;
}

.inro_left .info {
	width: 100%;
	height: auto;
	position: relative;
	line-height: 2;
	margin-bottom: 3vw;
}

.inro_left .info strong {
	text-decoration: underline;
	padding: 0px 5px;
}

.inros {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.inros .item {
	width: 33.33%;
	height: auto;
	position: relative;
	margin-bottom: 2vw;
	padding: 0% 5%;
}

.inros .item::after {
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, .05);
}

.inros .item:last-child::after {
	display: none;
}

.inros .item:first-child {
	padding-left: 0;
}

.inros .item:nth-child(3n) {
	margin-right: 0%;
}

.inros .item .name {
	width: 100%;
	height: auto;
	display: flex;
	position: relative;
	margin-bottom: 1vw;
}

.inros .item .name .icon {
	width: 35px;
	height: auto;
	position: relative;
}

.inros .item .name .txt {
	width: calc(100% - 45px);
	margin-left: 10px;
	line-height: 35px;
	background-image: linear-gradient(90deg, #ee5253, rgba(238, 82, 83, 0));
	color: #fff;
	padding-left: 10px;
}

.inros .item .infos p {
	width: 100%;
	height: auto;
	position: relative;
	line-height: 25px;
	padding: 5px 0px;
	padding-left: 10px;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.6);
}

.inros .item .infos p::after {
	width: 4px;
	height: 4px;
	position: absolute;
	left: 0;
	top: 15.5px;
	content: '';
	background: rgba(0, 0, 0, 0.4);
}

.ewm_box{
	width: 100%;
	padding: 0px 8vw;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding-bottom: 6vw;
}

.ewm_box img{
	width: 120px;
}

.ewm_box p{
	width: 100%;
	text-align: right;
	margin-top: 10px;
}

.cs_box {
	width: 100%;
	padding: 0vw 8vw 5vw;
	padding-bottom: 0;
}

.cs_menu {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	line-height: 1.5;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 1vw;
	margin-bottom: 1vw;
}

.cs_menu .name {
	font-size: 2vw;
	font-weight: bold;
}

.cs_bar {
	width: auto;
	display: flex;
	align-items: center;
	position: relative;
}

.cs_bar a {
	cursor: pointer;
	width: auto;
	font-size: 1.5vw;
	font-weight: bold;
	margin-left: 1vw;
	opacity: 0.5;
}

.cs_bar a:hover,
.cs_bar a.active {
	opacity: 1;
}

.cs_box .spage {
	display: none;
	flex-wrap: wrap;
}

.cs_box .spage .singePage{
	display: flex;
	flex-wrap: wrap;
}


.cs_box .spage.active {
	display: flex;
	width: 100%;
}

.cs_box .spage .row {
	flex: 1;
}

.cs_box .spage .row:first-child {
	flex: 0.5;
}

.cs_box .spage .row:first-child .name {
	font-size: 24px;
	color: #ee5253;
	padding: 10px;
	line-height: 45px;
	position: relative;
}

.cs_box .spage .row:first-child .name::after {
	width: 50px;
	height: 2px;
	position: absolute;
	left: 10px;
	bottom: 0;
	content: '';
	background: #ee5253;
	display: block;
}

.cs_box .spage .row .pz1 {
	line-height: 35px;
	position: relative;
	padding: 10px;
}

.cs_box .spage .row:nth-child(n+2) .pz1::after {
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	content: '';
	background: rgba(0, 0, 0, .1);
}

.cs_box .spage .temp {
	height: 55px;
	width: 100%;
	position: relative;
}

.cs_box .spage .row:nth-child(n+2) .name {
	font-size: 24px;
	text-align: center;
	height: auto;
	padding: 10px 10px;
	display: flex;
	justify-content: center;
	position: relative;
}

.cs_box .spage .row:nth-child(n+2) .name p {
	background: #f7f7f7;
	color: #272727;
	line-height: 25px;
	padding: 10px 25px;
	border-radius: 5px;
}

.cs_box .spage .row:nth-child(n+2) .pz1 {
	text-align: center;
}

/* table */
.cs_box .spage table {
	width: 100%;
}

.cs_box .spage table tr:nth-child(1) {
	text-align: center;
	font-size: 1.4vw;
}

.cs_box .spage table tr:nth-child(1) td {

	position: relative;
}

.cs_box .spage table tr:nth-child(1) td strong {
	background: #f7f7f7;
	color: #272727;
	line-height: 25px;
	padding: 5px 25px;
	border-radius: 5px;
	white-space: normal;
}

.cs_box .spage table td[colspan] {
	/* 为所有带有colspan属性的td添加样式 */
	font-weight: bold;
	font-size: 1.4vw;
	color: #ee5253;
	padding: 10px;
	line-height: 45px;
	position: relative;

}

.cs_box .spage table td[colspan]::after{
	width: 50px;
	height: 2px;
	position: absolute;
	left: 10px;
	bottom: 0;
	content: '';
	background: #ee5253;
	display: block;
}

.cs_box .spage table td{
	line-height: 35px;
	position: relative;
	padding: 10px;
}

.cs_box .spage table td:nth-child(n+2){
	text-align: center;
}

.cs_box .spage table tr:nth-child(n+2) td:nth-child(n + 2){
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.other_info{
	width: 100%;
	height: auto;
	position: relative;
	padding: 6vw 0vw;
	padding-top: 0;
	display: flex;
	justify-content: space-between;
	margin-top: 3vw;
	padding-bottom: 1vw;
}

.other_info .other_left{
	display: flex;
	width: 50%;
}

.other_info .ewm{
	width: 50%;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.other_info .ewm img{
	width: 150px;
}

.other_left .item{
	width: 190px;
	height: 45px;
	display: flex;
	border: 1px solid #272727;
	align-items: center;
	border-radius: 50px;
	justify-content: center;
	margin-right: 25px;
}

.other_left .item:hover{
	background: #c81918;
	color: #fff;
	border-color: #c81918;
}

.other_left .item .img{
	width: 25px;
	height: 25px;
	margin-left: 15px;
	background: url(../images/pdf_icon.png) no-repeat;
	background-size: auto 100%;
}

.other_left .item:hover .img{
	background-position: -25px 0px;
}

.other_left .item .img img{
	display: none;
}



.other_info .ewm p{
	width: 100%;
	margin-top: 15px;
	text-align: right;
}

.cp_name.center{
	width: 100%;
	text-align: center;
}

.same_product{
	background: #f9f9f9;
	padding: 5vw 8vw;
	position: relative;
}

.same_product .list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-top: 2vw;
}

.same_product .list .item{
	width: 30%;
	margin-right: 5%;
	margin-bottom: 2.5vw;
	position: relative;
}

.same_product .list .item:nth-child(3n){
	margin-right: 0%;
}

.same_product .list .item .name{
	text-align: center;
	font-size: 1.5vw;
	position: relative;
	padding: 0.5vw 0px;
	padding-bottom: 2vw;
	font-family: din;
}

.more_btn2.c{
	margin: 0px auto;
}

.news_box .item .des p:last-child{
	margin-right: 0;
}

@media screen and (max-width: 1366px){
	.banner-swiper .slogan .info{
		font-size: 14px;
	}
	.news_box .item .name{
		font-size: 16px;
	}
	.news_box .item .des{
		font-size: 12px;
	}
	.cp_name{
		width: 25%;
	}
	.inro_left{
		width: 70%;
	}
	.other_info .ewm p{
		font-size: 14px;
	}
	.other_info .ewm img{
		width: 135px;
	}
}

@media screen and (max-width: 1200px){
	.banner-swiper .slogan .info{
		width: 90%;
		font-size: 12px;
	}
	.focus_swiper .swiper-button-next, .focus_swiper .swiper-button-prev{
		width: 45px;
		height: 45px;
	}
	.news_box.ipage .item .name{
		font-size: 16px;
		height: 60px;
		line-height: 30px;
	}
	.news_box .item .des p{
		margin-right: 10px;
	}
	.cs_box .spage table{
		font-size: 14px;
	}
	.detail_top .des p,.pn_news .item,.detail_marks a{
		font-size: 14px;
	}
	.news_box.detail .item .name{
		padding-bottom: 0;
	}
}

@media screen and (max-width: 900px){
	.logo {
	    width: 120px;
	}
	.nav a{
		font-size: 16px;
	}
	.header{
		height: 60px;
		position: fixed;
	}
	.banner-swiper .swiper-slide{
		margin-top: 60px;
		height: 150vw;
	}
	.banner-swiper .slogan{
		width: 100%;
		left: 0%;
		position: relative;
		padding: 0px 5%;
		top: 0;
		margin-top: 10vw;
		z-index: 2;
	}
	.banner-swiper .slogan .en{
		font-size: 14px;
		margin-bottom: 2vw;
	}
	.banner-swiper .slogan .title{
		font-size: 7vw;
		margin-bottom: 2vw;
	}
	.banner-swiper .swiper-slide .pro{
		position: absolute;
		width: 70%;
		right: 0;
		top: 70vw;
		left: 25%;
	}
	.banner-swiper .slogan .des{
		font-size: 14px;
	}
	.banner-swiper .slogan .info{
		font-size: 14px;
		width: 100%;
		margin-bottom: 5vw;
	}
	.boxes{
		padding: 10vw 0;
	}
	.pro_name{
		position: relative;
		top: 0;
		font-size: 6vw;
		margin-bottom: 5vw;
	}
	.products .item{
		flex-wrap: wrap;
		padding: 0vw 5vw;
		padding-bottom: 10vw;
	}
	
	.products .item:nth-child(n+3){
		padding: 10vw 5vw;
	}
	
	.products .item .img,.products .item .info{
		width: 100%;
	}
	.products .item .info .name{
		font-size: 5vw;
	}
	.products .item .info .des{
		font-size: 14px;
		margin-bottom: 5vw;
	}
	.products .item .img{
		margin-bottom: 3vw;
	}
	.news_top{
		padding: 0px 5vw;
		margin-bottom: 5vw;
	}
	.news_top a{
		font-size: 12px;
		line-height: 20px;
		width: 70px;
	}
	.news_name{
		width: auto;
		font-size: 6vw;
	}
	.news_box.home{
		padding-bottom: 30px;
	}
	.news_box .swiper-pagination-bullet.swiper-pagination-bullet-active {
	    background: #c81918;
	}
	.footer{
		padding: 5vw 0px;
		font-size: 14px;
	}
	.focus_swiper {
	    width: 90%;
	    margin: 10vw auto 0px;
		background: #f9f9f9;
	}
	.focus_swiper .swiper-button-next, .focus_swiper .swiper-button-prev{
		display: none;
	}
	.focus_swiper .swiper-slide{
		flex-wrap: wrap;
	}
	.focus_swiper .swiper-slide .thum{
		width: 100%;
	}
	.focus_swiper .swiper-slide .info{
		width: 100%;
		background: #f9f9f9;
		padding-bottom: 40px;
	}
	.focus_swiper .swiper-slide .info .des p{
		margin-right: 10px;
		font-size: 14px;
	}
	.focus_swiper .swiper-slide .info .name{
		font-size: 4.5vw;
	}
	.focus_swiper .swiper-pagination{
		left: 5%;
		width: 90%;
		bottom: 10px;
		text-align: left;
	}
	.focus_swiper .swiper-pagination-bullet{
		background: rgba(0, 0, 0, .3);
	}
	.swiper-pagination-bullet{
		width: 6px;
		height: 6px;
	}
	.news_top{
		flex-wrap: wrap;
	}
	.news_nav{
		width: 100%;
	}
	.news_top .news_nav{
		margin-bottom: 2vw;
		border-bottom: 1px solid rgba(0, 0, 0, .1);
		padding-bottom: 4vw;
	}
	.news_top .news_nav a{
		font-size: 5vw;
		padding-bottom: 0px;
		width: auto;
	}
	.news_warp .news_top{
		padding: 0px 0vw;
	}
	.news_top.ns{
		border-bottom: none;
	}
	.sub-banner{
		margin-top: 60px;
	}
	.sub-banner img{
		max-width: none;
		width: 200%;
	}
	.sub-banner .txt .cn{
		font-size: 6vw;
	}
	.search {
	    width: 100%;
		border-radius: 0px;
	}
	.search input{
		height: 35px;
		font-size: 14px;
	}
	.search .search_btn{
		padding: 5px;
	}
	.news_box.ipage .item {
	    width: 100%;
	    margin-right: 0%;
	}
	.news_box.ipage .item .thum {
	    width: 100%;
		margin-bottom: 2vw;
	}
	.news_box.ipage .item{
		flex-wrap: wrap;
	}
	.news_box.ipage .item .info{
		width: 100%;
	}
	.news_box.ipage .item .name{
		line-height: 25px;
		padding-bottom: 5px;
		height: auto;
	}
	.news_box.ipage .item{
		margin-bottom: 5vw;
	}
	.news_detail{
		padding: 100px 5vw 5vw;
	}
	.detail_box{
		width: 100%;
	}
	.detail_top .name {
	    font-size: 5vw;
	    line-height: 1.7;
		margin-bottom: 2vw;
	}
	.detail_top .des p{
		margin-right: 15px;
	}
	.detail_top .des p:last-child{
		margin-right: 0;
	}
	.detail_top .des p{
		font-size: 12px;
	}
	.detail_top{
		margin-bottom: 5vw;
	}
	.detail_box .singePage{
		font-size: 14px;
	}
	/* .news_box .item .name{
		font-size: 14px;
		line-height: 25px;
	}
	
	.news_box.home .item .name{
		height: 50px;
	}
	.news_box.ipage .item .info:before, .news_box.home .item:before,.news_box.home .item .name::after{
		display: none;
	} */
	.detail_marks a{
		font-size: 12px;
		line-height: 28px;
	}
	.banner-swiper.product-swiper .slogan{
		position: absolute;
		top: 20vw;
	}
	.banner-swiper .slogan .xh{
		font-size: 16px;
		text-align: center;
	}
	.banner-swiper .slogan .mc{
		font-size: 7vw;
		text-align: center;
	}
	.banner-swiper.product-swiper .swiper-slide{
		height: 100vw;
	}
	.banner-swiper.product-swiper .swiper-slide .pro{
		top: 30vw;
		left: 15%;
	}
	.product_inro{
		padding: 10vw 5vw;
	}
	.cp_name{
		width: 100%;
		text-align: center;
		font-size: 6vw;
		margin-bottom: 5vw;
	}
	.inro_left {
		width: 100%;
		font-size: 14px;
	}
	.inros .item{
		width: 100%;
		padding: 0;
	}
	.inros .item .infos p{
		line-height: 20px;
		padding: 3px 0px;
		padding-left: 10px;
		font-size: 12px;
	}
	.inros .item::after{
		display: none;
	}
	.inro_left .info{
		margin-bottom: 5vw;
	}
	.inros .item .infos p::after{
		top: 11px;
	}
	.inros .item .name .icon{
		width: 25px;
	}
	.inros .item .name .txt {
	    width: calc(100% - 35px);
	    margin-left: 5px;
	    line-height: 30px;
	    padding-left: 10px;
	}
	.inros .item .name{
		align-items: center;
	}
	.inros .item{
		margin-bottom: 5vw;
	}
	.cs_box{
		padding: 0 5vw 0vw;
	}
	.cs_menu .name{
		font-size: 7vw;
		width: 100%;
		text-align: center;
		margin-bottom: 5vw;
	}
	.cs_menu{
		flex-wrap: wrap;
		padding-bottom: 2vw;
		margin-bottom: 2vw;
	}
	.cs_bar{
		width: 100%;
		justify-content: center;
	}
	.cs_bar a{
		font-size: 4vw;
		margin: 0px 3vw;
	}
	.cs_box .spage table td[colspan]{
		padding: 5px;
		font-size: 12px;
		line-height: 25px;
	}
	.cs_box .spage table td{
		line-height: 20px;
		padding: 5px;
	}
	.cs_box .spage table{
		font-size: 12px;
	}
	.cs_box .spage table td[colspan]::after{
		width: 30px;
		left: 5px;
	}
	.banner-swiper .swiper-pagination-bullet{
		width: 6px;
		height: 6px;
	}
	.cs_box .spage table tr:nth-child(1) td strong{
		font-size: 3.2vw;
		white-space: nowrap;
		padding: 3px 10px;
	}
	.cs_box .spage .singePage{
		overflow-x: auto;
	}
	.other_info{
		padding-top: 0;
		flex-wrap: wrap;
	}
	.ewm_box{
		padding: 0 5vw;
		justify-content: center;
		padding-bottom: 10vw;
	}
	.ewm_box p{
		font-size: 14px;
		text-align: center;
	}
	.other_info .other_left,.other_info .ewm{
		width: 100%;
	}
	.other_left .item{
		font-size: 14px;
		width: 130px;
		height: 40px;
		margin-right: 3vw;
	}
	.other_left .item img {
	    width: 20px;
	    margin-left: 10px;
	}
	.other_left .item:last-child{
		margin-right: 0;
	}
	.other_info .other_left{
		margin-bottom: 5vw;
		display: flex;
		justify-content: center;
	}
	.other_info .ewm{
		justify-content: center;
	}
	.other_info .ewm img {
		width: 110px;
	}
	.other_info .ewm p{
		font-size: 12px;
		text-align: center;
	}
	.same_product{
		padding: 10vw 5vw;
	}
	.same_product .list .item{
		width: 100%;
		margin-right: 0%;
		margin-bottom: 5vw;
	}
	.same_product .list .item .img{
		width: 70%;
		margin-left: 15%;
	}
	.same_product .list .item .name{
		font-size: 4vw;
		padding-bottom: 4vw;
	}
	.nav a::after{
		bottom: -17px;
	}
	.other_left .item .img{
		width: 20px;
		height: 20px;
	}
	.other_left .item:hover .img {
	    background-position: -20px 0px;
	}
	.searchContent{
		margin-top: 10vw;
	}
}