html,
body {
	position: relative;
	height: 100%;
}

.container {
	max-width: 1400px;
}


#header_vue {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	text-align: center;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	background: rgba(27, 27, 27, 0.3);
}

.headervue .header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	margin: auto;
	left: 2%;
}

.header-navbar {
	padding: 0;
	width: 100%;
}

.navbar-con {
	display: flex;
	flex-basis: auto;
	height: 100%;
}

.headervue .iconfont {
	position: relative;
	top: 0.02rem;
	font-size: 0.2rem;
}

.headervue .item>a {
	display: flex;
	height: 100%;
	margin: 0 25px;
	cursor: pointer;
	white-space: nowrap;
	align-items: center;
	color: #ffffff;
	font-family: 'HumansBold';
	text-transform: uppercase;
}

.headervue .item a:hover,
.headervue .item.show>a {
	color: #209551;
	text-decoration: none;
	font-weight: bold;
}

.headervue .item.contact>a {
	margin: 0 10px;
}

.headervue .item.contact>a span {
	background: #209551;
	padding: 5px 15px;
	border-radius: 20px;
	transition: 0.4s;
}

.headervue .item.contact>a:hover span {
	transform: scale(1.1);
	color: #ffffff;
}

.headervue .header-wrap .headerbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: none;
	height: 100px;
}

.headervue .header-wrap .header-logo {
	display: flex;
	align-items: center;
	margin-right: 28px;
}

.headervue .header-wrap .header-right {
	display: flex;
	align-items: center;
	color: #999999;
	margin-right: 20px;
}

.headerbox-nav {
	margin-right: 20px;
}

.headervue .dropdown .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 200px;
	background: rgba(255, 255, 255, 0.95);
	/* font-size: 0.14rem; */
	-webkit-box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	border-radius: 0;
	padding: 10px 0;
	margin-left: -100px;
	margin-top: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	opacity: 0;
	-webkit-transform: translateY(15px);
	transform: translateY(15px);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	display: block;
	z-index: -1;
	visibility: hidden;
	-webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

.headervue .dropdown .show {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	z-index: 10;
}

.headervue .dropdown-menu a {
	text-align: center;
	color: #333333;
	padding: 6px 15px;
}

.headervue .dropdown-menu a:hover {
	color: #209551;
	background-color: unset;
}

.head-link ul {
	display: flex;
	height: 100%;
	align-items: center;
	align-content: center;
	flex-direction: row;
}

.head-link ul li {
	list-style: none;
}

.head-link ul li a {
	color: #ffffff;
	font-size: 22px;
	padding: 10px;
}

.head-link ul li a:hover {
	color: #209551;

}

.menuicon {
	cursor: pointer;
	width: 30px;
	height: 30px;
}

.menuicon i {
	width: 30px;
	height: 2px;
	background: #ffffff;
	position: relative;
	margin-top: 15px;
	display: block;
	transition: 0.4s;
}

.menuicon i::before {
	content: '';
	width: 20px;
	height: 2px;
	background: #ffffff;
	position: absolute;
	left: 0;
	top: -6px;
	z-index: 999;
	transition: 0.4s;
}

.menuicon i::after {
	content: '';
	width: 20px;
	height: 2px;
	background: #ffffff;
	position: absolute;
	left: 0;
	top: 6px;
	z-index: 999;
	transition: 0.4s;
}

.menuicon:hover i::before,
.menuicon:hover i::after {
	width: 30px;
}

.hide-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffffff;
	z-index: 9999999;
	transform: translateY(100%);
	transition: all 0.3s;
}

.hide-menu.cur {
	display: block;
	transform: translateX(0%);
	transition: all 0.3s;
}

.header-box {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 0 4%;
	height: 88px;
	transition: all 0.3s;
}

