* { margin: 0; padding: 0; }
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
ul, ol { list-style: none; }
p{ margin: 0; padding: 0; }
input[type="submit"], input[type="reset"], input[type="button"], input[type="text"], input[type="password"], textarea, button { -webkit-appearance: none; }
input:focus { outline: none; }
input::-moz-focus-inner { border: 0; }
a { text-decoration: none; outline: none; }
a:hover { text-decoration: none; outline: none; }
a:visited { text-decoration: none; outline: none; }
img { display: block; }
::selection { color: #fff; background: #ffcc00; }
.fl { float: left !important; }
.fr { float: right !important; }
.oh { overflow: hidden; }

.con-a div{
	font-size: 16px;
    line-height: 34px;
    font-family: "Microsoft YaHei", 微软雅黑, SimSun, 宋体;
    color: #595959;
}
.con-a div img{
	width: 100%;
	height: auto;
}

header{
	/*height:80px;*/
	display: block;
	background-color: #fafbfa;
}
header .logo{
	display: block;
	padding-top: 5px;
	height: 80px; 
}
header .line{
	width: 100%;
	height: 30px;
	background: #ea8710 !important;
	display: block;
}
header .line .top-right{
	float: left;
	color: #fff;
	line-height: 30px;
}
header .line .top-right img{
	float: left;
}
header .line .top-left{
	float: right;
	color: #fff;
	line-height: 30px;
}
#meun-btn{
	width: 30px;
	height: 30px;
	position: relative;
	margin-top: 40px;
	display: none;
}
#meun-btn span{
	position: absolute;
	width: 30px;
	height: 2px;
	background: #555555;
	top: 50%;
	margin-top: -1px;
	transition: 0.3s all;
}
#meun-btn span::after{
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background: #555555;
	position: absolute;
	top: 8px;
	transition: 0.3s all;
}
#meun-btn span::before{
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background: #555555;
	position: absolute;
	top: -8px;
	transition: 0.3s all;
}
.meun-btn-dy span{
	width: 0 !important;
}
.meun-btn-dy span::after{
	transform: rotate(-45deg);
	transform-origin: center;
	top: 50% !important;
}
.meun-btn-dy span::before{
	transform: rotate(45deg);
	transform-origin: center;
	top: 50% !important;
}

#menu{
	height: 80px;
}
#menu ul{
	display: flex;
	
}
/* 一级导航 */
#menu a.first-nav{
	display: block;
	height: 80px;
	padding: 0px 18px;
	margin: 0 10px;
	line-height: 80px;
	font-size: 16px;
	color: #000000;
	text-align: center;
	position: relative;
}
#menu ul li{
	position: relative;
}
/* 二级导航 */
#menu ul li div.second-nav{
	position: absolute;
	top: 80px;
	left: 0px;
	width: 100%;
	background-color: #f0f0f0;
	padding: 5px 0px;
	display: none;
	z-index: 99;
}
#menu ul li div.second-nav a{
	display: block;
	color: #666666;
	padding: 8px 5px;
	text-align: center;
	font-size: 15px;
	transition: 0.5s;
}
#menu ul li div.second-nav a:hover{
	background: #0085d0;
	color: #ffffff;
}
#menu ul li:hover .second-nav{
	display: block;
}
/* 一级导航默认 */
#menu ul li .first-nav::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #0085d0;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 1s all;
}
/* 一级导航hover */
#menu ul li:hover .first-nav::after{
	width: 100%;
}
/* 当屏幕小于1200px */
@media (max-width: 1200px){
	#menu{
		display: none;
	}
	#meun-btn{
		display: block;
	}
}
#md-menu{
	transform: translateX(-370px);
	transition: 1s all;
}
.md-menu-dy{
	transform: translateX(0) !important;
}
#md-menu{
	width: 350px;
	height: 100%;
	background: #ffffff;
	position: fixed;
	top:0px;
	left:0px;
	z-index: 999;
	box-shadow: 0 5px 10px rgb(0 0 0 / 40%);
	padding-top: 50px;
}
#md-menu ul li p{
	font-size: 16px;
	color: #505050;
	border-bottom: 1px solid #f2f2f2;
	line-height: 50px;
	padding-left: 40px;
	position: relative;
}
#md-menu ul li p:after{
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border:1px solid #505050;
	left: 16px;
	top:21px;
	transition: 0.2s all;
}
#md-menu ul li p.pt::after{
	background-color: #505050;
}
#md-menu .second-nav{
	display: none;
}
#md-menu .second-nav a{
	display: block;
	line-height: 50px;
	padding-left: 50px;
	color:#505050;
	border-bottom: 1px solid #f2f2f2;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
