/*基础CSS*/
html {
	font-size: 14px;
	overflow-x: hidden;
}
li {
	list-style: none;
}
a {
	color: #212529
}
a:hover {
	text-decoration: none;
}
p, dl, dt, dd, ul {
	margin: 0px;
	padding: 0px;
}
input{
	border: none;
	outline: 0;
}
.header{
	width:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:999;
	height:100px;
	padding: 0 30px;
	transition: .5s;
}

.header .container{
	display: flex;
	max-width: 1590px;
	align-items: center;
	height: 100%;
	justify-content: space-between;
}
.header .left a img{
	height: 40px;
	margin-top: 6px;
}
.header .left .img2{
	display: none;
}
/*鍙充晶*/
.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 50px;
	display: flex;
	align-items: center;
}
.header .navbar_nav li{
	float:left;
	position: relative;
	display: block;
}
.header .navbar_nav li:after{
    content: "";
    width: 0;
    height: 2px;
    background: #ca9046;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.header .navbar_nav li:hover:after{
    width: 100%;
}
.header .navbar_nav li a{
	text-decoration: none;
	height: 100%;
	padding: 0 25px;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #fff;
	font-size: 16px;
}
.header .navbar_nav li:hover a{
	color: #ca9046;
}
.header .navbar_nav li.dropdown{
	display: inherit;
	position: relative;
}
.header .navbar_nav li.dropdown .jt{
	width: 20px;
	height: 20px;
	background: url(i/top.png) no-repeat;
	background-size: 100% 100%;
	display: block;
}
.header .navbar_nav li.dropdown .dropdown_menu{
	display: none;
	position: absolute;
	top:50px;
	width: 100%;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 120%;
    left: -10%;
}
.header .navbar_nav li.dropdown .dropdown_menu a{
	font-size: 14px;
	color: #666;
	padding: 0 10px;
	line-height: 40px;
	text-align: center;
	background: #fff;
	margin-bottom: 2px;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu{
	display: block;
	background: #f3f3f3;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a{
	color: #666;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover{
	color: #fff;
	background: #ca9046;
}
/*鐧借壊鑳屾櫙鐨勫ご閮�*/
.header.on{
	background: #fff;
	border-bottom: 1px solid #ccc;
}
.header.on .left .img1{
	display: none;
}
.header.on .left .img2{
	display: block;
}
.header.on .navbar_nav li a{
	color: #333;
}
.header.on .navbar_nav li:hover a{
	color: orangered;
}
#navToggle{
	display: none;
}

.m_nav{
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
	z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav .logo{
	width: 100%;
	margin:0 auto;
}
.m_nav .logo img{
	height: 50px;
	display: block;
	margin:30px auto;
}
.m_nav .ul{
	margin-top: 30px;
}
.m_nav .ul li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
	opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}
