@charset "utf-8";
/* CSS Document */
body {
	margin: 0;
	padding: 0;
	font-family: Microsoft YaHei,"微软雅黑";
	background-color: #fff;
	width: 100%;
	height: auto;
	overflow-x: hidden;
}
* {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}
a{
	text-decoration: none;
}
.clearfix:after {
	content: "";
	clear: both;
	display: table;
}
.clearfix {
	*zoom: 1;
}
.top{
	width: 94%;
	height: 120px;
	padding: 0 3%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top:0;
	left:0;
	z-index:999;
	background: #fff;
	box-shadow: 0px 0px 5px #ccc;
}
.top-up{
	animation: top-up 1s;
	animation-iteration-count:1;
	animation-fill-mode:forwards;

}
@keyframes top-up {
	from {
		top:0;
	}
	to {
		top:-120px;

	}
}
.top-down{
	animation: top-down 1s;
	animation-iteration-count:1;
	animation-fill-mode:forwards;

}
@keyframes top-down {
	from {
		top:-120px;
	}
	to {
		top:0;
	}
}
.top img{
	width: 400px;
	height: auto;
	margin-top: 20px;
}
nav{
	width: auto;
	height: 120px;
	display: flex;
	justify-content: space-between;

}
nav div{
	margin: 0 5px;
	width: 100px;
	height: 120px;
	position: relative;
}
nav div>a{
	display: block;
	width: 100px;
	height: 120px;
	text-align: center;
	line-height: 150px;
	font-size: 18px;
	color: #333;
	font-weight: 600;


}
nav div ul{
	display: none;
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 99;
	top:120px;
	left:0;
	margin-left:0;
	padding: 20px 0;
	z-index: 2;

}
nav div ul:after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	background: #fff;
	z-index: -1;
	opacity: 0.95;

}
nav div ul li{
	width: 100%;
	height: 40px;

}
nav div ul li:hover{
	width: 100%;
	height: 40px;
	background: #ce9833!important;


}
nav div ul li:hover a{
	color:#f7f8f8;
}
nav span{
	display: none;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: -30px;
	text-align: center;
	margin-left: -20px;


}
nav>div:hover span,.nav-current span{
	display: block;
}
nav ul li a{

	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color:#333;
	display: flex;
	flex-direction: column;
	justify-content: center;

}


nav>div:hover,.nav-current{
	color:#ce9833;
	background:#f7f8f8;
}

nav>div:hover>a,.nav-current>a{

	color:#ce9833;

}
nav>div:hover:after ,.nav-current:after{
	content: "";
	width: 100%;
	height: 4px;
	background: #ce9833;
	top:0;
	left:0;
	position: absolute;
	animation:xianshi 1s;
}
@keyframes xianshi {
	from {width: 0;left:50%;}
	to {width: 100%;left:0;}
}

/*.menu{*/
/*	width: 100%;*/
/*	height: 70px;*/
/*	position: fixed;*/
/*	top:120px;*/
/*	left:0px;*/
/*	background:none;*/
/*	z-index: 999;*/
/*}*/
.menu{
	display: none;
	width: 100%;
	height: 70px;
	position: fixed;
	top:120px;
	left:0px;
	background:none;
	z-index: 999;
}

.menu ul{
	width: 100%;
	height:100%;
	min-width: 1200px;
	background: #f7f8f8;
	display: flex;
	justify-content: center;
	align-items: center;

}
.menu ul li{
	padding: 20px;
	margin: 0px 20px;

}
.menu ul li a{
	height: 30px;
	line-height: 30px;
	display: block;
	color:#333;
	font-size: 18px;

}
.menu ul li a:hover{
	height: 28px;
	color:#d82f16;
	border-bottom: 2px solid #d82f16;
}

.search-icon {
	width: 100px;
	height: 40px;
	margin-left: -10px;
	cursor: pointer;
}


.search-icon img {
	width: 40px;
	height: 40px;
}
.search{
	display: none;
	width: 100%;
	height: 50px;
	min-width: 500px !important;
	left: 0;
	padding: 20px 30px;
	background: #fff;
	position: fixed;
	top: 120px;
	z-index: 999;
	text-align: center;
	border-top: 1px solid #E7E7E7;

	-webkit-animation-name: width;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-duration: 0.5s;

}