/* 当屏幕小于992px */
@media (max-width: 992px){
	body{
		padding-top: 80px;
	}
	header{
		height: 80px;
		position: fixed;
		width: 100%;
		top: 0px;
		left: 0px;
		z-index: 98;
	}
	header .logo{
		padding-top: 10px;
		height: 60px; 
	}
	header .logo img{
		width: 100%;
		height: 60px;
	}
	header .line{
		display: none;
	}
	#meun-btn{
		margin-top: 25px;
	}
	#md-menu{
		padding-top: 30px;
	}
}
@media (max-width: 768px){
	#md-menu{
		width: 230px;
		transform: translateX(-250px);
	}
}

/* banner */
.swiper-wrapper { height: auto !important; }
.swiper-slide { height: auto !important; }
.swiper-slide-active { height: auto !important; }
.swiper-banner { width: 100%; --swiper-navigation-color: #ffffff; --swiper-navigation-size: 28px; }
.swiper-banner .swiper-slide { width: 100%; }
.swiper-banner .swiper-slide img { display: block; width: 100%; -o-object-fit: cover; object-fit: cover; }
.swiper-banner .swiper-pagination-bullet { width: 30px; height: 5px; border-radius: 0; background: #ffffff; opacity: 1; margin: 0px 6px !important; }
.swiper-banner .swiper-pagination-bullet-active { background: #1c56a8; }
.swiper-banner .swiper-button-next { width: 50px; height: 50px; border-radius: 50%; right: 20px; background-color: rgba(0, 0, 0, 0.5); }
.swiper-banner .swiper-button-prev { width: 50px; height: 50px; border-radius: 50%; left: 20px; background-color: rgba(0, 0, 0, 0.5); }
.swiper-banner .banner-bullet { display: inline-block; width: 14px; height: 14px; background-color: #ffffff; margin: 0px 6px; border-radius: 50%; opacity: 0.8; cursor: pointer; }
.swiper-banner .banner-bullet-active { background-color: #ffcc00; opacity: 1; }

@media (max-width: 992px){
	.swiper-banner .swiper-slide img {
		height: 40vw;
	}
	.swiper-banner .swiper-button-next{
		display: none;
	}
	.swiper-banner .swiper-button-prev{
		display: none;
	}
}
@media (max-width: 768px){
	.swiper-banner .swiper-slide img {
		height: 50vw;
	}
}

/* 区块头部 */
#block-title{
	text-align: center;
	padding: 30px 0px 20px 0px;
}
#block-title .t1{
	font-size: 28px;
	font-weight: bold;
	color: #e97c1a;
	margin-bottom: 10px;
}
#block-title .t2{
	font-size: 18px;
	color: #605a4e;
}

/* 关于我们 */
#index-about{
	padding-bottom: 30px;
}
#index-about .b-left video{
	width: 100%;
}
#index-about .b-right p{
	font-size: 16px;
	line-height: 2.3;
	text-indent: 2em;
	text-align: justify;
}
@media (max-width: 768px){
	#index-about{
		padding-bottom: 0px;
	}
}


