@charset "utf-8";

a:hover,
a:focus {
	text-decoration: none !important;
	cursor: pointer;
}

ol {
	margin-bottom: 0;
}

ul,
li {
	padding: 0;
	margin: 0;
	list-style: none;
}

i {
	font-style: normal;
}

dl,
dd {
	margin-bottom: 0;
}


/*图片样式*/
.thumbnail,
.img-thumbnail {
	border: 0;
	padding: 0;
	border-radius: 0;
	background-color: transparent;
}

p.thumbnail {
	border: 0;
	padding: 0;
	border-radius: 0;
	margin-bottom: 0;
	overflow: hidden;
}

p.thumbnail img {
	width: 100%;
	transition: all 0.6s;
}

.yd-banner img {
	width: 100%;
	max-width: 100%;
    height: auto;
	transition: all 0.6s;
}

.center-block {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

/* 头部 */
.menu {
	background: rgba(0, 0, 0, .9);
}

.no-background {
	background: rgba(0, 0, 0, 0);
}

.header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fixed {
	position: fixed;
	z-index: 999999;
	padding: 10px 20px;
}

.logo img {
	height: 20px;
}

.nav {
	position: relative;
	width: auto;
	border: none;
}

.btn-nav {
	background: transparent;
	border: none;
	padding: 10px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	cursor: pointer;
	z-index: 99999;
}

.btn-nav:focus {
	outline: 0;
}

.icon-bar {
	display: block;
	margin: 6px 0;
	width: 24px;
	height: 2px;
	background-color: #FFFFFF;
}

.btn-nav:hover .icon-bar {
	-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-color: #4cb770;
}

.yd-search {
	position: relative;
	margin-right: 10px;
}

.yd-search .search {
	display: inline-block;
	width: 50px;
	height: 50px;
	color: #FFFFFF;
	text-align: center;
	line-height: 50px;
	transition: all .2s;
	font-size: 20px;
}

.yd-search .search:hover {
	color: #4CB770;
}

.yd-search .yd-search-box {
	display: none;
}

.yd-search .form-inline {
	position: absolute;
	right: 0;
	top: 50px;
	width: 260px;
	flex-flow: row;
}

.yd-search .form-inline input,
.yd-search .form-inline button {
	border-radius: 0;
}

.yd-search .form-inline button {
	background: #4CB770;
	color: #FFFFFF;
}

.nav-content {
	width: 100%;
	position: fixed;
	height: 100%;
	z-index: 101;
	right: 0;
	top: -100%;
}

.nav-content .page-menu {
	text-align: center;
	display: table;
	height: 100%;
	width: 100%;
}

.nav-list {
	display: table-cell;
	vertical-align: middle;
	padding-left: 0;
}

.item-anchor:after {
	content: "";
	position: absolute;
	width: 3px;
	height: 3px;
	left: 0;
	bottom: 0;
	z-index: 9;
	background: transparent;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.item-anchor {
	color: #4cb770;
	font-size: 20px;
	text-transform: uppercase;
	position: relative;
	text-decoration: none;
	padding: 10px;
}

.item-anchor:hover,
.item-anchor:focus {
	color: #4cb770;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after {
	width: 100%;
	background: #4cb770;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.nav-item {
	margin: 30px auto;
	text-align: center;
	padding-right: 60px;
}

.animated {
	display: block;
}

.animated:hover .icon-bar,
.animated:focus .icon-bar {
	background-color: #4cb770;
}

.animated:focus {
	cursor: pointer;
	z-index: 9999;
}

.middle {
	margin: 0 auto;
}

.icon-bar {
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
	z-index: 999999;
}

.animated .icon-bar {
	z-index: 999999;
	background-color: #4cb770;
}

.animated .top {
	-webkit-transform: translateY(10px) rotateZ(45deg);
	-moz-transform: translateY(10px) rotateZ(45deg);
	-ms-transform: translateY(10px) rotateZ(45deg);
	-o-transform: translateY(10px) rotateZ(45deg);
	transform: translateY(10px) rotateZ(45deg);
}

.animated .bottom {
	-webkit-transform: translateY(-7px) rotateZ(-45deg);
	-moz-transform: translateY(-7px) rotateZ(-45deg);
	-ms-transform: translateY(-7px) rotateZ(-45deg);
	-o-transform: translateY(-7px) rotateZ(-45deg);
	transform: translateY(-7px) rotateZ(-45deg);
}

.animated .middle {
	width: 0;
}

@keyframes showNav {
	from {
		top: -100%;
	}

	to {
		top: 0;
	}
}

@-webkit-keyframes showNav {
	from {
		top: -100%;
	}

	to {
		top: 0;
	}
}

@-moz-keyframes showNav {
	from {
		top: -100%;
	}

	to {
		top: 0;
	}
}

@-o-keyframes showNav {
	from {
		top: -100%;
	}

	to {
		top: 0;
	}
}

.showNav {
	-webkit-animation: showNav 1s ease forwards;
	-moz-animation: showNav 1s ease forwards;
	-o-animation: showNav 1s ease forwards;
	animation: showNav 1s ease forwards;
	background: rgba(0, 0, 0, .8);
}

@keyframes hideNav {
	from {
		top: 0;
	}

	to {
		top: -100%;
	}
}

@-webkit-keyframes hideNav {
	from {
		top: 0;
	}

	to {
		top: -100%;
	}
}

@-moz-keyframes hideNav {
	from {
		top: 0;
	}

	to {
		top: -100%;
	}
}

@-o-keyframes hideNav {
	from {
		top: 0;
	}

	to {
		top: -100%;
	}
}

.hideNav {
	-webkit-animation: hideNav 1s ease forwards;
	-moz-animation: hideNav 1s ease forwards;
	-o-animation: hideNav 1s ease forwards;
	animation: hideNav 1s ease forwards;
	background: rgba(0, 0, 0, .8);
}

.hidden {
	display: none;
}

.swiper-pagination-bullet {
	background: #FFFFFF;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #4CB770;
}

.c1 {
	background: #d9d9d9;
}

.c2 {
	background: #f3f3f3;
}

.c3 {
	background: #b9bdc6;
}

.yd-three {
	background: #e6e6e6;
	padding-top: 40px;
}

.yd-three .container-fluid {
	padding: 0;
}

.yd-three .item {
	padding: 40px;
}

.yd-three .box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}

.yd-three .box .info p.title {
	font-size: 24px;
	color: #000000;
	margin-bottom: 0;
}

.yd-three .box .info p.subtitle {
	margin-bottom: 0;
	color: #000000;
	font-size: 18px;
}

.yd-three .box .info p.title,
.yd-three .box .info p.subtitle {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.yd-three .box a.more,
.btnmore {
	display: inline-block;
	width: 100px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #000000;
	color: #000000;
	font-size: 16px;
	transition: .2s;
}

.yd-three .box a.more:hover,
.btnmore:hover {
	border: 1px solid #4CB770;
	background: #4CB770;
	color: #FFFFFF;
}

.jtjs {
	padding-top: 40px;
}

.jtjs .container-fluid {
	padding: 0px;
}

.jtjs .no-gutters {
	background: #eeefef;
}

.jtjs .info {
	background: #eeefef;
	padding: 50px;
}

.jtjs .info h2 {
	margin-bottom: 30px;
}

.jtjs .info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 6px;

	
}

/* 产品展示 */
.yd-product {
	padding: 40px 0;
}

/* .yd-product .txt {
	position: relative;
}

.yd-product .txt p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.yd-product .btnmore {
	position: absolute;
	left: 15px;
	bottom: 0;
} */

.yd-product .item-list:hover {
	background: #999999;
}

.yd-product .item-list:hover .btnmore {
	border: 1px solid #4CB770;
	background: #4CB770;
	color: #FFFFFF;
}

.yd-product .item {
	margin: 15px 15px 40px;
	padding: 0;
}

.yd-product .item h3 {
	margin-bottom: 20px;
	color: #000000;
}

.yd-product .item p {
	color: #000000;
}


.yd-product .container-fluid {
	padding: 0;
}

.yd-title {
	text-align: center;
	margin-bottom: 30px;
}

.yd-title p.title {
	display: inline-block;
	font-size: 20px;
	padding-bottom: 20px;
	color: rgb(50, 50, 50);
	border-bottom: 4px solid #4CB770;
}

.yd-category {
	text-align: center;
	margin-bottom: 40px;
	padding: 0 15px;
}

.yd-category,
.yd-category a {
	color: #1e1e1e;
	font-size: 16px;
	line-height: 36px;
}

.yd-category a.active,
.yd-category a:hover {
	color: #4cb770;
	transition: all .5s ease;
}

.yd-category span {
	display: inline-block;
	margin: 0 14px;
}

.item-product a.pro-content {
	display: block;
	overflow: hidden;
}

.item-product .pro-info {
	width: 100%;
	height: 100%;
	background: rgba(240, 187, 195, 0);
	position: absolute;
	left: 0;
	top: 0;
	transition: all ease-out .3s;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0);
}

