* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

input,
button {
   outline: none;
   background: #fff;
   border: 1px solid transparent;
   -webkit-appearance:none; 
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  outline:none;
  color: #333;
  cursor: pointer;
  -webkit-transition:color 0.2s linear;
  transition:color 0.2s linear;
}

a:hover{
	color: #009d9e;
}

img{
	max-width: 100%;
	border:none;
	vertical-align:middle;
	max-height: 100%;
}

ul,li,ol {
  list-style: none;
}

html,
body,
header,
footer,
nav,
img,
div,
ul,
li,
ol,
p,
span,
a,
dl,
dt,
dd,
input,
textarea,
button,
input,
h1,
h2,
h3,
option,
select,
table,
tbody,
tr,
td,
label,
section,
article {
	padding: 0;
	margin: 0;
}

/* @font-face {
  font-family: "pingfang";
  src: url('../fonts/pingfang.ttf');
} */

@font-face {
  font-family: "SourceHanSansCN-Regular";
  src: url('../fonts/pingfang.ttf');
} 


html,body{
	width: 100%;
	font-family: "SourceHanSansCN-Regular","Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;
	font-size: 16px; 
	line-height: 24px; 
	background: #fff;
	color: #333;
}

.pc{
	display: block;
}

.mobile{
	display: none;
}

.container{
	width: 100%;
	overflow: hidden;
}

.container-box{
	padding-left: 150px !important;
	padding-right: 150px !important;
	margin: 0 auto;
	position: relative;
}




/*顶部导航*/
.header-box{
	position: fixed;
	background: none;
	z-index: 99999;
	background: #fff;
	box-shadow: 0 0 5px rgb(0 0 0 / 10%);
	width: 100%;
}
.header{
	padding: 15px 150px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.logo{
	width: 25%;
}
.logo a{
	display: block;
	height: 30px;
	margin-top: 8px;
}
.header-box .logo{
	display: block;
}

.nav-box{
	width: 45%;
	text-align: right;
	padding-right: 2%;
}
.nav-list{
	
}
.nav-list ul{
	height: 45px;
}
.nav-list ul li{
	display: inline-block;
	margin: 0 3.5%;
	position: relative;
}
.nav-list ul li.mobile{
	display: none;
}
.nav-list .n-a{
	display: block;
	line-height: 55px;
	position: relative;
	color: #333;
	font-size: 16px;
	transition: all .3s;
}
.nav-list ul li a.n-a.cur{
	color: #009d9e;
}
.nav-list ul li a.cur::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	width: 100%;
	height: 2px;
	background: #009d9e;
	transition: all .3s;
}
.nav-list .n-a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #009d9e;
    transition: all .3s;
}

.nav-list .n-a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #009d9e;
    transition: all .3s;
}

.nav-list .n-a:hover::before {
    width: 0%;
}

.nav-list .n-a:hover::after {
    width: 100%;
}
.s-list{
	position: absolute;
	top: 60px;
	left: -10px;
	text-align: left;
	width: 220px;
	background: #fff; 
	/* border: 1px solid #eee; */
	/* overflow: hidden; */
	box-shadow: 0 3px 6px -5px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
	display: none;
}
.s-list-box{
	background: #fff;
	width: 100%;
	margin-top: 5px;
	border-radius: 2px;
	padding: 8px 0;
	display: block;
}
.s-list a.s-a{
	display: block;
	line-height: 35px;
	padding: 5px 12px;
	padding-left: 22px;
	/* border-bottom: 1px solid #eee; */
	font-size: 14px;
	transition: all 0.5s;
}
.s-list a.s-a:hover{
	transform: translateX(2px);
}

.s-list-big{
	width: 100%;
	position: fixed;
	top: 75px;
	left: 0;
	display: none;
}
.s-list-bigbox{
	width: 100%;
	padding: 10px 140px;
}
.s-list-pro{
	width: 48%;
	padding: 10px 1% 5px 1%;
	display: inline-block;
	vertical-align: top;
}

