@charset "utf-8";
/*
	@名称: base
	@功能: 重设浏览器默认样式
	@作者：zuozuo
*/
*{

	-webkit-tap-highlight-color:rgba(255,255,255,0);
}

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-weight: normal;
}
ol, ul {
	list-style: none
}
table {
	border-collapse: collapse;
	empty-cells: show;
	border-spacing: 0
}
fieldset, img {
	border: 0
}
cite, em, s, i, b {
	font-style: 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
}
a {
	cursor: pointer;
	color: #ff2e28;
}
.w640 ,.wrapper{
    max-width: 640px;
	/*
	overflow: hidden;
	*/
	margin: auto;
	/*min-height: 450px;  by ztg 2017-01-18 不知道这里为什么要设置一个最低值？根据屏幕宽设置高？*/
}
/*不同分辨率字体适配*/
@media only screen and (min-width: 375px) and (max-width: 414px) {
	.w640 ,.wrapper{
		/*min-height:540px;  by ztg 2017-01-18 不知道这里为什么要设置一个最低值？根据屏幕宽设置高？*/
	}
}
@media only screen and (min-width: 414px) and (max-width: 1000px) {
	.w640 ,.wrapper{
		/*min-height:610px; by ztg 2017-01-18 不知道这里为什么要设置一个最低值？根据屏幕宽设置高？*/
	}
}

/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
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;
	/*-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-family:"宋体";
    font-size:90%;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body, button, input, select, textarea {
	font: 12px/1.5 "宋体" !important;
}
input,textarea,select {
	font-weight:inherit;
	outline:none;
	border-radius: 0;
    border: 1px solid #ccc;
    padding:  4px 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 */
}