/* 业务范围 */
#index-product{
	padding-bottom: 30px;
}
#index-product .item{
	position: relative;
	height: 300px;
	overflow: hidden;
	margin-bottom: 20px;
}
#index-product .item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#index-product .item .infor{
	width: 100%;
	height: 300px;
	position: absolute;
	top: 80%;
	left: 0px;
	background-color: rgba(0,0,0,0.4);
	color: #ffffff;
	text-align: center;
	transition: 0.5s all;
} 
#index-product .item:hover .infor{
	top: 0px;
}
#index-product .item .infor .title{
	text-align: center;
	font-size: 18px;
	line-height: 50px;
	padding-top: 10px;
	font-size: 18px;
}
#index-product .item .infor .text{
	padding: 20px 50px;
	font-size: 14px;
	line-height: 25px;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical; 
	-webkit-line-clamp: 6; 
	overflow: hidden; 
	height: 150px;
	margin-bottom: 20px;
	text-align: left;
}
#index-product .item .infor a{
	display: inline-block;
	margin: auto;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 8px;
	padding: 5px 8px;
	z-index: 9999;
	position:absolute;
	left: 25%; right: 25%;
}
#index-product .item .infor a:hover{
	background: #ffffff;
	color: #0085D0;
	z-index: 9999;
}

#index-product .item .infor:hover:after{
    width: 94%;
    height: 94%;
    border: 1px solid #fff;
    position: absolute;
    bottom: 3%;
    left: 3%;
    transition: all .6s;
    content: ""; 
    display: block;
}


@media (max-width: 768px){
	#index-product{
		padding-bottom: 0px;
	}
	#index-product .item{
		height: 200px;
	}
	#index-product .item .infor{
		height: 200px;
	} 
	#index-product .item .infor .title {
	    line-height: 40px;
	    padding-top: 0px;
	    font-size: 16px;
	}
	#index-product .item .infor .text {
	    padding: 0px 10px;
	    font-size: 14px;
	    line-height: 20px;
	    -webkit-line-clamp: 5;
	    height: 100px;
		overflow: hidden;
	    margin-bottom: 10px;
	}
}




/* 润德风采 */
#index-elegant{
}
#index-elegant .item{
	display: block;
	padding-bottom: 80%;
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: transparent;
	-webkit-transform: rotate(0deg) scale(1) translate(0%, 0%);
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    transition: All 0.1s ease;
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
}
#index-elegant .item:hover{
    -ms-transform: rotate(0deg) scale(1) translate(0%, 0%);
	box-shadow: rgb(0 0 0 / 20%) 0px 17px 50px 0px;
    -webkit-transform: translate3d(0px, -2px, 0px);
    transform: translate3d(0px, -2px, 0px);
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    transition: All 0.3s ease;
    z-index: 10;
}
#index-elegant .item img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	object-fit: cover;
}

#index-elegant .item img:hover{
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: rotate(0deg) scale(1.2) translate(0%, 0%);
    transform: rotate(0deg) scale(1.2) translate(0%, 0%);
    transition: All 10s ease;
}

/* 新闻咨询 */
#index-news{
	padding-bottom: 50px;
}
#index-news .n-item{
	display: block;
	background-color: #f2f2f2;
}
#index-news .s-block{
	margin-bottom: 20px;
}
#index-news .n-item .pic{
	position: relative;
	padding-bottom: 60%;
}
#index-news .n-item .pic img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#index-news .n-item .infor{
	padding-bottom: 15px;
}
#index-news .n-item .infor .title{
	text-align: center;
	color:#605a4e;
	font-size: 18px;
	ttext-align: center;
	line-height: 50px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	padding: 0px 15px;
}
#index-news .n-item .infor .text{
	color:#605a4e;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical; 
	-webkit-line-clamp: 4; 
	overflow: hidden;
	line-height: 25px;
	font-size: 16px;
	max-height: 100px;
	padding: 0px 15px;
	text-align: justify;
}
#index-news .n-item:hover .title{
	color: #0085D0;
}
#index-news .n-list{
	background-color: #f2f2f2;
	padding: 10px 0px;
}
#index-news .n-list a{
	display: block;
	padding: 7px 15px;
}
#index-news .n-list a .title{
	color: #605a4e;
	font-size: 18px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
