@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;
}

.pd {
	padding: 40px 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;
}

img {
	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: 28px;
}

.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;
}


.top .container {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
}

.top .social {
	display: flex;
	justify-content: space-between;
	color: #ffffff;
	line-height: 50px;
	margin-bottom: 30px;
}

.top .social .icon i {
	color: #afbac5;
	font-size: 20px;
	display: inline-block;
	margin: 0 10px;
}

.top .social .icon a:hover i {
	color: #13c5a2;
}

.top .logo {
	margin-bottom: 50px;
}

.top .yd-nav a {
	display: inline-block;
	padding: 10px 0;
	margin: 0 30px;
	color: #ffffff;
}

.top .yd-nav a.active,
.top .yd-nav a:hover {
	color: #13c5a2;
	border-bottom: 2px solid #13c5a2;
}

.top-search .container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.top-search .con {
	background: #ffffff;
	border-radius: 4px;
}

.top-search .con label {
	padding: 20px;
	margin-right: 20px;
}

.top-search .con label:first-child {
	border-right: 1px solid #efefef;
}

.top-search .con label span {
	display: block;
}

.top-search .con input {
	width: 66%;
	border: 0;
	outline:none;
	box-shadow: none;
}

.top-search .con button {
	background: #13c5a2;
	color: #ffffff;
	margin-left: 2%;
}

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

.yd-title h4 {
	color: #2c3d4e;
	font-size: 22px;
}

.yd-title span {
	color: #999999;
}

.product {
	background: url(../images/4.jpg) no-repeat center center;
	background-size: cover;
}

.product .cate {
	text-align: center;
	margin-bottom: 30px;
}

.product .cate a {
	display: inline-block;
	padding: 8px 16px;
	border: 2px solid #13c5a2;
	border-radius: 40px;
	margin: 15px;
	color: #999999;
}

.product .cate a:hover {
	background: #13c5a2;
	color: #ffffff;
}

.product .item {
	display: block;
	background: #ffffff;
	border: 1px solid #ffffff;
	margin-bottom: 20px;
}

.product .item:hover {
	border: 1px solid #13c5a2;
}

.product .item .img {
	position: relative;
}

.product .item .img p {
	width: 100%;
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	text-align: center;
	padding: 10px;
	font-size: 18px;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0;
}

.product .item .txt {
	padding: 20px 25px 25px;
	text-align: center;
}

.product .item .txt p {
	font-size: 14px;
	line-height: 24px;
	color: #666666;
	height: 72px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow : hidden;
}

.product .item .txt span {
	display: inline-block;
	width: 140px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background: #13c5a2;
	color: #ffffff;
	border-radius: 32px;
	font-size: 14px;
}

.product a.more {
	margin: 0 auto;
	display: block;
	width: 140px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border: 1px solid #bfbfbf;
	color: #666666;
	border-radius: 32px;
	font-size: 14px;
	margin-top: 40px;
}

.product a.more:hover {
	background: #666666;
	color: #FFFFFF;
}

.brand {
	background: url(../images/2.jpg) no-repeat center center;
}

.brand .yd-title h4,
.brand .yd-title span {
	color: #ffffff;
}

.brand .item {
	text-align: center;
	color: #ffffff;
	margin-bottom: 20px;
}

.brand .item span {
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	color: #FFFFFF;
}



.brand .item:hover span {
	color: #13c5a2;
}

.news .img {
	position: relative;
	margin-bottom: 30px;
}

.news .img p {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
	padding: 20px 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 12px;
	margin-bottom: 0;
	font-weight: 600;
	color: #ffffff;
}

.news .info h5 {
	font-size: 24px;
	margin-bottom: 30px;
}

.news .info a {
	width: 140px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	background: #13c5a2;
	color: #ffffff;
	display: inline-block;
	font-size: 14px;
	border-radius: 32px;
	margin-top: 20px;
}

.footer {
	background: #203341;
	padding: 50px 0;
}

.footer .container-fluid {
	padding: 0 80px;
}

.footer .item h4 {
	color: #fff;
	margin-bottom: 25px;
	font-weight: normal;
}

.footer .item ul li a {
	color: #fff;
	display: inline-block;
	margin-bottom: 10px;
}

.footer .ewm {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
	color: #ffffff;
}

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

.footer .ewm .item p {
	margin-top: 5px;
	font-size: 14px;
}

.bq {
	background: #30302f;
	padding: 20px 0;
}

.bq .container-fluid {
	padding: 0 20px;
}

.bq p {
	margin-bottom: 0;
	color: #fff;
	font-size: 13px;
}

#back-to-top {
    /* display: none; */
    width: 40px;
    height: 40px;
    background: #131e26;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
	cursor: pointer;
	position: fixed;
    right: 0;
    bottom: 50px;
    z-index: 999;
}

