﻿@charset "utf-8";
/*
	@名称: base
	@功能: 重设浏览器默认样式
	@作者：zuozuo
*/


body, h1, h2, h3, p, dl, dd, ol, ul, th, td, form, fieldset, input, button, textarea {
	margin: 0;
	padding: 0;
}
html {
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	-webkit-backface-visibility: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
ol, ul {
	list-style: none
}
table {
	border-collapse: collapse;
	empty-cells: show;
	font-size: inherit;
	border-spacing: 0
}
fieldset, img {
	border: 0
}
cite, em, s, i, b {
	font-style: normal
}
input, button, textarea, select {
	font-size: 100%
}
body, input, button, textarea, select, option {
	font-size: normal
}
/*a, input, textarea {
	outline: 0;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-appearance: none;
}*/
input, textarea {
	outline: 0;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	/*-webkit-appearance: none;*/
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0;
}
li, img, label, input {
	vertical-align: middle
}
var {
	font-style: normal
}
ins {
	text-decoration: none
}
body {
	font-size: 20px
}
a {
	cursor: pointer;
}
.w640 ,.wrapper{
	/*
	overflow: hidden;
	*/
	margin: auto;
	max-width: 640px;
	min-height: 450px;
}
/*不同分辨率字体适配*/
@media only screen and (min-width: 375px) and (max-width: 414px) {
	.w640 ,.wrapper{
		min-height:540px;
	}
}
@media only screen and (min-width: 414px) and (max-width: 1000px) {
	.w640 ,.wrapper{
		min-height:610px;
	}
}

/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	height: 100%;
}
/**:focus{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
*:hover{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}*/

/* 内外边距通常让各个浏览器样式的表现位置不同 */
*{
	margin: 0;
	outline: 0;
	padding: 0;
	font-size: 100%;
	/*-webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
	-webkit-overflow-scrolling:touch;  /*让HTML页面内的元素出现滚动条时，滚动会有弹性滚动*/
}
a, img {
    -webkit-touch-callout: none; /* 禁止长按链接与图片弹出菜单 */
}
html, body {
    -webkit-user-select: none;   /* 禁止选中文本（如无文本选中需求，此为必选项） */
    user-select: none;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body, button, input, select, textarea {
	font: 12px/1.5 "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
}
input,textarea,select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
	outline:none;
	border-radius: 0;
}
textarea {
	resize: none;
	outline: none;
}
/* 去掉各Table  cell 的边距并让其边重合 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* 去除默认边框 */
fieldset, img {
	border: 0;
}

/* 去掉列表前的标识, li 会继承 */
ol, ul {
	list-style: none;
}

q:before, q:after {
	content: '';
}
/* 默认不显示下划线，保持页面简洁 */
ins, a, a:hover{
	text-decoration: none;
}
/* 清理浮动 */
.fn-clear:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.fn-clear {
	zoom: 1; /* for IE6 IE7 */
}

/* 隐藏, 通常用来与 JS 配合 */
body .fn-hide {
	display: none;
}
body .fn-show {
	display: block;
}

body .fn-alert{
	position: fixed;
	top: 50%;
	left: 0;
	margin-top: -20px;
	width: 100%;
	z-index: 999;
	text-align: center;
}
body .fn-alert span{
	box-sizing: border-box;
	padding: 10px 15px;
	color: #fff;
	background: rgba(0,0,0,0.5);
	border-radius: 10px;
}
/* 设置内联, 减少浮动带来的bug */

.fn-left {
	float: left;
}
.fn-right {
	float: right;
}
.padding-t-10 {
	padding-top: 10px;
}
.padding-t-15 {
	padding-top: 15px;
}
.padding-t-20 {
	padding-top: 20px;
}
.padding-b-10 {
	padding-bottom: 10px;
}
.padding-b-30 {
	padding-bottom: 30px;
}
.padding-10 {
	padding: 10px;
}
.margin-t-5 {
	margin-top: 5px;
}
.margin-t-10 {
	margin-top: 10px;
}
.margin-t-15 {
	margin-top: 15px;
}
.margin-t-20 {
	margin-top: 20px;
}
.margin-t-25 {
	margin-top: 25px;
}
.margin-t-30 {
	margin-top: 30px;
}
.margin-t-35 {
	margin-top: 35px;
}
a.t-blue:hover {
	text-decoration: underline;
}
.underline a:hover {
	text-decoration: underline;
}

