@charset "utf-8";
/* CSS Document */
body {
	font-size: 14px;
	line-height: 2.3em;
	color: #333;
	font-family: '黑体-简', 'HelveticaNeue', 'HelveticaNeue-Light', "Microsoft YaHei";
	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: #000;
	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: 50px;
	height: 60px;
	padding-top: 9%;
	border: 0;
}
.drawer-hamberger span {
}
.drawer-hamberger span, .drawer-hamberger span:before, .drawer-hamberger span:after {
	position: absolute;
	display: block;
	width: 28px;
	height: 2px;
	cursor: pointer;
	content: '';
	background-color: #434343;
	-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: 55%;
	height: auto;
	padding: 15px 0 15px 3%;
}
/*宣传*/
.xuanchuan {
	background-color: #f1f1f1;
	text-align: center;
	font-size: 26px;
	line-height: 42px;
	padding: 7% 0;
}
/*banner*/
.banner {
	clear: both;
	overflow: hidden;
	width: 92%;
	margin: 4% 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;
		
}


.banner .bannertitle a{
	height: auto;
	color: #fff;
}

.banner .bannertitle h2{
	height: auto;
	color: #fff;
}

.banner .bannertitle p{
    font-size: 18px;
	font-weight: 800;
	color: #fff;
}

.banner .bannertitle span{
    font-size: 15px;
	font-weight: 600;
	color: #fff;
}

.banner img {
	width: 100%;
	height: auto;
}
/*打电话*/
.phone {
	clear: both;
	overflow: hidden;
	width: 82%;
	padding: 3% 5% 6% 5%;
	margin: 0 auto;
	background-color: #f1f1f1;
	font-size: 16px;
	line-height: 30px;
}
.phone a {
	color: #ff5001;
	text-decoration: underline;
}
/*地址*/
.add {
	width: 92%;
	margin: 4% auto;
}
.add h3 {
	color: #000;
	font-weight: normal;
	font-size: 18px;
	line-height: 38px;
	width: 100%;
	margin-bottom:3%;
}
.add a {
	color: #ff5001;
	text-decoration: underline;
}
.add dl {
	margin-bottom: 11%;
	word-wrap: break-word;
	color:#666;
	width: 94%;
	padding:4% 3% 0 3%;
}
.add dl.our{
	background-color:#f7f7f7;
}
.add dl dd{
	font-size: 11pt;
	line-height: 1.4em;
	padding-bottom: 4%;
}
.add dl dd img{
	padding-left:10px;
}
/*图片*/
.tupian {
	width: 100%;
}
.tupian img {
	width: 100%;
}
/*维修案例*/
.case {
	width: 92%;
	margin: 4% auto;
}
.case-t {
	position: relative;
	margin-bottom: 3%;
	height:38px;
}
.case-t h3 {
	color: #000;
	font-weight: normal;
	font-size: 18px;
	line-height: 38px;
	height:38px;
	position:absolute;
	top:0;
	left:0;
	background-color:#fff !important;
	z-index:999;
	padding-right:2%;
}
.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{}
.case-nr dl{
	margin-bottom:5%;
}
.case-nr dl dt{
	font-size:16px;
}
.case-nr dl dd.txt{
	color:#777;
	line-height:1.5em;
}
.case-nr dl dd.time{
	color:#adadad;
}
/*网站底部*/
.foot{
	background-color:#f1f1f1;
	color:#9a9a9a;
	text-align:center;
	padding:5% 0;
	font-size:16px;
	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: 0 auto 4% auto;
}
.ny-case dl {
	clear: both;
	overflow: hidden;
	width: 100%;
	border-bottom: 1px dashed #ccc;
	padding-bottom: 3%;
	margin-bottom: 3%;
}
.ny-case dl:last-child {
	clear: both;
	overflow: hidden;
	width: 100%;
	border-bottom: none;
	padding-bottom: 3%;
	margin-bottom: 0;
}
.ny-case dl dd.picture {
	width: 100%;
}
.ny-case dl dd.picture img {
	width: 100%;
}

.ny-case dl dt {
	width: 100%;
	font-size:16px;
	line-height:30px;
}
.ny-case dl dd.eye {
	width: 100%;
	line-height: 18px;
	font-size:12px;
	color: #666;
	margin-bottom:1%;
}
.ny-case dl dd.details {
	width: 100%;
	line-height: 18px;
	color: #666;
}
/*案例新闻详细*/
.xiangxi{
	width: 92%;
	margin: 0 auto 4% auto;
}
.title-news {
	padding: 5% 0;
	font-size: 20px;
}
.info-news {
	line-height:18px;
	border-bottom: 1px solid #ececec;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.ny-nr {
	line-height: 32px;
}
.ny-nr img{
	width:100%!important;
}

/*单页*/
.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;
}