#index-news .n-list a .time{
	color: #bab9b6;
}
#index-news .n-list a:hover{
	background-color: #0085D0;
	color: #ffffff;
}
#index-news .n-list a:hover .title{
	color: #ffffff;
}
#index-news .n-list a:hover .time{
	color: #ffffff;
}
@media (max-width: 768px){
	#index-news{
		padding-bottom: 0px;
	}
}

/* 底部 */
footer{
	background: #ea8710;
	padding-top: 80px;
}
footer .con{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.f-menu ul{
	display: flex;
}
.f-menu ul li{
	margin-right: 150px;
}
.f-menu a.first-nav{
	display: block;
	line-height: 30px;
	font-size: 16px;
	color: #000000;
	text-align: center;
}
.f-menu ul li a.first-nav{
	color:#ffffff;
	font-weight: 600;
}
.f-menu ul li div.second-nav{
	width: 100%;
	padding: 5px 0px;
}
.f-menu ul li div.second-nav a{
	display: block;
	color: #ffffff;
	padding: 8px 5px;
	text-align: center;
	font-size: 15px;
	transition: 0.5s;
}

footer .qr img{
	width: 160px;
	height: 160px;
	object-fit: cover;
}
footer .bottom p{
	color: #ffffff;
	line-height: 50px;
	text-align: center;
}
@media (max-width: 992px){
	.f-menu ul li{
		margin-right: 20px;
	}
}
@media (max-width: 768px){
	footer .con{
		flex-wrap: wrap;
		margin-bottom: 0px;
	}
	.f-menu{
		width: 100%;
	}
	.f-menu ul{
		width: 100%;
		flex-wrap:wrap;
	}
	.f-menu ul li{
		width:50%;
		margin-right: 0px;
		
	}
	.qr{
		width:100%;
		text-align: center;
	}
	footer .qr img{
		display: initial;
		width: 120px;
		height: 120px;
	}
	.f-menu a.first-nav{
		line-height: 20px;
	}
	.f-menu ul li div.second-nav{
		padding: 3px 0px;
	}
	.f-menu ul li div.second-nav a{
		padding: 5px 0px;
		font-size: 14px;
	}
	footer{
		padding-top: 30px;
	}
}

/* 内页 */
.page-banner img{
	width: 100%;
	object-fit: cover;
}
@media (max-width: 768px){
	.page-banner img{
		height: 35vw;
		width: auto;
	}
}
.page-tab{
	border-bottom: 1px solid #f2f2f2;
	padding: 20px 0px;
}
.page-tab .cur-lable{
	line-height: 35px;
	font-weight: bold;
	font-size: 22px;
	color: #0085D0;
}
.page-tab .tab-list a{
	line-height: 35px;
	display: inline-block;
	padding: 0px 20px;
	font-size: 16px;
	color: #000000;
}
.page-tab .tab-list a.active{
	color:#ffffff;
	background: #0085D0;
}
@media (max-width: 768px){
	.page-tab{
		padding: 10px 0px;
	}
	.cur-lable{
		margin-bottom: 10px;
	}
	.page-tab .tab-list a{
		line-height: 30px;
		padding: 0px 10px;
	}

}

.about-qyjj-page{
	padding-top: 30px;
}
.about-qyjj-page .con{
	padding-bottom: 50px;
}
.about-qyzz-page{
	padding-top: 30px;
}
.about-qyzz-page .list{
	margin-bottom: 30px;
}
.about-qyzz-page .list .item{
	padding: 8px 0px 8px 35px;
	color: #595959;
	font-size: 16px;
	background-image: url(../images/icon1.png);
	background-position: left center;
	background-repeat: no-repeat;
}
.about-qyzz-page .pic .item{
	margin-bottom: 20px;
	padding-top: 10px;
	background-color: #f5f5f5;
}
.about-qyzz-page .pic .item .box{
	display: block;
    position: relative;
    padding-bottom: 60%;
}
.about-qyzz-page .pic .item img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	top: 0;
}
.about-qyzz-page .pic .title{
	text-align: center;
	font-size: 14px;
	line-height: 50px;
}
.about-qyzz-page .list-2{
	margin-bottom: 30px;
}
.about-qyzz-page .list-2 p{
	padding: 8px 0px 8px 35px;
	color: #595959;
	font-size: 16px;
	background-image: url(../images/icon2.png);
	background-position: left center;
	background-repeat: no-repeat;
}