.text-select{
    user-select: text;
}
/* 隐藏, 通常用来与 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-2 {
    padding: 2px!important;
}
.padding-t-2 {
    padding-top: 2px!important;
}
.padding-b-2 {
    padding-bottom: 2px!important;
}
.padding-l-2 {
    padding-left: 2px!important;
}
.padding-r-2 {
    padding-right: 2px!important;
}

.margin-2 {
    margin: 2px!important;
}
.margin-t-2 {
    margin-top: 2px!important;
}
.margin-b-2 {
    margin-bottom: 2px!important;
}
.margin-l-2 {
    margin-left: 2px!important;
}
.margin-r-2 {
    margin-right: 2px!important;
}

.padding-5 {
    padding: 5px!important;
}
.padding-t-5 {
    padding-top: 5px!important;
}
.padding-b-5 {
    padding-bottom: 5px!important;
}
.padding-l-5 {
    padding-left: 5px!important;
}
.padding-r-5 {
    padding-right: 5px!important;
}

.margin-5 {
    margin: 5px!important;
}
.margin-t-5 {
    margin-top: 5px!important;
}
.margin-b-5 {
    margin-bottom: 5px!important;
}
.margin-l-5 {
    margin-left: 5px!important;
}
.margin-r-5 {
    margin-right: 5px!important;
}

.padding-10 {
    padding: 10px!important;
}
.padding-t-10 {
    padding-top: 10px!important;
}
.padding-b-10 {
    padding-bottom: 10px!important;
}
.padding-l-10 {
    padding-left: 10px!important;
}
.padding-r-10 {
    padding-right: 10px!important;
}

.margin-10 {
    margin: 10px!important;
}
.margin-t-10 {
    margin-top: 10px!important;
}
.margin-b-10 {
    margin-bottom: 10px!important;
}
.margin-l-10 {
    margin-left: 10px!important;
}
.margin-r-10 {
    margin-right: 10px!important;
}

.padding-15 {
    padding: 15px!important;
}
.padding-t-15 {
    padding-top: 15px!important;
}
.padding-b-15 {
    padding-bottom: 15px!important;
}
.padding-l-15 {
    padding-left: 15px!important;
}
.padding-r-15 {
    padding-right: 15px!important;
}

.margin-15 {
    margin: 15px!important;
}
.margin-t-15 {
    margin-top: 15px!important;
}
.margin-b-15 {
    margin-bottom: 15px!important;
}
.margin-l-15 {
    margin-left: 15px!important;
}
.margin-r-15 {
    margin-right: 15px!important;
}

.padding-20 {
    padding: 20px!important;
}
.padding-t-20 {
    padding-top: 20px!important;
}
.padding-b-20 {
    padding-bottom: 20px!important;
}
.padding-l-20 {
    padding-left: 20px!important;
}
.padding-r-20 {
    padding-right: 20px!important;
}

.margin-20 {
    margin: 20px!important;
}
.margin-t-20 {
    margin-top: 20px!important;
}
.margin-b-20 {
    margin-bottom: 20px!important;
}
.margin-l-20 {
    margin-left: 20px!important;
}
.margin-r-20 {
    margin-right: 20px!important;
}

.padding-25 {
    padding: 25px!important;
}
.padding-t-25 {
    padding-top: 25px!important;
}
.padding-b-25 {
    padding-bottom: 25px!important;
}
.padding-l-25 {
    padding-left: 25px!important;
}
.padding-r-25 {
    padding-right: 25px!important;
}

.margin-25 {
    margin: 25px!important;
}
.margin-t-25 {
    margin-top: 25px!important;
}
.margin-b-25 {
    margin-bottom: 25px!important;
}
.margin-l-25 {
    margin-left: 25px!important;
}
.margin-r-25 {
    margin-right: 25px!important;
}

.padding-30 {
    padding: 30px!important;
}
.padding-t-30 {
    padding-top: 30px!important;
}
.padding-b-30 {
    padding-bottom: 30px!important;
}
.padding-l-30 {
    padding-left: 30px!important;
}
.padding-r-30 {
    padding-right: 30px!important;
}

.margin-30 {
    margin: 30px!important;
}
.margin-t-30 {
    margin-top: 30px!important;
}
.margin-b-30 {
    margin-bottom: 30px!important;
}
.margin-l-30 {
    margin-left: 30px!important;
}
.margin-r-30 {
    margin-right: 30px!important;
}

.padding-40 {
    padding: 40px!important;
}
.padding-t-40 {
    padding-top: 40px!important;
}
.padding-b-40 {
    padding-bottom: 40px!important;
}
.padding-l-40 {
    padding-left: 40px!important;
}
.padding-r-40 {
    padding-right: 40px!important;
}

.margin-40 {
    margin: 40px!important;
}
.margin-t-40 {
    margin-top: 40px!important;
}
.margin-b-40 {
    margin-bottom: 40px!important;
}
.margin-l-40 {
    margin-left: 40px!important;
}
.margin-r-40 {
    margin-right: 40px!important;
}

.padding-50 {
    padding: 50px!important;
}
.padding-t-50 {
    padding-top: 50px!important;
}
.padding-b-50 {
    padding-bottom: 50px!important;
}
.padding-l-50 {
    padding-left: 50px!important;
}
.padding-r-50 {
    padding-right: 50px!important;
}

.margin-50 {
    margin: 50px!important;
}
.margin-t-50 {
    margin-top: 50px!important;
}
.margin-b-50 {
    margin-bottom: 50px!important;
}
.margin-l-50 {
    margin-left: 50px!important;
}
.margin-r-50 {
    margin-right: 50px!important;
}

.padding-60 {
    padding: 60px!important;
}
.padding-t-60 {
    padding-top: 60px!important;
}
.padding-b-60 {
    padding-bottom: 60px!important;
}
.padding-l-60 {
    padding-left: 60px!important;
}
.padding-r-60 {
    padding-right: 60px!important;
}

.margin-60 {
    margin: 60px!important;
}
.margin-t-60 {
    margin-top: 60px!important;
}
.margin-b-60 {
    margin-bottom: 60px!important;
}
.margin-l-60 {
    margin-left: 60px!important;
}
.margin-r-60 {
    margin-right: 60px!important;
}

.text-center{
    text-align:center;
}
.text-left{
    text-align:left;
}
.text-right{
    text-align:right;
}

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;
}
.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: 99999999;
	background: rgba(0,0,0,0.5);
}
#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 {
	position: relative;
    color: #aaa;
    font-size: 12px;
    display:inline-block;
}
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;
    z-index:9999999;
}

.voice{
	position: absolute;
	right: 1rem;
	top: 1rem;
	z-index: 99;
}
.voice .voice-icon{
	display: block;
    width: 34px;
    height: 34px;
	background: url(../images/system/activity/mid_play_strat.png) no-repeat;
	background-size: 34px 34px;
}
.voice .on{
	background: url(../images/system/activity/mid_play_stop.png) no-repeat;
    background-size: 34px 34px;
}
.voice .voice-icon-ani{
	-webkit-animation: spin 1s .2s infinite linear;
}
@-webkit-keyframes spin{
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.form-box{
    position:fixed;
    left:0;right:0;
    top:0;bottom:0;
    background:rgba(0,0,0,.6);
    padding:20px 10px;
    display:none;
    z-index:9;
}
.form-box .form-main{
    background:#fff;
    border-radius:6px;
    padding:10px;
}
.form-box input{
    height:20px;
    padding:2px 5px;
}

/**遮盖层**/
.cover-layer{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    z-index: 9999;
    color: #fff;
    padding: 30px;
}

.effect-loading {
    border-radius: 5px;
	animation-name:k-effect-loading;
	animation-duration:360s;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
	animation-direction:alternate;
	animation-play-state:running;
}
@keyframes k-effect-loading {
    0 {
        transform: rotate(0deg);
	}
	100%{
        transform: rotate(7200deg);
	}
}

.text-center{
	text-align: center;
}
.tip-color{
	color:#aaa;
    font-size:12px;
}

