
.iqbox{
	width:40px;
	margin-right:15px;
}
/* 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);
}

.search {
	position: fixed;
	z-index: 100000000000000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.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: 1280px;
	}
}
.iframe{
	width:100%;
	height:600px;
}
.news_link {
	margin: 2rem auto;
	border-top: 1px solid #eaeaea;
	padding-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news_link i {
	margin-right: 8px;
}

.news_link a {
	margin-right: 10px;
}
.new_wrap .new-wrapper p{
	text-overflow: ellipsis;
    white-space: nowrap;
	 overflow: hidden;
	font-size:16px;
	margin-top:15px
}
.feedback-form .form-control-input {
	position: relative;
}

.feedback-form .form-control-input .form-control,
.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;
}

.feedback-form .form-control-input .form-control:focus {
	box-shadow: initial;
}
.feedback-form .form-textarea {
	padding-left: 20px;
	height: 140px;
}
.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;
}
.bags-continue a:hover{
	background: #2c4279;
	color:#fff;
}
.feedback-submit2.btn {
    float: right;
    background: #2c4279;
    color: #ffffff;
    border-radius: 0;
    width: 100%;
    max-width: 300px;
    height: 51px;
    border-radius: 51px;
}
.news_details img{
	width:100%;
}

.pro_view .tabel_box table{
	border:1px solid #eaeaea;
}
.pro_view .tabel_box table td{
	border:1px solid #eaeaea;
	padding:5px 15px;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/**/


.piapofu{
	position: fixed;
	right:20px;
	top: 60%;
	
	z-index: 8888;
}
.piapofu li{
	position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3) !important;
}
.piapofu li:first-child{
	border-top-right-radius: 50px;
	border-top-left-radius: 50px;
}
.piapofu li p{
	display: flex;
	height:100%;
	width:100%;
	align-items: center;
    justify-content: center;
}

.piapofu li em{
	color: #fff;
	font-size: 26px;
}
.piapofu li:hover{
	border-bottom-left-radius: 0!important;
	border-top-left-radius:0!important;
	background: #f9c000!important;
}
.piapofu li:last-child a{
	display:flex;
	width: 100%;
	height:100%;
	    align-items: center;
    justify-content: center;
}
.piapofu li:first-child:hover{
	border-top-right-radius: 25px;
}
.piapofu li:last-child,
.piapofu li:last-child:hover{
	border-bottom-right-radius:50px!important;
	border-bottom-left-radius: 50px!important;
}
.piapofu li .hidden{
	display: none;
	position: absolute;
	right: 100%;
	top: 0;
	background: #f9c000;
	border-top-left-radius:30px;
	border-bottom-left-radius:30px;
}
.piapofu li .hidden a{
	color: #fff;
	display: block;
	min-width: 160px;
	padding: 10px 15px;
}
.piapofu li:hover .hidden{
	display: block;
}
.piapofu li:last-child em{
	display: flex;
	width: 80%;
	height: 80%;
	border-radius: 50%;
	background: #f9c000;
	font-size: 18px;
	transform: rotate(90deg);
	    align-items: center;
    justify-content: center;
}
.hidden.wx{

	padding: 15px 15px 0;
	text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hidden.wx a{
	min-width: 110px!important;	
}
/*导航*/

header {
	
	width:100%;
	
	width: 100%;
	background: #fff;
	transition: all 0.5s;
}

header.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
	background: none;
	transition: all 0.5s;
}

.fupad img {
	max-height: 56px;
	transition: all 0.5s;
}

header.active .fupad img {
	max-height: 40px;
	transition: all 0.5s;
}

.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}