.header-box .menuicon-close {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.header-box .menuicon-close i {
	width: 20px;
	position: relative;
}

.header-box .menuicon-close i:before {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 2px;
	background: #333333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header-box .menuicon-close i:after {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 2px;
	background: #333333;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hide-menu-container {
	padding: 4%;
	display: flex;
	border-right: 1px solid #EAEAEA;
	margin-right: 5%;
	width: 100%;
	/* align-items: flex-start; */
	flex-direction: row;
	/* height: 100%; */
}

.hide-menu-container>.contact_div {
	display: flex;
	border-right: 1px solid #EAEAEA;
	padding-right: 5%;
	margin-right: 5%;
	width: 100%;
	align-items: flex-start;
	flex-direction: column;
	/* height: 100%; */
}

.hide-menu-container>.contact_div:last-child {
	border: none;
	margin-right: 0;
}

.contact_div h2.title {
	margin-bottom: 15px;
	font-weight: bolder;
	font-family: 'HumansBold';
}

.hide-menu-list {
	width: 100%;
}

.hide-menu-list ul li {
	list-style: none;
	margin-bottom: 10px;

}

.hide-menu-list ul li a:hover{
	text-decoration: none;
}

.menu-contact-list ul li {
	border-bottom: 1px solid #eeeeee;
	width: 100%;
	margin-bottom: 24px;
	padding-bottom: 15px;
}

.menu-contact-list h4 {
	font-weight: bolder;
}

#ph-nav {
	display: none;
}

.header-navbar-m {
	background: #ffffff;
}

.header-navbar-m .header-logo img {
	height: 36px;
}

.header-navbar-m .navbar-con .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851,51,51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-navbar-m .navbar-con .nav-tel {
	margin-right: 15px;
}

.header-navbar-m .navbar-con .nav-tel a {
	color: #333333;
}


.header-navbar-m .navbar-con .lang>a {
	color: #333333;
}

.header-navbar-m .navbar-con .lang .dropdown-menu {
	right: 0;
	left: auto;
}

.header-navbar-m .navbar-con {
	align-items: center;
}

.header-navbar-m .navbar-con .lang .dropdown-menu {
	position: absolute;
	color: #666 !important;
	top: 48px;
	max-height: 10.6rem;
	width: 100px;
	min-width: unset;
	background-color: #333333;
	z-index: 100;
	-webkit-box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	border-radius: 4px;
	padding: 5px 0;
	margin-left: -50px;
}

.header-navbar-m .navbar-con .lang .dropdown-menu a {
	text-align: center;
	color: #ffffff;
	padding: 6px 15px;
	font-size: 14px;
}

.header-navbar-m .navbar-con .lang .dropdown-menu a:hover {
	color: #209551;
	background-color: unset;
}

/**/

#feedback {
	margin-top: 20px;
}

.feedback-form .form-control {
	font-size: 14px;
}

.feedback-form .form-control-input {
	position: relative;
}

.feedback-form .form-control-input i {
	position: absolute;
	left: 15px;
	top: 18px;
	color: #666;
	font-size: 22px;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
	width: 100%;
	padding: 10px 15px;
	height: 50px;
	line-height: 26px;
	font-size: 14px;
	color: #333333;
	background-repeat: no-repeat;
	background-position: .5rem center;
	background-size: .5rem;
	background-color: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	transition: all .3s;
}

.feedback-form .form-textarea {
	height: auto;
	padding-left: 15px;
}

.feedback-form .form-control-input .form-control:focus::-webkit-input-placeholder,
.feedback-form .form-control-input .form-textarea:focus::-webkit-input-placeholder {
	/* WebKit browsers 适配谷歌 */
	color: #333;
}

.feedback-form .form-control-input .form-control:focus:-moz-placeholder,
.feedback-form .form-control-input .form-textarea:focus:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 适配火狐 */
	color: #333;
}

.feedback-form .form-control-input .form-control:focus::-moz-placeholder,
.feedback-form .form-control-input .form-textarea:focus::-moz-placeholder {
	/* Mozilla Firefox 19+ 适配火狐 */
	color: #333;
}

.feedback-form .form-control-input .form-control:focus:-ms-input-placeholder,
.feedback-form .form-control-input .form-textarea:focus:-ms-input-placeholder {
	/* Internet Explorer 10+  适配ie*/
	color: #333;
}

.feedback-submit {
	background: #209551;
	color: #ffffff;
	border-radius: 6px;
	width: 200px;
	height: 50px;
}