.text-ellipsis{
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}

/*输入框提示*/
.input-hover{
	animation:myfirst 2s;
	-webkit-animation:myfirst 2s; /* Safari and Chrome */
}

@-webkit-keyframes myfirst
{
	from {
		-webkit-box-shadow: 0px 0px 10px #FF0000 inset;

		}
	to {
		-webkit-box-shadow: 0px 0px 0px #903 inset;

	}
}
/*
 *
 */
.b-radius-50{
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}
.b-radius-5{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
.b-radius-3{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}
/*弹性布局*/
.box {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-ms-flex-direction: row;
}
.box-flex {
	-webkit-box-flex: 1;/* android 2.1-3.0, ios 3.2-4.3 */
	-webkit-flex: 1;/* Chrome 21+ */
	-ms-flex: 1;/* WP IE 10 */
	flex: 1;/* android 4.4 */
	-moz-box-flex: 1;/*Firefox*/
	box-flex: 1;
}
.box-align {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	-webkit-box-pack: center;/*垂直-左右居中*/
	-webkit-box-align: center;/*Chrome*/
	-moz-box-pack: center;/*垂直左右居中*/
	-moz-box-align: center;/*Firefox*/
	-ms-flex-pack: center;/*垂直左右居中*/
	-ms-flex-align: center;/*IE*/
}

/*分享层样式*/
.fn-layer, .box-layer {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
}
.fn-layer {
	position: fixed;
	top:0;
	left: 0;
}
.fn-layer .share-pic {
	text-align: right;
	padding: 10px 30px 0 0;
}
.fn-layer .share-pic img{
	width: 178px;
}
.fn-layer .des{
	color: #fff;
	font-size: 15px;
	padding: 10px 0;
}

.layer-cont {
	float: right;
	margin-right: 20px;
	width: 181px;
	height: 126px;
	overflow: hidden;
	position: relative;
}
.layer-cont a {
	display: inline-block;
	position: absolute;
	top: 57px;
	width: 57px;
	height: 57px;
}
.layer-cont a.share {
	left: 25px;
}
.layer-cont a.lq {
	left: 100px;
}
/*弹出框*/
.box-content{

	position: absolute;
	top: 10%;
	left: 15%;
	right: 15%;
}
.box-content h2{
	text-align: center;
	color: #40cc04;
	font-size: 20px;
}
.box-content .text{
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	color: #959595;
	font-size: 12px;
	max-height: 300px;
	overflow-y: auto;
}

.box-content .text p.but{
	text-align: center;
	padding: 10px 0 0;
}
.box-content .text button{
	background: #4ed913;
	padding: 3px 20px;
	color: #fff;
	font-size: 16px;
	border: none;
	border-radius: 5px;
}
.close-but{
	padding: 10px 0;
}
.close-but a{
	margin: 0 auto;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	background: #ff5373;
	color: #fff;
	font-size: 28px;
}
/*内容为空样式*/
.emptys{
	padding: 60px 0 0;
}
.emptys p{
	padding: 0 20px;
	font-size: 15px;
	text-align: center;
	color: #a0a0a0;
}
.emptys .icon{
	padding: 10px 0;
}
.emptys p img{
	width: 70px;
}
.emptys p a{
	color: #86c547;
}
/*全局meun菜单*/
#nav-meun{
	position: relative;
}
#nav-meun .meun {
	position: fixed;
	left: 0;
	right: 100%;
	top: 0;
	bottom: 0;
	z-index: 99;
	background: #434343;
	-webkit-transition: all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
	/*-webkit-transform:translate3d(0,0,0);*/
	opacity: 1;
}
	.meun-top,
	.meun-bot {
		position: absolute;
		top: 0;
		left: 0;
		height: 50px;
		right: 0;
		border-bottom: #5f5f5f 1px solid;
	}
	.meun-top {
		/*background: url(../../images/system/qinyongweb/icons_02.jpg) center top no-repeat;
		background-size: 190px auto;*/
	}
	.meun-bot {
		top: auto;
		bottom: 0;
		border-bottom: none;
		border-top: #5f5f5f 1px solid;
		/*background: url(../../images/system/qinyongweb/icons_03.jpg) center bottom no-repeat;
		background-size: 190px auto;*/
	}
	/*.meun-bot span {
		top: auto;
		bottom: 0;
		-webkit-transform: rotate(180deg);
	}*/
	#nav-meun .meun-container {
		position: absolute;
		top: 50px;
		bottom: 50px;
		left: 0;
		right: 0;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.meun ul li {
		height: 50px;
		width: 100%;
		line-height: 50px;
		border-bottom: #5f5f5f 1px solid;
		opacity: 0;
		-webkit-transition: all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
		-webkit-transform: translate3d(0, 10px, 0);
	}
	.meun ul li a {
		border-left: #3f3f3f 5px solid;
	}
	.meun ul li .active {
		background: #3f3f3f;
		border-color: #7cc576;
	}
	.meun ul li .meun-text,
	.meun ul li .meun-icon {
		width: 50%;
		font-size: 15px;
		color: #a0a0a0;
	}
	.meun ul li .meun-text {
		text-indent: 35px;
	}
	.meun ul li .meun-icon span {
		display: block;
		width: 24px;
		height: 24px;
		background: url(../images/system/meun_icons.png) no-repeat;
		background-size: 25px auto;
		background-position: 12px -90px;
	}
	.meun-switch {
		position: absolute;
		width: 50px;
		height: 50px;
		right: -50px;
		top: 0;
		/*background: url(../images/system/meun_icons.png) no-repeat;
		background-size: 25px auto;*/
		background: rgba(0,0,0,0.5);

	}
	.meun-switch i{
		display: block;
		width: 100%;
		height: 100%;
		background: url(../images/system/meun_icons.png) no-repeat;
		background-size: 25px auto;
		background-position: 12px -32px;
	}
	#nav-meun .open .meun-switch i{
		background-position: 15px 15px;
	}
	#nav-meun .close .meun-switch i{
		background-position: 12px -32px;
	}
