/*
 * 文字排版 */
h1 { 
	font-size: .18rem
}
h2,.f16{ 
	font-size: .16rem
}
h3,.f14{ 
	font-size: .14rem
}
h4,.f12{ 
	font-size: .12rem
}
.fsn {
	font-style:normal
}
h1, h2, h3 { 
	line-height: 2; 
	font-weight: normal; 
}
body{
    margin: 0;
    padding:0;
}
/*
 * 定位*/
.tl{
	text-align:left
}
.tc{
	text-align:center
}
.tr{
	text-align:right
}
.fl{
	float:left;
	display:inline
}
.fr{
	float:right;
	display:inline
}
.clearfix:after{
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden
}
.clearfix{
	display:inline-block
}
* html .clearfix{
	height:1%
}
.clearfix{
	display:block
}
.pr{
	position:relative
}
.pa{
	position:absolute
}
.pfb{
	position:fixed;
	bottom:0;
	left:0;
}
.hidden{
	visibility:hidden
}
.hide{
	display:none
}
/*
 * 长度高度*/
.w{
	width:100%
}
.w85{
	width:85%
}
.w73{
	width:73%
}
.h{
	height:100%
}
.h40{
	height:.4rem;
	line-height:.4rem
}
/*
 * 边距*/
.mc10{
	margin-left:.1rem;
	margin-right:.1rem
}
.mt5{
	margin-top:.05rem
}
.mt10{
	margin-bottom:.1rem
}
.mb5{
	margin-bottom:.05rem
}
.mb10{
	margin-bottom:.1rem
}
.pc10{
	padding-left:.1rem;
	padding-right:.1rem
}
.pt5{
	padding-top:.05rem
}
.pb5{
	padding-bottom:.05rem
}
.pt10{
	padding-top:.1rem
}
.pb10{
	padding-bottom:.1rem
}
.pb44{
	padding-bottom: .44rem
}
.pr13{
	padding-right:.13rem
}
/*
 * 圆角*/
.brcle{
	-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
			border-radius: 50%;
}
/*
 * 其它*/
.block{
	display:block;
}
.inb{
	display: inline-block;
}
.response {
	width: 100%;
	max-width: 100%;
	/* height: 1.16rem; */
	-webkit-touch-callout: none;
}
.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ellipsis-2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
}
/*
 * justify左右两端对齐,flex-equal等分*/
.flex,.flex-equal,.justify {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.justify {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content:space-between;
}
.flex-equal li {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}
.justify_fix {
	width: 100%; 
	height: 0; 
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

/*
 * box-sizing:boder-box*/
.list-container li,
.cart-B,
a,
button,
.leavewords,
input,
.editor-B-R{
	-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
			box-sizing: border-box;
}

/*
 * 背景、字体颜色*/
body {
    color: #333333; 
    background-color: #f0f0f0;
}
.cfff{
	color:#fff
}

a,
a:visited,
a:hover,
a:active,
a:focus{
	color: #333;
	text-decoration: none;
}
input::-webkit-input-placeholder, 
textarea::-webkit-input-placeholder,
input:-moz-placeholder, 
textarea:-moz-placeholder,
input::-moz-placeholder, 
textarea::-moz-placeholder,
input:-ms-input-placeholder, 
textarea:-ms-input-placeholder{ 
    color: #999;
}

.btn-container{
	display: block;
	margin: 0.08rem 0.1rem 0rem 0.1rem;
	padding: 0.13rem 0.15rem;
	background: #fff;
	border-radius: 0.06rem;
    font-size: 0.15rem;
	text-align: center;
}
.select{
    background: red;
	color:#fff;
}
.input-container{
	display: block;
	margin: 0.08rem 0.1rem 0rem 0.1rem;
	padding: 0.12rem 0.15rem;
	background: #fff;
	border-radius: 0.06rem;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
　　color: #999;
}
input:-moz-placeholder, textarea:-moz-placeholder {
　　color:#999;
}
input::-moz-placeholder, textarea::-moz-placeholder {
　　color:#999;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
　　color:#999;
}
.input-container input{
	width:100%;
    color: #333;
    font-size: 0.14rem;
}
.button-container{
	display: block;
	margin: 0rem 0.1rem 0rem 0.1rem;
	padding: 0.13rem 0.15rem;
	border-radius: 0.06rem;
	text-align: center;
	background: #06aee0;
	color:#fff;
}
.button-container input{
	background: #06aee0;
	color: #fff;
    font-size: 0.18rem;
}
.button-out-container{
	display: block;
	margin: 10px;
	padding: 13px 15px;
	border-radius: 7px;
	text-align: center;
	background: #fff;
	color:#fff;
	border: #06aee0 solid 1px;
}
.button-out-container input{
	background: #fff;
	color: #06aee0;
}
.mt20{
    margin-top:0.2rem;
}
.mb50{
    margin-bottom:0.5rem;
}
input[type=button], input[type=submit], input[type=file], button { 
	cursor: pointer; 
	-webkit-appearance: none; 
} 