.feedback-submit:hover {
	color: #ffffff;
	background: #209551;
}

#feedback2 .form-control {
	padding: 10px;
	height: 45px;
	outline: 0;
}

#feedback2 .form-textarea {
	height: 90px;
	outline: 0;
}

#feedback2 .feedback-submit {
	width: 180px;
	height: 45px;
}

#banner {
	position: relative;
}

#banner {
	position: relative;
}

#banner .swiper-slide {
	position: relative;
}

#banner .banner-nav {
	position: absolute;
	right: 2%;
	top: 50%;
	z-index: 9999;
	margin-top: -60px;
}

#banner .banner-nav ul li {
	list-style: none;
}

#circle {
	stroke-dasharray: 80, 80;
	stroke-dashoffset: 80;
}

.banner-nav ul li {}

.banner-nav ul li a {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 26px;
	cursor: pointer;
}

.banner-nav ul li a b {
	position: absolute;
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #ffffff;
	border-radius: 100%;
	top: 50%;
	left: 50%;
	margin-top: -3px;
	margin-left: -3px;
	opacity: 0.5;
}

.ban-news {
	position: absolute;
	bottom: -20px;
	z-index: 999;
	width: 50%;
	left: 0;
	background: #209551;
	border-top-right-radius: 80px;
}

.banner-nav ul li.active a b {
	background: #209551;
	opacity: 1;
}

.ban-news-con {
	display: flex;
	padding-top: 7%;
	padding-bottom: 7%;
}

.ban-news-container {
	display: flex;
	padding-left: 5%;
	padding-right: 100px;
}

.ban-news-container .title {
	color: #ffffff;
	font-family: 'HumansBold';
	font-size: 60px;
	margin-top: -26px;
	text-transform: uppercase;
	line-height: 60px;
	margin-right: 5%;
}

.ban-news-Swiper {
	overflow: hidden;
	height: 80px;
}

.ban-news-item {
	display: flex;
	font-family: 'HumansBold';
	color: #ffffff;
}

.ban-news-item:hover {
	color: #ffffff;
	text-decoration: none;
}

.ban-news-item span {
	margin-left: 47px;
	width: 100px;
}

.ban-news-btn {
	color: #ffffff;
	font-size: 26px;
	border-left: 1px solid rgba(255, 255, 255, 0.48);
	margin-left: 47px;
	padding-left: 47px;
}

.ban-news-btn .swiper-button-disabled {
	opacity: 0.5;
}

.ban-news-btn>div {
	margin: 10px 0;
}

.contain-title {
	font-family: 'HumanstRoman';
	font-size: 24px;
	color: #209551;
	margin-bottom: 36px;
}

.contain-title h1 {
	font-family: 'HumansBold';
	color: #111111;
	text-transform: uppercase;
	margin-bottom: 0;
}

.contain-title p {
	color: #333;
	font-size: 16px;
	width: 100%;
	margin-left: 5%;
	line-height: 25px;
	margin-bottom: 10px;
}

.contain-title.flex {
	display: flex;
	align-items: flex-end;
}

#index-about {
	overflow: hidden;
}

.index-about-contain {
	padding-top: 90px;
	padding-bottom: 30px;
	position: relative;
}

.index-about-contain .img {
	position: absolute;
	top: 0;
	left: 45%;
}

.index-about-con {
	width: 50%;
}

.index-about-honor {
	margin-bottom: 36px;
}

.index-about-honor ul {
	display: flex;
}