/*菜单动画*/
#nav-meun .open li:nth-child(1){
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s;
}
#nav-meun .open li:nth-child(2){
	-webkit-transition-delay: .1s;
	-moz-transition-delay: .1s;
	transition-delay: .1s;
}
#nav-meun .open li:nth-child(3){
	-webkit-transition-delay: .2s;
	-moz-transition-delay: .2s;
	transition-delay: .2s;
}
#nav-meun .open li:nth-child(4){
	-webkit-transition-delay: .3s;
	-moz-transition-delay: .3s;
	transition-delay: .3s;
}
#nav-meun .open li:nth-child(5){
	-webkit-transition-delay: .4s;
	-moz-transition-delay: .4s;
	transition-delay: .4s;
}
#nav-meun .open li:nth-child(6){
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	transition-delay: .5s;
}
#nav-meun .open li:nth-child(7){
	-webkit-transition-delay: .6s;
	-moz-transition-delay: .6s;
	transition-delay: .6s;
}
#nav-meun .open li:nth-child(8){
	-webkit-transition-delay: .7s;
	-moz-transition-delay: .7s;
	transition-delay: .7s;
}
#nav-meun .open{
	right: 60px;
	opacity: 1;
}
#nav-meun .open li{
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
}
#nav-meun .close {
	right: 100%;
}
/*收货地址*/
#address-layer{
	background: #eeeff1;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
}
.address-layer-cont{
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.address-layer-head{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 45px;
	line-height: 45px;
	box-sizing: border-box;
	border-bottom: #c9c9c9 1px solid;
	background: #fff;
	color: #333;
	font-size: 15px;
	z-index: 9;
}
.address-layer-close{
	position: absolute;
	right: 15px;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: url(../images/system/raise/icons_01.png) no-repeat;
	background-size: 100% auto;
}
.address-area-but{
	position: relative;
}
.address-area-but a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.address-layer-info{
	padding: 10px;
}
.address-layer-info li{
	margin: 10px 0;
	border: #d9d9d9 1px solid;
	background: #fff;
	padding: 10px;
	box-sizing: border-box;
	color: #262b2f;
}
.address-layer-info li .edit{
	width: 60px;
}
.address-layer-info li .edit a{
	color: #6dabde;
}
.address-layer-info li .confirm{
	width: 50px;
}
.address-layer-info li .confirm a{
	display: inline-block;
	width: 40px;
	height: 40px;
	background: #b3b3b3;
	border: #fff 2px solid;
	box-sizing: border-box;
	position: relative;
}
.address-layer-info li .confirm a.active{
	background: #00b7ee;
}
.address-layer-info li .confirm a.active i{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 14px;
	margin: -7px 0 0 -10px;
	background: url(../images/system/itinerary/icons_02.png) no-repeat;
	background-size: 20px auto;
}
.address-layer-add a{
	border: #d9d9d9 1px solid;
	display: block;
	height: 40px;
	color: #6dabde;
	background: #fff;
	text-align: center;
	line-height: 40px;
	box-sizing: border-box;
}
.address-layer-input{
	box-sizing: border-box;
	border: #d9d9d9 1px solid;
}
.address-layer-input input{
	height: 49px;
	width: 100%;
	border: none;
	border-top: #d9d9d9 1px solid;
	box-sizing: border-box;
	padding: 5px 10px;
	color: #262b2f;
}
.address-layer-input p:nth-of-type(1) input{
	border-top: none;
}
.address-layer-sub{
	padding: 20px 0;
}
.address-layer-sub a{
	display: block;
	color: #fff;
	font-size: 15px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	background: #00b7ee;
}
#address-area-box{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	background: #fff;
}
#address-area-box li a{
	display: block;
	padding: 10px;
	color: #262b2f;
	border-bottom: #d9d9d9 1px solid;
}
#address-area-box li a:active{
	background: #ccc;
}
#address-area-box .address-area-list{
	overflow-y: scroll;
	height: 100%;
}

