@charset "utf-8";
/* CSS Document */
body {
	font-size: 14px;
	line-height: 2.3em;
	color: #333;
	font-family: 'Microsoft YaHei', 'HelveticaNeue', 'HelveticaNeue-Light';
	background: #fff;
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td {
	margin: 0;
	padding: 0;
}
input, textarea, select {
	font-family: '黑体-简', 'HelveticaNeue', 'HelveticaNeue-Light';
}
ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
li {
	list-style: none;
}
img {
	font-size: 0px;
	vertical-align: bottom;
	line-height: 0px;
	border: 0px;
}
a, a:visited {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #ff5001;
	text-decoration: none;
}
.c {
	clear: both;
}
/*----------------------------------------------end main-----------------------------------------*/

/*----------------------------------------------begin 导航条-----------------------------------------*/
/*主导航位置*/
.drawer-main {
	position: fixed;
	top: 0;
	width: 35%;
	height: 100%;
	overflow: hidden;
}
/*主导航位置-左侧*/
.drawer-left .drawer-main {
	left: -35%;
	-webkit-transition: left .4s cubic-bezier(0.19, 1, .22, 1);
	-o-transition: left .4s cubic-bezier(0.19, 1, .22, 1);
	transition: left .4s cubic-bezier(0.19, 1, .22, 1)
}
.drawer-left.drawer-open .drawer-main {
	left: 0
}
/*主导航位置-右侧*/
.drawer-right .drawer-main {
	right: -35%;
	-webkit-transition: right .4s cubic-bezier(0.19, 1, .22, 1);
	-o-transition: right .4s cubic-bezier(0.19, 1, .22, 1);
	transition: right .4s cubic-bezier(0.19, 1, .22, 1)
}
.drawer-right.drawer-open .drawer-main {
	right: 0
}
.drawer-overlay {
	position: relative;
}
.drawer-left .drawer-overlay, .drawer-left .drawer-hamberger {
	left: 0;
	-webkit-transition: left .4s cubic-bezier(0.19, 1, .22, 1);
	-o-transition: left .4s cubic-bezier(0.19, 1, .22, 1);
	transition: left .4s cubic-bezier(0.19, 1, .22, 1);
}
.drawer-left.drawer-open .drawer-overlay, .drawer-left.drawer-open .drawer-hamberger {
	left: 35%;
}
.drawer-right .drawer-overlay, .drawer-right .drawer-hamberger {
	right: 0;
	-webkit-transition: right .4s cubic-bezier(0.19, 1, .22, 1);
	-o-transition: right .4s cubic-bezier(0.19, 1, .22, 1);
	transition: right .4s cubic-bezier(0.19, 1, .22, 1);
}
.drawer-right.drawer-open .drawer-overlay, .drawer-right.drawer-open .drawer-hamberger {
	right: 35%;
}
/*右侧移过去后，左侧透明背景-开始*/
.drawer-overlay-upper {
	position: fixed;
	top: 0;
	z-index: 1100;
	display: none;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}
.drawer-left.drawer-open .drawer-overlay-upper {
	right: 0;
}
.drawer-right.drawer-open .drawer-overlay-upper {
	left: 0;
}
/*右侧移过去后，左侧透明背景-开始*/
/*导航-开始*/
.drawer-default {
	background-color: #333;
	padding-top: 20px;
	-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,.5);
	box-shadow: inset 0 0 0 rgba(0,0,0,.5)
}
.drawer-default+.drawer-overlay {
	background-color: #fff;
}
.drawer-default .drawer-nav-title {
	display: block;
	font-size: 16px;
}
.drawer-default .drawer-nav-title a {
	display: block;
	width: 100%;
	color: #fff;
	padding: 0 0 10px 10%;
	text-decoration: none;
}
.drawer-default .drawer-nav-title a:hover {
	color: #fff;
	text-decoration: none;
}
/*导航-结束*/
/*三条杠-开始*/
.drawer-hamberger {
	position: absolute;
	z-index: 1000;
	display: block;
	width: 35px;
	height: auto;
	padding-top: 7%;
	border: 0;
}
.drawer-hamberger span {
}
.drawer-hamberger span, .drawer-hamberger span:before, .drawer-hamberger span:after {
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	cursor: pointer;
	content: '';
	background-color: #333;
	-webkit-transition: all .4s cubic-bezier(0.19, 1, .22, 1);
	-o-transition: all .4s cubic-bezier(0.19, 1, .22, 1);
	transition: all .4s cubic-bezier(0.19, 1, .22, 1);
}
.drawer-hamberger span:before {
	top: 7px;
}
.drawer-hamberger span:after {
	bottom: 7px;
}
.drawer-open .drawer-hamberger span {
	background-color: transparent;
}
.drawer-open .drawer-hamberger span:before, .drawer-open .drawer-hamberger span:after {
	top: 0;
}
.drawer-open .drawer-hamberger span:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.drawer-open .drawer-hamberger span:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.drawer-hamberger:hover {
	cursor: pointer;
}
/*三条杠-结束*/
@media (min-width:767px) {
.drawer-responsive.drawer-left .drawer-toggle, .drawer-responsive.drawer-right .drawer-toggle {
	display: none;
	visibility: hidden;
}
.drawer-responsive.drawer-left .drawer-main {
	left: 0;
}
.drawer-responsive.drawer-right .drawer-main {
	right: 0;
}
}
@media (min-width:768px) {
.drawer-responsive {
	background-color: #434343;
}
.drawer-responsive.drawer-left .drawer-main, .drawer-responsive.drawer-right .drawer-main {
	position: absolute;
	width: 150px!important;
	height: auto!important;
	overflow: visible!important;
}
.drawer-responsive.drawer-left .drawer-main {
	float: left;
}
.drawer-responsive.drawer-left .drawer-overlay {
	margin-left: 150px;
}
.drawer-responsive.drawer-right .drawer-main {
	float: right;
}
.drawer-responsive.drawer-right .drawer-overlay {
	margin-right: 150px;
}
}
@media (min-width:1200px) {
.drawer-responsive.drawer-left .drawer-main, .drawer-responsive.drawer-right .drawer-main {
	width: 280px!important;
}
.drawer-responsive.drawer-left .drawer-overlay {
	margin-left: 280px;
}
.drawer-responsive.drawer-right .drawer-overlay {
	margin-right: 280px;
}
}
/*----------------------------------------------end 导航条-----------------------------------------*/