.index-about-honor ul li {
	list-style: none;
	margin-right: 30px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.index-about-p {
	min-height: 480px;
}

.index-serise-con {
	margin-right: 5%;
	border-top-right-radius: 360px;
	overflow: hidden;
	position: relative;
}

.index-serise-con .serise-item {
	min-height: 720px;
	background-position: center;
	background-size: cover;
}

.serise-item-con {
	max-width: 680px;
	color: #ffffff;
	padding-top: 10%;
	padding-bottom: 10%;
}

.serise-item-con .num {
	font-size: 24px;
}

.serise-item-con .serise-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.serise-item-con .serise-title h1 {
	font-size: 60px;
	font-family: 'HumansBold';
}

.serise-item-con .serise-title ul li {
	list-style: none;
	display: inline-block;
	margin-left: 15px;
}

.serise-item-con .serise-more-btn {
	margin-top: 30px;
}

.serise-item-con .serise-more-btn a {
	display: block;
	background: #209551;
	color: #ffffff;
	padding: 6px 15px;
	width: 170px;
	height: 40px;
	border-radius: 20px;
	text-align: center;
	font-weight: bolder;
}

.serise-item-con .serise-more-btn a:hover {
	text-decoration: none;
	background: #1a7941;
}

.index-serise-btns {
	position: absolute;
	bottom: 20%;
	z-index: 999;
	width: 100%;
}

.index-serise-btns-con {
	max-width: 680px;
	display: flex;
}

.index-serise-btns-con hr {
	width: calc(100% - 80px);
	border: none;
	border-bottom: 1px solid #ffffff;
	opacity: 0.76;
}

.index-serise-btns-con .serise-btn-prev,
.index-serise-btns-con .serise-btn-next {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	text-align: center;
	color: #ffffff;
	font-size: 24px;
	line-height: 30px;
	margin-left: 15px;
}

.index-serise-btns-con .serise-btn-prev:hover,
.index-serise-btns-con .serise-btn-next:hover {
	background: #209551;
	border-color: #209551;
	color: #ffffff;
}

#index-pro {
	background: url(../images/pro-bg.jpg) top no-repeat;
	background-size: cover;
	padding-top: 90px;
	padding-bottom: 90px;
}

.index-pro-title {
	position: absolute;
}

.probSwiper,
.prosSwiper {
	overflow: hidden;
	position: relative;
}

.index-pro-item {
	display: flex;
	justify-content: space-between;
}

.index-pro-item .pro-item-left {
	width: 40%;
	padding-top: 178px;
}

.index-pro-item .pro-item-img {
	width: 50%;
	position: relative;
	margin-top: 30px;
}

.index-pro-item .pro-item-img img {
	margin-top: 30px;
}

.index-pro-item .pro-item-img::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	width: 80%;
	height: 100%;
	background: url(../images/circle-icon.png) top right no-repeat;
	background-size: 100% auto;

}

.index-pro-item .pro-item-left .pro-item-name {
	margin-bottom: 30px;
}

.index-pro-item .pro-item-left .pro-item-name h1 {
	font-weight: bolder;
}

.index-pro-item .pro-item-left .pro-item-name span {
	background: #209551;
	color: #ffffff;
	padding: 8px 15px;
	border-radius: 20px;
}

.index-pro-item .pro-item-left .pro-item-more {
	margin-top: 36px;
}

.index-pro-item .pro-item-left .pro-item-more a {
	display: block;
	border: 1px solid #209551;
	color: #209551;
	padding: 6px 15px;
	width: 136px;
	height: 40px;
	border-radius: 20px;
	text-align: center;
	font-weight: bolder;
}

.index-pro-item .pro-item-left .pro-item-more a:hover {
	text-decoration: none;
	background: #209551;
	color: #ffffff;
}

.prosSwiper .pro-item-imgs .pro-item-imgs-con {
	position: relative;
}

.prosSwiper .pro-item-imgs .pro-item-imgs-con {
	width: 166px;
	margin: auto;
}

.prosSwiper .pro-item-imgs .pro-item-imgs-con img {
	width: 166px;
	margin-top: 28px;
}

.prosSwiper .pro-item-imgs .pro-item-imgs-con:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	z-index: -1;
	width: 156px;
	height: 156px;
	margin-left: -30px;
	background: url(../images/circle-icon.png) top right no-repeat;
	background-size: cover;
	transform: rotate(-90deg);
	opacity: 0;
}

.prosSwiper .swiper-slide-thumb-active .pro-item-imgs .pro-item-imgs-con:after {
	opacity: 1;
}

.prosSwiper .pro-btn-prev {
	left: 0;
	position: absolute;
	top: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 999;
}

.prosSwiper .pro-btn-next {
	right: 0;
	position: absolute;
	top: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 999;
}