.header-box {
	position: relative;
	width: 100%;
	height: 110px;
	background-color: rgba(0, 0, 0, 0.54);
	transition: all 0.5s;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

header.active .header-box {
	height: 60px;
}

.header-box>.header-cen {
	position: relative;
	display: flex;
	padding: 0 0 0 30px;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: space-between;
}

.navbar .nav-item {
	padding: 0 20px;
	position: initial;
}

.navbar .nav-item>a {
	color: #fff;
}

.header-right {
	position: relative;
	display: flex;
	width: 260px;
	height: 100%;
	align-items: center;
	justify-content: flex-start;
}

.lang_box {
	position: relative;
	cursor: pointer;
}

.search_btn {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.search_btn img {
	width: 26px;
}
.lang_box{
	position: relative;
	display: block;
	margin-left: 15px;
	border: 1px solid rgba(255,255,255,0);
}
.lang_box.cur{
	border: 1px solid #fff;
	
	border-top-left-radius:6px;
	border-top-right-radius:6px;
}
.lang_box .hidden{
	display: none;
	position: absolute;
	top: 100%;
	left: -1px;
	right:-1px;
	background: #fff;
	padding: 3px 0;
	z-index:8;
	border-bottom-left-radius:6px;
	border-bottom-right-radius:6px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.lang_box .hidden a{
	display: flex;
	padding:2px 10px;
	align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: #525ca3;
}
.lang_box .lang_nav{
	    display: flex;
    color: #fff;
    align-items: center;
    padding: 5px 10px;
}
.lang_box .lang_nav img,
.lang_box .hidden img{
	width: 22px;
}
.lang_box i.fa-angle-down {
	margin-left: 0.4rem;
	transition: all 0.3s;
	transform: rotate(0deg);
}

.navbar {
	padding: 0;
	height: 100%;
	position: initial!important;
}

.navbar-collapse {
	height: 100%;
}

a.nav-link {
	display: flex;
	height: 100%;
	height: 110px;
	font-size: 16px;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0!important;
	transition: all 0.5s;
}

header.active a.nav-link {
	height: 60px;
}

a.nav-link:before {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: -1px;
	z-index: 1;
	height: 0.24rem;
	background: #fff;
	transition: all 0.5s;
}

.nav-item.cur a.nav-link {
	color: #fff;
}

.nav-item.cur a.nav-link:before,
a.nav-link:hover:before,
li.nav-item.active a.nav-link:before {
	right: 0;
	left: 0;
	transition: all 0.5s;
}


/*下拉*/

.header-box .dropdown-menu {
	display: none;
	width: 100%;
	left: 0;
	right: 0;
	top: 100%;
	margin: 0;
	border-radius: 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #b7bcb1;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header-box .dropdown-menu .container>ul {
	display: flex;
	width: 100%;
	    align-items: flex-start;
        justify-content: flex-start;
    flex-wrap: wrap;
}

.header-box .dropdown-menu .container>ul>li {
	padding: 0.4rem 0rem;
	width: 25%;
	list-style: none;
	line-height: 2rem;
}

.header-box .dropdown-menu .container>ul>li>a {
	display: block;
	z-index: 2;
	padding: 0.4rem 1rem;
	cursor: pointer;
	font-size: 14px;
	color: #000;
}

.header-box .dropdown-menu .container>ul>li>a span {
	display: inline-block;
	position: relative;
}

.header-box .dropdown-menu .container>ul>li:first-child {
	border: none;
}

.header-box .dropdown-menu .container>ul>li>a span:before {
	position: absolute;
	content: "";
	top: 100%;
	right: 100%;
	left: 100%;
	height: 1px;
	background: #000;
	transition: all 0.3s;
	z-index: 0;
}

.header-box .dropdown-menu .container>ul>li:hover>a span:before {
	right: 0;
	left: 0;
	transition: all 0.3s;
}
.header-box .dropdown-menu .container>ul>li>ul a.dropdown-item{
	font-size:14px;
	padding:5px 1.5rem;
	line-height:24px;
}
.moblie_title_right {
	display: none;
	float: right;
	width: 40px;
	height: 40px;
	padding-top: 20px;
	margin-left: 25px;
	text-align: center;
	cursor: pointer;
}

.menuicon {
	width: 20px;
	height: 2px;
	background: #fff;
	position: relative;
	left: 50%;
	top: 50%;
	margin-top: -10px;
	margin-left: -10px;
}

.menuicon::before {
	content: '';
	width: 20px;
	height: 2px;
	background: #fff;
	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: #fff;
	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: none;
	position: absolute;
	top: 100%;
	background: #fff;
	width: 100%;
	cursor: pointer;
	color: #ffffff;
	z-index: 999999;
	height: calc(100vh - 55px);
}

.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.dropdown>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_hidenlist {
	display: none;
	background: #f5f5f5;
}

.mobile_hidenlist_list h5 {
	display: flex;
	padding: 0 1rem;
	color: #3c482b;
	margin-bottom: 0;
	line-height: 3rem;
	font-size: 0.9rem;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #eaeaea;
}

.mobile_hidenlist_list h5 a {
	display: block;
	width: 100%;
}

.mobile_hidenlist_list h5 i {
	transition: all 0.3s;
	transform: rotate(-90deg);
}

.mobile_hidenlist_list.cur h5 i {
	transition: all 0.3s;
	transform: rotate(0deg);
}

.mobile_hidenlist dd {
	padding: 0 1.5rem;
	margin-bottom: 0;
	border-bottom: 1px solid #eaeaea;
}

.mobile_hidenlist dl {
	display: none;
}

.mobile_hidenlist dd:last-child {
	border-bottom: 0;
}

.mobile_hidenlist dd a {
	display: block;
	width: 100%;
	line-height: 2.4rem;
}


/**/

.banner {
	position: relative;
	width: 100%;
}

.banner_img {
	width: 100%;
	height: 100%;
}

.banner .banner_img .swiper-container,
.banner .banner_img .swiper-container .swiper-wrapper {
	width: 100%;
	height: 100%;
}

.banner .swiper-container .swiper-wrapper .swiper-slide {
	width: 100%;
	overflow: hidden;
	height: 100%;
	position: relative;
}

.banner .swiper-container .swiper-wrapper .swiper-slide img {
	width: 100%;
}

.banner .swiper-container .swiper-wrapper .swiper-slide video {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 2;
	height: 100% !important;
	object-fit: cover;
}

.banner .banner_img .pc_photo {
	display: block;
}

.banner .banner_img .ph_photo {
	display: none;
}

.banner-text {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

.banner-text h1,
.banner-text p {
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.banner-text-box {
	transform: translateX(200px);
	width: 70%;
	margin: 0 auto;
	opacity: 0;
	transition: all .8s;
	color: #fff;
	display: flex;
}

.banner-text-box img {
	max-width: initial;
}

.banner-text-box1 {
	align-items: center;
	justify-content: flex-start;
}

.banner-text-box2 {
	align-items: center!important;
	justify-content: flex-end!important;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
	font-weight: normal;
	color: #fff;
	font-size: 2.8rem;
	letter-spacing: 0.16rem;
	line-height: 70px;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box i {
	display: inline-block;
	width: 150px;
	height: 2px;
	background: #6FA734;
	margin: 30px 0;
}

.banner-text-box a.more {
	margin-top: 2rem;
	display: flex;
	width: 11rem;
	height: 3rem;
	background: #6FA734;
	color: #fff;
	border-radius: 50px;
	align-items: center;
	justify-content: center;
}

.banner-text-box a.more:hover {
	background: #5A862B;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box.active {
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
	transition: all 1s;
}

.banner .swiper-container .swiper-button-prev {
	left: 3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3.4rem;
	height: 3.4rem;
	z-index: 4;
	font-size: 3rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	opacity: 0;
}

.banner .swiper-container .swiper-button-next {
	right: 3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3.4rem;
	height: 3.4rem;
	z-index: 4;
	font-size: 3rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	opacity: 0;
}

.banner .swiper-container .swiper-button-next:after,
.banner .swiper-container .swiper-button-prev:after {
	display: none;
}

.button-pag .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	margin: 0 6px!important;
	background: none;
	opacity: 0.5;
	border: 1px solid #fff;
}

.button-pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
	opacity: 1;
}

.button-pag .swiper-pagination {
	position: initial;
}

.button-pag {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 4;
	padding: 0 8px;
}

.banner:hover .swiper-button-next,
.banner:hover .swiper-button-prev {
	opacity: 1;
}

.player-box {
	display: flex;
	margin-top: 60px;
	position: relative;
	width: 70px;
	height: 70px;
	background: #6FA734;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.player-box:hover {
	background: #5A862B;
}

.player-box>img {
	margin-right: -5px;
	width: auto!important;
}

.player-box:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-animation: circlepulse2 1.5s ease 0s infinite;
	animation: circlepulse2 1.5s ease 0s infinite;
	z-index: 0;
}

@-webkit-keyframes circlepulse2 {
	0% {
		-webkit-box-shadow: 0px 0px 0 0px rgba(255, 255, 255, 0.2);
		box-shadow: 0px 0px 0 0px rgba(255, 255, 255, 0.5);
	}
	50% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.2);
		box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.2);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.1);
		box-shadow: 0px 0px 0 20px rgba(255, 255, 255, 0.1);
	}
}


/**/

.warppbox {
	padding: 100px 0;
	overflow: hidden;
	background: #fff;
}

.noback {
	background: none;
}

.title {
	margin-bottom: 40px;
}

.title h1 {
	font-size: 40px;
	font-weight: bold;
}

.title h2 {
	font-size: 36px;
	margin-bottom: 15px;
	font-weight: bold;
	color: #000;
}

.title span {
	font-weight: bold;
	font-size: 40px;
	color: #ddd;
}

.title span i {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-left: 10px;
	background: #6FA734;
}

.more-box a {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	min-width: 140px;
	padding: 10px 20px;
	line-height: 20px;
	background: #2c4279;
	text-align: center;
}

.more-box a:hover {
	background: #15499a;
	color: #fff;
}

.more-box a:hover span:after {
	width: 54px;
	transition: all 0.3s;
}


/**/

.img_box {
	width: 100%;
	overflow: hidden;
}

.img_box img {
	width: 100%;
	transform: scale(1);
	transition: all 0.5s;
}

.img_box:hover img {
	transform: scale(1.05);
	transition: all 0.5s;
}
.products-wrapper .img_box{
	max-height: 360px;
	margin-bottom:20px;
	margin-top:-60px;
}
.products-wrapper .swiper-slide {
	position: relative;
	padding: 0 15px 0px;
}

.products-wrapper .text_box {
	position: relative;
	background: #fff;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.products-wrapper .text_box>div {
	width: calc(100% - 40px);
}

.products-wrapper .text_box>div h3 {
	text-align: center;
	font-size: 20px;
	margin-bottom:0;
	color: #666;
}

.products-wrapper .text_box>span {
	display: flex;
	width: 36px;
	height: 36px;
	border: 1px solid #000;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.products-wrapper .swiper-slide:before {
	position: absolute;
	content: "";
	top: 0;
	right: -1px;
	bottom: 0;
	width: 1px;
	background: #ddd;
}


/**/

.warppboxabout {
	position: relative;
	background: #f8f8f8;
}

.indexabout {
	width: 100%;
	display: flex;
	margin-top:60px;
	justify-content: space-between;
	align-items: center;
}

.indexabout .left_img {
	width: 45%;
}

.indexabout .left_img img {
	width: 100%;
}

.indexabout .right_text {
	width: 50%;
}

.indexabout .title {
	margin-bottom: 26px;
}

.indexabout .title h1 {
	font-size: 40px;
	font-weight: bold;
	color: #000;
	margin-bottom: 0px;
}

.indexabout .text p {
	font-size: 16px;
	line-height: 30px;
}

a.more {
	display: inline-block;
	padding: 8px 25px;
	background: #0e449d;
	color: #fff;
}


/**/


/**/

.culture {
	padding: 0!important;
	display: flex;
}