/*logo*/
.logo {
	clear: both;
	overflow: hidden;
	background: #fff;
}
.logo img {
	width: 65%;
	height: auto;
	padding: 5px 0 5px 4%;
}

.xuanchuan {
	background-color: #f1f1f1;
	color: #333;
	text-align: center;
	font-size: 20px;
	line-height: 30px;
	padding: 10px 0;
}
/*banner*/
.banner {
	clear: both;
	overflow: hidden;
	width: 92%;
	margin: 10px auto 0 auto;
}
.banner .bannertitle{
	position: relative;
    text-align: center;
	background-image:url(/mobile/images/index_07.jpg);
	
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 10px;
}


.banner .bannertitle a{
	height: auto;
	color: #fff;
}

.banner .bannertitle h2{
	height: auto;
	color: #fff;
	line-height: 53px;
}

.banner .bannertitle p{
    font-size: 16px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 2px;
}

.banner .bannertitle span{
    font-size: 14px;
	color: #fff;
}

.banner img {
	width: 100%;
	height: auto;
}
/*打电话*/
.phone {
	clear: both;
	overflow: hidden;
	width: 82%;
	padding: 3% 5% 6% 5%;
	margin: 0 auto;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
}
.phone p{
	font-size: 18px;
}
.phone a {
    background: #0077ED;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    border-radius: 15px;
    text-align: center;
    outline: none;
    border: none;
    text-decoration: none;
    line-height: 34px;
    padding: 0px 25px;
    display: inline-block;
}
.phonebtn{
	margin-top: 10px;
}
.phonebtn img{
	padding-right: 5px;
    width: 25px;
	vertical-align: middle;
}
/*地址*/
.add {
	width: 100%;
	margin: 4% auto;
	background-color: #f1f1f1;
	padding-bottom: 10px;
}
.add h3 {
	color: #000;
	font-weight: bold;
	font-size: 18px;
	line-height: 38px;
	padding: 10px 0 10px 20px;
}
.add h4 {
	color: #000;
    font-weight: normal;
    font-size: 15px;
    line-height: 38px;
    padding: 10px 0 10px 20px;
    border-top: 1px dashed #cdcdcd;
    margin-top: 60px;
}