#index-youshi {
	background-size: cover;
	background-position: center center;

}

.index-youshi-title h1 {
	color: #ffffff;
}

.index-youshi-con {
	background: rgba(0, 0, 0, 0.55);
	color: #ffffff;
	padding-top: 150px;
	padding-bottom: 150px;
}

.index-youshi-contain>p {
	font-size: 24px;
	font-weight: bolder;
	line-height: 32px;
}

.index-youshi-list {
	margin-top: 200px;
}

.index-youshi-list ul {
	display: flex;
	align-items: flex-end;
}

.index-youshi-list ul li {
	list-style: none;
	background: #209551;
	color: #ffffff;
	padding: 15px;
	margin-right: 3px;
	width: 25%;
	text-align: center;
	margin-top: 90px;
	height: 70px;
	transition: all 0.4s;
	overflow: hidden;
	cursor: pointer;
}

.index-youshi-list ul li:first-child {
	border-top-left-radius: 10px;
}

.index-youshi-list ul li:last-child {
	border-top-right-radius: 10px;
	margin-right: 0px;
}

.index-youshi-list ul li .num {
	font-size: 24px;
	margin-bottom: 5px;
	display: none;
}

.index-youshi-list ul li .title {
	font-size: 24px;
	font-weight: bolder;
	line-height: 40px;
}

.index-youshi-list ul li .p {
	display: none;
	margin-top: 0px;
}

.index-youshi-list ul li:hover,
.index-youshi-list ul li.is-hover {
	text-align: left;
	margin-top: 0;
	height: 160px;
}

.index-youshi-list ul li:hover .num,
.index-youshi-list ul li.is-hover .num {
	display: block;
}

.index-youshi-list ul li:hover .p,
.index-youshi-list ul li.is-hover .p {
	display: block;
}

.index-news-contain {
	padding-top: 90px;
	padding-bottom: 90px;
}

.newsSwiper {
	overflow: hidden;
}

.news-item a {
	display: block;
}

.news-item a .news-img {
	border-radius: 10px;
	overflow: hidden;
}

.news-item a .news-img img {
	width: 100%;
}

.news-item a:hover {
	text-decoration: none;
}

.news-item a .news-con {
	margin-top: 15px;
}

.news-item a .news-time {
	font-weight: bolder;
}

.news-item a .news-title {
	font-weight: bolder;
}

.news-item a .news-intro {
	margin-top: 10px;
	line-height: 25px;
	color: #333333;
}

.news-item a .news-more {
	margin-top: 10px;
	font-weight: bolder;
	color: #209551;
	transform: translateX(-10px);
	opacity: 0;
	transition: 0.4s;
}

.news-item a:hover .news-more {
	transform: translateX(0px);
	opacity: 1;
}

.newsswiper-pagination {
	position: relative;
	margin-top: 30px;
}

.newsswiper-pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
}

.newsswiper-pagination .swiper-pagination-bullet-active {
	background: #209551;
}



#foot {
	background: url(../images/contact-bg.jpg) top no-repeat;
	background-size: cover;
}

.foot-contact {
	padding-top: 150px;
	padding-bottom: 150px;
}

.foot-contact-title h1 {
	color: #ffffff;
}

.foot-contact-con {
	color: #ffffff;
	min-height: 240px;
}

.foot-contact-con ul {
	display: flex;
}

.foot-contact-con ul li {
	width: 25%;
	list-style: none;
	border-bottom: 3px solid #ffffff;
	margin-right: 15px;
	padding: 5px;
	font-size: 20px;
	position: relative;
	margin-bottom: 15px;
}

.foot-contact-con ul li h4 {
	font-weight: bolder;
	margin-bottom: 0;
}

.foot-contact-con ul li:after {
	width: 0;
	content: "";
	display: block;
	border-bottom: 3px solid #209551;
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: 1;
	transition: 0.4s;
}

.foot-contact-con ul li:hover:after {
	width: 100%;
}

.foot-copyright {
	background: url(../images/foot-bg.png) top no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 50px;
}

.copyright-contain {
	display: flex;
	justify-content: space-between;
	color: #ffffff;
}

