@charset "utf-8";
html,body{
	background: #fff;
	margin: 0 auto;
	color: #000;
	font-size: 14px;
	line-height: 1.8;
}
/* *{box-sizing: border-box;} */
a,.slow{
	transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
}
.slowa{
	transition:all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
}

.hidd1{overflow: hidden;display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 1; -webkit-box-orient: vertical;}
.hidd2{overflow: hidden;display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.hidd3{overflow: hidden;display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.hidd4{overflow: hidden;display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 4; -webkit-box-orient: vertical;}
.hidden{
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;          /* for IE */
	-o-text-overflow: ellipsis;      /* for Opera */
	-icab-text-overflow: ellipsis;   /* for iCab */
	-khtml-text-overflow: ellipsis;  /* for Konqueror Safari */
	-moz-text-overflow: ellipsis;    /* for Firefox,mozilla */
	-webkit-text-overflow: ellipsis; /* for Safari,Swift*/
}
.hidd{
	overflow: hidden;
}
/* loading 样式 */
.loaderbg {
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	position: fixed;
	left: 0;
	top: 0;
}
.loader {
	width: 2.5em;
	height: 2.5em;
	transform: rotate(165deg);
	z-index: 9999;
	position: fixed;
	top: calc(50% - 1.25em);
	left: calc(50% - 1.25em);
}
.loader:before, .loader:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 0.5em;
	height: 0.5em;
	border-radius: 0.25em;
	transform: translate(-50%, -50%);
}
.loader:before {
	animation: before 2s infinite;
}
.loader:after {
	animation: after 2s infinite;
}

@keyframes before {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}
@keyframes after {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}



.com_pad{padding: 0 3.5%;}
.pad_08{padding: 0 8%;}
.float_l{float: left;}
.float_r{float: right;}
.t_cen{text-align: center;}
.f_bold{font-weight: bold;}
.f_up{text-transform: uppercase;}
.c_fff{color: #fff;}
.c_000{color: #000;}
img,span,font,a{display: inline-block;vertical-align: top;}
.f_14{font-size: 14px;}
.f_15{font-size: 15px;}
.f_16{font-size: 16px;}
.f_18{font-size: 18px;}
.f_20{font-size: 20px;}
.f_22{font-size: 22px;}
.f_24{font-size: 24px;}
.f_26{font-size: 26px;}
.f_28{font-size: 28px;}
.f_30{font-size: 30px;}

.w_100{width: 100%;display: inline-block;vertical-align: top;}
.w_200{max-width: 200px; display: block;}
.flex{display: flex;flex-flow: wrap;}
.flex_align{align-items: center;}
.flex_between{justify-content: space-between;}

.imgs{
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-bottom: 75%;
}
.imgs img{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	transition: all 0.8s ease 0s;
	-o-transition: all 0.8s ease 0s;
	-moz-transition: all 0.8s ease 0s;
	-webkit-transition: all 0.8s ease 0s;
}
.sllist li:hover .imgs img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/*头部*/
#head{
	position: fixed;
	z-index: 1000;
	box-sizing: border-box;
	margin: 0 auto;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	
}
#head.onn{
	background: #fff;
}



#head .head_m {
	display: block;
	height: 52px;
	position: relative;
	background: #fff;
	box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
}
#head .head_m .logo {
	left: 3.5%;
	top: 10px;
	position: absolute;
}

.com_desc2 img{
	max-width: 100%;
}


/*底部*/
#footer{
	background: #333;
	overflow: hidden;
	color: #bebebe;
	padding: 3%;
	text-align: center;
	position: fixed;
	left: 0;
	right:0;
	bottom:0;
}
#footer a{
	color: #ddd;
}



	
	#head .head_m{
		display: block;
		height: 62px;
		position: relative;
		
	}
	#head .head_m .logo{
		left: 3%;
		top: 6px;
		position: absolute;
	}
	#head .head_m .logo img{
		height: 50px;
	}
	#head .head_m .head_ico{
		position: absolute;
		right: 3%;
		top: 11px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 99;
	}
	#head .head_m .head_ico span{
		position: absolute;
		top: 19px;
		left: 8px;
		width: 28px;
		height: 2px;
		background: #333;
		-webkit-transition: all 300ms;
		transition: all 300ms;
	}
	#head .head_m .head_ico span:after, #head .head_m .head_ico span:before {
		content: '\20';
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background:  #333;
		-webkit-transition: all 300ms;
		transition: all 300ms;
	}
	#head .head_m .head_ico span:before{
		top: -8px;
	}
	#head .head_m .head_ico span:after{
		bottom: -8px;
	}
	.body-nav #head .head_m .head_ico span {
		background:none;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.body-nav #head .head_m .head_ico span:before{
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		left: 0;
		top: 0;
	}
	.body-nav #head .head_m .head_ico span:after{
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		left: 0;
		bottom: 0;
	}
	
	#head .head_m .page-navigation{
		display: none;
		z-index:9999;
		top:46px;
		overflow-y: auto;
		position: fixed;
		max-height: calc(100% - 46px);
		left: 0px;
		width: 100%;
		background:#fff;
	}
	#head .head_m .nav_pad{
		padding: 30px 10%;	
	}
	#head .head_m .nav_pad li{
		position: relative;
		-webkit-animation-duration: 0.5s;
		animation-duration: 0.5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation-name: returnToNormal;
		animation-name: returnToNormal;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		border-bottom: 1px solid #dedede;
	}
	#head .head_m .page-navigation a{
		line-height:40px;
		padding: 5px 15px;
		font-size:18px;
		color:#333;
		display: block;
		text-align: center;
	}
	#head .head_m .page-navigation .sub{
		display: none;
		padding: 5px 10%;
	}
	#head .head_m .page-navigation .sub a{
		line-height: 35px;
		font-size:15px;
		color: #666;
	}
	.body-nav #head .page-navigation{
		height: 100%;
	}
	
	#foot .foot_a{
		padding: 30px 0 0;
		font-size: 13px;
	}
	#foot .foot_b p{
		font-size: 13px;
	}
	#foot .foot_a .h3{
		font-size: 18px;
	}