.dwo-control { display: none; }
.dwo-control span { position: fixed; z-index: 9999; cursor: pointer; }
.dwo-close { right: 30px; top: 30px; width: 54px; height: 54px; background: url(../images/dwo.png) 0 bottom no-repeat; }
.dwo-prev { left: 30px; top: 45%; width: 47px; height: 93px; background: url(../images/dwo.png) 0 0 no-repeat; }
.dwo-next { right: 30px; top: 45%; width: 47px; height: 93px; background: url(../images/dwo.png) 0 -98px no-repeat; }

.about-qyzz-page .pic .title{
	text-align: center;
	font-size: 14px;
	line-height: 50px;
}
.about-qyzz-page .list-2{
	margin-bottom: 30px;
}
.about-qyzz-page .list-2 p{
	padding: 8px 0px 8px 35px;
	color: #595959;
	font-size: 16px;
	background-image: url(../images/icon2.png);
	background-position: left center;
	background-repeat: no-repeat;
}

.news-list-page{
	padding-top: 30px;
	background-color: #f5f5f5;
}
.news-list-page .con a{
	display: flex;
	background-color: #ffffff;
	padding: 10px;
	margin-bottom: 20px;
	justify-content: space-between;
}
.news-list-page .con a .pic{
	padding-bottom: 15%;
	width: 270px;
	position: relative;
}
.news-list-page .con a .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
}
.news-list-page .con a .infor {
	width: calc(100% - 300px);
}
.news-list-page .con a .infor .title{
	color: #000000;
	font-size: 18px;
	margin-bottom: 10px;
	transition: 0.2s all;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-list-page .con a .infor .title:hover{
	color: #0085D0;
}
.news-list-page .con a .infor .time{
	color: #5e5e5e;
	font-size: 14px;
	margin-bottom: 10px;
}
.news-list-page .con a .infor .text{
	color: #8c8c8c;
	font-size: 15px;
	line-height: 25px;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-box-orient: vertical; 
	-webkit-line-clamp: 3; 
	overflow: hidden; 
	max-height: 75px;
}
@media (max-width: 768px){
	.news-list-page .con a .pic{
		padding-bottom: 10%;
		width: 130px;
	}
	.news-list-page .con a .infor {
		width: calc(100% - 140px);
	}
	.news-list-page .con a .infor .title{
		font-size: 16px;
		margin-bottom: 5px;
	}
	.news-list-page .con a .infor .time{
		margin-bottom: 5px;
	}
	.news-list-page .con a .infor .text{
		font-size: 14px;
		line-height: 20px;
		max-height: 60px;
	}
}



/* 详情页 */
.news-infor{
	padding: 30px 0;
}
.news-infor .con .title{
	font-size: 18px;
	text-align: center;
	padding-bottom:10px;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 5px;
}
.news-infor .con .time{
	text-align: right;
	margin-bottom: 20px;
	color: #595959;
}
.news-infor .main{
	padding-bottom: 30px;
}
.news-infor .page-btn{
	padding-top: 20px;
	border-top: 1px solid #d1d1d1;
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news-infor .page-btn a{
	display: block;
	color: #000000;
	font-size: 16px;
}



/* 详情页 */
.news-infor{
	padding: 30px 0;
}
.news-infor .con .n-title{
	font-size: 18px;
	text-align: center;
	padding-bottom:10px;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: 5px;
}
.news-infor .con .time{
	text-align: right;
	margin-bottom: 20px;
	color: #595959;
}
.news-infor .main{
	padding-bottom: 30px;
}
.news-infor .page-btn{
	padding: 20px 0px;
	border-top: 1px solid #d1d1d1;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: 1px solid #d1d1d1;
}
.news-infor .page-btn a{
	display: block;
	color: #000000;
	font-size: 16px;
}

.news-infor .n-news{
	padding: 30px 0px;
}
.news-infor .n-news .n-t{
	text-align: center;
}
.news-infor .n-news .n-t .ch{
	color: #004a8f;
	font-size: 30px;
}
.news-infor .n-news .n-t .en{
	color: #cccccc;
	font-size: 16px;
	margin-bottom: 20px;
}
.news-infor .n-news .n-i{
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}
.news-infor .n-news .n-i:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #000000;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-100%);
	transition: 0.3s all;
}
.news-infor .n-news .n-i::before{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #f3f3f3;
	z-index: -2;
	position: absolute;
	top: 0;
	left: 0;
}
.news-infor .n-news .n-i:hover:after{
	transform: translateX(0);
}
.news-infor .n-news .n-i:hover .newTimeBox .year{
	color: #999;
}
.news-infor .n-news .n-i:hover .newTimeBox .mon{
	color: #999;
}
.news-infor .n-news .n-i:hover .content p.title{
	color: #999 !important;
}
.news-infor .n-news .n-i{
	display: flex;
	padding: 25px;
	justify-content: space-between;
}
.news-infor .n-news .n-i .newTimeBox{
	width: 80px;
	margin-right: 25px;
}
.news-infor .n-news .n-i .newTimeBox .year{
	    color: #222;
	    font-size: 16px;
	    text-align: right;
	    display: block;
	    margin-top: 5px;
}
.news-infor .n-news .n-i .newTimeBox .mon{
	color: #222222;
	font-size: 24px;
	display: block;
	font-style: normal;
	text-align: right;
	font-family: "Arial";
	font-weight: bold;
	margin-bottom: 10px;
}
.news-infor .n-news .n-i .newTimeBox .dotBlack img{
	width: 60px;
	height: 60px;
}
.news-infor .n-news .n-i .content {
	width: calc(100% - 115px);
}
.news-infor .n-news .n-i .content p.title{
	font-size: 16px;
	color: #595959;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: rgb(89, 89, 89);
}
.news-infor .n-news .n-i .content .text{
	color: #999;
	font-size: 14px;
	line-height: 26px;
	margin-top: 20px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: normal !important;
	-webkit-line-clamp: 2px;
	-webkit-box-orient: vertical;
	height: 52px;
	margin-bottom: 20px;
}


.product-list{
	background-color: #f5f5f5;
	padding-top: 30px;
}
.product-list .con a{
	display: block;
	background-color: #ffffff;
	margin-bottom: 20px;
}
.product-list .con .col-lg-3{
	padding: 7px;
}
.product-list .con  a .pic{
	padding-bottom: 70%;
	position: relative;
	overflow: hidden;
}
.product-list .con a .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all .5s ease;
}
.product-list .con a .pic img:hover{
	transform: translate(-50%, -50%) scale(1.2);
}
.product-list .con a:hover{
	font-weight: bold; font-size: 17px;
}
.product-list .con a .title{
	font-size: 15px;
	text-align: center;
	line-height:56px;
	color: #434242;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0px 10px;
}