.item-product .pro-info div {
	text-align: center;
}

.item-product .pro-info p.title {
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 0;
}

.item-product .pro-info p.subtitle {
	font-size: 14px;
}

.item-product a img {
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.item-product a:hover img {
	transform: scale(1.2, 1.2)
}

.item-product a:hover .pro-info {
	background: rgba(24, 24, 24, .5);
	color: rgba(255, 255, 255, 1);
}

.pd {
	padding: 40px 0;
}

/* 核心竞争 */
.yd-hexin .container-fluid {
	padding: 0 15px;
}

.yd-hexin .item {
	margin-bottom: 40px;
}

.yd-hexin .item .img {
	overflow: hidden;
	margin-bottom: 20px;
	transition: transform 0.35s;
	transform: perspective(1000px) translate3d(0, 0, 0);
}

.yd-hexin .item:hover img {
	transform: perspective(1000px) translate3d(0, 0, 40px);
	transition: .3s;
}

.yd-hexin .item h5 {
	font-size: 20px;
	color: #000000;
	margin-bottom: 10px;
}

.yd-hexin .item p {
	color: #000000;
	font-size: 16px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.yd-hexin .item:hover h5 {
	color: rgb(76, 183, 112);
}

.yd-hexin .btnmore {
	margin-top: 60px;
}


.yd-three .item:hover {
	background: #999999;
}

.yd-three .item:hover .btnmore {
	border: 1px solid #4CB770;
	background: #4CB770;
	color: #FFFFFF;
}

/*合作品牌*/
.yd-logo {
	background: #999999;
}

.yd-logo a {
	display: inline-block;
	margin-bottom: 20px;
}

.yd-logo a:hover {
	background: #4cb76e;
}

.yd-logo a:hover .btnmore {
	background: #4cb76e;
}


/* 加盟 */
.yd-join {
	border: 0;
}

.yd-join .card-img {
	border-radius: 0;
}

.yd-join .card-img-overlay {
	display: flex;
	align-items: center;
}

.yd-join .box {
	width: 100%;
	text-align: center;
	color: #FFFFFF;
}

.yd-join .box h3 {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-size: 18px;
}

.yd-join .box h3:after {
	content: "";
	width: 40px;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	bottom: 0;
}

.yd-join .box h4 {
	font-size: 14px;
	margin-bottom: 0;
}

/* 新闻动态 */
.yd-news {
	padding: 50px 0;
}

.yd-news .header {
	margin-bottom: 10px;
}

.yd-news .btnmore {
	margin-top: 60px;
}

.item-new {
	display: block;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	margin-bottom: 15px;
	cursor: pointer;
}

.item-new p {
	margin: 0;
}

.item-new p.title {
	font-size: 18px;
	color: #222121;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 12px;
	transition: all 0.3s;
}

.item-new p.txt {
	font-size: 14px;
	line-height: 24px;
	color: #777777;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.item-new:hover p.title {
	color: #4CB770;
}

.yd-more {
	margin: 30px auto 0;
	display: block;
	width: 100px;
	height: 40px;
	color: #000000;
	border: 1px solid #000000;
	text-align: center;
	line-height: 40px;
	font-size: 16px;
	transition: all 0.3s;
}

.yd-more:hover {
	background: #4CB770;
	border: 1px solid #4CB770;
	color: #FFFFFF;
}

#certify {
	position: relative;
}

#certify .swiper-slide {
	width: 720px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

#certify .swiper-slide img {
	display: block;
}