.add dl {
	word-wrap: break-word;
	color:#666;
}
.our{
	background-color:#ffffff;
	margin: 0 auto;
	margin-bottom: 10px;
    width: 88%;
    border-radius: 15px;
    padding: 10px 10px 10px 10px;
}
.our a {
	color: #0070c9;
    text-decoration: underline;
    font-weight: bold;
}
.our h2{
	color: #000;
    font-size: 15px;
    padding-bottom: 10px;
    font-weight: bold;
	line-height: 20px;
}
.our p{
	font-size: 14px;
    line-height: 20px;
    padding-bottom: 5px;
    color: #666;
}
.our p span{
	font-size: 13px;
	font-weight: 600;
    color: #000;
    margin-right: 10px;
}
.our pre{
	font-size: 14px;
    line-height: 20px;
    padding-bottom: 5px;
    color: #666;
	white-space: pre-line;
	font-family: 'Microsoft YaHei', 'HelveticaNeue', 'HelveticaNeue-Light';
}
.our pre span{
	font-size: 13px;
	font-weight: 600;
    color: #000;
    margin-right: 10px;
}
.our img{
	font-size: 0px;
    vertical-align: bottom;
    line-height: 0px;
    padding-left: 5px;
}
.btn-index01{
	background: #688000;
    font-size: 14px;
    color: #fff!important;
	font-weight: normal!important;
	text-decoration: none!important;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    outline: none;
    border: none;
    line-height: 20px;
    padding: 0px 10px;
    display: inline-block;
	margin-right: 20px;
}
.btn-index01 img{
	width: 15px;
	padding: 0 5px 3px 0;
    vertical-align: middle;
}
.btn-index02{
	background: #0077ED;
    font-size: 14px;
    color: #fff!important;
	font-weight: normal!important;
	text-decoration: none!important;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    outline: none;
    border: none;
    line-height: 20px;
    padding: 0px 10px;
    display: inline-block;
}
.btn-index02 img{
	width: 15px;
	padding: 0 5px 3px 0;
    vertical-align: middle;
}
.btn-list01{
	background: #0077ED;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    border-radius: 15px;
    text-align: center;
    outline: none;
    border: none;
    text-decoration: none;
    line-height: 34px;
    padding: 0px 25px;
    display: inline-block;
	
}

.they{
	/*background-color:#ffffff;*/
	margin: 0 auto;
	margin-bottom: 10px;
    width: 88%;
    /*border-radius: 15px;*/
    padding: 10px 10px 10px 10px;
}
.they a {
	color: #333;
    text-decoration: underline;
    font-weight: normal;
}
.they h2{
	color: #000;
    font-size: 15px;
    padding-bottom: 10px;
    font-weight: normal;
	line-height: 20px;
}
.they p{
	font-size: 14px;
    line-height: 20px;
    padding-bottom: 5px;
    color: #666;
}
.they p span{
	font-size: 13px;
	font-weight: normal;
    color: #000;
    margin-right: 10px;
}
.they pre{
	font-size: 14px;
    line-height: 20px;
    padding-bottom: 5px;
    color: #666;
	white-space: pre-line;
	font-family: 'Microsoft YaHei', 'HelveticaNeue', 'HelveticaNeue-Light';
}
.they pre span{
	font-size: 13px;
	font-weight: 600;
    color: #000;
    margin-right: 10px;
}
.they img{
	font-size: 0px;
    vertical-align: bottom;
    line-height: 0px;
    padding-left: 5px;
}