@-webkit-keyframes returnToNormal {
  0%{
	opacity: 0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
  }
  100% {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
  }
}
@keyframes returnToNormal {
  0%{
	opacity: 0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
  }
  100% {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
  }
}

.items_text{
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	text-align: center;
}


    .content{
        padding-left:2%;
        padding-right:2%;
    }
    .chtitle{
        line-height:60px;
        font-size:32px;
        font-weight:bold;
        color:#464646;
        text-align:center;
		padding-top: 30px;
		border-bottom: 1px solid #ddd;
    }
    .entitle{
        line-height:24px;
        font-size:16px;
        
        color:#666;
        text-align:center;
    }

    .w_100{
        display:block;
        width:100%;
    }

    .equip_wrap{
        display:flex;
        
		flex-wrap: wrap;
		padding-top: 30px;
		padding-bottom: 30px;
        
    }


	.location_innerx{
		height: 60px;
		
	
		display: flex;
		padding-left: 42px;
		background: url("../images/home2.png") no-repeat 10px center  #efefef;
		font-size: 16px;
		color: #464646;
		align-items: center;
	
	}

	.location_innerx a{
		font-size: 16px;
		color: #464646;
	}
	

    .img_items{
        width:49%;
        margin-right:2%;
		margin-bottom: 2%;
    }

    .img_items:nth-of-type(2n){
        margin-right:0;
    }

	.img_items2{
		width: 32%;
		margin-right:2%;
		margin-bottom: 2%;
		box-sizing: border-box;
		border:1px solid #ddd;
	}

	.com_desc,.com_desc2{
		line-height: 30px;
		font-size: 16px;
		color: #464646;
		padding-top: 30px;
		padding-bottom: 50px;
	}

	.img_items2:nth-of-type(3n){
        margin-right:0;
    }

	

	.img_items3{
		width: 32%;
		margin-right:2%;
		margin-bottom: 2%;
		box-sizing: border-box;
		border:1px solid #ddd;
	}

	.img_items3:nth-of-type(3n){
        margin-right:0;
    }

#pageud {
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    overflow: hidden;
    clear: both;
}

#pageupdn {
    background-color: #dddddd;
    padding-left: 8px;
    padding-right: 8px;
    height: 32px;
    line-height: 32px;
    margin-right: 8px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
}

#pageupdn a {
    color: #ff8604;
}

#pageupdn a:hover {
    color: #333333;
}

#pageupdnA {
    background-color: #2097d5;
    padding-left: 8px;
    padding-right: 8px;
    height: 32px;
    line-height: 32px;
    margin-right: 8px;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
}

#pageupdn_wz {
    padding: 12px;
    margin: 0 auto;
    overflow: hidden;
    font-family: Arial;
    display: inline-block;
}
.view_more_wrap{
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}


.view_title{
    font-size: 18px;
    line-height: 32px;
    text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	font-weight: bold;
	color: #464646;
    border-bottom:1px solid #ddd;

}
.view_contents{
    padding-top: 40px;
    padding-bottom: 40px;
	line-height: 26px;
	font-size: 14px;
	color: #464646;

}
.view_contents img{
    max-width: 1200px;
    
}
.view_sep_title{
	height: 50px;
	border-bottom:1px solid #ddd;
}

.view_sep_title span{
	width: 120px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size:16px;
	background: #2097d5;
}
.relet_list{
	padding-top: 30px;
	padding-bottom: 30px;
}


.inner-banner{
	height: 240px;
}

.contact_ewm{
    width: 172px;
    border:1px solid #cfcfcf;

}

.contact_txt{
    height: 46px;
    width: 174px;
    display: flex;
    font-size: 18px;
    color: #464646;
    align-items: center;
    justify-content: center;
}

.contact_left_title{
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #1268b1;
    font-weight: bold;
}

.contact_left_desc{
    line-height: 36px;
    font-size: 18px;
    color: #464646;

}

.padding-box{padding-top: 60%;}

.return_to_list{
	width: 60%;
	border-radius: 300px;
	height: 40px;
	display: flex;
	margin:30px auto;
	background:#f00;
	color: #fff;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.return_to_list a{
	font-size: 16px;
	color: #fff;
}