.copyright-contain a {
	color: #ffffff;
}

.copyright-link ul {
	display: flex;
	height: 100%;
	align-items: center;
	align-content: center;
	flex-direction: row;
}

.copyright-link ul li {
	list-style: none;
}

.copyright-link ul li a {
	color: #ffffff;
	font-size: 30px;
	padding: 10px;
}

.copyright-link ul li a:hover {
	color: #ffffff;

}

.ban-img {
	min-height: 680px;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

.ban-title {
	position: absolute;
	bottom: 40%;
	width: 100%;
}

.ban-title h1 {
	font-size: 60px;
	color: #ffffff;
	font-family: 'HumansBold';
}

.contain-con {
	padding-top: 90px;
	padding-bottom: 150px;
}

.honor-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.honor-list .honor-items {
	width: 33.3%;
	padding: 15px;
}

.honor-list .honor-items a {
	display: block;
	background: #f6f6f6;
	padding: 10%;
	cursor: pointer;
}

.honor-list .honor-items a:hover {
	text-decoration: none;
}

.honor-list .honor-items a:before {
	content: "";
	display: block;
	width: 30px;
	height: 3px;
	background-color: #209551;
	display: block;
	transition: 0.4s;
}

.honor-list .honor-items a:hover:before {
	width: 40px;
}

.honor-list .honor-items a .honor-name {
	margin: 15px 0 30px 0;
}

.honor-list .honor-items a:hover .honor-name {
	font-weight: bolder;
}

.honor-list .honor-items a .honor-img {
	overflow: hidden;
}

.honor-list .honor-items a .honor-img img {
	width: 100%;
	transition: 0.4s;
}

.honor-list .honor-items a:hover .honor-img img {
	transform: scale(1.1);
}

.news-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.news-items {
	width: 33.3%;
	padding: 15px;
}

.news-view {
	display: flex;
	justify-content: space-between;
}

.news-view-nav {
	width: 380px;
	border-left: 1px solid #eeeeee;
	padding-left: 30px;
}

.news-view-contain {
	width: calc(100% - 460px);
}

.news-view-title {
	font-size: 18px;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.news-view-title h1 {
	font-size: 30px;
	font-weight: bolder;
	margin-bottom: 15px;
}

.news-view-title i {
	margin-right: 5px;
}

.news-view-title span {
	margin-right: 15px;
}

.news-view-title a {
	color: #333333;
}

.news-view-title a:hover {
	color: #209551;
	opacity: 1 !important;
}

.news-view-p {
	min-height: 720px;
}

.news-view-nav-con {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	bottom: 50px;
}

.news-view-item .news-item a {
	color: #333333;
}

.news-view-nav .next {
	margin-bottom: 30px;
}

.news-view-nav h5 {
	font-weight: bolder;
	font-size: 18px;
	margin-bottom: 15px;
}

.contact-conner {
	margin-top: 60px;
	display: flex;
	flex-direction: row-reverse;
}

.contact-right {
	width: 50%;
	padding-left: 54px;
	padding-top: 50px;
}

.contact-left {
	width: 50%;
	padding-right: 54px;
}

#contact-feedback {
	margin-top: 15px;
}

#ban-nav {
	width: 100%;
	overflow: hidden;
	height: 93px;
	border-bottom: solid 1px #e0e1e1;
}

.ban-nav-menu ul {
	display: flex;
}

.ban-nav-menu ul li {
	list-style: none;
	position: relative;
	margin-right: 5%;
}

.ban-nav-menu ul li a {
	line-height: 92px;
	display: block;
}

.ban-nav-menu ul li a:hover,
.ban-nav-menu ul li.active a {
	text-decoration: none;
	color: #209551;
}

.ban-nav-menu ul li:after {
	content: "";
	width: 0;
	height: 2px;
	background: #209551;
	position: absolute;
	left: 50%;
	margin-left: -10px;
	bottom: 0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}

.ban-nav-menu ul li:hover:after,
.ban-nav-menu ul li.active:after {
	width: 20px;
}

.products-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.products-list .pro-items {
	width: 33.3%;
	padding: 15px;
}