.m_nav .ul li .dropdown_menu{
	display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
	display: block;
}
.m_nav .ul li .dropdown_menu a{
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child{
	border: none;
}
.banner{
	width: 100%;
	position: relative;
}
.sjbanner{
	display: none;
}
.banner img{
	width: 100%;
}
.banner .tit{
	position: absolute;
	left: 0;
	right: 0;
	max-width: 896px;
	max-height: 313px;
	background: rgba(0,0,0,.5);
	top: 0;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	font-weight: bold;
}
.banner .tit p{
	font-size: 32px;
	display: flex;
	align-items: center;
	line-height: 26px;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 30px;
}
.banner .tit p em{
	display: block;
	width: 4px;
	height: 4px;
	background-color: #ca9046;
	margin: 0 10px;
}
.banner .tit span{
	display: block;
	font-size: 32px;
	line-height: 26px;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 63px;
}
.banner .tit a{
	width: 150px;
	text-align: center;
	line-height: 44px;
	color: #fff;
	font-weight: normal;
	height: 44px;
	border: solid 1px #ffffff;
}
.about{
	margin-top: 65px;
	margin-bottom: 90px;
}
.about .container{
	max-width: 1456px;
	display: flex;
}
.about .tit{
	margin-left: 90px;
	margin-top: 7px;
}
.about .t{
	max-width: 590px;
	height: 144px;
	display: flex;
	font-size: 44px;
	color: #000000;
	align-items: center;
	font-weight: bold;
}
.about p{
	font-size: 16px;
	line-height: 30px;
	color: #8a8a8a;
}
.about p:nth-child(3){
	margin-top: 30px;
	margin-bottom: 50px;
}
.about a{
	display: inline-block;
	width: 150px;
	height: 44px;
	border: solid 1px #cccccc;
	font-size: 14px;
	color: #8a8a8a;
	text-align: center;
	line-height: 44px;
}
.pro{
	margin-bottom: 90px;
}

.pro .box{
	position: relative;
	transition: .5s;
}
.pro .box .nn{
	position: absolute;
	transition: .5s;
	content: '';
	width: 100%;
	height: 138px;
	background:url(../images/yy.png) no-repeat;
	bottom: 0;
	opacity: 0;
	
}
.pro .box:hover .nn{
	opacity: 1;
}
.pro .box .tit{
	position: absolute;
	bottom: 30px;
	left: 70px;
}
.pro .box .tit p{
	font-size: 22px;
	color: #fff;
	margin-bottom: 30px;
}
.pro .box .tit span{
	color: #ffffff;
	width: 112px;
	padding-bottom: 10px;
	font-size: 14px;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pro .box .tit em{
	display: block;
	width: 14px;
	height: 7px;
}
.pro .box img{
	width: 100%;
}
.pro>div{
	display: flex;
}
.new .container{
	max-width: 1588px;
}
.new h1{
	font-size: 44px;
	text-align: center;
	margin-bottom: 30px;
	font-weight: bold;
}
.new .xian{
	width: 1px;
	height: 28px;
	background-color: #ca9046;
	margin: auto;
	margin-bottom: 60px;
}
.new .list{
	display: flex;
	flex-wrap: wrap;
}
.new .list a{
	display: flex;
	width: 50%;
	padding: 40px 30px;
	transition: .5s;
	align-items: center;
}
.new .list a:hover{
	background-color: #f8f8f8;
}
.new .list a .con{
	margin-left: 30px;
}
.new .list a .con .date{
	font-size: 14px;
	margin-bottom: 30px;
	font-weight: bold;
	color: #414141;
}
.new .list a .con p{
	font-size: 18px;
	line-height: 12px;
	margin-bottom: 17px;
	color: #000000;
}
.new .list a .con span{
	display: block;
	color: #fff;
	text-align: center;
	line-height: 24px;
	width: 96px;
	height: 24px;
	background-color: #000000;
}
.new .list a .con .dec{
	font-size: 14px;
	margin-bottom: 30px;
	line-height: 14px;
	color: #868686;
}
.foot{
	height: 520px;
	background: url(../images/db.png) no-repeat;
	margin-top: 90px;
	padding-top: 70px;
	background-size: cover;
}
.foot .container{
	display: flex;
	max-width: 1588px;
}
.foot .l .dl{
	margin-bottom: 70px;
}
.foot .l .from{
	max-width: 630px;
	
}
.foot .l .from form{
	display: flex;
	flex-wrap: wrap;
}
.foot .l .from span{
	display: flex;
	width: 280px;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #666666;
	height: 21px;
}
.foot .l .from form>span:nth-child(2){
	border-bottom: 0;
	padding-bottom: 0;
	align-items: initial;
	margin-left: 70px;
	flex-direction: column;
	height: auto;
	line-height: 14px;
	margin-top: -3px;
}
.foot .l .from form .z span:last-child{
	margin-top: 50px;
}
.foot .l .from form>span:nth-child(2) label{
	margin-bottom: 7px;
}
.foot .l .from span textarea{
	resize: none;
	height: 75px;
	padding-left: 10px;
	padding-top: 10px;
	font-size: 14px;
	color: #ccc;
	border: solid 1px #666666;
	background: initial;
	outline:0; 
}
.foot .l .from span label{
	font-size: 14px;
	color: #ccc;
	margin-bottom: 0;
}
.foot .l .from input{
	flex: 1;
	font-size: 14px;
	color: #ccc;
	margin-left: 10px;
	background: initial;
}
.foot .l .from button{
	display: block;
	margin-top: 30px;
	width: 100%;
	height: 30px;
	border: 0;
	line-height: 30px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	background-color: #ca9046;
}
.foot .m{
	padding-top: 58px;
	margin-left: 208px;
}
.foot .m p{
	font-size: 18px;
	margin-bottom: 50px;
	height: 18px;
	color: #ffffff;
}
.foot .m a{
	display: block;
	font-size: 14px;
	height: 14px;
	margin-bottom: 34px;
	color: #cccccc;
}
.foot .m a:last-child{
	margin-bottom: 0;
}
.foot .r{
	padding-top: 58px;
	margin-left: auto;
}
.foot .r h1{
	font-size: 18px;
	margin-bottom: 50px;
	height: 18px;
	color: #ffffff;
}
.foot .r .fnav p{
	height: 18px;
	font-size: 14px;
	display: flex;
	align-items: center;
	color: #ccc;
	margin-bottom: 30px;
	padding-left: 28px;
}
.foot .r .fnav p:last-child{
	margin-bottom: 0;
	height: 20px;
}
.foot .r .bnav{
	display: flex;
	margin-top: 40px;
}
.foot .r .bnav a{
	width: 36px;
	margin-right: 20px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #cccccc;
}
.foot .r .bnav a:last-child{
	margin-right: 0;
}
.position{
	margin-top: 20px;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 28px;
}
.position .container{
	max-width: 1590px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.position .dw{
	font-size: 16px;
	padding-left: 40px;
	color: #cccccc;
}
.position .dw a{
	color: #cccccc;
}
.position .dw span{
	margin: 0 5px;
}
.position .dw a:last-child{
	color: #000;
}
.position .search form{
	position: relative;
	max-width: 240px;
}
.position .search input{
	padding-left: 14px;
	width: 240px;
	display: block;
	height: 38px;
	border-radius: 19px;
	padding-right: 58px;
	color: #868686;
	font-size: 16px;
	border: solid 1px #dddddd;
}
.position .search button{
	position: absolute;
	right: 18px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	border: 0;
	outline: none;
}
.nyab .container{
	max-width: 1456px;
	padding-top: 70px;
}
.nyab .container .tit{
	font-size: 44px;
	font-weight: bold;
	margin-bottom: 50px;
	color: #000000;
	margin-top: 60px;
	line-height: 35px;
}
.nyab .container .content,.nyab .container p{
	font-size: 16px;
	line-height: 28px;
	color: #8a8a8a;
}
.nyab .container img{
	float: left;
	margin-right: 90px;
	margin-bottom: 45px;
}
.contact .container{
	max-width: 1590px;
	padding-top: 44px;
}
.contact .tit{
	font-size: 32px;
	color: #000000;
	line-height: 26px;
	margin-bottom: 60px;
}
.contact .tit span{
	display: block;
	font-size: 22px;
	line-height: 23px;
	color: #666666;
	margin-top: 14px;
}
.contact .con{
	display: flex;
}
.contact .con .xx{
	padding-top: 50px;
}
.contact .con p{
	padding-left: 48px;
	font-size: 20px;
	color: #000000;
	line-height: 30px;
	margin-bottom: 50px;
}
.contact .con p:last-child{
	margin-bottom: 0;
}
.contact .con .ewm{
	margin-top: -12px;
	margin-left: 35px;
}
.contact .con .ewm img:last-child{
	margin-left: 20px;
}
.prolist .container{
	max-width: 1590px;
	padding-top: 50px;
}
.prolist .t{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.prolist .t .tit{
	font-size: 32px;
	color: #000000;
	line-height: 26px;
}
.prolist .t span{
	display: block;
	font-size: 22px;
	color: #666666;
	margin-top: 14px;
}
.prolist .cat{
	display: flex;
}
.prolist .cat a{
	color: #000000;
	font-size: 16px;
	margin-right: 10px;
	display: block;
	line-height: 13px;
	transition: .5s;
	background-color: #ffffff;
	border: solid 1px #dddddd;
	padding: 20px 40px;
}
.prolist .cat a:hover,.prolist .cat a.active{
	background-color: #000000;
	color: #fff;
}
.prolist .cat a:last-child{
	margin-right: 0;
}
.prolist .list{
	margin: 0 -15px;
	margin-top: 60px;
}
.prolist .list a{
	position: relative;
	margin-bottom: 30px;
	padding: 0 15px;
	overflow: hidden;
}
.prolist .list .img{
	overflow: hidden;
	height: 358px;
}
.prolist .list img{
	height: 100%;
}
.prolist .list .tit{
	position: absolute;
	top: 0;
	bottom: -1000px;
	transition: .5s;
	right: 0;
	left: 0;
	margin: auto;
	display: flex;
	align-items: center;
	width: calc(100% - 30px);
	justify-content: center;
	flex-direction: column;
}
.prolist .list .tit p{
	font-size: 20px;
	line-height: 18px;
	padding-top: 16px;
	padding-left: 20px;
	padding-right: 20px;
	color: #fff;
	border-top: 1px solid #fff;
}
.prolist .list .tit span{
	display: block;
	font-size: 16px;
	line-height: 13px;
	color: #fff;
	padding-bottom: 16px;
	padding-left: 20px;
	border-bottom: 1px solid #fff;
	padding-right: 20px;
	margin-top: 10px;
}
.prolist .list a:hover .tit{
	bottom: 0;
	background: rgba(0,0,0,.7);
}
.newlist .container{
	max-width: 1590px;
	padding-top: 50px;
}
.newlist .t{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}
.newlist .t .tit{
	font-size: 32px;
	color: #000000;
	line-height: 26px;
}
.newsa{
	display: flex;
	align-items: center;
}
.newsa .con{
	margin-left: 30px;
}
.newsa .con p{
	font-size: 18px;
	color: #000000;
}
.newsa .con .date{
	font-size: 14px;
	margin-bottom: 30px;
	font-weight: bold;
	color: #414141;
}
.newsa .con p:last-child{
	font-size: 14px;
	color: #868686;
}
.page{
	display: flex;
	justify-content: center;
	margin-top: 70px;
}
.page a{
	padding: 12px 15px;
	text-align: center;
	border: solid 1px #dddddd;
	color: #868686;
	transition: .5s;
	font-size: 14px;
	line-height: 11px;
	margin-right: 10px;
}
.page a:last-child{
	margin-right: 0;
}
.page a:hover{
	color: #fff;
	background: #000;
}
.show .container{
	max-width: 1590px;
	padding-top: 45px;
}
.show .t{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}
.show .t .tit{
	font-size: 32px;
	color: #000000;
    line-height: 26px;
}
.show .t span{
	display: block;
	font-size: 22px;
	color: #666666;
	margin-top: 14px;
}
.show .t a{
	display: block;
	width: 150px;
	color: #8a8a8a;
	font-size: 14px;
	height: 44px;
	text-align: center;
	line-height: 44px;
	transition: .5s;
	border: solid 1px #cccccc;
}
.show .t a:hover{
	color: #fff;
	background: #000;
}
.header.fixed{
	background: rgba(0,0,0,.7);
}
@media screen and (min-width: 1200px){
	.container{
		padding: 0;
	}
}
@media screen and (max-width: 1590px){
	.container{
		padding: 0 15px;
	}
}
@media screen and (max-width: 1450px){
	.foot .r{
		margin-left: initial;
	}
	.foot .m{
		display: none;
	}
	.foot .container{
		justify-content: space-between;
	}
	.prolist .t{
		display: block;
	}
	.prolist .cat{
		justify-content: center;
		margin-top: 30px;
		flex-wrap: wrap;
	}
	.prolist .cat a{
		padding: 15px 20px;
		margin: 5px;
	}
}
@media screen and (max-width: 1300px){
.foot .r{
	margin-left: 30px;
}

}
@media screen and (max-width: 1100px){
	.about .container{
		display: block;
	}
	.about .container .img{
		text-align: center;
		margin-bottom: 20px;
	}
	.about .container .img img{
		max-width: 100%;
	}
	.about .tit{
		margin-left: 0;
	}
	.foot .l .from form{
		display: block;
	}
	.foot .l .from form>span:nth-child(2){
		margin-left: 0;
		margin-top: 40px;
	}
	.foot .l .from button{
		width: 100%;
	}
	.foot{
		height: auto;
		padding: 70px 0;
	}
}
@media screen and (max-width: 992px){
	.new .list{
		display: block;
	}
	.new .list a{
		width: 100%;
	}
	.prolist .list .tit{
		bottom: 0;
	}
	.header{
		padding: 0 10px;
	}
	.header #navToggle {
		height: 100%;
		padding: 9px 15px;
		margin-right: -15px;
		display: inline-block;
		float: right;
	}
	.header #navToggle span {
		position: relative;
		width: 25px;
		height: 1px;
		margin-top: 19px;
	}
	.header #navToggle span:before,
	.header #navToggle span:after {
		content: '';
		position: relative;
		width: 100%;
		height: 1px;
		left: 0;
	}
	.header #navToggle span,
	.header #navToggle span:before,
	.header #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #fff;
	}
	.header #navToggle span:before {
		top: 8px;
	}
	.header #navToggle span:after {
		bottom: 10px;
	}
	.header #navToggle.open span:before {
		top: 10px;
		-webkit-transform: translateY(-11px) rotate(-45deg);
		-moz-transform: translateY(-11px) rotate(-45deg);
		-ms-transform: translateY(-11px) rotate(-45deg);
		-o-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-11px) rotate(-45deg);
	}
	.header #navToggle.open span:after {
		bottom: 12px;
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-o-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}
	.header #navToggle.open span {
		background: none;
	}
	.header #navToggle.open span:before,
	.header #navToggle.open span:after {
		background: #4f4f4f;
	}
	
	.header .nav{
		display: none;
	}
	
	.banner img{
		height: 600px;
		object-fit: cover;
	}
	.nyab .container img{
		float: initial;
		margin-right: 0;
		margin-bottom: 0;
		max-width: 100%;
	}
	.nyab .container{
		padding-top: 30px;
	}
	.nyab .container .tit{
		font-size: 32px;
		margin: 30px 0;
	}
	.contact .con{
		display: block;
	}
	#map{
		width: 100%!important;
	}
}
@media screen and (max-width: 768px){
	.sjbanner{
		display: block;
		margin-top: 60px;
	}
	.about{
		margin-top: 30px;
	}
	.header{
		background: #000;
	}
	.sjbanner img{
		width: 100%;
	}
	.banner{
		display: none;
	}
	.pro .box{
		width: 50%;
	}
	.pro>div{
		flex-wrap: wrap;
	}
	.pro .t .box{
		width: 100%;
		/* height: 190px; */
	}
}
@media screen and (max-width: 640px){
	#map{
		height: 300px!important;
	}
	.contact .tit{
		margin-bottom: 30px;
		font-size: 24px;
	}
	.contact .con .xx{
		padding-top: 30px;
	}
	.contact .con .ewm{
		margin-left: 0;
	}
	.contact .con .ewm img{
		width: 45%;
	}
	.contact .con p{
		font-size: 16px;
		margin-bottom: 30px;
	}
	.contact .tit span{
		font-size: 16px;
	}
	.new .list a{
		padding: 20px 0;
	}
	.foot{
		margin-top: 30px;
		padding: 30px 0;
	}
	.page{
		margin-top: 30px;
	}
	.new h1{
		font-size: 32px;
		margin-bottom: 10px;
	}
	.pro,.about{
		margin-bottom: 30px;
	}
	.new .xian{
		margin-bottom: 10px;
	}
	.about p:nth-child(3){
		margin-bottom: 30px;
	}
	.new .list a .con .dec{
		display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
		    -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */
		    -webkit-line-clamp: 2; /* 2行，只有 webkit内核支持 */
		    word-break: break-all; /* 纯英文换行 */
		    overflow: hidden;
	}
	.new .list a .con p{
		line-height: 20px;
		margin-bottom: 10px;
		white-space: nowrap;
		    overflow: hidden;
		    text-overflow: ellipsis;
	}
	.new .list a img{
		width: 50%;
	}
	.new .list a .con{
		margin-left: 15px;
	}
	.new .list a .con .date,.new .list a .con .dec{
		margin-bottom: 10px;
	}
	.new .list a .con{
		width: calc(50% - 15px);
	}
	.about .t{
		height: auto;
		font-size: 32px;
	}
	.foot .container{
		display: block;
	}
	.foot .r{
		margin-left: 0;
	}
	.foot .l .from span{
		width: 100%;
	}
	.prolist .list .img{
		height: 200px;
	}
	.prolist .list a{
		padding: 0 5px;
	}
	.prolist .list a .tit{
		width: 100%;
		position: initial;
	}
	.prolist .list a .tit p{
		color: #333;
		font-size: 16px;
	}
	.prolist .list .tit span{
		color: #333;
		padding-bottom: 0;
		font-size: 14px;
	}
	.prolist .list{
		margin: 0 -5px;
		margin-top: 30px;
	}
	.header{
		height: 60px;
	}
	.logo img{
		height: 45px;
	}
	.show .t{
		display: block;
	}
	.show .t span,.prolist .t span{
		font-size: 18px;
		margin-bottom: 14px;
	}
	.show .t .tit,.prolist .t .tit{
		font-size: 24px;
	}
	.mySwiper2 .swiper-slide img:nth-child(2n-1){
		margin-right: 10px!important;
	}
	.mySwiper2 .swiper-slide img{
		width: calc(50% - 10px);
	}
	.position{
		padding-bottom: 14px;
	}
	.position .search{
		margin-top: 14px;
	}
	.position .container{
		display: block;
	}
	.pro .box .tit{
		left: 10px;
		bottom: 10px;
		width: 100%;
	}
	.pro .box .tit p{
		margin-bottom: 0;
		font-size: 18px;
	}
	.pro .box .tit span{
		font-size: 12px;
		width: 50%;
		max-width: 112px;
	}
	.about a{
		padding: 10px 20px;
		width: auto;
		height: auto;
		line-height: initial;
	}
}