/*图片*/
.tupian {
	width: 100%;
}
.tupian img {
	width: 100%;
}
/*维修案例*/
.case {
	width: 100%;
	margin: 10px auto;
	background-color: #f1f1f1;
	
}
.case-t {
	position: relative;
	width: 95%;
	margin: 10px auto;
	height:38px;
}
.case-t h3 {
	color: #000;
	font-weight: normal;
	font-size: 20px;
	font-weight: bold;
	line-height: 38px;
	position:absolute;
}
.case-t i {
	background: url(../images/icon.jpg) repeat-x center;
	width: 100%;
	height: 2px;
	top: 50%;
	margin-top: -1px;
	right: 0;
	display: block;
	position: absolute;
}

.case-nr{
	width: 95%;
	margin: 10px auto;
}
.case-nr dl{
	padding-bottom: 13px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #eaeaea;
}
.case-nr dl dt{
	font-size:16px;
}
.case-nr dl dd.txt{
	display: inline-block;
	color: #666;
    font-size: 13px;
    line-height: 18px;
    width: 70%;
    padding-bottom: 20px;
}
.case-nr dl dd.time{
	font-size: 12px;
    color: #a7a4a4;
    float: right;
    display: inline-block;
}
.case-nr span{
	font-size: 12px;
	color: #5e9edd;
	padding-left: 5px;
}
/*网站底部*/
.foot{
	background-color:#f1f1f1;
	color:#9a9a9a;
	text-align:center;
	padding:2% 0;
	font-size:12px;
	margin-bottom:50px;
}
/*----------------------------------------------end index-----------------------------------------*/
.weixiu{
	width: 92%;
	margin: 0 auto;
}
.weixiu ul li{
	position:relative;
	margin-bottom:5%;
}
.weixiu ul li img{
	width:100%;
	height:auto;
}
.weixiu ul li span{
	position:absolute;
	bottom:0;
	left:0;
	display:block;
	background-color:rgba(0,0,0,.3);
	text-align:center;
	line-height:50px;
	height:50px;
	width:100%;
	font-size:20px;
}
.weixiu ul li a{
	color:#fff;
}
/*服务流程*/
.liucheng{
	width: 92%;
	margin: 0 auto 4% auto;
}
.liucheng img{
	width:100%;
}
/*网点*/
.wangdian{
	width: 92%;
	margin: 0 auto 4% auto;
}
.wangdian-left{
	float:left;
	width:60%;
}
.wangdian-left img{
	width:100%;
}
.wangdian-right{
	float:right;
	width:35%;
	margin-top:5%;
}
.wangdian-right img{
	width:100%;
	display:block;
	margin-bottom:20%;
}
.wangdian-right a{
	display:block;
	background-color:#333;
	color:#fff;
	border-radius:10px;
	width:100%;
	height:40px;
	line-height:40px;
	text-align:center;
}

/*内页案例新闻*/
.ny-case {
	width: 92%;
	margin: 15px auto 15px auto;
}
.ny-case ul{
	width: 100%	
}
.ny-case ul li{
    width: 100%;
    border-bottom: 1px dashed #ccc;
    margin: 10px 0 15px 0;
}
.shoplist-left{
	width: 70%;
    display: inline-block;
    padding-right: 5px;
	    line-height: 20px;
}
.shoplist-left h1{
	font-size: 17px;
    color: #333;
	display: block;
    margin-bottom: 5px;
}
.shoplist-left p{
	font-size: 12px;
    color: #666;
    line-height: 20px;
}
.shoplist-left span{
	font-size: 12px;
    color: #b2b2b2;
}
.shoplist-left img{
    vertical-align: middle;
    padding-right: 5px;
    margin-bottom: 5px;
	width: 15%;
}
.shoplist-right{
	float: right;
    display: inline-block;
	    width: auto;
}
.shoplist-right img{
	width: 90px;
    height: 75px;
    vertical-align: middle;
	border-radius: 5px;
	margin-top: 10%;
}