.add {
	margin-top: 30px;
}

.p-category .link a {
	display: inline-block;
    padding: 4px 8px;
    border: 2px solid #13c5a2;
    border-radius: 40px;
	margin: 8px 20px 8px 0;
	font-size: 14px;
	color: #999999;
	cursor: pointer;
}

.p-category .link .active {
	background: #13c5a2;
	color: #ffffff;
}


.p-category .link a:hover {
	background: #13c5a2;
	color: #ffffff;
}

.p-category .ca-item {
	margin-bottom: 10px;
}

.p-category .ca-item a {
	color: #253846;
}

.nproduct {
	padding-top: 50px;
	padding-bottom: 80px;
}

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

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

.nproduct .item .txt {
	padding: 30px;
	overflow: hidden;
	max-height:276px;

}

.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;
}

.tab-content img,.con img{max-width:100%;height:auto;}

/* 放大功能 */
.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 #253846;
}

.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;
}

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

.address div a {
	color: #253846;
}


.page {
	width: 100%;
	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: #253846;
	color: #FFFFFF;
}

.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;
}

.nNews {
	background: #F7F7F7;
	padding: 50px 0;
}

.nNews .item {
	display: block;
	background: #FFFFFF;
	padding: 20px;
	margin-bottom: 20px;
}

.nNews .item p {
	margin-bottom: 0;
}

.nNews .item:hover .thumbnail img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.nNews .item p.bt {
	color: #333;
    font-size: 15px;
    line-height: 24px;
    margin: 15px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nNews .item p.txt {
	color: #666;
    font-size: 13px;
    height: 44px;
    line-height: 22px;
    margin-bottom: 15px;    
    overflow: hidden;
}

.nNews .item p.bot {
	display: flex;
	justify-content: space-between;
}

.nNews .item p.bot span {
	color: #999;
	font-size: 13px;
}

.nNews .item:hover {
	box-shadow: 0 3px 15px 0 rgba(0,0,0,0.10);
}


.nnews-detail {
	padding: 80px 0 0;
}

.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;
}

.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;
}

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

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

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

/* 走进一德 */
.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;
}


.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 {
	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;
}

.nncontact-form .box {
	background: #FFFFFF;
	padding: 35px 40px;
}

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

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

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

.ncontact-form .box dl {
	margin: 15px 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;
} */

.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;
}

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

.njoin-tit p.en {
	display: inline-block;
	font-size: 24px;
	padding-bottom: 20px;
	color: rgb(50, 50, 50);
	position: relative;
	text-transform:uppercase
}

.njoin-tit p.en::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -30px;
	width: 60px;
	height: 4px;
	background: #48aa6b;
}



.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:#13c5a2; 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:#13c5a2; 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:#13c5a2; color:#fff; font-size:16px; }

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

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

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



 .pc-cx-tel-1 {
    width: 100%;
    height: 56px;
    border-top: 2px solid #e6e6e6;
    padding-top: 10px;
    position: relative; 
	margin-top:16px;
    }
                
                .pc-cx-tel-1-t1 {
                    width: 114px;
                    height: 44px;
                    background: #13c5a2;
                    font-size: 18px;
                    line-height: 44px;
                    text-align: center;
                    float: right;
                }
                
                .pc-cx-tel-1-t1 a {
                    display: block;
                    color: #fff;
                }
                
                .pc-cx-tel-1-t2 {
                    height: 56px;
                    padding-left: 70px;
                    background: url(../images/pc-xc-icon2.png) no-repeat 10px top;
                    font-size: 18px;
                    line-height: 18px;
                    color: #454545;
                }
                
                .pc-cx-tel-1-t2 p {
                    line-height: 24px;
                }


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

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

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

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

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

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

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

	
}

/* 中等屏幕（桌面显示器，大于等于992px） */
@media (min-width: 992px) {
	.pd {
		padding: 80px 0;
	}

	.yd-title {
		margin-bottom: 50px;
	}
	
	.yd-title h4 {
		font-size: 28px;
	}

	.news .img {
		margin-bottom: 0;
	}

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

	.p-category .link a {
		display: inline-block;
		padding: 8px 16px;
		border: 2px solid #13c5a2;
		border-radius: 40px;
		margin: 15px 30px 15px 0;
		color: #999999;
		cursor: pointer;
	}

	.bq .container-fluid {
		padding: 0 80px;
	}

	.pc-cx-tel-1 {
		width:95%;
        position: absolute;
		bottom: 128px;
     }

}

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

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

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

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

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

	.pc-cx-tel-1 {
		width:95%;
        position: absolute;
		bottom: 128px;
     }
	
}





            