/*引导关注弹出层*/
#guide-code{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgba(0,0,0,0);
	-webkit-transition: all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
	-webkit-transform: translate3d(0, 1, 0);
}
#guide-code.open{
	-webkit-transform: translate3d(0, 0, 0);
	background: rgba(0,0,0,0.5);
}
#guide-code .guide-code-pic{
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 0;
}
#guide-code .guide-code-pic p{
	padding: 0 20%;
	box-sizing: border-box;
	color: #5f5f5f;
	font-size: 15px;
}
#guide-code .guide-code-pic p img{
	width: 100%;
}

/*引导关注弹出层*/
.follow-guide-code {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgba(0,0,0,0);
	-webkit-transition: all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
	-webkit-transform: translate3d(0, 1, 0);
}
.follow-guide-code.open{
	-webkit-transform: translate3d(0, 0, 0);
	background: rgba(0,0,0,0.5);
}
.follow-guide-code .guide-code-pic{
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 0;
}
.follow-guide-code .guide-code-pic p{
	padding: 0 20%;
	box-sizing: border-box;
	color: #5f5f5f;
	font-size: 15px;
}
.follow-guide-code .guide-code-pic p img{
	width: 100%;
}

/*b-t-layer*/
.b-t-layer {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f6f6f6;
	z-index: 99;
	-webkit-transition: all .3s cubic-bezier(0.645, 0.045, 0.355, 1);
	-webkit-transform: translate3d(0, 100%, 0);
	opacity: 0;
}
.b-t-layer .head-bar{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 45px;
	line-height: 45px;
	box-sizing: border-box;
	border-bottom: #c9c9c9 1px solid;
	background: #fff;
	color: #333;
	font-size: 15px;
	z-index: 99;
}
.b-t-layer .head-bar a{
	position: absolute;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}
.b-t-layer .head-bar a:nth-of-type(1){
	left: 15px;
	background: url(../images/system/raise/icons_01_left.png) left center  no-repeat;
	background-size: 11px auto;
}
.b-t-layer .head-bar a:nth-of-type(2){
	right: 15px;
	background: url(../images/system/raise/icons_01.png) no-repeat;
	background-size: 100% auto;
}
.b-t-layer .layer-container{
	padding-top: 45px;
}
.b-t-layer.open{
	-webkit-transform: translate3d(0, 0, 0);
	opacity: 1;
}

/*微景通footer*/
footer{
	position: relative;
	text-align: center;
	padding: 20px 0;
}
footer a {
	color:#aaa;
	font-size:14px;
}
footer .feedback{
	position:absolute;
	top:20px;
	right:0;
	margin-right:10px;
}
.footer-company-name{
	color: orange;
}
.sue {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #fefcf0;
    right: 10px;
    top: 10px;
    box-shadow: 5px 4px 2px #888888;
    text-align: center;
    line-height: 40px;
    color: #724300;
}