.culture_type {
	width: 33.3333%;
	height: 630px;
	transition: all 0.5s;
	overflow: hidden;
}

.culture_type.cur {
	width: 80%;
	transition: all 0.5s;
}

.culture_type.cur2 {
	width: 10%;
	transition: all 0.5s;
}

.culture_type .text_box {
	width: 100%;
	height: 100%;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	transition: all 0.3s;
}

.culture_type.cur .text_box {
	width: 45%;
	transition: all 0.3s;
}

.culture_type .text_box div {
	min-width: 500px;
}

.culture_type .text_box h1 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 28px;
}


/**/

.news_list_box {
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
}

.news_list_box_right {
	width: 50%;
}

.news_list_box_right li>a>i {
	float: left;
	width: 12px;
	margin-top: 5px;
	margin-right: 15px;
	border-radius: 50%;
	height: 12px;
	background: #999;
}

.news_list_box_right li {
	padding: 40px 30px;
	border-top: 1px solid #eaeaea;
}

.news_list_box_right li:hover {
	border-top-color: #2c4279;
}

.news_list_box_right .text {
	float: left;
	width: calc(100% - 42px);
}

.text-top h4 {
	float: left;
	min-height: 44px;
	margin-bottom: 0;
	width: calc( 100% - 100px);
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #333;
}

.news_list_box_right li:hover h4 {
	color: #2c4279;
}