#certify .swiper-pagination {
	width: 100%;
	bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #d5d5d5;
	width: 10px;
	height: 10px;
	opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #00aadc;
	background-color: #fff;
}

#certify .swiper-button-prev {
	left: 0;
}

#certify .swiper-button-next {
	right: 0;
}

#certify .swiper-button-prev,
#certify .swiper-button-next {
	background-image: none;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	text-align: center;
	line-height: 40px;
	border-radius: 100%;
	transition: all .2s;
}

#certify .swiper-button-prev:hover,
#certify .swiper-button-next:hover {
	background: #4ab26d;
	color: #FFFFFF;
}

.yd-news-img {
	margin-bottom: 50px;
}

.yd-news-img .item {
	display: block;
	position: relative;
}

.yd-news-img .item .info {
	width: 100%;
	background: #4CB770;
	padding: 15px 10px;
	color: #FFFFFF;
	position: absolute;
	bottom: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}


.yd-news-img .item .info .title {
	width: 70%;
	text-align: right;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* 合作伙伴 */
.work-logo {
	width: 100%;
	padding: 30px 0;
	position: relative;
	background: #e7e7e7;
}

.work-logo>div {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.g-button-next,
.g-button-prev {
	position: absolute;
	top: 50%;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: transparent;
	z-index: 10;
	cursor: pointer;
	text-align: center;
	line-height: 40px;
	transition: all 0.3s;
}

.g-button-next i,
.g-button-prev i {
	color: #777777;
}

.g-button-next:hover,
.g-button-prev:hover {
	background: #4CB770;
}

.g-button-next:hover i,
.g-button-prev:hover i {
	color: #FFFFFF;
}

.g-button-prev {
	left: 10px;
	right: auto;
}

.g-button-next {
	right: 10px;
	left: auto;
}

/* 底部 */
.footer {
	background: #1e1e1e;
	padding: 60px 0 40px;
}

.footer .footer-nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 30px;
}

.footer .footer-nav a {
	color: #a5a5a5;
	display: block;
}

.footer .footer-nav a:hover {
	color: #4CB770;
}

.footer .footer-nav dt a {
	font-size: 14px;
	margin-bottom: 15px;
}

.footer .footer-nav dd a {
	font-size: 12px;
	line-height: 24px;
}

.footer h4 {
	color: #FFFFFF;
	font-size: 18px;
	margin-bottom: 20px;
}

.footer .footer-logo,
.footer .footer-contact,
.footer .footer-navs {
	margin-bottom: 40px;
}

.footer .footer-logo p {
	margin-top: 30px;
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
	line-height: 24px;
}

.footer .footer-contact p {
	font-size: 14px;
	line-height: 30px;
	color: rgba(255, 255, 255, .8);
}

.footer .footer-contact .btn-contact {
	margin-top: 20px;
	display: inline-block;
	padding: 8px 24px;
	color: rgba(255, 255, 255, .8);
	border: 1px solid rgba(255, 255, 255, .8);
}

.footer .footer-contact .btn-contact:hover {
	background: #4CB770;
	border: 1px solid #4CB770;
	color: #FFFFFF;
}

.footer .footer-navs ul li a {
	font-size: 14px;
	line-height: 30px;
	color: rgba(255, 255, 255, .8);
}

.bq a {
	color: #7a7a7a;
}
.bq a:hover {
	color: #4CB770;
}

.footer .footer-navs ul li a:hover {
	color: #4CB770;
}

.yd-form {
	margin-bottom: 30px;
}

.yd-form input,
.yd-form textarea {
	background: transparent;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #c3c3c3;
	margin-bottom: 20px;
	padding: .375rem 0;
	font-size: 14px;
	color: #777777;
}

.yd-form input:focus,
.yd-form textarea:focus {
	box-shadow: none !important;
	background: transparent !important;
	border-bottom: 1px solid #4CB770 !important;
}

button {
	outline: none !important;
}

.yd-form .btnn {
	width: 98px;
	height: 38px;
	background: transparent;
	text-align: center;
	line-height: 38px;
	color: #777777;
	border: 1px solid #C3C3C3;
	padding: 0;
	font-size: 14px;
	transition: all .2s;
	cursor: pointer;
}

.yd-form .btnn:hover {
	background: #4CB770;
	color: #FFFFFF;
	border: 1px solid #4CB770;
}

.footer .ewm {
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-align: center;
	margin-bottom: 40px;
}

.footer .ewm .item {
	margin: 0 10px;
}

.footer .ewm p {
	margin-bottom: 0;
	color: #a5a5a5;
	font-size: 12px;
	margin-top: 10px;
}

.footer .yd-right .wd {
	text-align: center;
	margin-bottom: 15px;
	font-size: 15px;
}

.footer .yd-right .wd a,
.footer .yd-right .social a {
	color: #777;
}

.footer .yd-right .wd a:hover,
.footer .yd-right .social a:hover {
	color: #4CB770;
}

.footer .yd-right .social {
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
}

.footer .yd-right .wd a {
	margin: 0 15px;
}

.footer .yd-right .social a {
	display: inline-block;
	margin: 0 15px;
}

.footer .yd-right h4 {
	text-align: left;
	padding-right: 10px;
}

.bq {
	padding: 10px 0;
	font-size: 14px;
	line-height: 20px;
	color: #7a7a7a;
	background: #000000;
	text-align: center;
}

.bq p {
	margin: 0;
}

.fix {
	position: fixed;
	right: 0;
	bottom: 50px;
	z-index: 999;
}

.fix a {
	display: block;
	width: 40px;
	height: 40px;
	background: #4CB770;
	color: #FFFFFF;
	margin-bottom: 10px;
	text-align: center;
	line-height: 40px;
	transition: all .2s;
}

#back-to-top {
	/* display: none; */
	width: 40px;
	height: 40px;
	background: #4CB770;
	color: #FFFFFF;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
}

