﻿/*手机弹跳效果*/

.move-touch {

	-webkit-overflow-scrolling : touch;

}

/*图片 水平居中 垂直居中*/

.auto-center ul li {

	text-align: center;

}

.auto-center ul li .pict {

	display: table;

	width: 100%;

}

.auto-center ul li .pict i {

	vertical-align: middle;

	display: table-cell;

}

/*css3模糊效果*/

.vague {

	-webkit-filter: blur(2px);

	transition: 0.3s;

	-webkit-transition: 0.3s;

}

/*旋转对象*/

.rogate {

	transition: .3s;

	-webkit-transition: .3s;

}

.rogate:hover {

	transform: rotate(90deg);

}

/*排序-上下三角形*/

.arrow {

	position: relative;

	line-height: 1;

margin-left: .1rem;

}

.arrow:before {

	content: "";

	position: absolute;

top:-.02rem;

	left: 0;

	width: 0px;

	height: 0px;

border-bottom: .08rem solid;

border-right: .08rem solid transparent;

border-top:.08rem solid transparent;

border-left: .08rem solid transparent;

}

.arrow:after {

	content: "";

	position: absolute;

top:.18rem;

	left: 0;

	width: 0px;

	height: 0px;

border-top: .08rem solid;

border-right: .08rem solid transparent;

border-bottom:.08rem solid transparent;

border-left:.08rem solid transparent;

}

.arrow.one:before {

	display: none;

}

.arrow.one:after {

top:.14rem;

}

/*0.5像素边框*/

.border-top:before {

	background: #dadada;

	content: "";

	position: absolute;

	height: 1px;

	transform-origin: 0 0;

	transform: scale(0.5, 0.5);

	-webkit-transform: scale(0.5, 0.5);

	-moz-transform: scale(0.5, 0.5);

	width: 200%;

	top: 0;

	left: 0;

}

.border-bottom:after {

	background: #dadada;

	content: "";

	position: absolute;

	height: 1px;

	transform-origin: 0 0;

	transform: scale(0.5, 0.5);

	-webkit-transform: scale(0.5, 0.5);

	-moz-transform: scale(0.5, 0.5);

	width: 200%;

	bottom: -1px;

	left: 0;

}

/*滑动菜单*/

.flex-slide {

	display: -webkit-flex;

	display: -moz-flex;

	display: -ms-flex;

	display: -o-flex;

	display: flex;

	overflow-y: auto;

}

.flex-slide>* {

	flex-shrink: 0;

}

/*微信弹窗*/
#wxnr {
	width: 100%;
	height: 100%;
	max-width: 640px;
	min-width: 320px;
	position: fixed;
	top: 0;
	z-index: 1000;
	display: none;
	background: rgba(0,0,0,.6);
}
#wxnr .nrdf {
	margin: auto;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 5rem;
	height: 5rem;
	padding: 0.3rem;
	padding-top: 0.6rem;
	margin-top: -2.5rem;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0px 2px 6px #777;
	-webkit-box-shadow: 0px 2px 6px #777;
	-moz-box-shadow: 0px 2px 6px #777;
	border-radius: 10px;
}
#wxnr img {
	width: 2.3rem;
	height: 2.3rem;
	display: block;
	margin: 0 auto;
}
#wxnr p {
	font-size: 0.24rem;
	line-height: 0.45rem;
	text-align: center;
}
#wxnr i {
	position: absolute;
	top: 0.2rem;
	right: 0.2rem;
	width: 0.3rem;
	height: 0.3rem;
	font-size: 0.2rem;
	line-height: 0.3rem;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-style: normal;
	background: #333;
	border-radius: 1rem;
	cursor: pointer;
}
#wxnr span {
	display: inline-block;
	padding: 0.03rem 0.1rem;
	line-height: 0.35rem;
	background-color: #ff4751;
	color: #fff;
	border-radius: 0.05rem;
	cursor: pointer;
}
#wxnr span.wx {
	padding-left: 0.4rem;
	background-image: url(../images/wx.png);
	background-size: 0.28rem;
	background-position: 0.1rem center;
	background-repeat: no-repeat;
}
/*复制提示*/
#weixin {
	position: fixed;
	top: 50%;
	margin-top: -0.4rem;
	z-index: 9999999;
	font-size: 0.26rem;
	color: #fff;
	width: 90%;
	right: 5%;
	line-height: 0.8rem;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
	border: 2px solid #333;
	border-radius: 0.1rem;
	display: none;
}
textarea {
    resize: none;
  
}