.text-bottom p {
	float: left;
	width: calc( 100% - 100px);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.text-top {
	margin-bottom: 20px;
}

.text-top p {
	float: right;
}

.text-bottom .more {
	float: right;
	transform: rotate(45deg);
	opacity: 0.7;
}

.news_list_box_right li:hover>a>i {
	background: #2c4279;
}

.news_list_box_right li:hover .more {
	opacity: 1;
}


/**/

.news_list_box_left {
	width: 45%;
	padding: 40px;
	background: #f8f8f8;
}

.news_list_box_left span {
	display: inline-block;
	font-size: 24px;
	line-height: 30px;
	color: #999;
	font-weight: lighter;
	margin-bottom: 20px;
}

.img_box_dh {
	overflow: hidden;
	width: 100%;
}

.img_box_dh img {
	width: 100%;
	transform: scale(1.0);
	transition: all 0.3s;
}

.news_list_box_left:hover img {
	transform: scale(1.1);
	transition: all 0.3s;
}

.news_list_box_left h4 {
	color: #000;
	margin-bottom: 20px;
	line-height: 36px;
	font-weight: normal;
}

.news_list_box_left:hover h4 {
	color: #2c4279;
}

.news_list_box_left p {
	color: #999;
	font-size: 14px;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_list_box_left:hover p {
	color: #000;
}

.news_list_box_left .img_box_dh {
	margin: 30px 0;
}

.news_list_box_left .more_btn {
	margin: 0;
}

.news-swiper {
	margin-top: -15px;
	padding-bottom: 40px;
}

.news-swiper .swiper-slide a {
	display: block;
	width: 100%;
}

.news-swiper .date {
	margin-bottom: 30px;
	transition: all 0.3s;
}

.news-swiper .date h2 {
	font-size: 32px;
	color: #ddd;
	font-weight: bold;
}

.news-swiper .date p {
	font-size: 16px;
	color: #ddd;
}

.news-swiper a>.img-box {
	margin-bottom: 40px;
}

.news-title {
	position: relative;
	padding-left: 50px;
	padding-right: 20px;
	border-left: 1px solid #EAEAEA;
}

.news-title h2 {
	font-size: 22px;
	line-height: 28px;
	min-height: 56px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-title p {
	line-height: 30px;
	color: #666;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}


/**/

footer {
	padding-top: 20px;
	background: #1b241b;
	color: #fff;
}
footer a{
	color: #fff;
}
.footer_top{
	display: flex;
    align-items: center;
    justify-content: space-between;
        padding-bottom: 70px;
    border-bottom: 1px solid #2f3336;
}
.footer_top>img{
	width: 260px;
}
.contact_form{
	display: flex;
}
.contact_form>div{
	margin-right:25px;
}
.contact_form h4{
	font-weight: bold;
	color: #fff;
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 10px;
}
.contact_form p{
	color: #fff;
	line-height: 22px;
}
.contact_form .form-row>div{
	display: flex;	
	width: 100%;
}
.contact_form .form-row>div input{
	width: 175px;
	height: 50px;
	background-color: #343537;
	color: #fff;
	border:none;
	border-radius: 0;
	margin-left: 10px;
}
.contact_form .form-row>div button{
	width: 136px;
	height: 50px;
	background-color: #0e449d;
	color: #fff;
	border:none;
	border-radius: 0;
	margin-left: 10px;
}
.foot-nav{
	    display: flex;
    flex-wrap: wrap;
    padding: 70px 0;
    color: #fff;
    justify-content: space-between;
}
.foot-nav .foot-nav-title{
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 15px;
}
.foot-nav .foot-nav-con li a{
	line-height: 30px;
	font-weight: lighter;
	opacity: 0.7;
}
.foot-nav .foot-nav-con li a:hover{
	color:#fff;
	font-weight:initial;
}
.foot-nav .ewm{
	width:140px;
}
.footer_bottom{
	color: #fff;
	margin-top: 15px;
	padding: 10px 0;
	background: rgba(0,0,0,0.87);
	text-align: center;
	font-size: 14px;
	 font-weight: lighter;
}
/**/

ul.contact {
	display: flex;
	margin-top: 40px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

ul.contact li {
	width: 33.3333%;
	padding: 30px;
	text-align: center;
	color: #fff;
	background: rgba(128, 128, 128, 0.6);
}

ul.contact li em {
	margin-bottom: 15px;
	font-size: 28px;
}

ul.contact li:nth-child(2n) {
	background: #787878;
}

footer .bottom {
	padding-bottom: 15px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	line-height: 28px;
}

footer .bottom a {
	color: #fff;
}


/**/

.intro_box {
	position: relative;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	overflow: hidden;
}

.intro_box h4 {
	position: relative;
	width: 100%;
	font-weight: bold;
	padding-top: 15px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 30px;
}

.intro_box>.img_box {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 50%;
	overflow: hidden;
}

.intro_text {
	width: 50%;
	padding: 2rem;
}

.intro_text p {
	line-height: 28px;
}

.intro_text .text_box {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	line-clamp: 6;
	-webkit-box-orient: vertical;
}

.intro_text .more-box {
	margin-top: 40px;
}

.profile-data {
	margin-top: 80px;
}

.factroy-wrapper {
	margin-top: 30px;
}

.factroy-wrapper .swiper-slide {
	border-radius: 8px;
	overflow: hidden;
}


/**/

.culture-container {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 680px;
}

.culture-container .slide {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.culture-container .slide:last-child {
	border: none;
}

.culture-container .slide>div {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	transition: all 1s;
}

.culture-container .slide>div h2 {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: normal;
}

.culture-container .slide>div p {
	font-weight: lighter;
	font-size: 18px;
	min-height: 80px;
}

.culture-container .slide:hover {
	width: 50%;
	transition: all 0.5s;
}

.culture-container .slide:hover>div {
	background: rgba(0, 0, 0, 0.2);
	transition: all 1s;
	cursor: pointer;
}

.culture-container .more-box a span:before {
	border-color: #fff;
}

.culture-container .more-box a span:after,
.more-box a span {
	background: #fff;
}

.culture-container .more-box a {
	color: #fff;
}


/**/

.picture_box {
	min-height: 360px!important;
	background: url(../images/bb.jpg) no-repeat center fixed;
	background-size: cover;
	align-items: center;
}

.index-contact-p h1 {
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
	font-size: 30px;
	color: #fff;
	font-weight: normal;
	display: inline-block;
	padding: 10px 0px;
}

.container-more a {
	margin: 0 auto;
	display: flex;
	width: 200px;
	height: 54px;
	background: #6fa734;
	color: #ffffff;
	padding: 7px 15px;
	position: relative;
	align-items: center;
	justify-content: space-around;
	border-radius: 54px;
}

.container-more a:hover {
	background: #4f7725;
}

.partner-wrapper .swiper-slide ul {
	margin-left: -15px;
	margin-right: -15px;
	padding: 0 5px;
}

.partner-wrapper .swiper-slide li {
	float: left;
	margin: 15px;
	width: calc(16.666% - 30px);
	padding: 15px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

.partner-wrapper .swiper-slide li img {
	width: 100%;
}

.partner-wrapper {
	margin-bottom: 60px;
}

.navbar-nav {
	flex-direction: row!important;
}


/**/

.pop_up_video {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999999;
}

.pop_up_video>div {
	display: flex;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}

.pop_up_video .video {
	position: relative;
	width: 100%;
	max-width: 1200px;
}

.pop_up_video .video>span {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0px;
	right: 0px;
	line-height: 60px;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 30px;
	z-index: 99;
	cursor: pointer;
}


/**/


/**/

#banner-img {
	display: flex;
	padding-top: 100px;
	min-height: 436px;
	align-items: center;
	justify-content: center;
}

#banner-img h3 {
	font-size: 24px;
	font-weight: bolder;
	color: #fff;
}

#banner-img p {
	position: relative;
	font-size: 14px;
	color: #fff;
}
#banner-img a{
	color: #fff;
}
.cont_main {
	width: 100%;
	min-height: 600px;
}

.warpper-ny {
	display: inline-block;
	width: 100%;
	padding: 100px 0;
	overflow: hidden;
}

.title-ny {
	margin-bottom: 40px;
}

.title-ny p {
	font-size: 30px;
	margin-bottom: 15px;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.2);
}

.title-ny h2 {
	font-size: 30px;
}
.banner-img2{
	position: relative;
	text-align: center;
	height:760px;
}
.banner-img2 h2{
	font-size: 50px;
	margin-bottom: 20px;
	color: #fff;
}
.banner-img2 p{
	font-size: 20px!important;
	margin-bottom: 160px;
	
}
.banner-img2 .bian{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.about-box-ny {
	display: flex;
	align-items: flex-end;
}

.about-box-ny-right {
	width: 40%;
}

.about-box-ny-text>p {
	line-height: 28px;
	font-size: 16px;
}

.banner_button {
	display: none;
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	margin-top: -30px;
	background: #fff;
	z-index: 33;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #000;
	transition: all 0.3s;
	border-radius: 50%;
	cursor: pointer;
	font-weight: lighter;
	opacity: 0.5;
}

.banner_button:hover {
	opacity: 1;
	transition: all 0.3s;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.about-box-ny-left {
	width: 54%;
	margin-right:6%;
}

.about-box-ny-left img {
	width: 100%;
}



.yj_right {
	padding: 15px 0;
	display: flex;
	width:100%;
	flex-wrap: wrap;
}

.yj_right li{
	width:25%;
	text-align: center;
	color: #fff;
}

.yj_right li img {
	width:40px;
	padding-bottom: 15px;
	border-bottom: 1px solid #fff;
}
.yj_right span{
	display: inline-block;
	margin: 25px 0;
	font-family: Arial;
	font-size: 56px;
}
.warpper-ny .title h3 {
	font-weight: bold;
	color: #000;
	margin-bottom: 15px;
}

.warpper-ny .title p {
	font-size: 14px;
	color: #999;
}
/**/
.join_list li {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	background: #fff;
	border: 1px solid #eaeaea;
}

.join_top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 25px 50px 25px 35px;
	align-items: center;
	cursor: pointer;
}

.zpTopLeft {
	padding-right: 20px;
	display: flex;
	flex-direction: column;
}

.zpTopLeft .zpTopCn {
	font-size: 20px;
	color: #000;
	line-height: 2em;
	font-weight: bold;
	
}
.zpTopLeft .zpTopCn span{
	display: inline-block;
	font-weight: bold;
	color: #f9c000;
	margin-right: 15px;
	    font-family: Arial;
}
.zpTopLeft .zpTopEn {
	font-size: 14px;
	color: #666666;
	line-height: 2em;
}



.zpTopRight .anniu {
	display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    justify-content: center;
}
.zpTopRight.cur .anniu {
	color: #f9c000;
}
.join_hiden {
	width: 100%;
	border-top: #dadada solid 1px;
	padding: 30px 50px 50px 30px;
	transition: all 1s;
	background: #fff;
	display: none;
	z-index: 1;
}

.join_hiden p {
	line-height: 28px;
}

.join_hiden.cur {
	display: block;
	transition: all 1s;
}

/**/
.history-wrapper{
	position: relative;
	padding-bottom: 40px!important;
}
.history-wrapper:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-image: linear-gradient(to right, #979797, #979797 5px, #FFF 2px);
    background-repeat: repeat-x;
    background-size: 7px 1px;
    background-position: 0 8px;
    padding:10px 0 40px;
    background-color: #fff;
}
.dian_h{
	position:relative;
	width: 18px;
    height: 18px;
    border-radius: 50%;
	border: 2px solid #0e449d;
	background: #fff;
	margin-bottom: 15px;
}
.dian_h:before{
	position: absolute;
	content: "";
	top: 50%;
	margin-top: -3px;
	right: 50%;
	margin-right: -3px;
	background: #0e449d;
	width: 6px;
	height: 6px;
	border-radius: 50%;
}
.history-wrapper .text_box{
	min-height: 150px;
}
.history-wrapper .text_box h3{
	font-size:22px;
}
.history .swiper-container-horizontal>.swiper-pagination-progressbar{
	top:initial!important;
	bottom:10px!important;
	width:calc(100% - 100px);
	margin: 0 50px;
	border-radius: 5px;
}
.history .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: #0e449d!important;
}
.history .swiper-button-next:after,.history .swiper-button-prev:after{
	display: none;
}
.history .swiper-button-next,.history .swiper-button-prev{
	top: initial!important;
	bottom: 0!important;
	width: 22px;
	height: 22px;
	background: #8d8d8d;
	color: #fff;
	border-radius: 50%;
}
.history .swiper-button-next:hover,.history .swiper-button-prev:hover{
	background: #0e449d!important;
}
#certify {
	position: relative;
}

#certify  .swiper-slide {
	width: 520px;
	text-align: center;
}
#certify  .swiper-slide img{
	display:block;
	margin: 0 auto;
	width: 100%;
}
#certify  .swiper-slide p {
	display: none;
	margin-top: 20px;
	line-height: 20px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	font-size: 1.1em;
}
#certify  .swiper-slide.swiper-slide-active p{
	display: block;
}
#certify .swiper-pagination {
	width: 100%;
	bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #dcdcdc;
	background-color: #fff;
	width:20px;
	height: 20px;
	opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #2e62b7;
}

#certify .swiper-button-prev {
	left: 0px;
	width: 45px;
	height: 45px;
	background-position: 0 0;
	background-size: 100%;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 10px 0 rgb(147 145 145 / 50%);color: #000;
	font-size: 28px;
}

#certify .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}

#certify .swiper-button-next {
	right:0px;
	width: 45px;
	height: 45px;
	background-position: 0 0;
	background-size: 100%;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 10px 0 rgb(147 145 145 / 50%);color: #000;
	font-size: 28px;
}