.articlelist-left{
	width: 70%;
    display: inline-block;
    padding-right: 5px;
	line-height: 30px;
}
.articlelist-left h1{
	font-size: 15px;
    color: #333;
	display: inline-block;
}
.articlelist-left p{
	font-size: 12px;
    color: #666;
    line-height: 20px;
}
.articlelist-left span{
	font-size: 12px;
    color: #666;
}
.articlelist-left em{
	font-size: 12px;
    color: #666;
    padding-left: 30px;
    font-style: normal;
}
.articlelist-right{
	float: right;
    display: inline-block;
	    width: auto;
}
.articlelist-right img{
	width: 90px;
    height: 75px;
    vertical-align: middle;
	border-radius: 5px;
	    margin-top: 15%;
}

/*案例新闻详细*/
.xiangxi{
	width: 92%;
	margin: 0 auto 4% auto;
}
.title-news {
	padding: 5% 0;
	font-size: 20px;
}
.title-news img{
	    vertical-align: middle;
    padding-left: 5px;
}
.info-news {
	line-height:18px;
	border-bottom: 1px solid #ececec;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.ny-article{
	line-height: 25px;
}
.ny-article img{
	width:100%;
}

.ny-nr {
	line-height: 25px;
}
.shopimg{
	text-align: left;
	margin-bottom: 20px;
	border-radius: 5px;
}
.ny-nr p{
	font-size: 14px;
	color: #666;
	padding-bottom: 15px;
}
.ny-nr span{
	font-size: 14px;
	color: #fff;
    background: #0070c9;
    margin-right: 5px;
	padding-right: 5px;
	border-radius: 2px;
}
.ny-nr img{
	width:100%!important;
}
.ny-nr pre{
	color: #666;
	padding-bottom: 15px;
	white-space: pre-line;
	font-family: 'Microsoft YaHei', 'HelveticaNeue', 'HelveticaNeue-Light';
}
.shopexperience{
	font-size: 18px;
    line-height: 28px;
}
.shopexperience h2{
	display: block;
    font-size: 17px;
    margin: 5px 0 7px 0;
}
.shopexperience p{
	
}
.shopexperience span{
	font-size: 12px;
    padding: 2px 5px 2px 5px;
	text-align: center;
}
/*单页*/
.title-danye{
	border-bottom: 1px solid #ececec;
	padding: 5% 0;
	font-size: 20px;
}
/*手机型号*/
.xinghao{
	width: 92%;
	margin: 0 auto;
	clear:both;
	overflow:hidden;
}
.xinghao ul li{
	margin-bottom:5%;
	width:50%;
	float:left;
}
.xinghao ul li img{
	width:70%;
	display:block;
	margin:0 auto;
	height:auto;
	text-align:center;
}
.xinghao ul li span{
	display:block;
	text-align:center;
	line-height:50px;
	height:50px;
	width:100%;
	font-size:16px;
}

/*底部快速导航*/
.bottom{
	background-color:rgba(0,0,0,.8);
	clear:both;
	overflow:visible;
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	height:60px;
	z-index:1000;
}
.bottom ul li{
	float:left;
	text-align:center;
	height:60px;
	width:49%;
	font-size:14px;
	border-right:1px solid rgba(255,255,255,.8);
}
.bottom ul li:last-child{
	border:none;
}
.bottom ul li img{
	width:13%;
}
.bottom ul li span{
	display:block;
}
.bottom ul li a{
	color:#fff;
}