body,
html {
	font-family: "Poppins", sans-serif;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}
.news_details iframe{
	width:100%!important;
	margin-top:20px;
	aspect-ratio: 5 / 3;
    background: #000;
}
.cencs h3{
	font-weight:bold;
	font-size:18px;
	border-left:3px solid #0792A7;
	padding-left:10px;
	margin-bottom:10px;
}
.xhname{
	margin-bottom:20px;
	border:1px solid #eaeaea;
	padding:15px;
}
.choose_ul{
	display:flex;
}
.choose_ul ul{
	display:flex;
	width:calc(100% - 110px);
	margin-left:15px;
	margin-bottom:10px;
	flex-wrap: wrap;
}
.choose_ul label{
	padding:8px 15px;
}
.choose_ul ul li a{
	display:flex;
	margin-right:15px;
	min-width:120px;
	padding:8px 15px;
	border:1px solid #ddd;
	border-radius:3px;
	margin-bottom:15px;
	justify-content: center;
}
.choose_ul ul li a.active{
	background:#0792a7;
	color:#fff;
	border-color:#0792a7;
}
/* Layout for search container */
.search {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.98);
	position: fixed;
	z-index: 100000000000000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index:9999
}

.search::before,
.search::after {
	content: '';
	position: absolute;
	width: calc(100% + 15px);
	height: calc(100% + 15px);
	pointer-events: none;
	/*border: 1.5em solid #212fa0*/
}

.search::before {
	top: 0;
	left: 0;
	border-right-width: 0;
	border-bottom-width: 0;
}

.search::after {
	right: 0;
	bottom: 0;
	border-top-width: 0;
	border-left-width: 0;
}

.btn--search-close {
	font-size: 2em;
	position: absolute;
	top: 1.25em;
	right: 1.25em;
	display: none;
}

.btn--search-close {
	display: block;
}

.search__form {
	margin: 5em 0;
}

.search-icon{font-size: 20px; padding:6px; color: #111111; position:absolute;}
.search__input {
	font-family: inherit;
	font-size: 16px;
	line-height:30px;
	display: inline-block;
	box-sizing: border-box;
	width: 75%;
	max-width: 992px;
	padding: 0.05em 0;
	padding-left: 36px;
	background: none;
    color: #111;
	border-bottom: 1px solid;
}
.search__input:focus{
	outline: none;
}
.search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	opacity: 0.3;
	color: #333333;
}

.search__input::-moz-placeholder {
	opacity: 0.3;
	/* Mozilla Firefox 19+ */
	color: #060919;
}

.search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	opacity: 0.3;
	color: #060919;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.search__info {
	font-size: 90%;
	font-weight: bold;
	display: block;
	width: 75%;
	max-width: 992px;
	margin: 0 auto;
	padding: 0.85em 0;
	text-align: right;
	color: #333333;
}

.search__related {
	display: flex;
	width: 75%;
	pointer-events: none;
}

.search__suggestion {
	width: 33.33%;
	text-align: left;
}

.search__suggestion:nth-child(2) {
	margin: 0 3em;
}

.search__suggestion h3 {
	font-size: 1.35em;
	margin: 0;
}

.search__suggestion h3::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0.5em 0 0;
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
}

/************************/
/* Transitions 			*/
/************************/

.search {
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
}

.search--open {
	pointer-events: auto;
	opacity: 1;
}

/* Border */
.search::before,
.search::after {
	transition: transform 0.5s;
}

.search::before {
	transform: translate3d(-15px, -15px, 0);
}

.search::after {
	transform: translate3d(15px, 15px, 0);
}

.search--open::before,
.search--open::after {
	transform: translate3d(0, 0, 0);
}