/* .s-list-pro:nth-child(3){
	margin-right: 3.6%;
	float: right;
} */
.s-list-pro h3{
	font-weight: normal;
	font-size: 16px;
	margin-bottom: 10px;
	color: #009d9e;
	font-weight: bold;
}
.s-list-pro-son img{
	width: 70%;
	padding: 5%;
	border: 1px solid #eee;
}
.s-list-pro-son span{
	font-size: 13px;
	line-height: 1.5;
	display: block;
	margin-top: 8px;
	font-weight: bold;
}
.s-list-big a.s-p{
	display: inline-block;
	width: 24%;
	margin: 0 0.1%;
	text-align: center;
	vertical-align: top;
	margin-bottom: 10px;
}




.n-a:hover {
   color: #009d9e;
}

.popular-board{
	width: 30%;
	text-align: right;
	padding-top:10px;
}
.search-box{
	width: 45%;
	display: inline-block;
	position: relative;
}
.models-input{
	border: none;
	/* background-color: #eee; */
	width: 100%;
	height: 30px;
	line-height: 32px;
	font-family: "pingfang","Helvetica Neue",Helvetica,Arial,"Microsoft Yahei";
	text-indent: 12px;
	display: inline-block;
	/* border-radius: 15px; */
	background-image: url(../images/icon-search.png);
	background-size: 16px;
	background-position: 94% center;
	background-repeat: no-repeat;
	/* box-shadow: 0px 2px 2px #d3d3d3; */
	border-bottom: 1px solid #ccc;
}
.models-input::placeholder {
    color: #999; 
}
.search-box button{
	position: absolute;
	width: 28px;
	height: 30px;
	right: 0;
	top: 0;
	background: none;
	cursor: pointer;
}
.return-result{
	position: absolute;
	top: 30px;
	left: 0;
	background: #fff;
	/* border: 1px solid #ccc; */
	box-shadow: 0px 1px 3px #ddd;
	width: 100%;
	/* min-width: 180px; */
	height: 200px;
	overflow-y: scroll;
	padding: 8px 0;
	font-size: 12px;
	display: none;
}
.return-result::-webkit-scrollbar {
    width: 4px;
}
.return-result::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}
.return-result::-webkit-scrollbar-thumb {
    background: #f9f9f9;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}
.return-result a{
	display: block;
	padding: 1px 0 1px 12px;
	text-align: left;
}
.return-result a:hover{
	color: #009d9e;
	font-weight: bold;
}
.return-result{
	
}
.apply-entry{
	display: inline-block;
	width: 25%;
	margin-left: 5%;
	font-size: 14px;
	text-align: center;
	height: 32px;
	line-height: 32px;
	border-radius: 3px;
}
.apply-entry a{
	font-size: 13px;
	display: block;
	width: 100%;
	color: #fff;
	background: #009d9e;
	border-radius: 3px;
	transition: all 0.55s;
	/* box-shadow: 0px 3px 3px #ddd; */
}
.apply-entry a:hover{
	background: #00b7b8;
}

.site-language{
	display: inline-block;
	width: 18%;
	margin-left: 2%;
	font-size: 14px;
	text-align: center;
	height: 32px;
	line-height: 35px;
	color: #787878;
}
.site-language a{
	padding: 0 2%;
}
.site-language a.here{
	color: #009d9e;
}

.nav-box .site-language{
	display: none;
}


/*页面底部*/
.footer-box{
	background: #2B303E;
	padding: 65px 0 0 0;
}
.footer{
	color: #fff;
	font-size: 16px;
}
.footer a{
	color: rgba(255, 255, 255, 0.4);
	line-height: 2;
	transition: all .3s;
}
.footer a:hover{
	color: #fff;
}
.footer-contact a{
	color: #fff;
}
.footer-nav{
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-nav dl{
	width: 13%;
}
.footer-nav dl:first-child{
	width: 28%;
}
.footer-nav dl:last-child{
	width: 17%;
	margin-right: 2%;
}
.footer-nav dt{
	font-size: 18px;
	margin-bottom: 22px;
}
.footer-nav dd{
	line-height: 2.5;
}
.footer-nav a{
	
}
.footer-contact{
	
}
.footer-contact .footer-logo{
	max-width: 250px;
	margin-bottom: 25px;
}
.footer-contact p{
	line-height: 3.2;
}
.footer-contact p.footer-phone{
	/* font-size: 22px; */
	line-height: 2.2;
}
.footer-wechat{
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.footer-wechat-item{
	width: 44%;
	margin-left: 6%;
	text-align: center;
	font-size: 14px;
}
.footer-wechat-item:first-child{
	margin-left: 0;
}
.footer-wechat-item span{
	display: block;
	margin-top: 8px;
	
}
.footer-copyright{
	border-top: 1px solid rgb(255, 255, 255, 0.1);
	padding: 25px 0;
	margin-top: 45px;
	opacity: 0.5;
	font-size: 14px;
}
.footer-copyright a{
	color: #fff;
}
.footer-copyright .online{
	float: right;
}

/*内页主体*/
.page-container{
	padding-top: 75px;
	/* background: #f9f9f9; */
}
.page-banner{
	position: relative;
	z-index: 0;
	height: 350px;
	background: no-repeat center center;
	background-size: cover;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.page-banner::before{
	display: block;
	content: "";
	background: rgba(0, 0, 0, 0.2);
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.page-banner-text{
	width: 100%;
	color: #fff;
}
.page-banner-text h3{
	position: relative;
	font-size: 40px;
	line-height: 46px;
}
.page-banner-text span{
	font-size: 18px;
	padding-top: 12px;
	display: inline-block;
}
.page-location{
	color: #787878;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 20px;
	font-size: 14px;
	border-bottom: 1px solid #eee;
	display: flex;
	flex-wrap: wrap;
}
.page-location i{
	display: block;
	width: 15px;
	height: 15px;
	margin-top: 4px;
	background: url(../images/icon-home.png) center center no-repeat;
	background-size: contain;
	margin-right: 8px;
}
.page-location a{
	color: #787878;
	padding: 0 5px;
}
.page-location a:hover{
	color: #333;
}
.page-location span{
	/* color: #009d9e; */
	padding: 0 5px;
}
.page-menu{
	text-align: center;
	padding: 25px 0 15px 0;
}
.page-menu a{
	display: inline-block;
	padding: 0;
	line-height: 38px;
	text-align: center;
	font-size: 16px;
	margin: 0 25px;
}
.page-menu a.on{
	color: #009d9e;
	border-bottom: 2px solid #009d9e;
	/* font-weight: bold; */
}
.page-main{
	padding-top: 35px;
}
.page-main-padd{
	padding: 0 0 75px 0;
}


/*分页按钮*/
.pages {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 50px;
}

.pages ul {
    display: inline-block;
    height: auto;
    vertical-align: top;
}

.pages ul li {
    font-size: 13px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 3px;
    border: 1px solid #eee;
    vertical-align: top;
    cursor: pointer;
	color: #666;
	background: #f9f9f9;
	display: inline-block;
}

.pages ul li:first-child, .pages ul li:last-child{
	width: 64px;
}

.pages ul li a {
    color: #666;
    display: block;
    width: 100%;
    height: 100%;
}

.pages ul li img {
    width: 15px;
    height: 15px;
}

.pages ul li.active {
    background-color: #00b7b8;
    color: #ffffff;
    border: 1px solid transparent;
}

.pages ul li.disabled {
    vertical-align: bottom;
    letter-spacing: .01rem;
    text-align: center;
}


.page-bar{
	position: fixed;
	z-index: 999;
	right: 15px;
	bottom: 130px;
	font-size: 14px;
	text-align: center;
}
.bar-item{
	background: #fff;
	border: 1px solid #eee;
	border-top: none;
	width: 45px;
	position: relative;
}
.bar-item:first-child{
	border-top: 1px solid #eee;
}
.bar-item:last-child{
	margin-top: 20px;
	border-top: 1px solid #eee;
}
.bar-item a{
	display: block;
	padding: 8px 0 5px 0;
	position: relative;
}
.bar-item:first-child a{
	background: #009d9e;
}
.bar-item:first-child a b{
	color: #fff;
}
.bar-item a span{
	position: absolute;
	display: block;
	left: 18px;
	top: 8px;
	color: #ff0;
}
.bar-item a img{
	display: block;
	max-width: 48%;
	margin: 0 auto;
}
.bar-item a b{
	font-weight: normal;
	font-size: 13px;
	margin-top: 3px;
	display: block;
	color: #333;
}
.bar-item a:hover b{
	color: #00b7b8;
}

.bar-item .hidden-show{
	position: absolute;
	display: none;
	width: 160px;
	right: 130%;
	top: 0px;
	padding: 18px 15px;
	border: 1px solid #eee;
	border-radius: 3px;
	background: #fff;
	text-align: left;
}
.bar-item:nth-child(2) .hidden-show{
	width: 250px;
}
.hidden-show span{
	display: block;
}
.hidden-show b{
	font-weight: normal;
	display: block;
	color: #009d9e;
	font-size: 16px;
	margin-bottom: 5px;
}
.hidden-show img{
	max-width: 100%;
	margin: 0 auto;
	display: block;
	margin-bottom: 5px;
}
.hidden-show span.t-center{
	text-align: center;
}
.bar-item .hidden-show:after{
	content: '';
	position: absolute;
	top: 10%;
	right: -14px;
	width: 20px;
	height: 20px;
	background: url(../images/k-icon-y.png) center center no-repeat;
	background-size: cover;
}

/* .page-bar{
	position: fixed;
	z-index: 999;
	right: 30px;
	bottom: 150px;
	width: 50px;
}
.page-bar a{
	display: block;
	border-radius: 5px;
	background: #CCC;
	width: 50px;
	height: 50px;
	text-align: center;
	position: relative;
	margin-bottom: 6px;
	transition: all 0.20s linear;
}
.page-bar a:hover{
	transform: translateX(-3px);
}
.page-bar a i{
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	left: 10px;
	top: 10px;
}
.page-bar a span{
	position: absolute;
	top: 2px;
	left: 22px;
	color: #f00;
}
.page-bar a.cart-bar{
	
}
.page-bar a.cart-bar i{
	background: url(../images/icon-cart.png) center center no-repeat;
	background-size: contain;
}
.page-bar a.qq{
	
}
.page-bar a.qq i{
	background: url(../images/icon-qq.png) center center no-repeat;
	background-size: contain;
}
.page-bar a.back-top{
	background: #009d9e;
}
.page-bar a.back-top i{
	background: url(../images/icon-returntop.png) center center no-repeat;
	background-size: contain;
} */



@media screen and (min-width: 901px) and (max-width: 1720px) {
	
	.header {
	    padding: 15px 50px;
	}
	
	.container-box{
		padding-left: 62px !important;
		padding-right: 62px !important;
		margin: 0 auto;
		position: relative;
	}
	
	.s-list-bigbox{
		width: 100%;
		padding: 10px 40px;
	}
	
}




@media screen and (max-width:900px) {
	
	html,body{
		width: 100%;
		font-family: "SourceHanSansCN-Regular","Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;
		font-size: 14px; 
		line-height: 22px; 
		background: #fff;
		color: #333;
	}
	
	.pc{
		display: none;
	}
	
	.mobile{
		display: block;
	}
	
	.container{
		width: 100%;
		overflow: hidden;
	}
		
	.container-box{
		width: 92%;
		max-width: 100%;
		padding-left: 0px !important;
		padding-right: 0px !important;
		margin: 0 auto;
		position: relative;
	}
	
	
	/*顶部导航*/
	.header-box{
		position: fixed;
		background: none;
		z-index: 99999;
		background: #fff;
		box-shadow: 0 0 8px #eee;
	}
	.header{
		padding: 8px 10px 12px 10px;
	}
	.logo{
		width: 50%;
	}
	.logo a{
		display: block;
		height: 30px;
		margin-top: 8px;
	}
	.header-box .logo{
		display: block;
		padding-top: 3px;
	}
	
	.nav-box{
		width: 100%;
		text-align: left;
		padding-right: 0%;
		position: fixed;
		left: 0;
		top: 58px;
		background: #f6f6f6;
		padding-bottom: 30px;
		display: none;
	}
	.nav-list{
		padding: 10px 3%;
	}
	.nav-list ul{
		height: auto;
	}
	.nav-list ul li{
		display: block;
		margin: 0;
		position: relative;
	}
	.nav-list ul li.mobile{
		display: block;
	}
	.nav-list .n-a{
		display: block;
		line-height: 50px;
		position: relative;
		color: #333;
		font-size: 14px;
		transition: all .3s;
		border-bottom: 1px solid #ddd;
	}
	.nav-list ul li a.n-a.cur{
		color: #333;
	}
	.nav-list ul li a.cur::after{
		content: '';
		position: absolute;
		left: 50%;
		bottom: -5px;
		transform: translateX(-50%);
		width: 100%;
		height: 0px;
		background: #009d9e;
		transition: all .3s;
	}
	.nav-list .n-a::before {
	    content: '';
	    position: absolute;
	    left: 50%;
	    bottom: 0;
	    transform: translateX(-50%);
	    width: 0;
	    height: 0px;
	    background: #009d9e;
	    transition: all .3s;
	}
	
	.nav-list .n-a::after {
	    content: '';
	    position: absolute;
	    left: 50%;
	    bottom: -5px;
	    transform: translateX(-50%);
	    width: 0;
	    height: 2px;
	    background: #009d9e;
	    transition: all .3s;
	}
	
	.nav-list .n-a:hover::before {
	    width: 0%;
	}
	
	.nav-list .n-a:hover::after {
	    width: 0%;
	}
	.s-list{
		position: relative;
		top: 0;
		left: 0;
		text-align: left;
		width: 90%;
		background: none;
		border: none;
		margin: 0 auto;
		overflow: hidden;
		box-shadow: none;
		display: none;
	}
	.s-list-box{
		background: none;
		width: 100%;
		margin-top: 0;
		border-radius: 2px;
		padding: 3px 0;
		display: block;
	}
	.s-list a.s-a{
		display: block;
		padding-left: 0px;
		line-height: 32px;
		padding: 5px 0px;
		border-bottom: 1px solid #e5e5e5;
		font-size: 14px;
		transition: all 0.5s;
		color: #787878;
	}
	.s-list a.s-a:hover{
		transform: translateX(2px);
	}
	
	.s-list-big{
		width: 90%;
		position: relative;
		top: 0;
		left: 0;
		display: none;
	}
	.s-list-bigbox{
		width: 100%;
		padding: 3px 0;
	}
	.s-list-pro{
		width: 100%;
		padding: 5px 0;
		display: inline-block;
		vertical-align: top;
	}
	.s-list-pro:nth-child(3){
		margin-right: none;
	}
	.s-list-pro h3{
		font-weight: normal;
		font-size: 14px;
		margin-bottom: 0px;
		color: #009d9e;
	}
	.s-list-pro-son img{
		display: none;
	}
	.s-list-pro-son span{
		font-size: 13px;
		line-height: 1.4;
		display: block;
		margin-top: 3px;
		color: #787878;
		font-weight: normal;
	}
	.s-list-big a.s-p{
		display: inline-block;
		width: 100%;
		margin: 0;
		text-align: left;
		vertical-align: top;
		display: block;
		line-height: 32px;
		padding: 5px 0px;
		border-bottom: 1px solid #e5e5e5;
	}
	
	
	
	
	
	.n-a:hover {
	    color: #009d9e;
	}
	
	.nav-phone{
		text-align: center;
		margin-top: 25px;
		font-size: 15px;
	}
	
	.popular-board{
		width: 35%;
		text-align: right;
		padding-top:8px;
	}
	.search-box{
		width: 100%;
		display: inline-block;
		position: relative;
	}
	.models-input{
		border: none;
		/* background-color: #eee; */
		width: 100%;
		height: 30px;
		line-height: 35px;
		font-family: "SourceHanSansCN-Regular","Helvetica Neue",Helvetica,Arial,"Microsoft Yahei";
		text-indent: 12px;
		display: inline-block;
		/* border-radius: 3px; */
		background-image: url(../images/icon-search.png);
		background-size: 14px;
		background-position: 94% center;
		background-repeat: no-repeat;
		border-bottom: 1px solid #ccc;
	}
	.return-result{
		position: absolute;
		top: 30px;
		left: 0;
		background: #fff;
		border: 1px solid #ccc;
		width: 100%;
		/* min-width: 180px; */
		height: 200px;
		overflow-y: scroll;
		padding: 8px 0;
		font-size: 12px;
		display: none;
	}
	.return-result dl{
		padding: 0 10px;
	}
	.return-result dl dt{
		font-weight: bold;
		color: #333;
	}
	.return-result a{
		display: block;
		padding: 1px 0 1px 15px;
	}
	.return-result a:hover{
		background: #009d9e;
		color: #fff;
	}
	.return-result{
		
	}
	.apply-entry{
		display: none;
		width: 35%;
		margin-left: 5%;
		font-size: 14px;
		text-align: center;
		height: 32px;
		line-height: 32px;
		border-radius: 3px;
	}
	.apply-entry a{
		font-size: 13px;
		display: block;
		width: 100%;
		color: #fff;
		background: #009d9e;
		border-radius: 3px;
		transition: all 0.55s;
	}
	.apply-entry a:hover{
		background: #00b7b8;
	}
	
	.popular-board .site-language{
		display: none;
	}
	
	.nav-box .site-language{
		display: block;
	}
	
	/*页面底部*/
	.footer-box{
		background: #2B303E;
		padding: 20px 0 0 0;
	}
	.footer{
		color: #fff;
		font-size: 12px;
	}
	.footer a{
		color: rgba(255, 255, 255, 0.4);
		line-height: 2;
		transition: all .3s;
	}
	.footer a:hover{
		color: #fff;
	}
	.footer-contact a{
		color: #fff;
	}
	.footer-nav{
		
	}
	.footer-nav dl{
		width: 100%;
		display: none;
	}
	.footer-nav dl:first-child{
		width: 95%;
		display: block;
		margin: 0 auto;
	}
	.footer-nav dt{
		font-size: 14px;
		margin-bottom: 5px;
	}
	.footer-nav dd{
		line-height: 1.5;
	}
	.footer-nav a{
		
	}
	.footer-contact{
		
	}
	.footer-contact .footer-logo{
		max-width: 200px;
		margin-bottom: 8px;
	}
	.footer-contact p{
		line-height: 2;
		padding-left: 3px;
	}
	.footer-copyright{
		border-top: 1px solid rgb(255, 255, 255, 0.1);
		padding: 12px 0;
		margin: 0 auto;
		margin-top: 15px;
		opacity: 0.5;
		width: 95%;
		line-height: 1.5;
		font-size: 12px;
	}
	
	
	/*内页主体*/
	.page-container{
		padding-top: 61px;
		/* background: #f9f9f9; */
	}
	.page-banner{
		position: relative;
		z-index: 0;
		height: 150px;
		background: no-repeat center center;
		background-size: cover;
		overflow: hidden;
		display: flex;
		align-items: center;
	}
	.page-banner::before{
		display: block;
		content: "";
		background: rgba(0, 0, 0, 0.2);
		position: absolute;
		z-index: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
	.page-banner-text{
		width: 92%;
		color: #fff;
	}
	.page-banner-text h3{
		position: relative;
		font-size: 24px;
		line-height: 28px;
	}
	.page-banner-text span{
		font-size: 12px;
		padding-top: 2px;
		display: inline-block;
	}
	.page-location{
		color: #787878;
		padding-top: 5px;
		padding-bottom: 5px;
		margin-bottom: 20px;
		font-size: 12px;
		border-bottom: 1px solid #eee;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.page-location i{
		display: block;
		width: 15px;
		height: 15px;
		margin-top: 3px;
		background: url(../images/icon-home.png) center center no-repeat;
		background-size: contain;
		margin-right: 3px;
	}
	.page-location a{
		color: #787878;
		padding: 0 3px;
	}
	.page-location a:hover{
		color: #333;
	}
	.page-location span{
		color: #009d9e;
		padding: 0 3px;
	}
	.page-menu{
		text-align: center;
		padding: 10px 0 5px 0;
	}
	.page-menu a{
		display: inline-block;
		padding: 0;
		line-height: 28px;
		text-align: center;
		font-size: 14px;
		margin: 0 8px;
	}
	.page-menu a.on{
		color: #009d9e;
		border-bottom: 2px solid #009d9e;
		/* font-weight: bold; */
	}
	.page-main{
		padding-top: 25px;
	}
	.page-main-padd{
		padding: 0 0 45px 0;
	}
	
	
	.menu-btn{
		width: 3%;
		min-width: 26px;
		margin-right: 0%;
		height: 26px;
		z-index: 10;
		cursor: pointer;
		margin-top: 8px;
		margin-left: 3%;
	}
	.point{
		position: relative;
		display: inline-block;
		width: 100%;
		height: 22px;
		margin-top: 4px;
	}
	.point span.bar-line, .point span.bar-line::before, .point span.bar-line::after{
		display: inline-block;
		width: 100%;
		height: 1px;
		background-color: #666;
	}
	.point span.bar-line::before, .point span.bar-line::after{
		content: '';
		position: absolute;
		right: 0;
		transition: all .3s ease-out 0s;
		box-sizing: border-box;
	}
	.point span.bar-line::before{
		top: 8px;
	}
	.point span.bar-line::after{
		top: -8px;
	}
	.point span.bar-line{
		position: absolute;
		top: 10px;
		right: 0;
		transition: all .2s ease-out 0s;
		box-sizing: border-box;
	}
	.point.active span.bar-line{
		background: transparent;
	}
	.point.active span.bar-line::before{
		top: 0;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.point.active span.bar-line::after{
		top: 0;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	/*分页按钮*/
	.pages {
	    width: 100%;
	    text-align: center;
	    padding-top: 20px;
	    padding-bottom: 30px;
	}
	
	.pages ul {
	    display: inline-block;
	    height: auto;
	    vertical-align: top;
	}
	
	.pages ul li {
	    font-size: 13px;
	    width: 24px;
	    height: 24px;
	    line-height: 24px;
	    margin: 0 5px;
	    border: 1px solid #eee;
	    vertical-align: top;
	    cursor: pointer;
		color: #666;
		background: #f9f9f9;
	}
	
	.pages ul li a {
	    color: #666;
	    display: block;
	    width: 100%;
	    height: 100%;
	}
	
	.pages ul li img {
	    width: 15px;
	    height: 15px;
	}
	
	.pages ul li.active {
	    background-color: #00b7b8;
	    color: #ffffff;
	    border: 1px solid transparent;
	}
	
	.pages ul li.disabled {
	    vertical-align: bottom;
	    letter-spacing: .01rem;
	    text-align: center;
	}
	
	
	
}
