.products-list .pro-items a {
	display: block;
}

.products-list .pro-items a:hover {
	text-decoration: none;
}

.products-list .pro-items a .pro-img {
	text-align: center;
	overflow: hidden;
}

.products-list .pro-items a .pro-img img {
	max-width: 300px;
	transition: 0.4s;
}

.products-list .pro-items a:hover .pro-img img {
	transform: scale(1.1);
}

.products-list .pro-items a .pro-title {
	background: #f6f6f6;
	padding: 15px 30px;
	text-align: center;
	font-size: 18px;
}

.products-list .pro-items a .pro-title span {
	display: block;
	color: #727272;
	font-size: 14px;
}

.pro-view-con {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.pro-view-left {
	width: 60%;
	padding-right: 30px;
}

.pro-view-right {
	width: 40%;
	padding-left: 20px;
}

.pro-view-name {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.pro-view-name h1 {
	font-size: 26px;
	font-weight: bold;
}

.pro-view-name span {
	background: #209551;
	color: #ffffff;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 16px;
	font-weight: normal;
}

.pro-view-inquiry-btn {
	margin-top: 60px;
	max-width: 166px;
}

.pro-view-inquiry-btn a {
	display: block;
	background: #209551;
	color: #ffffff;
	text-align: center;
	width: 100%;
	height: 46px;
	font-size: 18px;
	padding: 8px;
}

.pro-view-inquiry-btn a:hover {
	text-decoration: none;
	font-weight: bold;
	background: #1a7941;
}

.pro-view-img {
	display: flex;
	flex-direction: row-reverse;
}

.pro-view-imgb {
	width: calc(100% - 150px);
	max-width: 610px;
	margin: auto;
}

.pro-view-imgs {
	width: 150px;
}

.pro-view-btn {
	display: none;
}

.pro-view-btn {
	position: absolute;
	font-size: 36px;
	width: 100%;
	text-align: center;
	top: 50%;
	z-index: 10;
	margin-top: -18px;
}

.pro-view-btn .pro-btn-prev {
	left: 5%;
	position: absolute;
}

.pro-view-btn .pro-btn-next {
	right: 5%;
	position: absolute;
}

.pro-imgb {
	text-align: center;
	cursor: zoom-in;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-pro-imgb {
	position: relative;
}

.pro-view-imgs-con {
	max-width: 117px;
	margin: auto;
	padding-top: 36px;
	padding-bottom: 36px;
	position: relative;
}

.pro-view-imgs-con .pro-imgs-btn {
	position: absolute;
	font-size: 36px;
	width: 100%;
	text-align: center;
}

.pro-imgs-btn-prev {
	top: 0;
}

.pro-imgs-btn-next {
	bottom: 0;
}

.swiper-pro-imgs {
	height: 600px;
	overflow: hidden;
}

.swiper-pro-imgs .swiper-slide {
	border: 1px solid #d4d4d4;
}

.swiper-pro-imgs .swiper-slide.active {
	border: 2px solid #209551;
}

.swiper-pro-imgs .swiper-slide .pro-imgs-con {
	vertical-align: middle;
	cursor: pointer;
}

.swiper-pro-imgs .swiper-slide .pro-imgs {
	height: 100%;
	text-align: center;
}

.swiper-pro-imgs .swiper-slide .pro-imgs img {
	height: 100%;
	width: auto;
	margin: auto;
}

.pro-imgs-btn.wrapper-btn-disabled {
	opacity: 0.5;
}

.pro-view-details {
	margin-top: 90px;
}

.pro-view-details-title {
	font-size: 24px;
	font-weight: bolder;
	color: #000000;
	margin-bottom: 24px;
}

.pro-view-details-con {
	overflow: hidden;
}

.feedback-form .form-yzm{
	display:flex;
	justify-content: space-between;
}

.feedback-form .form-yzm .form-control{
	width: calc(100% - 230px);
}

.feedback-form .form-yzm img{
	width: 200px;
	height: 50px;
}
@media screen and (max-width: 1900px) {
	.ban-news-container .title {
		font-size: 50px;
		line-height: 50px;
	}
}

@media screen and (max-width: 1600px) {
	.ban-news-container .title {
		font-size: 50px;
		line-height: 50px;
	}

	.ban-news {
		border-top-right-radius: 60px;
	}

	.ban-news-container {
		padding-right: 50px;
	}
}

@media screen and (max-width: 1200px) {
	.headervue .item>a {
		margin: 0 15px;
	}

	.ban-news {
		display: none;
	}

	.index-youshi-list ul li .title {
		font-size: 20px;
	}

	.index-youshi-list ul li .p {
		line-height: 18px;
	}
}

@media screen and (max-width: 992px) {
	.headervue {
		display: none;
	}

	#ph-nav {
		display: block;
	}

	.index-about-con {
		width: 100%;
	}

	.index-about-p {
		min-height: auto;
	}

	.index-about-contain .img {
		position: relative;
		top: 0;
		left: 0;
	}

	.contain-title.flex {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}

	.contain-title p {
		margin-left: 0;
	}

	.contain-title h1 {
		max-width: 400px;
	}

	.index-pro-title {
		position: relative;
	}

	.index-pro-item .pro-item-left {
		width: 100%;
		padding-top: 0px;
	}

	.index-pro-item {
		flex-direction: column;
	}

	.index-pro-item .pro-item-img {
		width: 100%;
		margin-top: 30px;
		max-width: 500px;
	}

	.index-youshi-list ul li {
		width: 100%;
		margin-top: 10px;
		border-radius: 0 !important;
	}

	.index-youshi-list ul {
		flex-wrap: wrap;
	}

	.index-youshi-list ul li:hover,
	.index-youshi-list ul li.is-hover {
		margin-top: 10px;
	}

	.foot-contact-con ul {
		flex-direction: column;
	}

	.foot-contact-con ul li {
		width: 100%;
		margin-right: 0;
	}

	.contain-con {
		padding-top: 30px;
		padding-bottom: 60px;
	}

	.ban-title h1 {
		font-size: 46px;
	}

	.ban-img {
		min-height: 580px;
	}

	.honor-list .honor-items {
		width: 50%;
	}

	.news-items {
		width: 50%;
	}

	.news-view {
		flex-direction: column;
	}

	.news-view-nav {
		width: 100%;
		border-left: none;
		border-top: 1px solid #eeeeee;
		padding-top: 30px;
		margin-top: 30px;
		padding-left: 0;
	}

	.news-view-contain {
		width: 100%;
	}

	.news-view-item .news-item a .news-img,
	.news-view-item .news-item a .news-time {
		display: none;
	}

	.contact-conner {
		flex-direction: column;
	}

	.contact-right {
		width: 100%;
		padding-left: 0px;
		padding-top: 0;
	}

	.contact-left {
		width: 100%;
		padding-right: 0px;
		margin-top: 50px;
	}

	.products-list .pro-items {
		width: 50%;
	}

	.pro-view-con {
		flex-direction: column;
	}

	.pro-view-left,
	.pro-view-right {
		width: 100%;
	}

	.pro-view-left {
		max-width: 800px;
		margin: auto;
		padding-right: 0;
	}

	.pro-view-right {
		margin-top: 36px;
		padding-left: 0;
	}

	.pro-view-imgs {
		display: none;
	}

	.pro-view-imgb {
		width: 100%;
	}

	.pro-view-btn {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.index-about-contain {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.index-serise-con {
		margin-right: 0;
		border-top-right-radius: 0;
	}

	.index-serise-con .serise-item {
		min-height: auto;
	}

	.index-serise-btns {
		bottom: 3%;
	}

	.copyright-contain {
		flex-direction: column;
		align-items: center;
	}

	.copyright-left {
		text-align: center;
		margin-bottom: 15px;
	}

	.ban-img {
		min-height: 380px;
		background-attachment: local;
	}

	.ban-title h1 {
		font-size: 36px;
	}

	.news-items {
		width: 100%;
	}

	.products-list .pro-items {
		width: 100%;
	}
}

@media screen and (max-width: 580px) {
	.honor-list .honor-items {
		width: 100%;
	}
}