.map-content{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
}

/**/
.tabbar {
	position: fixed;
	width: 100%;
	height: 60px;
	background: #fff;
	left: 0;
	bottom: 0;
	z-index: 10;
	border-top: 1px solid #e5e5e5;
}
.tabbar .location{
	position: absolute;
	left: 10px;
	bottom: 60px;
	width: 40px;
	height: 30px;
	background: rgba(255,255,255,0.8);
	-moz-box-shadow:0px 0px 5px #828282; 
	-webkit-box-shadow:0px 0px 5px #828282; 
	box-shadow:0px 0px 5px #828282;
}
.tabbar .location a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.tabbar .location a span{
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -13px 0 0 -13px;
	width: 25px;
	height: 25px;
	border: #71b9f8 1px solid;
}
.tabbar .location a span em{
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -7px 0 0 -7px;
	width: 14px;
	height: 14px;
	background: #198cf6;
}
.tabbar ul li,
.alert-view-one ul li {
	/*border-right: #e5e5e5 1px solid;*/
	display: block;
	height: 50px;
}
.tabbar ul li:last-child,
.alert-view-one ul li:last-child {
	border-right: none;
}
.alert-view-one ul li{
	height: 50px;
}
.tabbar ul li a {
	display: block;
	text-align: center;
	line-height: 40px;
}
ul li a i {
	padding: 4px 12px;
	background: url(../img/icon_all.png) no-repeat;
	background-size: 20px auto;
}
.tabbar ul li a span {
	font-size: 15px;
	color: #434343;
	font-family:jyzt;
}


#map
        {
            width: 100%;
            height: 100%;
        }
        #r-result
        {
            width: 100%;
            margin-top: 5px;
        }
        p
        {
            margin: 5px;
            font-size: 14px;
        }
        .map-box
        {
            width: 100%;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            -webkit-box-orient: horizontal;
            -moz-box-orient: horizontal;
            -ms-flex-direction: row;
        }


/*地图*/
.anchorBL  {display:none !important;}
.BMap_button{display:none !important;}
.BMap_stdMpZoom{display:none !important;}



/*新版头部*/
header, .header {
	background: #FFF;
	height: 40px;
	position: absolute;
	z-index: 13;
	top: 0;
	left: 0;
	right: 0;
	bottom: auto;
	border-bottom: solid 1px #EEE;
}

.header-wrap {
	display: block;
	min-width: 320px;
	max-width: 640px;
	height: 2rem;
	margin: 0 auto;
	text-align: center;
}

.header-l {
	display: block;
	width: 1.35rem;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0.3rem;
}

	.header-l a {
		position: relative;
		z-index: 1;
		display: inline-block;
		width: 0.85rem;
		height: 40px;
	}

		.header-l a i {
			display: block;
			width: 100%;
			height: 100%;
		}

			.header-l a i.back {
				width: 80%;
				height: 100%;
				margin: 10%;
				background-image: url(/templet/images/arrow_left_b.png);
				background-position: 50% 50%;
				background-repeat: no-repeat;
				background-size: 100%;
				opacity: 0.4;
			}

			.header-l a i.home {
				background-image: url(../images/bar_01.png);
				background-position: 50% 50%;
				background-repeat: no-repeat;
				background-size: 90%;
			}

		.header-l a.text {
			position: relative;
			z-index: 1;
			display: inline-block;
			white-space: nowrap;
			width: 1.6rem;
			height: 0.95rem;
			padding: 0.5rem 0rem 0.5rem 0;
			font-size: 0.64rem;
			line-height: 0.975rem;
			color: #333;
		}