.form-block{
	background-color: rgba(245, 245, 245, 1);
	padding: 30px 30px 10px 30px;
	margin-top: 30px;
}
.form-block .b-t{
	text-align: center;
	margin-bottom: 30px;
}
.form-block .b-t .ch{
	font-size: 26px;
	color:#333333;
}
.form-block .b-t .en{
	font-size: 20px;
	color:#cccccc;
}
.form-block .b-t .line{
	display: inline-block;
	width: 50px;
	height: 2px;
	background-color: #333333;
}
.form-block .text{
	width: 100%;
	height: 150px;
	border: 0;
	margin-bottom: 20px;
}
.form-block input{
	width: 100%;
	height: 50px;
	border: 0;
	margin-bottom: 20px;
	padding: 0px 10px;
}
.form-block .submit{
	background-color: #333333;
	color:#ffffff;
}



.product-infor{
	padding: 30px 0;
}
.product-infor .con .title{
	font-size: 18px;
	text-align: center;
	padding-bottom:10px;
}
.product-infor .con .pic{
	margin-bottom: 30px;
}
.product-infor .con .pic img{
	margin: auto;
	max-width: 100%;
}
.product-infor .t1{
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 20px;
}
.product-infor .t1 span{
	color: #0085D0;
	line-height: 30px;
	display: inline-block;
	border-bottom: 2px solid #0085D0;
	font-size: 16px;
}
.product-infor .main{
	padding-bottom: 30px;
}
.product-infor .page-btn{
	padding-top: 20px;
	border-top: 1px solid #d1d1d1;
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.product-infor .page-btn a{
	display: block;
	color: #000000;
	font-size: 16px;
}
.t-pro .t{
	font-size: 28px;
	color: #000000;
	margin-top: 30px;
	margin-bottom: 20px;
	text-align: center;
}
.t-pro a{
	display: block;
	margin-bottom: 10px;
}
.t-pro a .pic-b{
	position: relative;
	padding-bottom: 60%;
	overflow: hidden;
}
.t-pro a .pic-b img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: 0.5s all;
	
}
.t-pro a p{
	font-size: 16px;
	color: #333333;
	line-height: 40px;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.t-pro a:hover img{
	transform: scale(1.1);
}
.pic-w { width: 100%; max-width: 500px; margin: auto; }
.gallery-top { width: 100%; height: ; margin-bottom: 10px; }
.gallery-top .swiper-slide { position: relative; padding-bottom: 100%;}
.gallery-top .swiper-slide img { position: absolute; width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; }
.gallery-thumbs { --swiper-navigation-color: #ffffff; --swiper-navigation-size: 20px; }
.gallery-thumbs .swiper-slide img { width: 100%; height: 100px; -o-object-fit: cover; object-fit: cover; }
/* .gallery-thumbs .swiper-slide-thumb-active { border: 2px solid #ab001a; } */
.gallery-thumbs .swiper-button-next { width: 30px; height: 60px; right: 0px; background-color: rgba(0, 0, 0, 0.8); margin-top: -30px; }
.gallery-thumbs .swiper-button-prev { width: 30px; height: 60px; left: 0px; background-color: rgba(0, 0, 0, 0.8); margin-top: -30px; }

.contact-page{
	background-color: rgba(245, 245, 245, 1);
}
.contact-page .con{
	padding-top: 30px;
	padding-bottom: 30px;
}
.contact-page .con img{
	max-width: 100%;
}

.contact-page .con .box{
	background-color: #ffffff;
	text-align: center;
	padding: 20px;
	font-size: 16px;
	margin-bottom:20px ;
}
.contact-page .con .box p{
	word-wrap:break-word; 
	word-break:break-all; 
	overflow: hidden;
}
.contact-page .con .box img{
	margin: auto auto 10px auto;
}
.contact-page .con .box .p1{
	margin-bottom: 10px;
}
.contact-page .map_box{
	padding-top: 30px;
}
#dituContent{
	height: 500px;
}
@media (max-width: 992px){
	#dituContent{
		height: 300px;
	}
}
@media (max-width: 768px){
	#dituContent{
		height: 200px;
	}
}