.page {
	text-align: center;
	margin-top: 60px;
}

.page a {
	display: inline-block;
	width: 36px;
	height: 36px;
	color: #595959;
	font-size: 14px;
	text-align: center;
	line-height: 36px;
	background: #f0f0f0;
	margin: 0 10px;
	transition: all .2s;
}

.page a:hover,
.page a.active {
	background: #4CB770;
	color: #FFFFFF;
}

.yd-other-title {
	text-align: center;
	margin-bottom: 40px;
}

.yd-other-title p {
	margin-bottom: 0;
}

.yd-other-title p.title {
	font-size: 30px;
}

.yd-other-title p.subtitle {
	font-size: 16px;
}

.nbanner {
	position: relative;
}

/* 联系我们 */

.ncontact .item {
	color: #0a0a0a;
	margin-bottom: 100px;
}

.ncontact .item h5 {
	font-weight: 700;
	font-size: 20px;
}

.ncontact .item ul li {
	font-size: 16px;
	line-height: 30px;
}

/* .ncontact-info {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
} */

.ncontact-info {
	margin: 0 0 80px;
}

.ncontact-info .container {
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .3);
	padding: 0;
	background: #FFFFFF;
}

.ncontact-info .info {
	padding: 50px;
}

.ncontact-info h4 {
	position: relative;
	padding-bottom: 15px;
	font-weight: 700;
	margin-bottom: 20px;
}

.ncontact-info h4:after {
	content: "";
	width: 40px;
	height: 2px;
	background: #4CB770;
	position: absolute;
	left: 0;
	bottom: 0;
}

.ncontact-info p {
	font-size: 16px;
	line-height: 36px;
	color: #555;
}

.ncontact-map .box {
	background: #FFFFFF;
	padding: 35px 40px;
}

.ncontact-map .box .info {
	border-top: 1px dashed #3e3e3e;
	border-bottom: 1px dashed #3e3e3e;
	padding: 10px 0;
}

.ncontact-map .box h5 {
	font-size: 20px;
	margin-bottom: 20px;
}

.ncontact-map .box p {
	margin-top: 10px;
	margin-bottom: 0;
}

.ncontact-map .box dl {
	margin: 15px 0;
}

.ncontact-map-box {
	display: flex;
	align-items: center;
	height: 100%;
}

.ncontact-map-info {
	margin: 30px 0 60px;
}

/* 新闻资讯 */
.nnews {
	padding: 50px 0;
}

/* .nnews .nnews-list {
	padding: 40px 0 0;
}
 */
.nnews-list .media {
	margin-bottom: 30px;
	transition: all .2s;
}

.nnews-list .media img {
	width: 100px;
}

.nnews .mr-5 {
	margin-right: 15px !important;
}