.header-r {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0.4rem;
	font-size: 0;
	text-align: right;
}

	.header-r a {
		position: relative;
		z-index: 1;
		display: inline-block;
		vertical-align: top;
		width: 0.85rem;
		height: 0.85rem;
		padding: 0.55rem 0.1rem 0.55rem 0.5rem;
	}

		.header-r a i {
			display: block;
			width: 100%;
			height: 100%;
		}

		.header-r a sup {
			display: none;
			position: absolute;
			z-index: 1;
			top: 0.4rem;
			right: 0.05rem;
			width: 0.25rem;
			height: 0.25rem;
			background-color: #f23030;
			border-radius: 100%;
		}

		.header-r a.search-btn {
			width: 2rem;
			height: 1.95rem;
			text-align: right;
			padding: 0;
			font-size: 0.6rem;
			line-height: 1.95rem;
			color: #232326;
		}

		.header-r a.edit-btn {
			width: 2rem;
			height: 1.95rem;
			text-align: right;
			padding: 0;
			font-size: 0.56rem;
			line-height: 1.95rem;
			color: #888;
		}

		.header-r a i.more {
			background-image: url(../images/more_b.png);
			background-repeat: no-repeat;
			background-position: 50% 50%;
			background-size: 100%;
			opacity: 0.5;
		}

		.header-r a i.message {
			background-image: url(../images/message_b.png);
			background-repeat: no-repeat;
			background-position: 50% 50%;
			background-size: 100%;
			opacity: 0.5
		}

		.header-r a i.share {
			background-image: url(../images/share.png);
			background-repeat: no-repeat;
			background-position: 50% 50%;
			background-size: 85%;
			opacity: 0.5;
		}

		.header-r a i.search {
			background-image: url(../images/search_ico.png);
			background-repeat: no-repeat;
			background-position: 50% 50%;
			background-size: 85%;
			opacity: 0.5;
		}

		.header-r a i.setup {
			background-image: url(../images/setup.png);
			background-repeat: no-repeat;
			background-position: 50% 50%;
			background-size: 85%;
			opacity: 0.5;
		}

		.header-r a.text {
			position: relative;
			z-index: 1;
			display: inline-block;
			white-space: nowrap;
			width: 1.6rem;
			height: 0.95rem;
			padding: 0.5rem 0rem 0.5rem 0;
			font-size: 0.64rem;
			line-height: 0.975rem;
			color: #F23030;
		}

		.header-r a i.browse_grid {
			background-image: url(../images/browse_grid.png);
			background-repeat: no-repeat;
			background-position: 50% 50%;
			background-size: 100%;
		}

		.header-r a i.browse_list {
			background-image: url(../images/browse_list.png);
			background-repeat: no-repeat;
			background-position: 50% 50%;
			background-size: 100%;
		}

		.header-r a.category-bar {
			display: inline-block;
			width: 2rem;
			height: 2rem;
			margin: 0;
			padding: 0;
		}

			.header-r a.category-bar .category {
				width: 0.7rem;
				height: 0.7rem;
				margin: 0.35rem auto 0.05rem auto;
				background-repeat: no-repeat;
				background-position: 50% 50%;
				background-size: 90%;
				opacity: 0.5;
				background-image: url(../../images/category_b.png);
			}

			.header-r a.category-bar .text {
				display: block;
				font-size: 0.45rem;
				line-height: 0.8rem;
				text-align: center;
				color: #333;
			}

.header-nav {
	display: inline-block;
	margin: 0 auto;
	vertical-align: top;
	font-size: 0;
	white-space: nowrap;
}

	.header-nav li {
		display: inline-block;
		vertical-align: top;
		text-align: center;
		height: 40px;
	}

		.header-nav li a {
			display: inline-block;
			padding: 0.1rem 0.25rem;
			margin: 0 0.25rem;
			font-size: 15px;
			line-height: 1.825rem;
			color: #232326;
		}

		/* .header-nav li.cur a {
            padding: 0.1rem 0.15rem 0 0.15rem;
            color: #f23030;
            border-bottom: solid 0.1rem #f23030;
            font-size: 0.68rem;
        }*/
		.header-nav li.cur a {
			padding: 0.1rem 0.15rem 0 0.15rem;
			color: #2D64D6;
			border-bottom: solid 0.1rem #2D64D6;
			font-size: 15px;
		}

/*单一标题*/
.header-title {
	display: inline-block;
	margin: 0 auto;
}

	.header-title h1 {
		font-size: 0.68rem;
		line-height: 1.95rem;
		height: 1.95rem;
		color: #232326
	}

/*图片标题*/
.header-thumb {
	display: block;
	width: 3.6rem;
	height: 1.2rem;
	margin: 0.4rem auto;
}