#certify .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}
#certify .swiper-button-prev:after,
#certify .swiper-button-next:after{
	display: none;
}
.contact-wrapper{
	position: relative;
	width: 100%;
	margin-bottom: -60px;
	padding:0 20px 60px!important;
}
.kuang1{
	width: calc(100% - 60px);
    height: 9px;
    margin: 0 auto;
    background: #f4f4f4;
}
.kuang2{
	width: calc(100% - 110px);
    height: 9px;
    margin: 0 auto;
    background:#e8e8e8;
}
.contact-wrapper .swiper-slide{
	position: relative;
	display: flex;
	padding: 60px 0 40px;
	justify-content: center;
    align-items: center;
	background:#fff;
        flex-direction: column;
            box-shadow: 2px 3px 6px 0 rgba(0, 0, 0, .17);
}
.contact-wrapper .swiper-slide .bq{
	display: flex;
	position: absolute;
	top: 50%;
	left: 5%;
	right: 5%;
	justify-content: space-between;
    align-items: center;
    color: #0e449d;
}
.contact-wrapper em{
	width: 80px;
	height: 80px;
	display: flex;
	background: #0e449d;
	color: #fff;
	font-size: 32px;
	border-radius: 50%;
	justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.contact-wrapper h5{
	margin-top: 20px;
}
.contact-wrapper .swiper-pagination-bullet-active{
	background:#0e449d;
}
/**/
.wh {
	position: relative;
	z-index: 1;
	margin-top: -160px;
}
.wh ul{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	max-width: 1520px;
	
}
.wh ul li{
	margin: 5px;
	width: calc(25% - 10px);
	text-align: center;
	background: #0e449d;
	color: #fff;
	padding: 30px 15px 50px 15px;
	    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.18);
    border-radius: 4px;
}
.wh ul li img{
	width: 40px;
	margin-bottom: 20px;
}
.wh ul li h4{
	font-size: 20px;
	margin-bottom: 10px;
}
.wh ul li p{
	font-size: 14px;
}
/**/

.hotpro-wrapper .timg {
	padding: 20px;
}

.hotpro-wrapper .timg  .img_box{
height: calc(100vw / 20*4);
}
.hotpro-wrapper .timg .img_box img{
	transform: scale(1.1);
}
.hotpro-wrapper .swiper-slide:hover img{
	transform: scale(1)!important;
}

.hotpro-wrapper .text_box {
	position: relative;
	background: #fff;
	padding: 40px 75px 40px 85px;
	margin-top: 48px;
}

.hotpro-wrapper .text_box:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 100%;
	margin-left: -8px;
	border-right: 12px solid transparent;
	border-left: 12px solid transparent;
	border-bottom: 12px solid #fff;
}

.hotpro-wrapper .text_box h3 {
	font-size: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp:1;
	-webkit-box-orient: vertical;
	margin-bottom: 0;
}
.hotpro-wrapper .text_box p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:2;
	line-clamp:2;
	color: #666;
	-webkit-box-orient: vertical;
}

.hotpro-wrapper .text_box span {
	display: inline-block;
	margin: 15px 0;
	color: #f9c000;

}
.hotpro-wrapper .swiper-slide:hover h3{
	color: #f9c000;
}
.hotpro-wrapper .swiper-slide-active .text_box:after{
	position: absolute;
	content: "";
	width: 1px;
	top: 20%;
	bottom: 20%;
	right: 0;
	background: #eaeaea;
}
.hotpro-wrapper .swiper-button-prev,
.hotpro-wrapper .swiper-button-next{
	position: absolute;
	top: initial;
	bottom: 10%;
}
.hotpro-wrapper .swiper-button-next:after,
.hotpro-wrapper .swiper-button-prev:after{
	display: none;
}
.hotpro-wrapper .swiper-button-next img,
.hotpro-wrapper .swiper-button-prev img{
	width: 40px;
}
/**/
.map_dian{
	position: relative;
}
.map_dian div.dian{
	position: absolute;
}
.map_dian div.dian p{
	 padding: 0px 10px;
	 margin-left: 5px;
	 margin-top: -10px;
	 font-size: 15px;
}
   
.map_dian div.dian>span{
	position: relative;
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #1155cc;
	border-radius: 50%;
}
.map_dian div.dian>span:before{
	content: "";
	width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 1px solid #1155cc;
    opacity: .7;
    animation: loading17364 3s linear infinite;   
}
 .map_dian div.dian>span:after{
	content: "";
	width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 1px solid #1155cc;
    opacity: .7;
    animation: loading17364 3s linear 1s infinite;
}


@keyframes loading17364 {
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/**/

ul.news-list {
	width: 100%;
}

ul.news-list li {
	position: relative;
	width:100%;
	margin-bottom: 40px;
}

ul.news-list li:before{
	position: absolute;
	content: "";
	top: 10%;
	bottom: 10%;
	right: 0;
	left: 0;
	background: url(../images/w.png);
	z-index: 0;
}
ul.news-list li:after{
	position: absolute;
	content: "";
	top:calc(10% + 10px);
	bottom: calc(10% + 10px);
	right:10px;
	left: 10px;
	background: #fff;
	z-index: 1;
}
ul.news-list li a {
	position: relative;
	z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
ul.news-list li:nth-child(2n) a{
	flex-direction: row-reverse;
}
ul.news-list li .date {
	width: 98px;
}

ul.news-list li .date h1 {
	font-size: 48px;
	line-height: 50px;
	color: #ababab;
	border-bottom: 1px solid #e3e3e3;
	text-align: center;
	padding-bottom: 15px;
	padding-top: 10px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

ul.news-list li .date p {
	color: #b2b2b2;
	margin-top: 15px;
	text-align: center;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

ul.news-list li .img-box {
	position: relative;
	width: 50%;
    padding: 0 4%;
}

ul.news-list li .img-box .hidden {
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.65);
	opacity: 0;
	justify-content: center;
	align-items: center;
	transition: opacity .4s ease-in-out;
}

ul.news-list li .img-box .hidden>div {
	width: 80px;
	height: 80px;
	background-color: #333;
	opacity: .7;
	color: #fff;
	display: flex;
	font-size: 14px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transform: rotateZ(-45deg) scale(0.5, 0.5);
	transition: all .4s ease-in-out;
}

ul.news-list li:hover .hidden {
	opacity: 1;
}

ul.news-list li:hover .img-box .hidden>div {
	transform: rotateZ(0deg) scale(1, 1);
	transition: all .4s ease-in-out;
}

ul.news-list li .text-box {
	    width: 50%;
    padding: 3% 4%;
}
ul.news-list li:nth-child(2n) .text-box {
	text-align:right;
}
ul.news-list li .text-box span{
	display: inline-block;
	margin: 10px 0 15px;
	color: #999;
}
ul.news-list li .text-box h3 {
	margin-bottom: 0;
	color: #000;
	font-weight: bold;
	font-size: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
ul.news-list li:hover .text-box h3{
	color:#f9c000
}
ul.news-list li .text-box>p {
	line-height: 24px;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #666;
}

.service-list .text-box h3 {
	font-weight: bold!important;
}
.news-list .text-box>img{
	width: 30px;
	margin-top: 20px;
}

/**/

.contact_ul {
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
	margin-top: -10px;
	flex-wrap: wrap;
}

.contact_ul li {
	display: flex;
	width: calc(33.33% - 20px);
	margin: 10px;
	padding: 10px;
	border: 1px solid #eee;
	text-align: center;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contact_ul li em {
	display: flex;
	width: 90px;
	height: 90px;
	font-size: 36px;
	color: #4060af;
	margin-bottom: 15px;
	align-items: center;
	justify-content: center;
	background: #eee;
	border-radius: 50%;
}
.contact_ul li:hover em{
	color: #f9c000;
}
#verifycode {
	float: left;
	width: calc(100% - 240px);
}


/**/

#feedback {
	margin-left: -0.4rem;
	margin-right: -0.4rem;
}

#feedback .form-group {
	margin-bottom: 0px;
}

#feedback .form-control {
	border: none;
	height: 84px;
	padding: .375rem 1.2rem;
	border: 1px solid #ddd;
}

#feedback .form-control:focus {
	box-shadow: none;
	border: 1px solid #4060af;
}