.hr-page{
	background-color:rgba(245, 245, 245, 1);
	padding: 30px 0px;
}
.hr-page .con a{
	display: block;
	background-color: #ffffff;
	margin-bottom: 15px;
}
.hr-page .con div{
	padding: 15px;
}
.hr-page .con div p:after {
  content: '';
  display: block;
  clear: both;
}
.hr-page .con a .gw{
	display: inline-block;
	padding-right: 30px;
	background-image: url(../images/icon-gw.png);
	background-repeat: no-repeat;
	background-position: right center;  
	font-size: 20px;
	color: #333333;
	margin-bottom: 10px;
}
.hr-page .con a .dy{
	font-size: 18px;
	color:red;
}
.hr-page .con a .yq{
	font-size: 14px;
	color:#adadad;
}
.hr-page .con .add{
	font-size: 14px;
	color: #adadad;
}

.hr-infor{
	background-color:rgba(245, 245, 245, 1);
	padding: 30px 0px;
}
.hr-infor .con .bt{
	background-color: #ffffff;
	padding: 15px;
}
.hr-infor .con p:after {
  content: '';
  display: block;
  clear: both;
}
.hr-infor .con .time{
	display: inline-block;
	font-size: 16px;
	background-image: url(../images/icon-time.png);
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 25px;
	line-height: 25px;
	margin-bottom: 10px;
}
.hr-infor .con .gw{
	display: inline-block;
	padding-right: 30px;
	background-image: url(../images/icon-gw.png);
	background-repeat: no-repeat;
	background-position: right center;  
	font-size: 20px;
	color: #333333;
	margin-bottom: 10px;
}
.hr-infor .con .dy{
	font-size: 18px;
	color:red;
}
.hr-infor .con .yq{
	font-size: 14px;
	color:#adadad;
}
.hr-infor .con .add{
	font-size: 14px;
	color: #adadad;
}
.hr-infor .bt{
	margin-bottom: 30px;
}
.hr-infor .lb{
	display: block;
	font-size: 18px;
	color: #333333;
	margin-bottom: 30px;
	position: relative;
}
.hr-infor .lb:after{
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	background: #0085D0;
	position: absolute;
	top: 40px;
}