@keyframes width {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
.search input[type="text"]{
	width: 550px;
	height: 50px;
	line-height: 50px;
	text-indent: 5px;
	font-size: 14px;
	color:#666;
	border:none;
	background: #fff;
	outline: 1px solid #d82f16;


}

.search input[type="button"]{
	width: 80px;
	height: 51px;
	background: #d82f16;
	border:none;
	margin-left: -84px;
	color:#fff;
}
.search input[type="button"]:hover{
	background: #FD5137;
}
.login{
	color:#333;
	margin-left: 15px;
	padding: 5px 10px;
	font-size: 16px;
	display: none;
}
.login:hover{
	padding: 4px 9px;
	border:1px solid #d6ae60;
	color:#D39827;
	border-radius: 5px;

}
.banner{
	width: 100%;
	height: auto;
	margin-top: 120px;
	overflow: hidden;
}

.banner img {
	width: 100%;
	height: 100%;
	animation-name: enlarge;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 5s;
	animation-direction: alternate;


}

.large {
	font-size: 20px;
}

.middle {
	font-size: 18px;
}

.small {
	font-size: 16px;
}


@keyframes enlarge {
	0%{
		transform:scale(1.1);
	}

	50% {
		transform: scale(1);
	}
	100% {
		transform:scale(1);
	}
}
.swiper-container .swiper-slide img{
	height: auto;
	min-height: 400px;
	max-height: 700px;
}
.swiper-container .swiper-pagination-bullet{
	background: #fff!important;
	opacity: .7!important;
}

.swiper-container .swiper-pagination-bullet-active{
	background: #dcaf5b!important;
	width: 20px!important;
	border-radius:5px!important;
	opacity:1!important;

}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fractio{
	bottom:20px!important;
}
.button-prev,.button-next{
	width: 70px;
	height: 70px;
	cursor: pointer;
	background: #fff;
	position: absolute;
	top:50%;
	margin-top: -35px;
	z-index: 2
}
.button-prev{
	left: 20px;
	background:url("../images/banner_arrow.png") left top no-repeat;
}
.button-next{
	right:20px;
	background:url("../images/banner_arrow.png") left bottom no-repeat;
}
.content{
	width: 75%;
	min-width: 1200px;
	max-width: 1400px;
	height: auto;
	padding: 50px 0;
	margin: 0 auto;
}
.news-left{
	width: 43%;
	height: auto;
	float: left;

}
.nav-news{
	width: 100%;
	height: 45px;
	line-height: 33px;
	text-align: left;
	text-indent: 30px;
	font-size: 30px;
	position: relative;

}
.nav-news:before{
	content: "";
	width: 150px;
	height: 6px;
	background: #dcaf5b;
	left:0;
	bottom:-2px;
	position: absolute;
	z-index: -1
}
.nav-news span{
	font-size: 18px;
	color: #888;
	padding-left: 15px;
}
.news-banner{
	width: 95%;
	height: 390px;
	margin-top: 50px;
}
.news-img .swiper-slide{
	width: 100%;
	height: 390px;
}
.news-img .swiper-slide img{
	width: 100%;
	height:100%;
	object-fit: cover;
}
.news-img .swiper-pagination{
	text-align: right!important;
	padding-right: 20px!important;
}
.news-img .swiper-slide{
	position: relative;
}
.news-img .swiper-slide span{
	display: block;
	width: 80%;
	height: 55px;
	line-height: 45px;
	padding: 0px 10%;
	position: absolute;
	left:0;
	bottom:0;
	text-align: center;
	font-size: 16px;
	text-indent: 10px;
	color:#fff;
	z-index: 3;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.news-img .swiper-slide span:after{
	content: "";
	width: 100%;
	height: 55px;
	background: #000;
	opacity: 0.6;
	position: absolute;
	left:0;
	bottom:0px;
	z-index: -1;
}
.swiper-button-prev{
	bottom:20px;
}
.swiper-button-next, .swiper-button-prev {
	position: absolute;
	top: 91%;
	opacity: 0.6;
	width: 40px;
	height: 44px;
	margin-top: -20px;
	z-index: 10;
	cursor: pointer;
	-moz-background-size: 27px 44px;
	-webkit-background-size: 27px 44px;
	background-size: 15px 36px;
	background-position: center;
	background-repeat: no-repeat;
}
.prev,.next{
	display: none;
}

.news-right{
	width: 57%;
	height: auto;
	float: right;
	position: relative;

}
.news-tab{
	width: 100%;
	height: 45px;
	margin-bottom: 50px;

}
.news-tab ul{
	width: 100%;
	height: 45px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border:1px solid #d1ae6e;
}
.news-tab ul li{
	width: 16.666666%;
	height:45px;
	line-height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color:#666;
	position: relative;
	cursor: pointer;

}
.news-tab ul li:after{
	content: "";
	height: 19px;
	width: 1px;
	position: absolute;
	background: #d1ae6e;
	right:-1px;
	top:13px;

}
.news-tab ul li:last-child:after{
	display: none;
}

.news-tab ul li:last-child .icon-danghui:before {
	color: #a0a0a0;
}

.news-tab ul li:hover, .list-current, .list-current .icon-danghui:before {
	background: #d1ae6e;
	color:#fff!important;
}
.news-tab ul li:hover:after,.list-current:after{
	display: none;
}

.new-list{
	width: 100%;
	height: 365px;
	margin-top: -10px;

}
.new-list li{
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	text-indent: 15px;
	border-bottom: 1px dashed #d1ae6e;
	position: relative;
}
.new-list li:before{
	content: "";
	width: 4px;
	height: 4px;
	border:2px solid #d1ae6e;
	position: absolute;
	border-radius: 50%;
	left:0;
	top: 27px;

}
.new{
	position: relative;
	display: inherit;
}
.new:after{
	content: "new";
	width: 30px;
	height: 16px;
	border-radius: 5px 0px 5px 0px;
	line-height: 16px;
	font-size: 14px;
	text-align: center;
	text-indent: 0;
	background: #d82f16;
	color:#fff!important;
	position: absolute;
	right:0px;
	top: 15px;
	z-index: 999;
}
.new-list li a{
	display: block;
	width: auto;
	max-width: 75%;
	float: left;
	height: 100%;
	color:#333;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	padding-right: 30px;
}


.new-list li a:hover{
	color: #d5a243;
}
.new-list li span{
	float: right;
	font-size: 16px;
	color:#666;

}
.more{
	padding: 5px 15px;
	border:1px solid #d1ae6e;
	color:#d5a243;
	right: 0;
	position: absolute;
}
.more:hover{
	background: #d1ae6e;
	color:#fff;
}
.link,footer{
	width: 100%;
	line-height: 90px;
	text-align: center;
	float: left;
}
footer{
	background: #333;
	color:#A6A6A6;
	text-align: center;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
}
.link{
	background: #f7f8f8;
	height: 90px;
	color:#d5a243;
	font-size: 16px;
}
.link a{
	color:#666;
	padding: 0px 10px;
}
.link a:hover{
	color:#d5a243;
}
.swiper-slide{
	position: relative;
}
.banner01-title{
	width: 1197px!important;
	height: 162px!important;
	position: absolute;
	left:50%;
	margin-left:-600px;
	top:180px;
}

.banner-ny{
	height: 300px;
	background:#ccc;
	color:#fff;
	font-size: 30px;

}
.banner-ny>span{
	width: 1200px;
	height: 300px;
	margin:0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color:#fff;
	font-size: 30px;
}
.position{
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: #f9f9f9;
}
.position div{
	width:75%;
	line-height: 40px;
	font-size: 14px;
	color:#333;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.position div a{
	font-size: 14px;
	color:#333;
}
.position div a:hover{
	color:#d5a243;
}
.article{
	width: 1300px;
	height: auto;
	padding-bottom: 30px;
	margin:0 auto;
	border-bottom: 5px solid #f7f9f9;
	float: left;
}

.article h1{
	width: 80%;
	height: 60px;
	line-height:35px;
	padding: 10px 10% 30px 10%;
	text-align: center;
	font-weight: 500;
	font-size: 24px;
}
.art-title{
	display: flex;
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	justify-content: center;
	color:#888;
	padding-bottom: 20px;
	margin-bottom: 50px;
	border-bottom: 5px solid #f7f9f9;
	height: 40px;
	line-height: 40px;

}

.art-title .font-scale {

	right: 0;
	bottom: 20px;
	width: 230px;
	height: 40px;
	line-height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	margin-left: 50px;

}

.large, .middle, .small {
	border-radius: 50%;
	color: #666;
	text-align: center;
	width: 40px;
	height: 40px;

	line-height: 40px;
	cursor: pointer
}

.font-current {
	background: #eceaea;
}

.large {
	font-size: 20px;
}

.middle {
	font-size: 18px;
}

.small {
	font-size: 16px;


}
.article-p{
	width: 100%;
	font-size: 16px;
	line-height: 35px;
	color: #333;
	padding: 10px 0;
	text-indent: 2em;

}
.article img{
	max-width: 80%;
	width: auto;
	height: auto;
	margin: 10px 10%;
}
.size01:before{
	font-size: 40px;
	margin-right: 10px;
	font-weight: 500;

}

.prev-next {
	width: 100%;
	height: 60px;
	line-height: 80px;
	color: #333;
	float: left;

}

.prev-left, .next-right {
	width: 40%;
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;

}

.prev-next a {
	font-weight: 500;
}

.prev-next a:hover {
	color: #ce9833;
}

.prev-left {
	float: left;
	text-align: left;
}

.next-right {
	text-align: right;
	float: right;
}
.size02:before {
	font-size: 50px;
	margin-right: 10px;
	font-weight: 500;
}
.news-tab02{
	width: 100%;
	height: 70px;
	line-height: 70px;
	background: #fff;
	border-bottom:1px solid #E0E0E0;
}
.news-tab02 ul{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.news-tab02 ul li{
	font-size: 18px;
	margin: 0px 30px;
	cursor: pointer;
	border-bottom:1px solid #E0E0E0;
}
.list-current02{
	display: block;

}
.news-tab02 ul li:hover,.list-current02{
	color:#e74132!important;
	line-height: 69px;
	border-bottom:2px solid #e74132!important;
}
.news-tab02 ul li:hover:after,.list-current02:after{
	display: none;
}

.tabs02 {
	width: 100%;
	height: auto;
}
.tabs02>div{
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-bottom: 1px solid #f9f9f9!important;
}
.news-ny-list ul{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;

}
.news-ny-list ul li{
	width: 31%;
	margin: 0px 1% 30px 1%;
	height: 350px;
	background: #f9f9f9;
	border-bottom: 2px solid #fff;
	position: relative;
	overflow: hidden;
}
.news-ny-list ul li a{
	width: 100%;
	height: 100%;
	display: block;
}
.news-ny-list ul li h3{
	width: 90%;
	height: 70px;
	padding: 20px 5%;
	font-size: 18px;
	color:#444;
	line-height: 30px;
	font-weight: 500;
	position: absolute;
	top:50%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.news-ny-list ul li span{
	width: 90%;
	display: block;
	margin: 30px 5% 20px 5%;
	font-size: 16px;
	text-align: left;
	color:#ADADAD;
	line-height: 30px;
	position: absolute;
	bottom:10px;
	background: url("../images/time.png") 0px 4px no-repeat;
	text-indent: 25px;

}

.news-ny-list ul li:hover{
	border-bottom: 2px solid #e74132;
	transition-duration: 0.5s;
}
.news-ny-list ul li:hover h3 {
	color:#222;

}
.news-ny-list ul li:hover img{

	-webkit-animation-name:big;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-iteration-count:1;
	-webkit-animation-duration:1s;


}
@keyframes big {
	0%{
		transform:scale(1);
	}

	100% {
		transform:scale(1.1);
	}
}







.nfixed{
	position: fixed;
	top:0;
	z-index: 9;

}
.introduce{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.introduce a{
	width: 16.7%;
	height:auto;
	display: block;


}
.introduce a img{
	width: 100%;
	height:auto

}
.introduce h1{
	width: 100%;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size:36px;
}
.introduce p{
	line-height: 30px;
	text-indent: 2em;
}
.introduce ul{
	padding: 30px 0;
	display: flex;
}


.news-tab01{
	width: 20%;
	height: auto;
	line-height: 70px;
	background: #f9f9f9;
	float: left;
	padding: 0px 0 50px 0;
	border:0;
}
.up{
	position:fixed;
	top:170px;
	width: 15%!important;

}
.news-tab01 ul{
	width: 80%;
	height: auto;
	display: block;


}
.news-tab01 ul li{
	width: 85%;
	font-size: 18px;
	margin: 0px 30px;
	cursor: pointer;
	position: relative;
	padding-left: 15%;
}
.list-current01{
	display: block;

}
.news-tab01 ul li:hover,.list-current01{
	color:#ce9833!important;
	line-height: 70px;
	font-weight: 600;

}
.news-tab01 ul li:hover:after,.list-current01:after{
	display: none;
}
.news-tab01 ul li:Hover:before,.list-current01:before{
	background:#ce9833!important;
}
.news-tab01 ul li:before{
	content: ">";
	font-size: 10px;
	color:#fff;
	background: #ccc;
	height: 12px;
	width: 12px;
	text-align: center;
	line-height: 10px;
	padding: 2px;
	position: absolute;
	border-radius: 50%;
	position: absolute;
	left:0;
	top:27px;
}
.tabs01{
	width: 78%;
	height:auto;
	float: right;
}
.tabs01>div{
	width: 100%;
	padding:0 20px;
	margin: 0 auto;
	border-bottom: 1px solid #f9f9f9!important;
}
.list-top{
	background: #e74132;
	color:#fff;
	height: 70px;
	display: flex;
	font-size: 20px;
	font-weight: 600;
	justify-content: center;
	align-items: center;
	letter-spacing:3px;
}
.list-nav{
	width: 100px;
	height: 60px;
	font-size: 18px;
	font-weight: 600;
	position: relative;
	text-indent: 10px;
}
.list-nav:after{
	content: "";
	height: 5px;
	width: 71px;
	left:10px;
	bottom:30px;
	background: #e74132;
	position: absolute;
	z-index: 99;
}
.news-ny-list02 ul{
	width: 100%;


}
.news-ny-list02 ul li a{
	width: 100%;
	height:95px;
	display: block;
	padding: 20px 0;
	border: 1px solid #ebebeb;
	margin: 20px 0;

}
.listall{
	display: flex;
	align-items: center;
	width: calc(100% - 30px);

}
.news-ny-list02 ul li a:hover{
	box-shadow: 0px 0px 10px #ccc;
	transition-duration: 0.5s;
}
.news-ny-list02 ul li a:hover .listCon .newtitle{
	color:#ce9833!important;
}
.newtitle{
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: 500;
	color: #333!important;
	transition-duration: 0.5s;
}
.newsContent .listLeftBox {
	border-right: 1px solid #ebebeb;
}
.listLeftBox {

	width: 140px;
	text-align: center;
	color: #ce9833;
}
.newsday {
	font-size: 50px;
	font-family: "Arial";
	font-weight: 500;
}
.newsTime {
	width: 140px;
	font-size: 22px;
	font-family: "Arial";
}
.newsContent .listCon {
	border: 0;
}

.listCon {
	border-left: 1px solid #ebebeb;
	padding-left: 40px;
	padding-right: 10px;
	flex:1;

}

.newsText {
	width: 100%;
	margin-top: 10px;
	color: #666666;
	line-height: 28px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-break: break-all;
}

.page ul{
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 50px auto;
}
.page ul li{
	font-size: 15px;
	padding: 3px 8px;
	border:1px solid #EBEBEB;
	border-radius: 5px;
	margin: 0px 5px;

}
.page ul li a{
	color:#333;
}
.page .current-page,.page ul li:hover{
	background: #cba36b;
	border:1px solid #cba36b;
	color:#fff!important;

}
.page .current-page a,.page ul li:hover a{
	color:#fff!important;
}
.intro-box{
	width: 100%;
	padding: 50px 0px;
	background: #f9f9f9;

}
.intro-box:nth-child(2n-1){
	background: #fff;
}
.ntro-img{
	width: 50%;
	height: 450px;
	float: left;
}
.content-title{
	width:100%;
	height: 30px;
	line-height: 0px;
	margin-bottom: 50px;
	text-align: center;
	float: left;
}
.ntro-content{
	width: 46%;
	height: 450px;
	float:right;
	position:relative;
}
.intro-box:nth-child(2n-1) .ntro-img{
	float:right;
}
.intro-box:nth-child(2n-1) .ntro-content{
	float:left;
}
.ntro-content .article-p{
	padding-top:0;
}
.icon-img{
	position: absolute;
	bottom:0px;
	z-index: 0;
	z-index: 1
}

.listImg {
	width: 160px;
	height: 95px;
	overflow: hidden;
}
.listImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list-img{
	width: 100%;
	height: 180px;
	overflow: hidden;

}
.list-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;


}
.list-img02{
	height: 350px;
}
.list-img02 img{
	object-fit: contain!important;
}

.list-img03 {
	height: 260px;
}

.list-img03 img {
	object-fit: contain !important;
}
.zhengshu-name{
	top:260px!important;
	font-size: 16px!important;
	text-align: center;


}

.page {
	float: right;
	height: 100px;
	width: 75%;
	padding-left: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
	background-color: #ce9833;
}

.zhaopin-list {
	width: 100%;


}

.zhaopin-list > div {
	width: 96%;
	height: 50px;
	display: block;
	border-bottom: 1px solid #EBEBEB;
	margin: 15px 1%;
	cursor: pointer;
	position: relative;
	background: #f9f9f9;
	padding: 30px 2% 10px 2%;


}

/*.zhaopin-list a:before{
	content: "";
	 width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 7px solid #d82f16;
    border-bottom: 5px solid transparent;
	position: absolute;
	top:7px;
	left:-15px;
}*/
.zhaopin-list > div:after {
	top: 0px;
	right: 0px;
}

.zhaopin-list > div:hover:before {
	content: "";
	height: 2px;
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0;
	background: #d82f16;
	-webkit-animation-name: line;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-duration: 1s;

}

@keyframes line {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}


.newtitle {
	width: auto;
	float: left;
	max-width: 750px;
	padding-right: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.newtitle:after {
	top: 0;
}
.zhaopin-list a:hover.newtitle {
	color: #ce9833 !important;
}

.zhaopin-time {
	width: 300px;
	float: right;
	padding-right: 30px;
	font-size: 16px;
	color: #888;
	padding-bottom: 30px;
	display: flex;
	align-items: center;
}

.zhaopin-time img {
	margin-right: 5px;
}

.ntro-content h3 {
	font-size: 18px;
	color: #cf3933;
	margin-bottom: 10px;
	margin-top: 15px;
}

.zhuyaoyeji-list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.zhuyaoyeji-list li {
	width: 45%;
	padding: 10px 20px 20px 20px;
	background: #F9F9F9;
	margin: 10px;
}

.intro-box:nth-child(2n) .zhuyaoyeji-list li {
	background: #fff;
}

.zhuyaoyeji-list p {
	line-height: 30px;
}

.yewushiji h3 {
	font-size: 26px;
	color: #333;
	width: 100%;
	text-align: center;
	margin: 30px 0;
}

.yewushiji h4 {
	font-size: 20px;
	color: #cf3933;
	width: 100%;
	text-align: center;
	margin: 10px 0;
}

.yewushiji p {
	line-height: 40px;
	font-size: 18px;
	text-align: center;
}




/* -----------中心概况-------------- */
/* 经营宗旨 */
.zxgk_jyzz_title{ width:100%; height:80px;box-sizing:border-box; display:block; margin:0; padding:0; font-size:30px; line-height:36px; color:#333; font-weight: bold;}
.zxgk_jyzz_content{ width:100%; height:auto;box-sizing:border-box; display:block; margin:0; padding:0; }
.zxgk_jyzz_font{ font-size:16px; line-height:36px;}
.zxgk_jyzz_font p{ text-indent:2rem; margin-bottom:30px;}
.zxgk_jyzz_img{width:100%; height:auto;box-sizing:border-box; margin:20px 0; text-align:center;}


/* 公司简介 */
.zxgk_gsjj_content {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
	clear: both;
}

.zxgk_gsjj_font {
	width: 70% !important;
	height: auto;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 36px;
	float: left;
}
.zxgk_gsjj_font p{ text-indent:2rem; margin-bottom:30px;text-align:justify}

.zxgk_gsjj_img {
	width: 26%;
	height: 630px;
	float: right;
	box-sizing: border-box;
	margin: 20px 0;
	text-align: center;
	background: url("/images/f9fb1b24c7aa4849980634cc2fefe07b.png") top left no-repeat;
}


/* 组织架构 */
.zxgk_zzjg_img{width:100%; height:auto;box-sizing:border-box; text-align:center;}

/* 组织架构 */
.zxgk_qywh_img{width:100%; height:auto;box-sizing:border-box; text-align:center; margin:0; padding:0; margin-top:20px; margin-bottom:50px;}

/* -----------联系我们-------------- */
.contact_wap{ width:75%; min-width:1200px; max-width:1400px; height:auto; margin:80px auto; position:relative; padding:0;box-sizing:border-box; display:block;overflow:hidden; clear:both;}

.contact_1st_wap {
	width: 100%;
	height: 380px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	flex-wrap: no-wrap;


	justify-content: space-between;
	overflow: hidden;
	clear: both;
}
.contact_map_box{ width:50%;box-sizing:border-box;}
.contact_right_box{ width:50%; margin:0; padding:0; padding-left:8%;box-sizing:border-box; text-align:left; background:url(../images/17.png) no-repeat right top; background-color:#f9fbfc; }

.contact_title{ width:100%; margin:0; padding:0; padding-top:40px; display:inline-blcok;box-sizing:border-box;}
.contact_title h2{ font-size:30px; font-weight:600; color:#333; display:inline-block; margin:30px 0;}
.contact_title span{ font-family:Arial, Helvetica, sans-serif; font-size:16px; font-weight:600; color:#999;display:inline-block; margin-left:10px;}

.contact_font{ font-size:16px; line-height:40px; color:#333;}

.contact_address_wap{ width:100%; height:auto; margin:0; margin-top:50px; padding:0;box-sizing:border-box;display:flex; flex-direction:row; flex-wrap:no-wrap; justify-content:space-between; overflow:hidden; clear:both;}

.contact_ywbm_wap{width:31%; box-sizing:border-box;height:auto; margin:10px 10px; padding:0;display:inline-blcok;box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, 0.10);}

.contact_ywbm_title,.contact_znbm_title,.contact_fzjg_title{width:100%;box-sizing:border-box; height:60px; line-height:60px; display:block;background-image:linear-gradient(to right, #e94b41, #dc3834); font-size:20px; color:#fff; font-weight:600; text-align:center;}

/*
.contact_ywbm_title{width:100%;box-sizing:border-box; height:60px; line-height:60px; display:block;background-image:linear-gradient(to right, #348cff, #157efe); font-size:20px; color:#fff; font-weight:600; text-align:center;}
.contact_znbm_title{width:100%;box-sizing:border-box; height:60px; line-height:60px; display:block;background-image:linear-gradient(to right, #26d9d2, #15d7b5); font-size:20px; color:#fff; font-weight:600; text-align:center;}
.contact_fzjg_title{width:100%;box-sizing:border-box; height:60px; line-height:60px; display:block;background-image:linear-gradient(to right, #ffa444, #fe8447); font-size:20px; color:#fff; font-weight:600; text-align:center;}
 */
.contact_ywbm_content{ width:100%; height:auto; padding:20px 30px 20px 40px; margin:0;box-sizing:border-box; font-size:16px; line-height:40px; color:#333; }
.contact_ywbm_content ul{width:100%; height:auto;box-sizing:border-box;}
.contact_ywbm_content ul li{width:100%; height:auto;box-sizing:border-box;}


/*-----手机自适应-------*/
.ywbk-top {
	width: 75%;
	margin: 50px auto
}

.zxgk_jyzz_content p {
	font-size: 16px;
}

table {
	border-collapse: collapse;
}

th, td {
	border: 1px solid #E7E7E7;
	padding: 10px 0px;
	line-height: 35px;
	font-size: 18px;
}

th {
	border: none;
}

tr:nth-child(1) {
	border: 1px solid #E7E7E7;
}

.card {
	width: 90%;
	padding: 40px 30px 30px 30px;
	min-height: 200px;
	height: auto !important;
	background: #f7f7f7;
	margin: 30px auto;
	z-index: 1;
	position: relative;
	display: flex;

}

.card-img {
	width: 150px;
	height: 200px;
	text-align: center;
	overflow: hidden;
	margin-left: 50px;
	float: left;

	z-index: 3;
	display: flex;
	align-items: center;
	margin-top: 20px;


}

.card:after {
	content: "";
	width: 150px;
	height: 200px;
	float: left;
	z-index: 2;
	left: 100px;
	top: 40px;
	position: absolute;
	border: 1px dashed #aa9108;
}

.card-img img {
	min-width: 100%;
	min-height: 100%;
	object-fit: contain;
	margin-left: 0px !important;
}

.card-right {
	flex: 1;
	height: auto;
	padding: 0 30px;
	float: left;
	margin-left: 30px;
	left: 300px;
}

.card-right h1 {
	font-size: 26px;
	font-weight: 600;
	text-align: left;
	padding: 0px;
	margin-top: 20px;
	color: #333;

}

.card-right h2 {
	font-size: 26px;

	font-weight: 600;
	text-align: left;
	padding: 0px;
	color: #aa9108;


}

.card-right h3 {
	color: #aa9108;
	text-transform: uppercase;
}

.card-right h4 {
	color: #666;
	font-weight: 500;
	line-height: 24px;
	font-size: 16px;
	padding-bottom: 20px;
}

@media screen and (min-width: 300px) and (max-width: 1024px) {
	.top {
		width: 100%;
		height: 150px;
		padding: 0;
		flex-wrap: wrap;
		position: inherit;
	}

	.top img {
		width: 70%;
		margin-left: 20px;
	}

	nav {
		width: 100%;
		height: 200px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-top: 10px;
	}

	nav div {
		width: 23%;
		height: 100px;

	}

	nav div a {
		width: 100%;
		height: 100px;
		line-height: 100px;
		font-size: 2.4rem;
	}

	nav div a .iconfont {
		display: none;
	}

	.menu {
		display: block;
	}

	.banner {
		margin-top: 200px;
	}

	.search-icon {
		width: 120px;
		position: absolute;
		top: 5px;
		right: 30px;
	}

	.search-icon img {
		width: 100px;
		height: 100px;
	}

	.content {
		width: 96%;
		max-width: inherit;
		min-width: inherit;
	}

	.news-left {
		width: 100%;
		padding-top: 50px;
	}

	.news-banner {
		margin: 30px 0px;
		width: 100%;
	}

	.news-right {
		width: 100%;
		float: left;
		padding-bottom: 80px;
	}

	.link {
		width: 94%;
		height: auto;
		line-height: 80px;
		padding: 20px 3%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		font-size: 2rem;
		line-height: 4rem;


	}

	.link a {
		display: block;
	}

	.banner-ny > span {
		width: 70%;
		font-size: 3rem;
	}

	.news-tab02 {

		height: 100px;
	}

	.news-tab02 ul li {
		height: 100px;
		text-align: center;
		font-size: 2.2rem;
		line-height: 100px;
	}

	.position {
		display: none;
	}

	.news-tab {
		height: 80px;

	}

	.news-tab ul {
		height: 80px;
		margin: 30px 0;
	}

	.news-tab ul li {
		height: 80px;
		line-height: 80px;
		font-size: 1.8rem;
	}

	.nav-news {
		font-size: 2.4rem;
	}

	.new-list li {
		height: 100px;
		line-height: 100px;
		font-size: 2rem;
	}

	.new-list {
		height: 500px;
	}

	.new-list li span {
		font-size: 1.6rem;
	}

	footer {
		font-size: 1.6rem;
		height: 100px;
		line-height: 80px;
	}

	.more {
		font-size: 2rem;
		bottom: 0px;
		right: 0;
	}

	.search {
		height: 80px;
		top: 150px;
		padding: 20px 0;
		box-shadow: 0px 5px 5px #eee;
		margin: 0 auto;

	}

	.search input[type="button"] {
		width: 150px;
		height: 80px;
		position: absolute;
		top: 19px;
		right: 10%;
		font-size: 2rem;
		margin-left: 5px;
		border-radius: 0px !important;

	}

	.search input[type="text"] {
		height: 78px;
		width: 80%;
		font-size: 2rem;
	}

	.zxgk_jyzz_title {
		font-size: 2.6rem;
	}

	.zxgk_jyzz_content p span {
		font-size: 2rem;
		line-height: 4rem;
	}

	.zxgk_zzjg_img img, .zxgk_qywh_img img, .zxgk_jyzz_img img {
		width: 100%;
		height: auto;
	}

	.ywbk-top {
		width: 96%;
		margin: 50px auto
	}

	.zhuyaoyeji-list li {
		width: 100%;
	}

	.content {
		padding-top: 0;
	}

	.content-title {
		font-size: 2.6rem;
		margin-top: 50px;
	}

	.ntro-img {
		width: 100%;
		height: auto;
	}

	.ntro-content {
		width: 100%;
		height: auto;

	}

	.article-p {
		width: 100%;
		font-size: 2rem;
		line-height: 3rem;
		margin-top: 20px;
	}

	.ntro-content h3 {
		font-size: 2.4rem;
		line-height: 3.5rem;
	}

	.zhuyaoyeji-list p {
		font-size: 2.2rem;
		line-height: 3rem;
	}
	.introduce {
		flex-wrap: wrap;
	}

	.introduce a {
		width: 33.3%;
	}

	th, td {
		font-size: 2.2rem;
	}

	.news-tab02 ul li:hover, .list-current02 {
		line-height: 100px;
	}

	.zxgk_jyzz_font, .zxgk_gsjj_font p {
		font-size: 2rem !important;
		line-height: 3.5rem !important;
	}

	.list-top, .list-nav {
		display: none;
	}

	.icon-img {
		position: inherit;
		width: 80%;
		margin: 20px auto 0 auto;;
	}

	.intro-box {
		padding-bottom: 0;
	}

	.news-tab01 {
		width: 96%;
		margin: 0 2%;
		height: 100px;
		line-height: 100px;
		background: #fff;
		border-bottom: 1px solid #E0E0E0;
		padding-bottom: 0;
		margin-bottom: 50px;
	}

	.news-tab01 ul {
		width: 100%;
		height: inherit;
		display: flex;
	}

	.news-tab01 ul li:before {
		display: none;
	}

	.new-list li:before {
		top: 45px;
	}

	.tabs01 {
		width: 100%;
		padding: 0px;
	}

	.tabs01 > div {
		padding: 0px;
	}

	.news-ny-list ul li {
		width: 48%;
	}

	.page {
		width: 100%;
	}

	.up {
		position: inherit;
	}

	.news-tab01 ul li {
		width: 20%;
	}

	.news-tab01 ul li {
		padding: 0;
		margin: 0px 15px;

	}

	.list-img {
		height: 280px;
	}

	.news-ny-list ul li {
		height: auto;
	}

	.news-ny-list ul li h3 {
		height: 120px;
		top: 270px;
		font-size: 2.2rem;
		line-height: 3rem;
		position: inherit;
	}

	.news-ny-list ul li span {
		font-size: 2rem;
		position: inherit;
	}

	.newtitle {
		font-size: 2.2rem;
	}

	.newsText {
		font-size: 1.8rem;
		overflow: hidden;
		line-height: 2.5rem;
	}

	.news-ny-list ul li span {

		background: url(../images/time.png) 0px 0px no-repeat;
		background-size: 30px 30px;
		text-indent: 35px;
	}

	.news-ny-list02 ul li a {
		height: 150px;
	}

	.contact_wap {
		width: 96%;
		margin: 20px 2%;
		max-width: inherit;
		min-width: inherit;
	}

	.contact_address_wap {
		width: 96%;
		margin: 20px 2%;
	}

	.contact_map_box {
		width: 100%;
		height: 500px;

	}

	.contact_1st_wap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		display: block;

	}

	.news-tab01 ul li:hover, .list-current01 {
		color: #e74132 !important;
		line-height: 100px;
		height: 100px;
		border-bottom: 2px solid #e74132 !important;
		font-weight: 500;
	}

	.contact_address_wap {
		flex-wrap: wrap;
	}

	.contact_ywbm_wap {
		width: 100%;
	}

	.contact_ywbm_title, .contact_znbm_title, .contact_fzjg_title, .contact_title h2 {
		font-size: 2.4rem;
	}

	.contact_right_box {
		width: 100%;
		padding-bottom: 50px;
	}

	.contact_ywbm_content ul li {
		font-size: 2rem;
		line-height: 3.5rem;
	}

	.contact_font {
		font-size: 2rem;
		line-height: 3.5rem;
	}

	.zxgk_jyzz_title {
		padding: 50px 0;
	}

	.yewushiji {
		padding-top: 50px;
	}

	.news-img .swiper-slide span {
		height: 60px;
		line-height: 60px;
		font-size: 1.8rem;
	}

	.news-img .swiper-slide span:after {
		height: 60px;
	}

	.list-img03 {
		height: auto;
	}

	.card-right h1 {
		font-size: 2.6rem;
		font-weight: 600;
		text-align: left;
		padding: 0px;
		margin-top: 20px;
		color: #333;

	}

	.card-right h2 {
		font-size: 2.6rem;
		font-weight: 600;
		text-align: left;
		padding: 0px;
		color: #aa9108;


	}

	.card-right h3 {
		color: #aa9108;
		font-size: 1.8rem;
		text-transform: uppercase;
	}

	.card-right h4 {
		color: #666;
		font-weight: 500;
		line-height: 3rem;
		font-size: 2rem;
		padding-bottom: 20px;
	}

	.zxgk_gsjj_font {
		width: 100% !important;
		height: auto;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 36px;
		float: inherit;
	}

	.zxgk_gsjj_img {
		width: 100%;
		height: 220px;
		margin-top: 30px;
		float: inherit;
		box-sizing: border-box;
		margin: 20px 0;
		text-align: center;
		background: url("/images/zxjj-img2.png") top center no-repeat;
	}

	.layui-laypage a, .layui-laypage span {
		padding: 0 15px;
		height: 50px;
		line-height: 50px;
		margin: 0 20px 5px 0;
		font-size: 2.4rem;
	}

	.article {
		margin: 30px auto 0px auto
	}

	.article h1 {
		font-size: 2.4rem;
	}

	.article h1 {
		width: 90%;
		height: auto;
		line-height: 3.5rem;
		padding: 30px 5% 30px 5%;
		text-align: center;
		font-weight: 500;
		font-size: 2.4rem;
	}

	.art-title .font-scale {
		display: none;
	}

	.prev-left, .next-right {
		font-size: 2rem;
		width: 45%;
	}

}