#feedback .form-group {
	padding: 0.3rem 0.8rem;
}

#feedback .form-textarea {
	width: 100%;
	padding: 1rem 1.2rem;
	background: #dde2de;
	border-radius: 3px;
	height: 8rem;
}

#feedback .feedback-submit {
	width: 140px;
	margin: 1.3rem auto 0;
	height: 3.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #4060af;
	color: #fff;
}

#feedback #img {
	width: 240px;
	height: 84px;
}


/**/

.procenter {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.product-center-list {
	width: calc(100% - 330px);
}

.product-center-list>ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-left: -5px;
	margin-right: -5px;
}

.product-center-list>ul li {
	position: relative;
	padding: 20px;
	width: calc(33.3333% - 10px);
	margin: 5px;
	box-shadow: initial;
	cursor: pointer;
	border: 1px solid #ddd;
}
.product-center-list>ul li .imgbox{
	position: relative;
	width: 100%;
}
.product-center-list>ul li img.one{
	display: block;
}
.product-center-list>ul li img.hover{
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	transition: all 0.3s;
}
.product-center-list>ul li:hover img.hover{
	opacity: 1;
	transition: all 0.3s;
}
.product-center-list>ul li a{
	display: block;
}

 .product-center-list>ul  li:hover {
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 10%);
    transition: all 0.3s;
}
.product-center-list>ul li a> p {
	margin-top: 20px;
	text-align: center;
}

.newprocenter .product-center-list {
	width: 100%;
}

.newprocenter .product-center-list>ul li {
	width: calc(25% - 20px);
}

.product-center-list .hidden {
	opacity: 0;
	display: flex;
	position: absolute;
	top: 50%;
	left: 0;
	bottom: 0;
	right: 0;
	z-index:3;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: all 0.3s;
}
.product-center-list .hidden p{
	padding: 10px;
	background: #fff;
	border:1px solid #eaeaea;
	width: 100%;
	text-align: center;
	color: #666;
}
.product-center-list>ul li:hover .hidden {
	opacity: 1;
	transition: all 0.3s;
}
.pro-type-mobile {
	display: flex;
	font-size: 24px;
	margin-bottom:15px ;
	justify-content: space-between;
    align-items: center;
}
.pro-type-mobile i{
	display:none;
	transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	/* IE 9 */
	-webkit-transform: rotate(90deg);
	transition: all 0.3s;
}
.left-nav.cur .pro-type-mobile i{
	transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	/* IE 9 */
	-webkit-transform: rotate(-90deg);
	transition: all 0.3s;
}
.left-nav {
	width: 280px;
}

.left-nav>div.pro-nav-box {
	width: 100%;
	height: calc(100% - 55px);
	overflow: hidden;
	overflow-y: auto;
}

.close-pro {
	display: none;
	text-align: right;
	padding: 10px 15px;
	height: 50px;
	font-size: 20px;
	margin-bottom: 5px;
}

.pro-tab {
	display: flex;
	padding: 40px 0;
	align-items: center;
	justify-content: center;
}

.pro-tab li a {
	display: block;
}

.pro-tab li a:hover {
	color:#6fa734
}

.pro-tab li {
	position: relative;
	background: #fff;
	color: #666;
	line-height: 60px;
	padding: 0 30px;
	margin: 0 15px;
	border: 1px solid #EAEAEA;
	min-width: 230px;
	text-align: center;
}