.inisde-tab{padding:50px 0 10px 0;text-align:center}
.inisde-tab a{line-height:30px;margin-right:3px; padding:0 10px;color:#999898;font-family:arial;display:inline-block;border:solid 1px #dcdcdc}
.inisde-tab a:hover,.inisde-tab .page-num-current{color:#fff;border-color:#ef801a;background:#ef801a}@media (max-width:1200px){.inisde-tab{padding:30px 0}}



/* 侧边导航 */
.product-sidebar .bt{
	color: #ffffff;
	line-height: 50px;
	background-color: #ef801a;
	text-align: center;
	font-size: 20px;
	margin-bottom: 3px;
}

 .accordion {
 	width: 100%;
 	background: #FFF;
 	-webkit-border-radius: 4px;
 	-moz-border-radius: 4px;
 	border-radius: 4px;
	padding-bottom: 10px;
 }

.accordion .link {
	cursor: pointer;
	display: block;
	padding: 15px 15px 15px 42px;
	color: #4D4D4D;
	font-size: 14px;
	font-weight: 700;
	border-bottom: 1px solid #CCC;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li.open .link {
	border-bottom: 1;
}
.accordion li span {
	position: absolute;
	top: 16px;
	left: 12px;
	font-size: 18px;
	color: #595959;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li span {
	right: 12px;
	left: auto;
	font-size: 16px;
}

.accordion li.open .link {
	color: #004A8F;
}

.accordion li.open span {
	color: #0085D0;
}
.accordion li.open span.reg {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
 .submenu {
 	display: none;
 	background: rgba(239, 248, 248,0.6);
 	font-size: 14px;
 }

 .submenu li {
    border-bottom: 1px solid #e8e8e8;
 }

 .submenu a {
 	display: block;
 	text-decoration: none;
 	color: #333333;
 	padding: 12px;
 	padding-left: 42px;
 	-webkit-transition: all 0.25s ease;
 	-o-transition: all 0.25s ease;
 	transition: all 0.25s ease;
 }

 .submenu a:hover {
 	background: #0085D0;
 	color: #FFF;
 }

 .accordion .link a.first-link{
 padding: 15px 30px 15px 15px;
 color: #333333;
}