/* Close button */
.btn--search-close {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .btn--search-close {
	opacity: 1;
	transform: scale3d(1, 1, 1);
	color: #333333;
}

/* Search form with input and description */
.search__form {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__form {
	opacity: 1;
	transform: scale3d(1, 1, 1);
	width: 100%;
}

.search__suggestion {
	opacity: 0;
	transform: translate3d(0, -30px, 0);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__suggestion {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.search--open .search__suggestion:nth-child(2) {
	transition-delay: 0.1s;
}

.search--open .search__suggestion:nth-child(3) {
	transition-delay: 0.2s;
}

@media screen and (max-width:40em) {
	.search__form {
		margin: 5em 0 1em;
	}
	.btn--search-close {
		font-size: 1.25em;
		top: 1.5em;
		right: 1.5em;
	}
	.search__info {
		text-align: left;
	}
	.search__suggestion {
		font-size: 80%;
		width: 100%;
	}
	.search__suggestion:nth-child(2),
	.search__suggestion:nth-child(3) {
		display: none;
	}
}
@media screen and (max-width:568px){
	.search__input {
	font-size: 14px;
}
}
@media (min-width: 1200px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1600px;
	}
}

.bian {
	position: relative;
	overflow: hidden;
}

.bian:before {
	position: absolute;
	right: -1px;
	bottom: 0;
	content: "";
	width: 50px;
	height: 50px;
	background: url(../images/yuanjiao.svg) no-repeat center;
	background-size: 100%;
	z-index: 1;
	filter: brightness(0) invert(1);
}

.bian:after {
	position: absolute;
	left: -1px;
	bottom: 0;
	content: "";
	width: 50px;
	height: 50px;
	background: url(../images/yuanjiao.svg) no-repeat center;
	background-size: 100%;
	z-index: 1;
	transform: rotate(90deg);
	filter: brightness(0) invert(1);
}

.bian2:before,
.bian2:after {
	filter: initial;
}


/**/

header.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 15px 0;
	z-index: 88;
	transition: all 0.3s;
}

header.header .header-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header.header .fupad {
	display: flex;
	max-width: 230px;
	justify-content: center;
	align-items: center;
}

header.header .fupad img.logo2 {
	display: block;
	width: 100%;
}

header.header .fupad img.logo {
	display: none;
	width: 100%;
}

header.header .fupad .navbar-brand {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

header.header .header-box .header-right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header.header .dropdown-toggle::after {
	display: none;
}

header.header .navbar {
	padding: 0!important;
	margin-right: 20px;
}

header.header .navbar-nav .nav-link {
	display: flex;
	color: #fff;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	height: 80px;
}

header.header .navbar-nav .nav-item {
	margin: 0 8px;
}

header.header .navbar-nav .nav-item a.nav-link {
	position: relative;
}

header.header .navbar-nav .nav-item.active a.nav-link:before {
	position: absolute;
	content: "";
	width: 100%;
	bottom: 0;
	left: 0;
	height: 5px;
	background: #0792a7;
}

.lang_box {
	position: relative;
	margin-right: 15px;
}

.lang_li {
	display: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	line-height: 50px;
	text-align: center;
	border: 1px solid #eaeaea;
	color: #333;
	background: #fff;
	z-index: 0;
	padding-top: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	overflow: hidden;
}

.lang_li a {
	display: block;
}

.lang_box:hover .lang_li {
	display: block;
}

.lang_box:hover .lang_li:hover {
	background: #f5f5f5;
}

header.header .lang {
	position: relative;
	z-index: 1;
	display: flex;
	width: 130px;
	height: 46px;
	justify-content: center;
	align-items: center;
	background: none;
	border-radius: 46px;
	color: #fff;
	border: 1px solid #fff;
	cursor: pointer;
}

.lang_box:hover .lang {
	background: #0792a7;
	color: #fff;
}

.lang_box:hover .lang span,
.lang_box:hover .lang i {
	color: #fff;
}

header.header.active .lang {
	display: flex;
	width: 130px;
	height: 46px;
	justify-content: center;
	align-items: center;
	border-radius: 46px;
	color: #000;
	border: 1px solid #ddd;
}

header.header .lang span {
	margin-right: 12px;
	display: inline-block;
}

header.header .search_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0792a7;
	border-radius: 50%;
	aspect-ratio: 1/1;
	width: 46px;
	font-size: 20px;
	color: #fff;
}

header.header.active {
	background: #fff;
	padding: 0;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}

header.header.active .fupad {
	height: 80px;
	width: auto;
	background: initial;
	transition: all 0.3s;
}

header.header.active .fupad .logo2 {
	display: none;
}

header.header.active .fupad .logo {
	display: block!important;
}

header.header.active .navbar-nav .nav-link {
	color: #000;
}

header.header .dropdown-menu_box {
	position: absolute;
	left: 50%;
	margin-left: -100px;
	width: 200px;
	top: 100%;
	z-index: 999;
	background: #ffffff;
	padding: 0px 0 0px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

header.header .dropdown-menu_box li {
	width: 100%;
}

header.header .dropdown-menu_box li a {
	display: block;
	padding: 15px 15px;
	line-height: 20px;
	width: 100%;
	border-bottom: 1px solid #eaeaea;
}

header.header .dropdown-menu_box li:last-child a {
	border-bottom: none;
}

header.header .dropdown-menu_box li a:hover {
	background:#0792a7;
	color: #fff;
}

.moblie_title_right {
	display: none;
	width: 46px;
	height: 46px;
	padding-top: 20px;
	text-align: center;
	cursor: pointer;
	margin-left: 15px;
	background: #fff;
	border-radius: 50%;
}

.menuicon {
	width: 20px;
	height: 2px;
	background: #999;
	position: relative;
	left: 50%;
	top: 50%;
	margin-top: -11px;
	margin-left: -10px;
}

.menuicon::before {
	content: '';
	width: 20px;
	height: 2px;
	background: #999;
	position: absolute;
	left: 0;
	top: -6px;
	z-index: 999;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.menuicon::after {
	content: '';
	width: 20px;
	height: 2px;
	background: #999;
	position: absolute;
	left: 0;
	top: 6px;
	z-index: 999;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.moblie_title_right.is-active .menuicon {
	background: none;
}

.moblie_title_right.is-active .menuicon::before {
	-webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
	transform: translate3d(0, 8px, 0) rotate(45deg);
}

.moblie_title_right.is-active .menuicon::after {
	-webkit-transform: translate3d(0, -4px, 0) rotate(-45deg);
	transform: translate3d(0, -4px, 0) rotate(-45deg);
}

.mobile_header_list {
	display: block;
	position: fixed;
	top: 0;
	left: 100%;
	min-width: 200px;
	right: 0;
	background: #fff;
	height: 100vh;
	cursor: pointer;
	color: #ffffff;
	z-index: 9999999;
	overflow: hidden;
	overflow-y: auto;
	transition: all 0.5s;
}

.mobile_header_list.cur {
	left: 30%;
	right: 0;
	transition: all 0.5s;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.mobile_header_list .mobile_btn {
	display: flex;
	justify-content: flex-end;
}

.mobile_header_list .moblie_title_right {
	display: block!important;
	background: #f8f8f8!important;
}

.mobile_header_list {
	padding: 1rem;
}

.mobile_header_list .card {
	background: none;
	border: none;
	border-bottom: 1px solid #eaeaea!important;
}

.mobile_header_list .card:last-child {
	border: 0!important;
}

.mobile_header_list .card>a {
	color: #333;
	line-height: 3rem;
}

.mobile_header_list .card>a {
	display: flex;
	padding-right: 1rem;
	align-items: center;
	justify-content: space-between;
}

.mobile_header_list .card>a i {
	transition: all 0.3s;
	transform: rotate(-90deg);
}

.mobile_header_list .card>a.cur i {
	transition: all 0.3s;
	transform: rotate(0deg);
}

.mobile_header_list .card>a.cur {
	padding-left: 10px;
	background: #0792a7;
	color: #fff;
}

.mobile_hidenlist {
	display: none;
	background: #f8f8f8;
}

.mobile_hidenlist_list a {
	display: flex;
	padding: 0 1rem;
	color: #3c482b;
	margin-bottom: 0;
	line-height: 3rem;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #eaeaea;
}

.main-box {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 888;
	background: rgba(0, 0, 0, 0.5);
}

.main-box.cur {
	display: block;
}


/**/

.bheader {
	width: 100%;
	position: relative;
	z-index: 0;
	height: 100vh;
}

.banner-wrapper {
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 0;
}

.index-banner-item {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.index-banner-item a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.index-banner-item .container {
	position: relative;
	z-index: 1;
	display: flex;
	width: 80%;
	height: 100%;
	align-items: center;
}

.index-banner-item .container .text {
	max-width: 860px;
}

.index-banner-item .title-1 {
	line-height: 70px;
	font-family: "Poppins", sans-serif;
	color: #fff;
}

.index-banner-item .title-2 {
	margin-top: 1%;
	color: #fff;
}

.banner-wrapper .swiper-slide {
	width: 100%;
	height: 100vh;
}

.banner-wrapper .swiper-slide .title-1 {
	opacity: 0;
	transform: translateY(-60px);
	transition: all 0.3s;
}

.banner-wrapper .swiper-slide .title-2 {
	opacity: 0;
	transform: translateY(-60px);
	transition: all 0.6s;
}

.banner-wrapper .swiper-slide.ani-slide .title-1 {
	transform: translateY(0px);
	opacity: 1;
	transition: all 0.3s;
}

.banner-wrapper .swiper-slide.ani-slide .title-2 {
	opacity: 1;
	transform: translateY(0px);
	transition: all 0.6s;
}

.banner-wrapper .banner-pagination {
	bottom: 5%;
}

.banner-wrapper .banner-pagination span {
	width: 50px;
	height: 4px;
	border-radius: 0;
	background: #fff;
	opacity: .5;
}

.number-prevnext {
	text-align: center;
	position: absolute;
	font-size: 0;
	right: 9%;
	top: 50%;
	margin-top: -12.5px;
}

.number-prevnext .number-1 {
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	color: #fff;
	margin-right: 10px;
	font-size: 16px;
}

.number-prevnext .swiper-banner-prev,
.number-prevnext .swiper-banner-next {
	width: 10px;
	height: 17px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 28px;
	cursor: pointer;
}

.number-prevnext .swiper-banner-prev:hover,
.number-prevnext .swiper-banner-next:hover {
	opacity: .5;
}

.number-prevnext .swiper-banner-prev {
	background: url('../images/l1.png') center no-repeat;
	background-size: 100%;
}

.number-prevnext .swiper-banner-next {
	background: url('../images/r1.png') center no-repeat;
	background-size: 100%;
}

.left-pagination {
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	bottom: 10%;
	z-index: 11;
}

.banner-wrapper .banner-pagination {
	text-align: center;
	left: auto;
	bottom: auto!important;
	right: auto!important;
	left: auto!important;
	width: auto;
	color: #fff;
	width: auto;
	transform: none;
	position: relative
}

.banner-wrapper .banner-pagination span {
	opacity: 1;
	margin: 0 3px!important;
	position: relative;
	width: 42px;
	height: 42px;
	background: transparent;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
}

.banner-wrapper .banner-pagination span::before {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 100%;
	transform: translate(-50%, -50%);
	background: #fff;
	transition: all .4s ease;
	opacity: .5;
}

.banner-wrapper .banner-pagination span.swiper-pagination-bullet-active {
	border-top: 6px solid #fff;
	border-bottom: 6px solid rgba(255, 255, 255, 0.2);
	border-left: 6px solid rgba(255, 255, 255, 0.2);
	border-right: 6px solid rgba(255, 255, 255, 0.2);
	-webkit-animation: rotate360 5s linear 0s infinite;
	animation: rotate360 5s linear 0s infinite;
}

@-webkit-keyframes rotate360 {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes rotate360 {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-ms-keyframes rotate360 {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(360deg);
	}
}

@keyframes rotate360 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.banner-wrapper .banner-pagination span.swiper-pagination-bullet-active::before {
	background: #fff!important;
	opacity: 1;
	transition: all .4s ease;
}

.banner-wrapper .banner-pagination span.swiper-pagination-bullet-active::after {
	opacity: 1;
	transition: all .4s ease;
}

.banner-wrapper .banner-pagination span.swiper-pagination-bullet-active .content {
	opacity: 1;
	transition: all .4s ease;
}

.banner-wrapper .banner-pagination span .content {
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: all .4s ease;
	z-index: 11;
}

.banner-wrapper .swiper-slide .img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
	overflow: hidden;
	transform: scale(1.2);
	transition: all 8s;
}
.banner-wrapper .swiper-slide .img.pc_banner{
display:block;
}
.banner-wrapper .swiper-slide .img.ph_banner{
display:none;
}
.banner-wrapper .ani-slide .img {
	transform: scale(1.0);
	transition: all 8s;
}

.index-banner-item .title-1 {
	font-weight: bold;
	font-size: 60px;
	margin-bottom: 30px;
	text-transform: uppercase;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.index-banner-item .title-2 {
	font-size: 30px;
	line-height: 50px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


/**/

.warppbox {
	padding: 100px 0;
	position: relative;
	z-index: 1;
	background: #fff;
	overflow: hidden;
}

.title {
	margin-bottom: 40px;
}

.title h1 {
	font-size: 48px;
	font-weight: bolder;
	text-transform: uppercase;
	color: #000;
}

.title p {
	font-family:'Impact';
	font-size:70px;
	color:#eee;
	line-height: 70px;
	margin-bottom:30px;
}

a.more_btn {
	display: flex;
	width: 160px;
	height: 56px;
	justify-content: center;
	align-items: center;
	border-radius: 56px;
	color: #000;
	font-size: 16px;
	border: 1px solid #ddd;
	background: #fff;
}

a.more_btn i {
	margin-left: 15px;
}

.about.warppbox {
	overflow: hidden;
	background: url(../images/bj1.jpg) no-repeat center fixed;
	background-size: cover;
	padding-bottom: 100px;
}

.about.warppbox .title h1 {
	margin-bottom: 40px;
}



.about.warppbox .about_top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.about.warppbox .about_text {
	line-height:30px;
	font-size: 16px;
	width: 50%;
	min-width: 500px;
}

.about_text>div {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
}

.about.warppbox .Culture {
	display: flex;
	width: calc(100% + 30px);
	padding-left: 0;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.about.warppbox .Culture li {
	margin: 15px;
	width: calc(33.333% - 30px);
	border: 1px solid #eaeaea;
	border-radius: 20px;
	padding: 2%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

.about.warppbox .Culture li p {
	font-weight: bold;
	font-size: 24px;
}

.about.warppbox .Culture li img {
	width: 50px;
}

.about.warppbox .zi {
	opacity: 0;
	transform: translateX(-100%);
}

.about_title,
.about_text {
	transform: translateY(-100%);
	opacity: 0;
}

.animate4 {
	transform: translateX(100%);
	opacity: 0;
}


/**/

.product.warppbox {
	position: relative;
	background: #0792a7;
}
.product .title p,
.news .title p{
	color:#fff;
	opacity:0.2
}
.pro_gd {
	position: relative;
	height: 1600px;
}

.pro_box {
	width: 46%;
	position: absolute;
	top: -300px;
	right: 27%;
	aspect-ratio: 1 / 1;
	z-index: 2;
}

.pro_box .pro_c {
	position: relative;
	display: flex;
	width: 100%;
	aspect-ratio: 1 / 1;
	justify-content: center;
	align-items: center;
}

.pro_box .pro_c>img {
	position: relative;
	z-index: 1;
}

.pro_box .pro_c:before {
	position: absolute;
	content: "";
	top: 2%;
	left: 2%;
	right: 2%;
	bottom: 2%;
	background: url(../images/tx1.png) no-repeat center;
	background-size: 100%;
	z-index: 0;
	-webkit-animation: rotate360 20s linear 0s infinite;
	animation: rotate360 20s linear 0s infinite;
}

.product .title {
	transform: translateY(-100%);
	opacity: 0;
}

.product .title h1 {
	color: #fff;
}

.cp-swiper {
	width: 100%;
	aspect-ratio: 16 / 4.2;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 210px;
	border-bottom-right-radius: 210px;
	overflow: hidden;
	margin-bottom: 50px;
	transform: translateX(-100%);
	opacity: 0;
}

.text-swiper {
	width: 50%;
	margin: initial;
	color: #fff;
	height: initial;
	cursor: pointer;
	font-size: 14px;
	z-index: 3;
}

.text-swiper .swiper-wrapper {
	height: initial;
}

.text-swiper .swiper-slide-thumb-active .icon_quan {
	border: 5px solid #fff;
	margin-right: 10px;
	width: 20px;
	height: 20px;
}

.icon_quan {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #fff;
	display: inline-block;
	margin-right: 10px;
}

.text-swiper .swiper-slide {
	display: flex;
	height: initial;
	align-items: center;
}

.product.warppbox .more_btn {
	width: 200px;
	background: rgba(0, 0, 0, 0);
	color: #fff;
	margin-top: 60px;
}

.pro_ph {
	display: none;
}


/**/

.title_clien {
	position: relative;
	z-index: 1;
	text-align: center;
	transform: translateY(40%);
	opacity: 0;
	transition: all 1s;
}

.title_clien h1 {
	color: #0792a7;
	font-weight: bold;
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 48px;
}

.title_clien p {
	font-size: 24px;
	margin: 20px 0 50px;
}

.title_clien a {
	display: inline-block;
	color: #999;
}

.clientList {
	position: relative;
	width: 100%;
	aspect-ratio: 16/ 10;
}

._center {
	display: flex;
	width: 100%;
	aspect-ratio: 16/ 9;
	justify-content: center;
	align-items: center;
}

._center>div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 500px;
	aspect-ratio: 1/1;
	position: relative;
}

._center>div ._cir {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: rgba(0,0,0,0.3);*/
	border: 1px solid #000;
	border-radius: 50%;
	animation: spread1 10s linear infinite;
	opacity: 0;
	will-change: transform;
	z-index: 0;
}

.clientList ._cir.j1 {
	animation-delay: 0s;
}

.clientList ._cir.j2 {
	animation-delay: 2s;
}

.clientList ._cir.j3 {
	animation-delay: 4s;
}

.clientList ._cir.j4 {
	animation-delay: 6s;
}

.clientList ._cir.j5 {
	animation-delay: 8s;
}

@keyframes spread1 {
	0% {
		transform: scale(1);
		opacity: .1
	}
	100% {
		transform: scale(5);
		opacity: 0
	}
}

@keyframes spin1 {
	to {
		transform: rotate(1turn);
	}
}

@keyframes spin2 {
	to {
		transform: rotate(-1turn);
	}
}

._brandb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.clientList ._brand {
	position: relative;
	width: 100%;
	aspect-ratio: 16/ 9;
}

.clientList ._brand ._item {
	position: absolute;
	transform-origin: 40% 40%;
	animation: spin1 9s infinite linear;
	will-change: transform;
}

.clientList ._brand ._item ._pal {
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	animation-duration: 1.5s;
	background-color: #fff;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 .15rem .3rem rgba(255, 147, 51, .05);
	will-change: transform;
}

.clientList ._brand ._item ._pal img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.clientList ._brand ._item.cir1 {
	left: 2%;
	top: 40%;
	width: 200px;
	height: 200px;
	animation: spin1 7s infinite linear;
}

.clientList ._brand ._item.cir1 ._pal img {
	animation: spin1 7s infinite linear reverse;
}

.clientList ._brand ._item.ci2 {
	left: 25%;
	top: 50%;
	width: 30px;
	height: 30px;
	animation: spin2 5s infinite linear;
	background: #0792a7;
	border-radius: 50%;
}

.clientList ._brand ._item.ci3 {
	left: 12%;
	top: 75%;
	width: 50px;
	height: 50px;
	animation: spin2 9s infinite linear;
	background: #0792a7;
	border-radius: 50%;
}

.clientList ._brand ._item.cir2 {
	left: 27%;
	top: 76%;
	width: 200px;
	height: 200px;
	animation: spin2 6s infinite linear;
}

.clientList ._brand ._item.cir2 ._pal img {
	animation: spin2 6s infinite linear reverse;
}

.clientList ._brand ._item.cir3 {
	left: 33%;
	top: 20%;
	width: 150px;
	height: 150px;
	animation: spin1 8s infinite linear;
}

.clientList ._brand ._item.cir3 ._pal img {
	animation: spin1 8s infinite linear reverse;
}

.clientList ._brand ._item.ci6 {
	left: 17%;
	top: 15%;
	width: 30px;
	height: 30px;
	animation: spin2 10s infinite linear;
	background: #0792a7;
	border-radius: 50%;
}

.clientList ._brand ._item.ci7 {
	right: 36%;
	top: 8%;
	width: 30px;
	height: 30px;
	animation: spin1 9s infinite linear;
	background: #0792a7;
	border-radius: 50%;
}

.clientList ._brand ._item.ci7 ._pal img {
	animation: spin1 9s infinite linear reverse;
}

.clientList ._brand ._item.ci8 {
	right: 23%;
	top: 48%;
	width: 50px;
	height: 50px;
	animation: spin2 7s infinite linear;
	background: #0792a7;
	border-radius: 50%;
}

.clientList ._brand ._item.ci8 ._pal img {
	animation: spin2 7s infinite linear reverse;
}

.clientList ._brand ._item.cir4 {
	right: 15%;
	top: 15%;
	width: 200px;
	height: 200px;
	animation: spin1 10s infinite linear;
}

.clientList ._brand ._item.cir4 ._pal img {
	animation: spin1 10s infinite linear reverse;
}

.clientList ._brand ._item.cir5 {
	right: 26%;
	top: 68%;
	width: 160px;
	height: 160px;
	animation: spin2 5s infinite linear;
}

.clientList ._brand ._item.cir5 ._pal img {
	animation: spin2 5s infinite linear reverse;
}

.clientList ._brand ._item.cir6 {
	right: 0%;
	top: 40%;
	width: 160px;
	height: 160px;
	animation: spin2 8s infinite linear;
}

.clientList ._brand ._item.cir6 ._pal img {
	animation: spin2 8s infinite linear reverse;
}

.clientList ._brand ._item.cir12 {
	right: 6%;
	top: -8%;
	width: 200px;
	height: 200px;
	animation: spin1 6s infinite linear;
}

.clientList ._brand ._item.cir12 ._pal img {
	animation: spin1 6s infinite linear reverse;
}

.engineering-swiper,
.engineering-swiper .swiper-wrapper {
	height: initial;
}

.engineering_li {
	display: none;
}


/**/

.news.warppbox {
	background: #0792a7;
	position: relative;
	z-index: 3;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}

.news.warppbox .title h1 {
	color: #fff;
}

.news_box {
	transform: translateY(50%);
	opacity: 0;
	transition: all 1s;
}

.news-wrapper .swiper-slide {
	position: relative;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	padding: 2%;
	cursor: pointer;
	border: 1px solid #fff;
}

.news-wrapper .swiper-slide:before {
	position: absolute;
	z-index: 0;
	content: "";
	top: 100%;
	left: 0;
	bottom: 0;
	right: 0;
	background: #0792a7;
	transition: all 0.5s;
}

.news-wrapper .swiper-slide>div {
	position: relative;
	z-index: 1;
}

.news-wrapper .swiper-slide:hover {
	border: 1px solid #fff;
}

.news-wrapper .swiper-slide:hover:before {
	top: 0;
	transition: all 0.5s
}

.news-wrapper .swiper-slide>div>span {
	display: inline-block;
	padding: 5px 8px;
	background: #000;
	border-radius: 30px;
	line-height: 20px;
	color: #fff;
	font-size: 12px;
	text-align: center;
	margin-bottom: 20px;
}

.news-wrapper .img_box {
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
}

.news-wrapper .swiper-wrapper {
	height: initial;
}

.news-wrapper .swiper-wrapper h3 {
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 100px;
	color: #000;
	min-height:43px;
}

.news-wrapper .swiper-slide:hover h3,
.news-wrapper .swiper-slide:hover span.date {
	color: #fff;
}

.news-wrapper .swiper-slide:hover span.more {
	background: #fff;
	color: #0792a7;
}

.new_b {
	display: flex;
	margin-top: 20px;
	align-items: center;
	justify-content: space-between;
}

span.date {
	color: #999;
	font-size: 16px;
}

span.more {
	color: #fff;
	display: flex;
	width: 40px;
	height: 40px;
	background: #d9d9d9;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.news-wrapper .swiper-pagination {
	position: initial;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
}

.news-wrapper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	margin: 0 5px;
}

footer {
	position: relative;
	z-index:1;
	width: 100%;
	padding: 80px 0 40px;
	background: url(../images/db.jpg) no-repeat center fixed;
	background-size: cover;
	margin-top: -50px;
}

footer .foot_bottom{
    display: flex;
    width: 100%;
    align-items: center;
    padding-top: 20px;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #666;
}
footer .foot_head{
	border-bottom: 1px solid #ddd;
	padding: 30px 3% 50px 0;
}
footer .foot_head,
footer .foot_head>div{
	display: flex;
	align-items: center;
    justify-content: space-between;
	
}
footer .foot_head>div>img{
	width: 200px;
	margin-right: 30px;
}
footer .foot_left{
	
	width: 80%;
}
footer .foot_left a.more_btn{
	height: 46px;
}

footer .foot_nav{
	display: flex;
	flex-wrap: wrap;
	padding: 30px 3% 30px 0;
	justify-content: space-between;
}
footer .foot_nav .foot-nav-item{
	width: 20%;
}
footer .foot_nav .foot-nav-item:last-child{
	width: auto;
}
footer .foot_nav .foot-nav-item .foot-nav-title{
	font-weight: bold;
	font-size: 18px;
	color: #000;
	margin-bottom: 30px;
}
footer .foot_nav .foot-nav-item li a{
	font-size: 14px;
}
footer .foot_right{
	padding-top: 30px;
	border-left: 1px solid #ddd;
	padding-left: 3%;
	width: 20%;
}
footer .foot_top{
	display: flex;
	position: relative;
}
footer h3{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}
footer .foot_right .rx p{
	font-size: 26px;
	color: #0792a7;
	font-weight: bold;
}
footer .foot_right .gzh{
	width: 100%;
	margin: 40px 0 20px;
	color: #666;
	font-size: 14px;
}
footer .foot_right .gzh>img{
	max-width:150px ;
	aspect-ratio: 1 / 1;
	
}
/**/


#banner-img {
    position: relative;
    display: flex;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    min-height: 760px;
    overflow: hidden;
    padding-bottom:180px;
    z-index: 3;
    align-items: flex-end;
    justify-content: flex-start;
    }

#banner-img p {
    position: relative;
    font-size: 60px;
    color: #fff;
	line-height:60px;
    font-weight: bold;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.cont_main{
	position: relative;
	z-index: 3;
	width: 100%;
	min-height: 600px;
	background: #fff;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}

.warpper-ny{
	padding: 100px 0;
	overflow: hidden;
}
.title-ny{
	position: relative;
	margin-bottom: 60px;
}
.title-ny:before{
	content: "";
	position: absolute;
	top:50%;
	left: 0;
	right: 0;
	border-top: 1px dashed #000;
	border-radius: 40px;
	height: 40px;
	z-index: 0;
}
.title-ny p{
	position: relative;
	z-index: 1;
	font-size: 36px;
	font-weight: bold;
	color: #000;
	display: initial;
	background: #fff;
	line-height: 36px;
	padding: 0 15px;
	margin-left: 5%;
}

#contain-nav{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #0792a7;
}
#contain-nav .swiper-slide{
	width: auto;
	
	min-width: 120px;
}
#contain-nav .swiper-slide a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 24px 15px;
	position: relative;
	color: #fff;
	text-align: center;
}
#contain-nav .swiper-slide a:before{
	position: absolute;
	content: '';
	left: 50%;
	right: 50%;
	bottom: 0;
	height: 3px;
	background: #fff;
	transition: all 0.3s;
}
#contain-nav .swiper-slide a.active:before,
#contain-nav .swiper-slide a:hover:before{
	left: 0;
	right: 0;
	transition: all 0.3s;
}
.culture_ul{
	display: flex;
	margin:-15px;
	flex-wrap: wrap;
}
.culture_ul li{
	width:calc(50% - 30px);
	background: #f5f5f5;
	border-radius:20px;
	margin: 15px;
	padding: 30px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}
.culture_ul li>div{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.culture_ul li>div span{
	font-weight: bold;
	font-size: 24px;
	color: #0792A7;
}
.culture_ul li img{
	width: 50px;
	margin-bottom: 15px;
}
/**/
.honor-wrapper .swiper-wrapper{
	height: initial;
}
.honor-wrapper.swiper-container .swiper-pagination{
	position: initial;
	width: 100%;
	text-align: center;
	opacity: 1;
	margin-top: 30px;
}
.honor-wrapper.swiper-container .swiper-pagination-clickable .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background: #0792a7;
}
/**/
.news_li{
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}
.news_li li,
.case_list li,
.pro_list li{
	position: relative;
	margin:  15px;
	width: calc(25% - 30px);
	padding: 20px;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 20px;
	overflow: hidden;
}
.case_list p{
	margin-top: 20px;
	 overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news_li li:before {
	position: absolute;
	z-index: 0;
	content: "";
	top: 100%;
	left: 0;
	bottom: 0;
	right: 0;
	background: #0792a7;
	transition: all 0.5s;
}
.news_li li:hover:before {
	top: 0;
	transition: all 0.5s
}
.news_li li>a{
	position: relative;
	z-index: 1;
}
.news_li li>a>div>span {
    display: inline-block;
    padding: 5px 8px;
    background: #000;
    border-radius: 30px;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
}
.news_li .img_box,
.case_list .img_box{
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.news_li li>a>div> h3 {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 100px;
    color: #000;
}
.news_li li:hover h3,
.news_li li:hover span.date {
	color: #fff;
}

.news_li li:hover span.more {
	background: #fff;
	color: #0792a7;
}
/**/
.support_down,
.contact_info ul,
.case_list,
.pro_list{
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}

.support_down li{
	
	margin: 15px;
	border: 1px solid #eaeaea;
	border-radius: 15px;
	width: calc(50% - 30px);
	padding: 20px;
	
}
.support_down li a{
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.support_down li a em{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f8f8f8;
	    display: flex;
    align-items: center;
    justify-content: center;
}

.support_down li a p{
	width: calc(100% - 60px);
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.support_down li:hover{
	border-color: #0792A7;
}
.support_down li:hover em{
	background: #0792A7;
	color: #fff;
}
/**/

.contact_info li{
	margin: 15px;
	width: calc(33.333% - 30px);
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	padding: 20px;
	border-radius: 15px;
	overflow: hidden;
}
.contact_info li span{
	display: inline-block;
	font-size: 24px;
	color: #0792A7;
	margin-bottom: 60px;
	font-weight: bold;
}
.online_box{
	display: flex;
	flex-wrap: wrap;
}
.online_box>div{
	width: 50%;
}
.online_box>div.left{
	padding-right: 2%;
}
#feedback {
	margin-left: -0.4rem;
	margin-right: -0.4rem;
}

#feedback .form-control {
	background: none;
	border: none;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	height: 3.25rem;
	padding: .375rem 1.2rem;
}

#feedback .form-control:focus {
	box-shadow: none;
	border: 1px solid #3c482b;
}

#feedback .form-group {
	padding: 0.3rem 0.8rem;
}

#feedback .form-textarea {
	width: 100%;
	padding: 1rem 1.2rem;
	background: none;
	border-radius: 8px;
	height: 8rem;
	border: none;
	border: 1px solid #eaeaea;
}

#feedback .feedback-submit {
	width: 100%;
	height: 3.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0792A7;
	color: #fff;
	border-radius: 10px;
}

.right{
	background: url(../images/map.jpg) no-repeat center;
	background-size: auto 100%; 
	padding: 10px;
	border-radius: 15px;
}
/**/
.case_list li:hover span.more{
	background: #0792A7;
	color: #fff;
}
.case_list li:hover {
	border-color: #0792A7;
}
/**/
.pro_list{
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}
.pro_list li {
	transition: all 0.5s;
}


.pro_list li .img_box{
	margin-bottom: 20px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}
.pro_list li p{
	text-align: center;
	color: #000;
}
.pro_list li:hover{
	background: #0792A7;
	border-color: #0792A7;
	transition: all 0.5s;
}
.pro_list li:hover p{
	color: #fff;
}
.pro_list li .img_box img{
	transform: scale(1.0);
	transition: all 0.5s;
}
.pro_list li:hover .img_box img{
	transform: scale(1.05);
	transition: all 0.5s;
}
/**/
.pro_left{
	position: -webkit-sticky; /* Safari */
  	position: sticky;
	top:20%;
	float: left;
	width:40%;
	background: #fff;
}

.pro_right{
	float: right;
	width: 60%;
}

.pro_right h1{
	font-size: 36px;
	font-weight: bold;
}
.datelist{
	display: flex;
	width: 100%;
	border-radius: 15px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background: #f5f5f5;
	margin: 20px 0 30px;
	overflow: hidden;
	align-items: center;
    justify-content: space-between;
}
.datelist span{
	display: inline-block;
	padding:10px 15px;
	line-height: 30px;
	text-align: center;
	background: #0792A7;
	color: #fff;
}
.datelist a{
	padding:10px 15px;
	display: inline-block;
	background: #ddd;
	height: 100%;
}
.datelist a i{
	margin-right: 15px;
}

.news_main_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 2rem;
	border-bottom: 1px solid #ddd;
}
.news_link {
	margin-top: 2rem;
}

.news_link a {
	margin-right: 1rem;
	color: #999;
}

.news_link a i {
	margin-right: 0.4rem;
}

.news_details {
	min-height: 460px;
	padding: 2rem 0;
}

.news_details p {
	margin-bottom: 0.7rem;
}
a.back {
	display: flex;
	width: 3.5rem!important;
	height: 3rem;
	align-items: center;
	justify-content: center;
	border: 1px solid #eaeaea;
	border-radius: 3px;
}

a.back:hover {
	color: #fff;
	background: #0792A7;
}
.page_tb {
	padding-top: 2rem;
	border-top: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.page_tb a {
	color: #999;
}

.page_tb i {
	margin: 0 0.7rem;
}

.page_tb a:hover,
.news_link a.more_cen:hover {
	color: #3e472c;
}
.btn_p {
	margin: 30px 0;
	display: flex;
}

.btn_p a {
	margin-right: 20px;
	width: 137px;
	height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background:#0792A7;
	border-radius: 47px;
}

.btn_p .retrun {
	border: 1px solid #eaeaea;
	color: #666;
	background: #f5f5f5;
}

.btn_p a.iq:hover {
	background:#0792A7;
	color: #fff;
}

.btn_p a.retrun:hover {
	background: none;
	border: 1px solid #000;
	color: #000;
}
.bags-continue {
    text-align: right;
    margin-bottom: 40px;
}
.bags-continue a {
    display: inline-block;
    padding: 10px;
    border: 1px solid #111111;
    text-transform: uppercase;
    min-width: 300px;
    text-align: center;
    color: #111111;
    border-radius: 50px;
}
.feedback-submit2.btn {
    float: right;
    background: #0792A7;
    color: #ffffff;
    border-radius: 0;
    width: 100%;
    max-width: 300px;
    height: 51px;
    border-radius: 51px;
}

.inquiry-conner .feedback-form .form-control-input .form-control,
.inquiry-conner .feedback-form .form-textarea {
	width: 100%;
	padding: 15px 15px 15px 20px;
	height: 57px;
	line-height: 26px;
	color: #000;
	background-repeat: no-repeat;
	background-position: 0.5rem center;
	background-size: 0.5rem;
	border: 1px solid #e5e5e5;
	border-radius: 0px;
	transition: all .3s;
	outline: 0;
	background: #f0f4f759;
}
.inquiry-conner .feedback-form .form-textarea  {
    padding-left: 20px;
    height: 140px;
}
@media screen and (max-width: 1300px) {

	header.header .fupad {
		max-width: 200px;
	}
}

@media screen and (max-width: 1200px) {
	.news_li li,
	.case_list li,
	.pro_list li{
	width: calc(33.333% - 30px);
	}
	.clientList ._brand ._item.cir9,
	.clientList ._brand ._item.cir4 {
		width: 150px;
		height: 150px;
	}
	.clientList ._brand ._item.cir1,
	.clientList ._brand ._item.cir11 {
		width: 120px;
		height: 120px;
	}
	.clientList ._brand ._item.cir10,
	.clientList ._brand ._item.cir5 {
		width: 110px;
		height: 110px;
	}
	.clientList ._brand ._item.cir5 {
		top: 0%;
	}
	.clientList ._brand ._item.cir9 {
		right: 5%;
	}
	.clientList ._brand ._item.cir11,
	.clientList ._brand ._item.cir8 {
		top: 60%;
	}
	.clientList ._brand ._item.cir10 {
		top: 85%;
	}
	.text-swiper {
		width: 100%;
	}
	.pro_box {
		width: 40%;
	}
	.about_text {
		transform: translateY(-300%);
		opacity: 0;
		margin-bottom: 30px;
	}
	.about.warppbox .Culture li p {
		font-size: 18px;
	}
	.about.warppbox .about_text {
		width: 100%;
		min-width: initial;
	}
	.about.warppbox .about_top {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: column;
	}
	.pc_header_width {
		display: none;
	}
	.moblie_title_right {
		display: block;
	}
	.banner-wrapper .swiper-slide .title-1 {
		font-size: 40px;
		line-height: 50px;
	}
	.index-banner-item .title-2 {
		font-size: 22px;
		line-height: 30px;
	}
	.cp-swiper {
		width: 100%;
		aspect-ratio: 16 / 5;
	}
	.pro_gd {
		height: 1150px;
	}
	footer .foot_top {
    position: relative;
    flex-direction: column;
	}
	footer .foot_left{
		width: 100%;
	}
	footer .foot_right {
    display: flex;
    padding-top: 10px;
     border-top: 1px solid #ddd;
     border-left: 0;
    padding-left: 0%;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
footer .foot_right .gzh{
	width: auto;
	text-align: center;
	margin-top: 20px;
}
}

@media screen and (max-width:991px) {
	.banner-wrapper .swiper-slide .img.pc_banner{
display:none;
}
.banner-wrapper .swiper-slide .img.ph_banner{
display:block;
}
	.contact_info li,
	.support_down li,
	.pro_list li{
	width: calc(100% - 30px);
	}
	.contact_info li span{
		margin-bottom: 30px;
	}
	.online_box>div{
		width: 100%;
	}
	.online_box>div.left{
		padding-right: 0;
		padding-bottom: 20px;
	}
	.online_box>div.right{
		min-height: 400px;
	}
	.news_li li,
	.case_list li,
	.case_list li{
	width: calc(50% - 30px);
	}
	.about.warppbox .Culture li {
		width: calc(100% - 30px);
	}
	.pro_gd {
		display: none;
	}
	.cp-swiper {
		aspect-ratio: 16 / 16;
		border-radius: 10px;
	}
	.bian:before,
	.bian:after {
		width: 30px;
		height: 30px;
	}
	._brandb {
		display: none;
	}
	.pro_left{
		text-align: center;
	}
	.pro_right,
	.pro_left{
		position: initial;
		width: 100%;
	}
#contain-nav .swiper-slide a{
	padding: 15px;
}
.pro_right h1{
	font-size: 24px;
}
}

@media screen and (max-width: 768px) {
	.choose_ul ul li{
		width:calc(33.33% - 15px);
		min-width:initial;
		margin-right:15px;
	}
	.choose_ul ul li a{
		width:100%;
		margin-right:0;
		padding:6px 10px;
		min-width:initial;
	}
	.news_main_title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 2rem;
    border-bottom: 1px solid #ddd;
    flex-direction: column;
}
	.news_li li,
	.case_list li{
	width: calc(100% - 30px);
	}
	.news_li li>a>div> h3{
		margin-bottom: 30px;
	}
	footer .foot_head{
		padding-bottom: 30px;
	}
	.news-wrapper .swiper-slide{
		padding: 15px;
	}
	footer .foot_head, footer .foot_head>div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}
footer .foot_left .foot_head>div a.more_btn{
	margin: 20px 0;
}
footer .foot_nav .foot-nav-item,
footer .foot_nav .foot-nav-item:last-child{
	width: 33.333%;
}
.foot-nav-item{
	margin-bottom: 40px;
}
footer .foot_nav .foot-nav-item .foot-nav-title{
	margin-bottom: 15px;
}
footer .foot_nav{
	padding-bottom:0px;
	margin-bottom: -10px;
}
footer .foot_bottom {
    align-items: flex-start;
    justify-content: space-between;
  
    flex-direction: column;
}
footer .foot_nav {
    justify-content: flex-start;
}
	.engineering_li {
		display: block;
	}
	.title_clien h1 {
		font-size: 36px;
	}
	.title_clien p {
		font-size: 18px;
	}
	.text-swiper .swiper-slide-thumb-active .icon_quan {
		width: 12px;
		height: 12px;
	}
	.cp-swiper {
		margin-bottom: 20px;
	}
	.product.warppbox .more_btn {
		margin-top: 30px;
	}
	.bian:before,
	.bian:after {
		width: 20px;
		height: 20px;
	}
	.warppbox {
		padding: 60px 0;
	}
	.lang_box {
		margin-right: 10px;
	}
	.moblie_title_right {
		margin-left: 10px;
	}
	.moblie_title_right,
	header.header .search_btn {
		width: 36px;
		height: 36px;
	}
	header.header .lang,
	header.header.active .lang {
		height: 36px!important;
		width: 90px!important;
	}
	header.header .fupad {
		max-width: 140px;
	}
	header.header.active .fupad {
		height: 60px;
	}
	.banner-wrapper .swiper-slide .title-1 {
		font-size: 30px;
		line-height: 40px;
	}
	.index-banner-item .container {
		width: calc(100% - 20px);
	}
	.index-banner-item .title-2 {
		font-size: 16px;
		line-height: 22px;
	}
	.index-banner-item .container .text {
		margin-bottom: 40%;
	}
	.warppbox .title h1 {
		font-size: 36px;
	}
	.title p {
		font-size: 20px;
	}
	.about.warppbox .title h1 {
		margin-bottom: 0;
	}
	.about.warppbox .about_text {
		font-size: 14px;
	}
	.about_text>div {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 5;
		line-clamp: 5;
		-webkit-box-orient: vertical;
	}
	.index-banner-item .title-2 {
		max-width: 100%;
	}
	.about.warppbox .Culture li {
		padding: 20px;
	}
	.about.warppbox .Culture li img {
		width: 38px;
	}
	.news.warppbox,.cont_main {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}	
.title-ny p{
		font-size: 24px;
	}
	#banner-img p{
		font-size:50px;
	}
	.cp-swiper{
		aspect-ratio:initial;
		height:400px;
	}
	
	.cp-swiper .swiper-slide{
		background-size:auto 100% !important;
		height:400px;
	}
}

@media screen and (max-width: 540px) {
	.title-ny{
		margin-bottom:40px;
	}
	.choose_ul {
    display: flex;
    flex-direction: column;
	}
	.choose_ul ul{
	margin-left:0;
	width:100%
	}
	.warpper-ny{
		padding: 50px 0;
	}
	#banner-img{
	min-height:320px ;
		background-attachment: initial!important;
background-size: 100%;
	}
	#banner-img#ny{
		min-height:20px !important;
	}
	.culture_ul li{
		width:calc(100% - 30px)
	}
	
	.title-ny:before{
		border-radius:0
	}
	    #banner-img p {
        font-size: 30px;
    }
	.foot_nav{
		display: none!important;
	}
	footer .foot_right .gzh>img{
		width: 120px;
	}
	
}