.pro-type-nav {
	display: flex;
	text-align: left;
	font-size: 18px;
	background: linear-gradient(to bottom, #fff, #ddd);
	padding: 10px 20px;
	line-height: 30px;
	align-items: center;
	justify-content: space-between;
}
.pro-type-nav>span{
	display: flex;	
	align-items: center;
}
.pro-type-nav em{

	width: 4px;
	height: 4px;
	background: #000;
	margin-right: 8px;
}
.pro-type-nav i {
	transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	/* IE 9 */
	-webkit-transform: rotate(90deg);
	transition: all 0.3s;
}

.pro-type.cur>a>i{
	transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	/* IE 9 */
	-webkit-transform: rotate(-90deg);
	transition: all 0.3s;
}

.procenter {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.pro-type{
	border: 1px solid #eaeaea;
}

.pro-type ul{
	display:none;
	width: 100%;
}
.pro-type ul a{
	display: block;
	padding: 5px 20px;
	color: #666;
}
.pro-type ul a.cur{
	color: #f9c000 !important;
}
.pro-type.cur ul{
	display:block
}
/**/

.pro-view-container {
	display: flex;
	justify-content: space-between;
}

.pro-view-container .pro-img {
	text-align: center;
}

.pro-view-container .pro-view-left {
	max-width: 40%;
	margin-right: 30px;
}

.pro-view-img {
	width: 100%;
	position: relative;
	border: 1px solid #eaeaea;
	padding: 20px;
}

.gallery-pro .swiper-slide {
	display: flex;
	width: 100%!important;
	text-align: center;
	background: #ffffff;
	justify-content: center;
	align-items: center;
}

.gallery-pro .swiper-slide img {
	width: 100%;
}

.swipers-btns {
	position: absolute;
	top: 50%;
	width: 100%;
	opacity: 0;
	z-index: 999;
	left: 0;
	margin-top: -12px;
}

.swipers-btn.swiper-button-disabled {
	color: #cccccc;
}

.swipers-btn {
	position: absolute;
	display: block;
	cursor: pointer;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #000;
	text-align: center;
	line-height: 34px;
	font-size: 40px;
	text-align: center;
	outline: 0;
}

.pro-view-img:hover .swipers-btns {
	opacity: 1;
}

.pro-view-but-prev {
	right: 15px;
}

.pro-view-but-next {
	left: 15px;
}

.gallery-protwo {
	height: auto;
}

.gallery-protwo .swiper-slide {
	opacity: 0.4;
	height: auto;
	border: 1px solid #cdcdcd;
	background: #fff;
}

.pro-view-container .pro-view-right {
	width: 60%;
	margin-left: 30px;
}

.pro-view-container .pro-title {
	font-size: 18px;
	position: relative;
	padding-right: 66px;
	padding-bottom: 20px;
	border-bottom: 1px solid #EAEAEA;
	margin-bottom: 40px;
}

.pro-view-container .pro-title h1 {
	font-size: 24px;
	margin-bottom: 0;
}

.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border-color: #000;
}

.pro-view-jj {
	position: relative;
	border-top: 1px solid #eaeaea;
	padding: 15px 30px 0;
	margin-bottom: 1rem;
}

.product-view .product_details {
	margin-top: 40px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
}

.product-view .product_details h2 {
	font-size: 18px;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.headline {
	margin: 30px 0;
}

.headline h2 {
	display: flex;
	font-size: 1.6rem;
}

.headline div.ewm {
	position: relative;
}

.headline div.ewm .hidden {
	padding:10px 10px 0;
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 100;
	width: 200px;
	height: 215px;
	border: 1px solid #eee;
	border-radius: 2px;
	text-align: center;
	background: #fff;
}

.headline div.ewm:hover .hidden {
	display: block;
}

.headline div.ewm .hidden p {
	font-size: 14px;
}

.pro-view-jj .swipers-btn {
	width: 30px;
	background: #f5f5f5;
	border-radius: 0;
	top: 15px;
	height: auto;
	bottom: 0px;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pro-view-jj .swipers-btn:hover {
	background: #2c4279;
	color: #fff;
}

.pro-view-jj .pro-view-but-next {
	left: 0;
}

.pro-view-jj .pro-view-but-prev {
	right: 0;
}

.pro-view-right .text-box img {
	max-width: 100%;
}

.gallery-protwo,
.gallery-pro {
	overflow: hidden;
}

.gallery-protwo .swiper-slide.swiper-slide-thumb-active {
	border-color: #2c4279;
	opacity: 1;
}

.xunj {
	border: 1px solid #2c4279;
	color: #2c4279;
	height: 40px;
	line-height: 40px;
	letter-spacing: normal;
	border-radius: 45px;
	text-align: center;
	padding: 0;
	display: block;
	background: 0;
	max-width: 280px;
	width: 100%;
	min-width: 130px;
	margin-top: 10px;
	font-size: 16px;
}

.xunj:hover {
	background: #2c4279;
	color: #fff;
}

.pro_view {
	width: 100%;
	border: 1px solid #ccc;
}

.pro_view .pro_nav {
	background: #efefef;
	padding: 0;
	border-bottom: 1px solid #ccc;
}

.pro_view .pro_nav span.ms{
	display: inline-block;
	line-height: 38px;
	padding: 0 20px;
	background: #0e449d;
	border-top: 2px solid #666;
	margin-top: -1px;
	position: relative;
	z-index: 1;
	margin-bottom: -1px;
	color:#fff;
}
.pro_view .tabel_box{
	padding: 20px;
}
.data .flex{
	margin-top: 30px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.data .flex a{
	    max-width: 40%;
    background-color: #efefef;
    line-height: 22px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pro_wrap{
	position: relative;
	text-align: center;
}

.headline p.bold{
	font-weight: bold;
	margin-top: 15px;
}

.proview{
	padding:30px;
	box-shadow: 0 0 8px 0 #ddd;
}
.pro_wrap .swiper-button-prev:after,
.pro_wrap .swiper-button-next:after{
	display: none;
}
.pro_wrap .swiper-slide{
	border: 1px solid #eaeaea;
	padding: 15px;
}


/**/
.service{
	padding-top:30px;
}
.service .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.service .container .list_left {
	width: 200px;
}

.service .container .list_right {
	width: calc(100% - 230px);
}

.service .list_left h3,
.service .list_right h3 {
	font-weight: normal;
	margin-bottom: 30px;
}

.service .container .list_left li {
	width: 200px;
	line-height: 20px;
	padding: 10px 15px;
	margin-top: 10px;
	border: 1px solid #eaeaea;
	border-left: 5px solid #eaeaea;
}

.service .container .list_left li.cur {
	border-left-color: #2c4279;
}

.service .container .list_left li.cur a {
	color: #2c4279;
	font-weight: bold;
}

.service .container .list_right table {
	width: 100%;
	font-size:14px;
}

.service .container .list_right table th {
	padding: 10px 0;
	font-size: 16px;
	max-width: 200px;
	border-bottom: 2px solid #eaeaea;
}

.service .container .list_right table td a.down{
	width: 100px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    background-color: #44b549;
    border-radius: 15px;
    text-align: center;
    display: block;
}
.service .container .list_right table td {
	max-width: 200px;
	padding: 10px 0;
	border-bottom: 1px solid #eaeaea;
}
.service .container .list_right>div.tableb{
	width:100%;
	height:220px;
	overflow:hidden;
	overflow-x:auto;
}
.service .container .list_right>div.tableb table{
	min-width:600px;
}

/**/

@media (max-width:1200px) {
	.container, .container-md, .container-sm {
        max-width:90%!important;
    }
	.header-box>.header-cen{
		padding: 0 30px;
	}
	.header-right{
		width: auto;
	}
	.navbar{
		display: none;
	}
	.moblie_title_right {
		display: block;
		margin-left: 15px;
	}
	
	/**/
	
	
	
	.about-box-ny-left {
		width: 50%;
	}
	.navbar .nav-item {
		padding: 0 10px;
	}
	.gx_num li {
		width: calc(50% - 30px);
	}
	.process_item .num span {
		width: 100px;
		height: 100px;
		;
	}
	.process_item .num {
		font-size: 50px;
		width: 40%;
	}
	.process_item .img-box {
		width: 60%;
	}
	.header-center .navbar .nav-item {
		padding: 0 0.4rem;
	}
	.news_list_box_right li {
		padding: 30px 20px;
	}
	.news_list_box_left {
		padding: 30px;
	}
	.text-top {
		margin-bottom: 15px;
	}
	.product-center-list>ul li {
		width: calc(50% - 10px);
	}
}

@media (max-width:991px) {
	.pro-type-mobile{
		    background: linear-gradient(to bottom, #fff, #ddd);
		padding:15px 20px;
		line-height:30px;
		margin-bottom:0;
	}
	.left-nav{
		width:100%;
		position: initial;
	}
	.left-nav .pro-nav-box{
		display:none;
	}
	.left-nav.cur  .pro-nav-box{
		display:block;
	}
	.procenter{
		display:initial
	}
	.iframe{
	width:100%;
	height:400px;
	}
	#certify .swiper-slide{
		width: 380px;
	}
	.hotpro-wrapper .timg{
		padding: 10px;
	}
	.hotpro-wrapper .text_box{
		padding: 30px 40px 30px 40px;
	}
	/**/
	.pro-view-container {
		justify-content: space-between;
		flex-direction: column;
	}
	.pro-view-container .pro-view-left,
	.pro-view-container .pro-view-right {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		max-width: initial;
	}
	.list_left ul {
		display: flex;
		width: 100%;
	}
	.service .list_left h3,
	.service .list_right h3 {
		margin-bottom: 15px;
		font-size: 20px;
	}
	.list_left ul li {
		margin-top: 0!important;
		width: 100%!important;
		margin-right: 15px;
		margin-bottom: 20px;
	}
	.service .container {
		align-items: flex-start;
		flex-direction: column;
	}
	.service .container .list_right,
	.service .container .list_left {
		width: 100%;
	}
	.service .container .list_right table th:nth-child(2),
	.service .container .list_right table td:nth-child(2) {
		display: none;
	}
	#verifycode {
		width: calc(100% - 120px);
	}
	#feedback #img {
		width: 120px;
	}
	.contact_ul {
		flex-direction: column;
	}
	ul.news-list li {
		width: calc(50% - 20px);
	}
	#banner-img {
		padding-top: 55px;
		min-height: 320px;
	}
	.about-box-ny-left {
		width: 100%;
		padding-right: 0;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.yj_left,
	.yj_right,
	.contact_ul li {
		width: 100%;
	}
	.yj_left>div.b {
		display: flex;
		width: 100%;
		margin-bottom: 80px;
	}
	.yj_left>div.b>div {
		width: 100%;
	}
	.yj {
		display: flex;
		align-items: flex-start;
		font-size: 16px;
		flex-direction: column;
	}
	.about-box-ny-right {
		width: 100%;
	}
	.culture {
		padding: 0;
		display: flex;
		flex-direction: column;
	}
	.culture_type {
		width: 100%;
	}
	.culture_type .text_box,
	.culture_type.cur .text_box {
		width: 50%;
	}
	.culture_type .text_box h1 {
		font-size: 30px;
	}
	.culture_type.cur {
		width: 100%;
		transition: all 0.5s;
	}
	.culture_type.cur2 {
		width: 100%;
		transition: all 0.5s;
	}
	.warppboxabout {
		padding-bottom: 0!important;
	}
	.indexabout {
        flex-direction: column;
	}
	.indexabout .left_img {
		position: initial;
		width: 100%;
		margin-top: 40px;
	}
	.indexabout .right_text {
		width: 100%;
		margin-top: 30px;
	}
	.banner .banner_img .pc_photo {
		display: none;
	}
	.banner .banner_img .ph_photo {
		display: block;
	}
	.gx_num li {
		width: calc(100% - 30px);
	}
	.gx_num,
	.gx_num li:first-child {
		text-align: center;
	}
	.p-box {
		text-align: center;
	}
	.process_item2 {
		flex-direction: column-reverse;
	}
	.process_item {
		justify-content: space-between;
		flex-direction: column;
	}
	.process_item .num {
		margin-bottom: 20px;
	}
	.process_item .num,
	.process_item .img-box {
		width: 100%;
	}
	.navbar-brand {
		margin-right: 0;
	}
	.product-center-list{
		width:100%;
		padding:0px 0;
	}
	.pro-type-mobile i{
		display:block;
	}
	.mould_list li {
		width: calc(50% - 30px);
	}
	.product-center-list>ul  li {
		width: calc(50% - 10px);
	}
	#contain-nav .swiper-slide {
		min-width: 120px;
	}
	#banner-img h3 {
		font-size: 20px;
	}
	.about-box-ny {
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	header .navbar {
		display: none!important;
	}
	.intro_box>.img_box {
		position: initial;
		width: 100%;
		height: 400px;
	}
	.intro_text {
		width: 100%;
	}
	.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
		font-size: 1.8rem;
	}
	.banner-text-box h1 span {
		font-size: 2.6rem;
	}
	.products_box .container {
		position: initial;
	}
	.products_box {
		position: relative;
	}
	.background_pro {
		z-index: -1;
	}
	.news_list_box {
		display: flex;
		flex-direction: column;
	}
	.news_list_box_left,
	.news_list_box_right {
		width: 100%;
	}
	.footer_top>img{
		margin-left: -18px;
		width: 200px;
	}
	.footer_top {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
	}
	.contact_form {
		width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    .contact_form .form-row>div input{
		width: 100%;
	}
	.contact_form>div{
		width: 100%;
		display: flex;
		margin-right: 0;
		margin: 20px 0;
	}
	.footer-form,
	.footer-form .form-row,
	.footer-form .form-group{
		width: 100%;
	}
	    .warppbox, .warpper-ny {
        padding: 50px 0;
    }
}

@media (max-width:768px) {
	.piapofu li .hidden{
		left:0;
		right:0;
		top:initial;
		bottom:100%;
		border-radius:0px;
		padding-bottom:20px;
		margin-bottom:-20px;
	}
	.piapofu li .hidden a{
		width:100%;
		min-width:initial;
	}
	.piapofu li:nth-child(2n){
		border-left:1px solid #fff;
		border-right:1px solid #fff
	}
	.piapofu li:first-child{
		border-radius:40px 0 0 40px!important;
	}
	.piapofu li:nth-child(3n){
		border-radius:0 40px 40px 0!important;
	}
	.piapofu li{
		width:33.3333%;
	}
	.piapofu li:last-child{
		display:none;
	}
	.piapofu{
		display:flex;
		top:initial;
		right:5%;
		left:5%;
		bottom:10px
	}
	.proview{
		padding:15px;
	}
	.ang_box .hidden img{
		width:14px;
	}
	.banner-img2 h2{
		font-size: 30px;
	}
	.banner-img2 p {
    font-size: 14px !important;
    margin-bottom: 160px;
}
	.banner-img2{
		margin-top: 54px;
	}
	.wh ul li{
		width: calc(100% - 10px);
	}
	.banner .swiper-container .swiper-button-next,
	.banner .swiper-container .swiper-button-prev{
		display: none;
	}
	
	.products-wrapper .swiper-slide{
		padding: 0 0 22px;
	}
	.products-wrapper .swiper-slide:before{
		display: none;
	}
	.lang_box,.moblie_title_right{
		margin-left: 0;
	}
	.lang_box .lang_nav img{
		display: none;
	}
	.hotpro-wrapper .text_box{
		margin-top: 28px;
	}
	.hotpro-wrapper .text_box h3{
		font-size: 18px;
	}
	.title h1{
		font-size: 28px!important;
	}
	.map_dian div.dian p{
		font-size: 12px;
	}
	.foot-nav .foot-nav-con li a{
		line-height: 20px;
	}
	
	.foot-nav .ewm{
		width: 100px;
	}
	.footer_top{
		padding-bottom: 35px;
	}
	.foot-nav{
		padding: 35px 0;
	}
	.foot-nav-item{
		width: 50%;
		margin-bottom: 30px;
	}
	
    .foot-nav .foot-nav-title{
    	font-size: 18px;
    }
	
	.warpper-ny .title h3 {
		font-size: 20px;
	}
	ul.news-list li {
		width: calc(100% - 20px);
	}
	#banner-img {
		padding-top: 55px;
		min-height: 220px;
	}
	.yj_right {
		flex-direction: column;
	}
	.yj_right li,
	.ys li {
		width: 100%;
		margin: 25px 0;
	}
	.yj_left>div.b>div {
		display: flex;
	}
	.yj_left>div.b {
		flex-direction: column;
	}
	ul.contact {
		flex-direction: column;
	}
	ul.contact li {
		width: 100%;
	}
	.more-box a {
		font-size: 14px;
		min-width: 100px;
	}
	.culture_type .text_box h1 {
		font-size: 20px;
	}
	.culture_type {
		height: 220px;
	}
	.indexabout .biaoqian {
		align-items: flex-start;
		flex-direction: column;
	}
	.indexabout .biaoqian>div {
		margin-bottom: 15px;
	}
	.indexabout .biaoqian>div:last-child {
		margin-bottom: 0;
	}
	.indexabout .biaoqian>div>img {
		width: 26px;
	}
	.indexabout .biaoqian>div h5 {
		margin-bottom: 8px;
	}
	.tb_footer li {
		margin: 0 15px;
	}
	.culture_type .text_box,
	.culture_type.cur .text_box {
		width: 100%;
	}
	.news_list_box_right li>a>i {
		width: 8px;
		height: 8px;
		margin-right: 8px;
	}
	.news_list_box_left {
		padding: 10px;
	}

	.num-big {
		font-size: 120px;
	}
	.p-box {
		font-size: initial;
		line-height: initial;
	}
	#contain-nav {
		margin-top: -15px;
	}
	.mould_list li {
		width: calc(100% - 30px);
	}
	
	.procenter {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: column;
	}
	
	.product-center-list {
		width: 100%;
		padding:0px 0;
	}
	.title-ny h2 {
		font-size: 24px;
	}
	.title-ny p {
		font-size: 20px;
	}
	
	.fupad img,header.active .fupad img{
		max-height: 30px;
	}
	.picture_box {
		background-attachment: initial;
		min-height: auto!important;
	}
	.search_btn {
		width:initial;
		height: 55px;
	}
	.header-box>.header-cen {
		padding: 0 2%;
	}
	.header-right {
		position: relative;
		display: flex;
		width: initial;
		height: 100%;
		align-items: center;
		justify-content: flex-end;
	}
	.header-box,
	header.active .header-box {
		height: 55px;
	}
	.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box h1 {
		line-height: 40px;
		font-size: 1.2rem;
	}
	.banner .swiper-container .swiper-wrapper .swiper-slide .banner-text-box i {
		margin: 15px 0;
	}
	.banner-text-box h1 span {
		font-size: 1.6rem;
	}
	.banner-text-box p {
		font-size: 1rem;
	}
	.banner-text-box a.more {
		width: 8rem;
		height: 2.4rem;
	}
	.player-box {
		width: 55px;
		height: 55px;
	}
	.player-box>img {
		width: 14px!important;
	}
	.title h2 {
		font-size: 28px;
	}
	.title span {
		font-size: 16px;
	}
	.intro_box h4 {
		font-size: 18px;
	}
	.intro_text {
		padding: 1rem;
	}
	.title {
		margin-bottom: 20px;
	}
	.intro_text .more-box {
		margin-top: 20px;
	}
	.news_list_box_right li {
		padding: 30px 0;
	}
	.index-contact-p h1 {
		font-size: 18px;
	}
	.text-top h4 {
		font-size: 16px;
	}
	.hotpro-wrapper .timg .img_box {
    height: calc(100vw / 21* 12);
}
.indexabout{
	margin-top:20px;
}
}