.nnews-list .media-body h5 {
	font-size: 16px;
	line-height: 24px;
	color: #111;
	margin-bottom: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nnews-list .media-body .date {
	font-size: 14px;
	color: #777777;
	margin-bottom: 20px;
}

.nnews-list .media-body p {
	font-size: 12px;
	line-height: 20px;
	color: #2c2a2a;
	padding-top: 5px;
	border-top: 1px solid #222;
	margin-bottom: 6px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.nnews-list .media-body .more {
	text-align: right;
	font-size: 14px;
	color: #222;
}

.nnews-list .media:hover h5,
.nnews-list .media:hover .more {
	color: #4CB770;
}

.nnews-detail {
	padding: 80px 0 0;
}
.con img {
	max-width:100%;height:auto;
}

.nnews-detail .tit {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.nnews-detail .tag {
	text-align: center;
	color: #777777;
	font-size: 14px;
	margin-bottom: 60px;
}

.yd-other-news .item-new {
	margin-bottom: 40px;
}

.yd-other-news .img {
	position: relative;
	margin-bottom: 20px;
}

.yd-other-news .img .info {
	width: 100%;
	background: #4CB770;
	padding: 10px;
	color: #FFFFFF;
	position: absolute;
	bottom: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 13px;
}

.yd-other-news .img .info .title {
	width: 70%;
	text-align: right;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 招聘 */
.njob {
	padding: 50px 0;
}

.njob .tit {
	font-size: 30px;
	padding: 20px 0;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
	margin-bottom: 50px;
	font-weight: 600;
}

.njob .list dl {
	margin-bottom: 40px;
	color: #333;
}

.njob .list dl dt {
	font-size: 24px;
	margin-bottom: 20px;
}

.njob .list dl dd {
	font-size: 16px;
	line-height: 36px;
}

.c6 {
	background: #4cb770;
}

.c7 {
	background: #01afee;
}

.c8 {
	background: #c9cacc;
}

.c9 {
	background: #ffc600;
}

.njob .fl h5 {
	margin-bottom: 30px;
}

.njob .fl .fl-list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.njob .fl .fl-list .txt {
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	font-size: 16px;
	color: #FFFFFF;
	border-radius: 100%;
}

.njob .fl .fl-list .icon {
	color: #999;
	font-size: 18px;
}

/* 走进一德 */
.nabout {
	padding: 50px 0 0;
}

.nabout .item {
	margin-bottom: 80px;
}

.nabout .item h5 {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #c9c9c9;
}

.nabout .item p {
	font-size: 16px;
	line-height: 36px;
	color: #404040;
}

/* 加盟 */
.njoin-one {
	padding: 50px 0;
}

.njoin-one .jl,
.njoin-one .ln {
	background: #f7f7f7;
	padding: 30px;
	margin-bottom: 20px;
}

.njoin-one p {
	margin-bottom: 0;
}

.njoin-one h5 {
	margin-bottom: 20px;
}

.njoin-one h5 i {
	color: #4CB770;
	display: inline-block;
	margin-right: 10px;
}

.njoin-one .hz .list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
	margin-top: 40px;
}

.njoin-one .hz .list:after {
	content: "";
	width: 80%;
	height: 1px;
	background: #808080;
	position: absolute;
	top: 25px;
	left: 10%;
}

.njoin-one .hz .list .item {
	text-align: center;
	position: relative;
	z-index: 99;
	flex: 1;
}

.njoin-one .hz .list .item div {
	display: inline-block;
	margin-bottom: 15px;
}

.njoin-one .hz .list .num {
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	color: #FFFFFF;
	background: #808080;
	border-radius: 100%;
	font-size: 18px;
	font-weight: 600;
}

.njoin-one .hz .list p {
	font-size: 16px;
	margin-bottom: 0;
}

.njoin-one .jlln {
	margin-bottom: 50px;
}


.njoin-two {
	background: #4CB770;
	padding: 60px 0 20px;
}

.njoin-two .item {
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 40px;
}

.njoin-two .item img {
	width: 80px;
	margin-bottom: 15px;
}

.njoin-two .item p {
	margin-bottom: 0;
	font-size: 16px;
}

.njoin-three {
	padding: 60px 0;
}

.njoin-three textarea {
	margin-bottom: 40px;
}

.njoin-tit {
	text-align: center;
	margin-bottom: 60px;
}

.njoin-tit p.en {
	font-size: 30px;
	margin-bottom: 0;
}

.njoin-tit p.cn {
	font-size: 20px;
}

.njoin-one .njoin-tit {
	color: #4CB770;
}

.njoin-two .njoin-tit {
	color: #FFFFFF;
}

.ncontact-form {
	padding-bottom: 80px;
}

.ncontact-form h3 {
	font-size: 24px;
	margin-bottom: 50px;
}

.ncontact-form .btn {
	margin: 30px auto 0;
	display: block;
	width: 100px;
	color: #000000;
	border: 1px solid #000000;
	text-align: center;
	font-size: 16px;
	transition: all 0.3s;
	border-radius: 0;
}

.ncontact-form .btn:hover {
	background: #4CB770;
	border: 1px solid #4CB770;
	color: #FFFFFF;
}

.ncontact-form .control-label {
	text-align: left;
}

.ncontact-form input,
.ncontact-form textarea {
	background: transparent;
	border-radius: 0;
	margin-bottom: 20px;
	padding: .375rem;
	font-size: 14px;
	color: #777777;
}

.ncontact-form input:focus,
.ncontact-form textarea:focus {
	box-shadow: none !important;
	background: transparent !important;
	border: 1px solid #4CB770 !important;
}

.yd-product .card,
.yd-product img {
	border-radius: 0;
}

.yd-product .card {
	color: #333333;
	display: block;
	margin-bottom: 30px;
	transition: all 0.3s;
}

.yd-product .card:hover {
	color: #4CB770;
	margin-top: -5px;
}

.yd-right .dy {
	vertical-align: middle;
}

.fa-dy {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../images/icon-dy.png);
	background-size: contain;
	background-repeat: no-repeat;
	transition: all 0.3s;
}

.fa-dy:hover {
	background-image: url(../images/icon-dy-hover.png);
}

.p-category {
	border: 1px solid #afafaf;
	margin-bottom: 60px;
}

.p-category .ca-item {
	padding: 15px 30px;
	font-size: 16px;
	line-height: 30px;
}

.p-category .ca-item:first-child {
	background: #e6e5e3;
}

.p-category .ca-item:last-child {
	border-top: 1px solid #afafaf;
}

.p-category .ca-item a {
	display: inline-block;
	margin-right: 30px;
	color: #3e3a39;
}

.p-category .ca-item a.active,
.p-category .ca-item a:hover {
	color: #62ba6e;
}

.p-category .ca-item span {
	margin-right: 30px;
	display: inline-block;
}


.nproduct .item {
	border: 1px solid #c5c6c6;
	margin: 0 0 50px;
	transition: all .2s;
}

.nproduct .item:hover {
	margin-top: -5px;
}

.nproduct .item .txt {
	padding: 30px;
}

.nproduct .item .txt h5 {
	font-size: 16px;
	line-height: 36px;
	color: #221815;
	border-bottom: 1px solid #c5c6c6;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom: 20px;
}

.nproduct .item:hover h5 {
	color: #62ba6e;
}


.nproduct .item .txt p {
	font-size: 12px;
	line-height: 18px;
	color: #1d1e1d;
	margin-bottom: 6px;
}

.nproduct .item .txt p:last-child {
	margin-bottom: 0;
}


/* 放大功能 */
.tb-pic a {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

.tb-pic a img {
	vertical-align: middle;
	width: 100%;
	height: 100%;
}

.tb-pic a {
	*display: block;
	*font-family: Arial;
	*line-height: 1;
	display: block;
	/* border: 1px solid #dcdddd; */
}

.tb-thumb {
	overflow: hidden;
}

.tb-thumb li {
	float: left;
	overflow: hidden;
	padding: 1px;
	width: 24.2%;
	margin-right: 1%;
	border: 1px solid transparent;
}

.tb-booth {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

.tb-booth {
	border: 1px solid #dcdddd;
}

.tb-thumb li {
	border: 1px solid #dcdddd;
}

.tb-thumb .tb-selected {
	padding: 1px;
	border: 1px solid #62ba6e;
}

.tb-thumb .tb-selected div {
	border: medium none;
}

div.zoomDiv {
	z-index: 999;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 200px;
	height: 200px;
	background: #ffffff;
	display: none;
	text-align: center;
	overflow: hidden;
}

div.zoomMask {
	position: absolute;
	background: url("../images/mask.png") repeat scroll 0 0 transparent;
	cursor: move;
	z-index: 1;
}

.tb-thumb li:last-child {
	margin: 0;
}

.nproduct-detail .detail {
	margin-top: 80px;
}

.nproduct-detail .detail ul {
	margin-bottom: 30px;
}
.nproduct-detail .detail ul.nav{
    border-top: 1px solid #eeefef;
}

.nproduct-detail .detail ul.nav li a {
    padding: 12px 50px;
    font-size: 15px;
    background: #eeefef;
    border-left: 0;
    border-bottom: 0;
    color: #333;
    text-align: center;
    line-height: 20px;
    display: inline-block;
	font-weight: 500;
	border-top: 5px solid #eeefef;
}

.nproduct-detail .detail ul.nav li a.active {
	background: #fff;
	border-top: 5px solid #62ba6e;
}
.nproduct-detail .detail .tab-pane{
    overflow: auto;
}
.nproduct-detail .detail table {
	max-width: 100%;
	height:auto;
}

.nproduct-detail .detail img {
	max-width: 100%;
	height:auto;
}

.tjcp {
	margin-bottom: 120px;
}

.tjcp h3 {
	margin-bottom: 30px;
	padding-left: 35px;
	background: url(../images/tjcp-t.png) no-repeat top left;
}

.tjcp .item {
	border: 1px solid #c9c9ca;
	display: block;
	text-align: center;
	padding: 10px;
	margin-bottom: 20px;
	transition: all .2s;
}

.tjcp .item:hover {
	margin-top: -5px;
}

.tjcp .item p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #333;
}

.tjcp .item:hover p {
	color: #62ba6e;
}

.ppgs .gs {
	padding: 20px 30px;
	background: linear-gradient(to bottom, #fff, #21a44e);
}

.ppgs .gs h2 {
	text-align: center;
	font-size: 20px;
	margin-bottom: 50px;
}

.ppgs .gs h2 span {
	display: block;
	color: #4CB770;
}

.ppgs .tdjs {
	padding: 50px 30px;
	background: #dcdddd;
}

.ppgs .tdjs a.view-more {
	display: inline-block;
	width: 160px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #3f3a39;
	color: #3f3a39;
	font-size: 16px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.ppgs .tdjs a.view-more:hover {
	border: 1px solid #4CB770;
	color: #ffffff;
	background: #4CB770;
}

.ppgs .tdjs-img {
	background: #dcdddd;
	padding: 0 30px 80px;
}

.ppgs .tdjs-img .swiper-slide {
	background: #fff;
	text-align: center;
}

.ppgs .tdjs-img .swiper-slide p {
	color: #16a44e;
	margin-top: 20px;
}

/* 发展历程 */
.abUs-comHist {
	padding:50px 0 0;
	background: #21a44e;
}
.pub_title2 {
    text-align: center;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 5;
}

.pub_title2 h5 {
    font-size: 24px;
    color: #fff;
    padding-bottom: 10px;
}

.abUs-comHist .p-title .t {
	color:#333;
	font-size:36px;
	text-align:center
}
.abUs-comHist .p-title .s {
	background:#e50012
}
.auCHist-man {
	width:928px;
	padding:0 0 246px;
	position:relative;
	margin:20px auto 0
}
.auCHist-man .swiper-container {
	padding:69px 0 0
}
.auCHist-man .auCHman-box {
	display:block;
	height:72px;
	text-align:center;
	color:#fff;
	background:url(../images/auCHist-bg.png) no-repeat center 68px;
	position:relative
}
.auCHman-box .year {
	line-height:28px;
	font-size:16px
}
.auCHman-box:before {
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-radius:100%;
	background:#fff;
	position:absolute;
	left:50%;
	margin-left:-4px;
	bottom:0px
}
.auCHman-box:after {
	content:"";
	display:block;
	width:1px;
	height:9px;
	background:#fff;
	position:absolute;
	left:50%;
	margin-left:-1px;
	bottom:11px
}
.auCHman-box.cur .year {
	width:77px;
	height:77px;
	line-height:77px;
	color:#16a44e;
	background:#fff;
	border-radius:100%;
	position:absolute;
	top:-53px;
	left:50%;
	margin-left:-38.5px
}
.auCHman-box.cur .year:after {
	content:"";
	display:block;
	width:109px;
	height:109px;
	background:rgba(224,233,255,.25);
	border-radius:100%;
	position:absolute;
	top:-16px;
	left:-16px;
	z-index:-1
}
.auCHman-box.cur:before,.auCHman-box.cur:after {
	background:#006835;
}
.auCHman-box.cur:after {
	height:30px;
	z-index:2
}
.auCHistManSwiper-prev,.auCHistManSwiper-next {
	display:block;
	width:11px;
	height:21px;
	position:absolute;
	top:70px;
	z-index:9999
}
.auCHistManSwiper-prev {
	left:-58px;
	background:url(../images/swiper2-l.png) no-repeat center center
}
.auCHistManSwiper-next {
	right:-58px;
	background:url(../images/swiper2-r.png) no-repeat center center
}
.auCHist-man .orn1,.auCHist-man .orn2 {
	display:block;
	height:1px;
	background:rgba(255,255,1255,1);
	position:absolute;
	top:137px
}
.auCHist-min {
	width:1000px;
	position:relative;
	margin:-151px auto 0;
	z-index:2
}
.auCHist-min .swiper-container {
	padding:0 0 45px
}
.auCHist-min .swiper-container .swiper-slide {
	padding:0 10px
}
.auCHmin-box {
	display:block;
	padding:20px;
	background:#eeefef;
	box-shadow:0 4px 20px rgba(162,162,162,.24);
	position:relative;
	overflow:hidden;
	position: relative;
}

.auCHmin-text {
	width:70%;
	float:left;
	padding:20px 40px 20px 20px;
	height:auto;
	overflow:hidden
}
.auCHmin-text h5 {
	font-size:30px;
	color:#21a44e;
}
.auCHmin-text h5 span {
	font-size: 14px;
	color: #222222;
	margin-left: 5px;
}
.auCHmin-text h6 {
	font-size:16px;
	color:#666;
	line-height:30px;
	position:relative;
	padding-bottom:20px;
	padding-top:20px
}
.auCHmin-text h6::after {
	content:"";
	display:block;
	width:35px;
	height:2px;
	background-color:#21a44e;
	position:absolute;
	left:0px;
	bottom:0px
}
.auCHmin-img {
	float:right;
	width:30%
}
.auCHmin-img img {
	width:100%;
	height:auto;
	object-fit:cover
}

.ppgs .tc {
    background: #dcdddd;
	width: 100%;
	height: 100px;
}


.summary {
	padding: 0;
}

.summary h5 {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.summary span {
	font-weight: 600;
}

.summary div span {
	display: inline-block;
	margin-bottom: 8px;
}

.address {
	background: #f6f6f6;
	padding: 15px 0;
}

.address div a {
	color: #1e1e1e;
}

.address div a.active, .address div a:hover {
    color: #4cb770;
    transition: all .5s ease;
}


@media (min-width: 576px) {}

/* 小屏幕（平板，大于等于768px） */
@media (min-width: 768px) {
	.logo img {
		height: auto;
	}

	.fixed {
		position: fixed;
		top: 0;
		z-index: 999999;
		padding: 20px 60px;
	}

	.logo img {
		/* width: 94px; */
	}

	.icon-bar {
		display: block;
		margin: 6px 0;
		width: 24px;
		height: 3px;
		background-color: #FFFFFF;
	}

	.jtjs {
    padding-top: 80px;
	}

	.yd-three .item {
		padding: 30px;
	}

	.yd-three .box .info p.title {
		font-size: 18px;
	}

	.yd-three .box .info p.subtitle {
		font-size: 14px;
	}

	.yd-product {
		padding: 80px 0;
	}

	.yd-title p.title {
		font-size: 30px;
		padding-bottom: 30px;
	}

	.yd-category {
		margin-bottom: 50px;
	}

	.yd-category,
	.yd-category a {
		font-size: 18px;
	}

	.yd-category span {
		display: inline-block;
		margin: 0 30px;
	}

	.item-product .pro-info p.title {
		font-size: 30px;
		line-height: 40px;
	}

	.item-product .pro-info p.subtitle {
		font-size: 18px;
	}

	.yd-join .box h3 {
		font-size: 24px;
	}

	.yd-join .box h4 {
		font-size: 18px;
	}

	.yd-news {
		padding: 100px 0;
	}

	.yd-more {
		margin: 60px auto 0;
		width: 120px;
		height: 46px;
		line-height: 46px;
		font-size: 18px;
	}

	.footer .ewm {
		justify-content: flex-end;
		margin-bottom: 80px;
	}

	.footer .ewm img {
		width: 80px;
	}

	.footer .yd-right .wd {
		text-align: right;
	}

	.footer .yd-right .social {
		text-align: right;
	}

	.footer .yd-right .wd a {
		margin: 0 8px;
	}

	.footer .yd-right .social a {
		margin: 0 10px;
	}

	.ncontact-info {
		margin: 80px 0;
	}

	.footer .yd-right h4 {
		text-align: right;
	}

	.ncontact-form .control-label {
		text-align: right;
	}
	
	.yd-product .btnmore {
		position: static;
	}
	
	.yd-product .txt p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 6;
		overflow: hidden;
	}
	
	.yd-product .item {
	    margin: 0;
	    padding: 50px;
	}
	
	.yd-product .item h3 {
		margin-bottom: 40px;
	}

}


/* 中等屏幕（桌面显示器，大于等于992px） */
@media (min-width: 992px) {
	.pd {
		padding: 80px 0;
	}
	
	.yd-product .txt {
		position: relative;
	}
	
	.yd-product .txt p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
		overflow: hidden;
	}
	
	.yd-product .btnmore {
		position: absolute;
		left: 15px;
		bottom: 0;
	}
	
	.footer .ewm img {
		width: auto;
	}
	
	.yd-three {
		padding-top: 60px;
	}

	.yd-three .box .info p.title {
		font-size: 24px;
	}

	.yd-three .box .info p.subtitle {
		font-size: 18px;
	}

	.yd-join .box h3 {
		font-size: 30px;
	}

	.yd-join .box h4 {
		font-size: 24px;
	}

	.yd-three .item {
		padding: 40px;
	}
	
	.yd-hexin .item {
		margin-bottom: 0;
	}
	
	.yd-hexin .container-fluid {
		padding: 0 60px;
	}
	
	
	.yd-hexin .item .img {
		margin-bottom: 50px;
	}
	
	.yd-hexin .item h5 {
		margin-bottom: 20px;
	}
	
	#certify {
		margin-bottom: 80px;
	}

	.yd-news-img .item .info {
		padding: 15px;
	}

	.ncontact-info .info {
		padding: 25px;
	}

	.nnews {
		padding: 100px 0;
	}

	.nnews-list .media img {
		width: auto;
	}

	.nnews-list .media-body h5 {
		font-size: 20px;
		line-height: 40px;
		margin-bottom: 10px;
	}

	.nnews-list .media-body p {
		font-size: 14px;
		line-height: 24px;
		-webkit-line-clamp: 3;
		margin-bottom: 10px;
	}

	.nnews .mr-5 {
		margin-right: 30px !important;
	}

	.nnews-list .media {
		margin-bottom: 60px;
	}

	.njob {
		padding: 80px 0 120px;
	}

	.njob .tit {
		margin-bottom: 80px;
	}

	.njob .list dl {
		margin-bottom: 80px;
	}

	.njob .fl .fl-list .txt {
		width: 100px;
		height: 100px;
		line-height: 100px;
		font-size: 18px;
	}

	.njob .fl .fl-list .icon {
		font-size: 24px;
	}

	.nabout {
		padding: 80px 0 120px;
	}

	.njoin-one {
		padding: 100px 0;
	}

	.njoin-two {
		padding: 100px 0;
	}

	.njoin-two .item {
		margin-bottom: 40px;
	}

	.njoin-two .item img {
		width: 120px;
	}

	.njoin-three {
		padding: 100px 0 120px;
	}

	.summary {
		padding: 30px 0 0 120px;
	}

	.ppgs .tdjs {
		padding: 80px 120px 40px;
		background: #dcdddd;
	}

	.ppgs .gs {
		padding: 80px 120px 40px;
	}

	.pub_title2 h5 {
		font-size: 36px;
		color: #fff;
		padding-bottom: 80px;
	}
}

/* 大屏幕（大桌面显示器，大于等于1200px） */

@media (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}

	.g-button-prev {
		left: 0;
	}

	.g-button-next {
		right: 0;
	}

	.yd-three .item {
		padding: 50px;
	}

	.ncontact-info {
		margin: 100px 0 120px;
	}

	.ncontact-info .info {
		padding: 60px;
	}

	.yd-product .txt p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 8;
		overflow: hidden;
	}
	


	/* .ncontact-info {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	 */
	.jtjs {
		padding-top: 80px;
	}


	.jtjs .container-fluid {
		padding: 0px;
	}

	.jtjs .info {
		background: #eeefef;
		padding: 80px;
	}
}

@media (min-width: 992px) and (max-width: 1200px) {
	.jtjs .info p{
		display: -webkit-box;
		-webkit-line-clamp: 6;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.jtjs .info {
    padding: 20px;
	}
	.yd-product .txt p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
		overflow: hidden;
	}
	
}
@media (min-width: 1200px) and (max-width: 1440px) {
	.jtjs .info p{
		display: -webkit-box;
		-webkit-line-clamp: 8;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.jtjs .info {
    padding: 30px;
	}

	.yd-product .txt p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 5;
		overflow: hidden;
	}
	
}
@media (min-width: 1440px) and (max-width: 1680px) {
	.jtjs .info p{
		display: -webkit-box;
		-webkit-line-clamp: 10;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.jtjs .info {
    padding: 50px;
	}
	.yd-product .txt p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 6;
		overflow: hidden;
	}
	
}


@media all and (max-width:1000px) {
	.abUs-comHist {
		padding: 30px 0
	}

	.auCHistManSwiper-prev {
		left: 0px
	}

	.auCHistManSwiper-next {
		right: 0px
	}

	.auCHist-min {
		width: 100%;
		padding: 0 4%
	}

	.auCHist-man {
		width: 100%;
		padding: 0px;
		margin: 1rem 0 0
	}

	.auCHman-box.cur .year {
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
		margin-left: -25px;
		top: -33px
	}

	.auCHman-box.cur .year:after {
		width: 70px;
		height: 70px;
		top: -10px;
		left: -10px
	}

	.auCHist-min {
		margin: 1.2rem 0 0
	}

	.auCHist-min .swiper-container {
		padding: 0px 0 1rem
	}

	.auCHmin-text {
		width: 100%;
		float: left;
		padding: 10px
	}

	.auCHmin-text h5 {
		font-size:24px;
		color:#21a44e;
	}
	.auCHmin-text h5 span {
		font-size: 14px;
		color: #222222;
		margin-left: 5px;
	}

	.auCHmin-text h6 {
		font-size: 14px;
		color: #666;
		line-height: 24px
	}

	.auCHmin-img {
		float: right;
		width: 100%;
		margin-top: 20px
	}

	.auCHmin-img img {
		width: 100%;
		height: auto;
		object-fit: cover
	}
}




.table-responsive{ min-height:.01%; overflow-x:auto; }

.tab-pane table { width:100% !important; max-width:100%; border-collapse:collapse; overflow:visible; }

.tab-pane table th, .tab-pane table td { padding:14px 18px; text-align:center; border:1px solid #ccc; }

.tab-pane table tbody tr.trhover td { background-color:#f0f0f0; }

.tab-pane table tbody tr:first-child td { background-color:#4cb770; color:#fff; font-size:16px; font-weight:bold; }

.tab-pane table table tbody tr:first-child td { background-color:transparent; color:#4d4d4d; font-size:14px; font-weight:normal; border:none; }

.tab-pane table table tbody tr td { padding:0; }

.tab-pane table tbody img[src*="file"]{ display:none; }

.tab-pane table tbody p{ margin-bottom:0; }

.tab-pane table tbody tr.trhover table td { background-color:#f0f0f0; }

.tab-pane table tbody tr:first-child table td { background-color:transparent; color:#fff; font-size:16px; font-weight:bold; padding:0; }



.tab-pane .table { overflow:visible; }

.tab-pane .table th, .tab-pane .table td { line-height:1.8; padding:14px 18px;  }

.tab-pane .table th { background-color:#4cb770; color:#fff; }

.tab-pane .table td { }

.tab-pane .table tbody tr:first-child td { background-color:transparent; color:#4d4d4d; font-size:14px; font-weight:normal; }

.tab-pane .table tbody tr.trhover td { background-color:#f0f0f0; }

.tab-pane .table th { background-color:#4cb770; color:#fff; font-size:16px; }

.tab-pane .table-row thead th { background-color:#4cb770; color:#fff; }

.tab-pane .table-row tbody th { background-color:#4cb770; color:#fff; }

.tab-pane .table tbody .even-row td { background-color:#f0f0f0; }
