page{
	 
 }
 html{
	 font-size: 10px;
 }
 html,body{
	 margin: 0;
	 padding: 0;
	 background-color: #efeff4;
}
body{
	font-size: 16px;
}
.main-body{
	max-width: 640px;
	margin: 0 auto;
}
p,ol,ul,li{
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
	color: #323232;
}
[gourl]{
	cursor: pointer;
}	
.iconfont:before{
	line-height: 1.5;
}
 
view,div{
	display: flex;
	flex-direction: column;
	color: #323232;
	box-sizing: border-box;
	flex-shrink:0;
	font-size: 1.4rem;
}
 
text{
	display: inline-block;
	line-height: 1.5;
}
navigator{
	display: flex;
	color: #323232;
	text-decoration: none;
	flex-direction: column;
	box-sizing: border-box;
}

 /*****详情******/
.d-userbox{
	display: flex;
	flex-direction: row;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #eee;
	align-items: center;
}
.d-userbox-head{
	width: 6rem;
	height: 6rem;
	margin-right: 1rem;
	border-radius: 50%;
}
.d-userbox-nick{
	font-size: 1.6rem;
	color: #323232;
	margin-bottom: 0.5rem;
}
.d-userbox-follows{
	display: flex;
	flex-direction: row;
	color: #646464;
	 
}
.d-img{
	width: 100%;
	height: auto;
}
.d-title{
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
	color: #323232;
}
.d-tools{
	display: flex;
	flex-direction: row;
	margin-bottom: 1rem;
	color: #555;
	font-size: 1.4rem;
}
.d-img{
	width: 100%;
}
.d-content{
	font-size: 1.4rem;
	color: #646464;
	line-height: 1.5;
	margin-bottom: 1rem;
	align-items: baseline;
}
.d-content img{
	max-width: 100% !important;
}
.market-price{
	color: #929292;
	text-decoration: line-through;
	font-style: italic;
	font-size: 1.4rem;
}
/***row-box***/
 .row-box{
	 display: flex;
	 flex-direction: column;
	 background-color: #fff;
	 padding: 1rem;
 }
 .row-box-hd{
	 display: flex;
	 flex-direction: row;
	 border-bottom: 1px solid #eee;
	 padding-top: 0.8rem;
	 padding-bottom: 0.8rem;
	 font-size: 1.6rem;	 
 }
 .row-box-more{
	 display: flex;
	flex-direction: row;
	 align-items: center;
	 font-size: 1.4rem;
	 margin-right: 0.5rem;
	 color: #646464;
 }
 .row-box-more:after{
	 display: inline-flex;
    font-family: iconfont;
    content: "\e6a3";
    color: #999;
	font-size: 1.6rem;
 }
 /***支付方式****/
 .paylist{
	 display: flex;
 	flex-direction: row;
 	flex-wrap: wrap;
 }
 .paylist-item{
 	border: 1px solid #eee;
 	border-radius: 2rem;
 	margin-bottom: 1rem;
 	text-align: center;
 	padding: 1rem;
 	color: #646464;
 	cursor: pointer;
 	width: 31%;
 	margin-right: 2%;
 	
 }
 .paylist-item-active{
 	color: #f60;
 	border: 1px solid #f60;
 }
 .emptyData{
	 padding: 2rem;
	 font-size: 2rem;
	 text-align: center;
	 color: #646464;
 }
/**kslist**/
.kslist{
	display: flex;
	flex-direction: row;		
	align-items: center;
	padding-left: 1rem;
}
.kslist-label{
	margin-right: 0.6rem;
	color: #646464;
}
.kslist-item{
	border: 1px solid #eee;
	padding: 0.4rem 0.8rem;
	margin-right: 1rem;
}
.kslist-active{
	color: #007AFF;
} 
/***fixAdd***/
.fixedAdd {
    position: fixed;
    bottom: 10rem;
    right: 0.3rem;
    width: 4.5rem;
    height: 4.5rem;
    text-align: center;
    box-sizing: border-box;
    background-color: rgba(240,85,75,.82);
    color: #fff;
    font-family: iconfont;
    font-size: 1.4rem;
    padding-top: 0.5rem;
    border-radius: 1rem;
}
.fixedAdd:before{
	content: "\e7e8";
	display: block;
	font-size: 1.6rem;
}
@keyframes toggle{
	from{
		opacity: 0;
 
	}
	30%,
	50%,
	80%{
		opacity: 1;
	}
	90%{
		opacity: 0.6;
	}
	100%{
		opacity: 0;
	 
	}
	
}
.animated-toggle{
	animation-name: toggle;
	animation-duration: 2s;
}
@keyframes hide{
	from{
		opacity: 1;
	}
	30%{
		opacity: 0.6;
	}
	60%{
		opacity: 0.3;
	}
	70%{
		opacity: 0;
	}
	100%{
		opacity: 0;
	}
}
.animated-hide{
	animation-name:hide;
}
@keyframes show{
	from{
		opacity: 0;
	}
	10%{
		opacity: 0.3;
	}
	60%{
		opacity: 0.6;
	}
	80%{
		opacity: 1;
	}
	100%{
		opacity: 1;
	}
}
.animated-show{
	animation-name:show;
}

@keyframes slideInLeft{
	from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animated-slideInLeft{
	animation-name: slideInLeft ;
}
@keyframes slideOutLeft{
	from {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.animated-slideOutLeft{
	animation-name: slideOutLeft ;
}
@keyframes slideInRight{
	from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animated-slideInRight{
	animation-name: slideInRight ;
}
@keyframes slideOutRight{
	from {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(100%, 0, 0);
  }
}
.animated-slideOutRight{
	animation-name: slideOutRight ;
}

/****动画*****/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}.comment-hd {
    display: block;
    padding: 0.8rem 0rem;
    background-color: #F20C00;
    color: #fff;
    width: 9rem;
    font-size: 1.4rem;
    text-align: center;
}
/*****comment-list****/
.comment-list{
	
}
.comment-item {
    display: flex;
	flex-direction: row;
    border-bottom: 1px solid #ddd;

    margin-bottom: 0.5rem;
    padding: 1rem;
    background-color: #fff;
}

.comment-item-head {
    margin-right: 0.5rem;
	width: 3rem;
	height: 3rem;
}
 

.comment-item-nick {
    font-size: 1.6rem;
    color: #007AFF;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.comment-item-tools {
	display: flex;
	flex-direction: row;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.comment-item-addr {
    margin-right: 0.5rem;
	color: #969696;
	font-size: 1.2rem;
}
.comment-item-time{
	color: #969696;
	font-size: 1.2rem;
}
.comment-item-content {
    color: #646464;
    font-size: 1.4rem;
    line-height: 1.5;
    cursor: pointer;
    padding: 0;
}
/*****comment-form*****/
.comment-formbox{
	position: fixed;
	left:0;
	right: 0;
	bottom: 0;
	background-color: #eee;
	padding: 0.5rem 0rem;
}
.comment-input-btn{
	display: flex;
	flex-direction: row;
	position: relative;
	height: 4rem;
    line-height: 4rem;
    margin-top: 0.5rem;
    margin-left: 1rem;
	margin-right: 1rem;
    border-radius: 3rem;
    padding-left: 3rem;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    color: #444;	 
}
.comment-formbox-form{
	display: none;
}

.comment-formbox-textarea{
	height: 8rem;
    display: flex;
    position: relative;
    padding: 0.5rem;
    width: 90%;
    margin: 0 auto;
	border: 1px solid #ddd;
	border-radius: 0.5rem;
	color: #323232;
	background-color:#fff;
}

.comment-input-btn:before{
	font-family: iconfont;
	content: "\e761";
	display: inline-flex;
	font-size: 1.6rem;
	position: relative;
	left: -2rem;
}

.comment-formbox-btns{
	text-align: center;
	padding-top: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.comment-formbox-bt{
	width: 8rem;
	line-height: 3.6rem;
	text-align: center;
	margin-right: 2rem;
	display: inline-block;
	background-color: #555;
	color: #fff;
	border-radius: 1rem;
	cursor: pointer;
}.input-flex {
	display: flex;
	flex-direction: row;
	margin-bottom: 1px;
	padding: 1rem;
	background-color: #fff;
}

.input-flex-label {
	width: 8rem;
	line-height: 3.6rem;
	font-size: 1.6rem;
	color: #333;
	display: block;
}

.input-flex-require {
	display: flex;
	flex-direction: row;
	position: relative;
	align-items: center;
	font-family: iconfont;

}

.input-flex-require:after{
	content:"\e60d";
	color:red;
	position: absolute;
	left: -1rem;
	font-size:1.2rem;
	transform: scale(0.5);
}

.input-flex-txt {
	flex: 1;
	line-height: 3.6rem;
	color: #646464;
}

.input-flex-text,
.input-flex-select {
	flex: 1;
	height: 3.6rem;
	box-sizing: border-box;
	display: block;
	border: 1px solid #eee !important;
	padding: 0 0.5rem;
	font-size: 1.4rem;
	margin: 0;
	width: 10rem;
}

.input-flex-select {
	-webkit-appearance: menulist-button;
	background-color: #fff;
	color: #323232;
}

.input-flex-note {
	margin-left: 0.3rem;
	color: #666;
	justify-content: center;
}

.input-flex-btn {
	width: 10rem;
	height: 3.6rem;
	line-height: 3.6rem;
	background-color: #007bff;
	box-sizing: border-box;
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
	margin-left: -0.5rem;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	cursor: pointer;
}

/**textarea**/
.textarea-flex {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	margin-bottom: 0.5rem;
}

.textarea-flex-label {
	margin-bottom: 1rem;
	color: #323232;
}

.textarea-flex-text {
	height: 20rem;
	border: 1px solid #eee;
	border-radius: 0.5rem;
	padding: 0.5rem;
	box-sizing: border-box;
	width:100%;
}

/****radio****/
.radio-flex {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.radio {
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	position: relative;
}
.radioList-item{
	border-bottom: 1px solid #eee;
	padding: 1rem 1rem; 
	cursor: pointer;
	align-items: center;
	display: flex;
	flex-direction: row;
	color: #646464;
}
.radioList-item:before,.radioList-item-active:before{
	font-family: iconfont;
	font-size: 1.8rem;
	margin-right: 0.3rem;
}
.radioList-item:before{						
	content: "\e763";
	color: #aaa;
}
.radioList-item-active:before{
	content: "\e75b";
	color: #0034FF;
}
/***checkbox****/
.checkbox-flex {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.checkbox {
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	position: relative;
}

/**numbot**/
.numbox {
	display: flex;
	flex-direction: row;
	box-sizing: border-box;
	width: 10rem;

}

.numbox-minus,
.numbox-plus,
.numbox-num {
	height: 3rem;
	line-height: 3rem;
	border: 1px solid #eee;
	box-sizing: border-box;
}

.numbox-minus,
.numbox-plus {
	display: block;
	width: 3rem;
	font-size: 1.8rem;
	cursor: pointer;
	text-align: center;

}

.numbox-num {
	width: 100%;
	flex: 1;
	padding: 0;
	margin: 0rem;
	text-align: center;
	border: 1px solid #eee;
	padding-top: 1px;
	border-radius: 0;
	border-left: 0rem;
	border-right: 0rem;
	box-shadow: none;
	color: #666;
}

.numbox-minus-small,
.numbox-plus-small,
.numbox-num-small {
	height: 3rem;
	line-height: 3rem;
	border: 1px solid #eee;
	box-sizing: border-box;
}

/**End numbot**/
/****switch****/
.switch-group {
	display: inline-flex;
	flex-direction: row;
	width: 6.4rem;
	height: 3rem;
	transition-property: background-color, border;
	border: 0.2rem solid #ddd;
	border-radius: 2rem;
	background-color: #fff;
	box-sizing: border-box;
	position: relative;

}

.switch-left,
.switch-right {
	width: 100%;
	visibility: hidden;
	line-height: 3rem;
	color: #646464;

}

.switch-left {
	position: absolute;
	right: 0rem;
	text-align: left;
	top: -0.2rem;
	left: -0.2rem;
	bottom: 0rem;
	padding-left: 1rem;


}

.switch-right {
	position: absolute;
	right: 0rem;
	text-align: right;
	top: -0.2rem;
	left: -0.2rem;
	bottom: 0rem;
	padding-right: 1rem;

	padding-left: 3rem;
}

.switch-left:after,
.switch-right:before {
	content: ".";
	width: 3rem;
	height: 3rem;
	background-color: #007BFF;
	border-radius: 2rem;
	color: #007BFF;
	position: absolute;

	top: 0rem;

}

.switch-left:after {
	right: -0.2rem;
}

.switch-right:before {
	left: -0.2rem;

}

.switch-active {
	visibility: visible;

}

/****图片上传****/
.upimg-box {

	display: flex;
	flex-direction: row;
	padding: 1rem;
	flex-wrap: wrap;

}

.upimg-btn {
	width: 6rem;
	height: 6rem;
	line-height: 6rem;
	font-size: 3.2rem;
	text-align: center;
	border: 1px solid #eee;
	margin-right: 1rem;
	color: #646464;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.upimg-btn-icon {
	font-style: normal;
}

.upimg-btn-icon:before {
	font-family: iconfont;
	color: #969696;
	font-size: 2.4rem;
	font-weight: 100;
	content: "\e6da";
}

.upimg-list {
	flex: 1;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.upimg-item {
	position: relative;
	width: 6rem;
	height: 6rem;
	margin-right: 1rem;
	margin-bottom: 1rem;
}

.upimg-del {
	position: absolute;
	top: 1px;
	right: 1px;
	justify-content: center;
	align-items: center;

}

.upimg-del:after {
	display: flex;
	font-family: iconfont;
	flex-direction: column;
	content: "\e646";	
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	cursor: pointer;
	font-size: 1.2rem;
	color: red;
	background-color: #e0e0e0;
	opacity: .6;
}

.upimg-img {
	width: 6rem;
	height: 6rem;
}
.g-hd-1{
	font-weight: bold;
	font-size: 1.6rem;
	color: #323232;
	border-bottom: 1px solid #eee;
	padding-bottom: 1rem;
	margin-bottom: 1rem;	
}
.g-hd-2{
	font-weight: bold;
	font-size: 1.4rem;
	color: #323232;
	border-bottom: 1px solid #eee;
	padding-bottom: 0.6rem;
	margin-bottom: 0.6rem;	
}
.g-hd-3{
	font-size: 1.4rem;
	color: #323232;
	border-bottom: 1px solid #eee;
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;	
}
/**g-search-box***/
.g-search-box{
	display: flex;
	flex-direction: row;
	margin-top: 0.5rem;
	height: 3.6rem;
	border-bottom: 1px solid #ddd;
	background-color: #fff;
}
.g-search-input{
	flex: 1;
	border: 0;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.g-search-btn{
	width: 4rem;
	justify-content: center;
	align-items: center;
	
}
.g-search-btn:before{
	font-family: iconfont;
	color: #646464;
	font-size: 1.8rem;
}
/**g-order***/
.g-order{
	margin: 0 0.5rem;
}
.g-order:before{
	font-family: iconfont;
	content: "\e79c";
	line-height: 1;
	color: #ddd;
}
.g-order:after{
	font-family: iconfont;
	content: "\e79b";
	line-height: 1;
	margin-top: -0.7rem;
	color: #ddd;
}
.g-order-up:before,.g-order-down:after,.g-order-active{
	color: #f60;
}/***单行列表***/
.row-item,.row-item-text{
	display: flex;
	flex-direction: row;
	
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #eee;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	position: relative;
	align-items: center;
	color: #646464;
	cursor: pointer;
	font-size: 1.4rem;
}
.row-item-icon{
	margin-right: 0.3rem;
	font-family: iconfont;
	font-style: normal;
	color: #646464;
	font-size: 1.8rem;
}
.row-item:after{
	display: inline-flex;
	font-family: iconfont;
	content: "\e6a3";
	color: #999;
	 
}
.row-item-title{
	flex: 1;
	font-size: 1.4rem;
}
.row-item-text{
	cursor:initial;
}
.row-item-active{
	font-weight: bolder;
}
/**flexlist 单列列表**/
.flexlist{
	
}
.flexlist-item{
	display: flex;
	flex-direction: row;
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #eee;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	padding-top: 0.5rem;
	background-color: #fff;
}
 
.flexlist-img{
	width: 6rem;
	height: 6rem;
	margin-right: 1rem;
}
.flexlist-title{
	font-size: 1.6rem;
	color: #323232;
	margin-bottom: 0.5rem;
}
.flexlist-ks{
	margin-top: -0.3rem;
	color: #f60;
	font-size: 1.2rem;
	margin-bottom: 0.3rem;
}
.flexlist-desc{
	font-size: 1.2rem;
	color: #969696;
	margin-bottom: 0.5rem;
}
.flexlist-row{
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #646464;
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}
/***mtlist  多列 布局****/
.mtlist {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 0rem 0rem 0.5rem 0.5rem;
}

.mtlist-item {
	width: 50%;
	padding-right: 0.5rem;
	margin-bottom: 1rem;
	box-sizing: border-box;
}

.mtlist-item-bd {
	background-color: #fff;
	padding-bottom: 0.5rem;
	box-sizing: border-box;
}

.mtlist-item-pd {
	padding: 0rem 0.5rem;
	box-sizing: border-box;
	overflow: hidden;
}

.mtlist-bgimg-box{
	position: relative;
	height: 0;
	padding-bottom: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: row;
}
.mtlist-bgimg{
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.mtlist-img {
	max-width: 100%;
	height: auto;
}

.mtlist-item-money {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	margin-bottom: 0.5rem;
	padding-top: 0.5rem;
}

.mtlist-item-money-flex {
	flex: 1;
	display: flex;
	flex-direction: row;
	font-size: 1.4rem;
	color: #ed6d53;
	align-items: flex-end;
}

.mtlist-item-money_money {
	font-size: 1.6rem;
	line-height: 1;
}

.mtlist-item-money_num {
	color: #646464;
	font-size: 1.4rem;
}

.mtlist-title {
	font-size: 1.4rem;
	color: #323232;
	margin-bottom: 0.5rem;
	height: 2.4rem;
	line-height: 2.4rem;
	overflow: hidden;
	text-align: center;
}

.mtlist-desc {
	color: #646464;
}
/***sglist****/
.sglist{}
.sglist-item{
	padding: 1rem;
	background-color: #fff;
	margin-bottom: 0.5rem;
	display: flex;
    flex-direction: column;
}
.sglist-imgbox{
	
}
.sglist-img{
	width: 100%;
	border-radius: 1rem;
	margin-bottom: 0.5rem;
}
.sglist-title{
	color: #323232;
	margin-bottom: 0.5rem;
	font-size: 1.6rem;
}
.sglist-imglist{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.sglist-imglist-img{
	width: 6rem;
	height: 6rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
}

.sglist-desc{
	color: #646464;
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}
.sglist-user{
	flex:1;
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #646464;
}
.sglist-nick{
	color: #323232;
	font-size: 1.6rem;
}
.sglist-uhead{
	border-radius: 50%;
	height: 4rem;
	width: 4rem;
	margin-right: 0.5rem;
}
.sglist-ft {
    text-align: center;
    display: flex;
	flex-direction: row;
    padding: 0.6rem 0.6rem;
    font-size: 1.4rem;
}
.sglist-ft-love,
.sglist-ft-cm,
.sglist-ft-view{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.sglist-ft-love:before,
.sglist-ft-cm:before,
.sglist-ft-view:before {
    font-family: "iconfont" !important;
    display: inline-block;
    margin-right: 0.4rem;
    font-size: 1.4rem;
	
}

.sglist-ft-love:before {
    content: "\e669";
}

.sglist-ft-cm:before {
    content: "\e667";
}

.sglist-ft-view:before {
    content: "\e819";
}

.sglist-ft-love,
.sglist-ft-cm {
    flex: 1;
    border-right: 1px solid #eee;
}
/**flex-table**/
.flex-table{
	display: flex;
	flex-direction: row;
	border-bottom: 1px solid #eee;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;	
}
.flex-table-label {
    margin-right: 1rem;
    color: #323232;
    font-size: 1.6rem;
    font-weight: 500;
    min-width: 8rem;
    text-align: right;
}
.flex-table-box {
    flex: 1;
	padding-top: 0.2rem;
    font-size: 1.4rem;
    color: #646464;
}
.loadMore{
	cursor: pointer;
	text-align: center;
	line-height: 3.6rem;
	color: #646464;
}
.m-navPic{
	display: flex;
	flex-direction: row;
	background-color: #fff;
	padding: 1rem 0rem 0rem 0rem;
	flex-wrap: wrap;
}
.m-navPic-item{
	width: 20%;
	padding: 0rem 0rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	box-sizing: border-box;
}

.m-navPic-img{
	width: 3rem;
	height: auto;
	margin-bottom: 0.5rem;
	line-height: 1;
}
.m-navPic-icon{
	font-family: iconfont;	
	margin-bottom: 0.5rem;
}
.m-navPic-icon:before{
	font-size: 3rem;
	color: #ed6d53;
}
.m-navPic-title{
	font-size: 1.2rem;
	color: #323232;
}

.adBox{
		display: flex;
		flex-direction: row;
	}
	.adBox-item{
		flex: 1;
	}
	.adBox-img{
		width: 100%;
	}.alert-mask{
	background-color: #333;
	opacity: 0.2;
	position: fixed;
	left: 0;
	right: 0;
	top:0;
	bottom: 0;
	z-index: 98;
}
.confirm-group,.alert-group{
	display: none;
	z-index: 999;
}
.alert {
	position: fixed;
	top: 50%;
	width: 26rem;
	left: 50%;
	margin-left: -13rem;
	margin-top: -10rem;
	z-index: 999;
	padding: 0rem;
	font-size: 1.4rem;
	border-radius: 2rem;
}
.alert-bd{
	background-color: #fff;
}
.alert-active{
	display: flex;
}
.alert-header {
	font-size: 1.6rem; 
	width: 100%;
	text-align: center;
	height: 3.6rem;
	line-height: 3.6rem;
	background-color: #fafafa;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}
.alert-msg{
	background-color: #fff;
	padding: 2rem;
	text-align: center;
	font-size: 1.6rem;
}
.alert-close {
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
}

.alert-ft {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	height: 4rem;
	text-align: center;
	background-color: #fafafa;
	border-bottom-left-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
	
}

.alert-ft-btn {
	display: inline-flex;
	flex: 1;
	margin: 0.5rem 0rem 0rem 0rem;
	font-size: 1.6rem;
	height: 3rem;
	line-height: 3rem;
	border: 0rem;
	padding: 0rem 1rem;
	
	color: #007aff;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	justify-content: center;
}

.alert-ft-success {
	color: #007aff;
}

.alert-ft-fail {
	color: #007aff;
}


/***toast***/

.toast {
	position: fixed;
	bottom: 10rem;
	left: 0rem;
	right: 0rem;
	z-index: 9999;
	padding:0.8rem;
	font-size: 1.4rem;
	line-height: 1.5;
	width: 20rem;
	text-align: center;
	color: #fff;
	background-color: #1E1E1E;
	margin: 0 auto;
}

.toast-active {
	display: flex;
}

.toast-success {
	background-color: #27AE60 !important;
}

.toast-error {
	background-color: #C0392B !important;
}

.toast-info {
	background-color: #F1C40F !important;
}



/**modal****/
.modal-group{
	display: none;
}
.modal-mask{
	background-color: #333;
	opacity: 0.2;
	position: fixed;
	left: 0;
	right: 0;
	top:0;
	bottom: 0;
	z-index: 98;
}
.modal{
	position: fixed;
	left:0.5rem;
	right: 0.5rem;
	top: 50%;
	margin-top: -19rem;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 2rem;
	z-index: 999;
}
.modal-header{
	border-bottom: 1px solid #eee;
	padding: 0rem 0rem 0rem 1.5rem;
	margin-bottom: 1rem;
	font-weight: bold;
	display: flex;
	flex-direction: row;
	line-height: 5rem;
}
.modal-title{
	flex: 1;
	font-size: 1.6rem;
}
.modal-close{
	font-family: iconfont;
	width: 5rem;
	height:5rem;
	line-height: 5rem;
	color: #646464;
	text-align: center;
	cursor: pointer;
}
.modal-body{
	padding: 0rem 1.5rem  2rem 1.5rem;
	max-height: 32rem;
	overflow-y: auto;
}
 /****header****/
 .header-row,.header-row-show{
	 height: 4.4rem;
	 clear: both;
 }
 .header,.header-show{
	 position: fixed;
	 top:0;
	 left:0;
	 right: 0;
	 display: flex;
	 flex-direction: row;
	 background-color: #f7f7f7;
	 padding-top: 0.7rem;
	 padding-bottom: 0.7rem;
	 align-items: center;
	 z-index: 998;
	 box-shadow: 0 1px 0.6rem #ccc;
	 height: 4.4rem;
	 box-sizing: border-box;
 }
 
 .header-logo{
	 width:3rem;
	 height: 3rem;
	 margin-right: 0.5rem;
	 margin-left: 0.5rem;
 }
 .header-search-box{
	 display: flex;
	 flex-direction: row;
	 position: relative;
	 flex: 1;
 }
 .header-search-icon{
	 display: flex;
	 flex-direction: row;
	 align-items: center; 
	 font-family: iconfont;
	 position: absolute;
	 left:0.5rem;
	 top: 0rem;
	 bottom: 0;
	 width: 2rem;
	 color: #646464;
	 font-size: 1.4rem;
 }
 .header-search{
	 box-sizing: border-box;
	 flex: 1;
	 height: 3.4rem;
	 line-height: 3.4rem;
	 border: 1px solid #ddd !important;
	 
	 border-bottom-left-radius: 0.5rem;
	 border-top-left-radius: 0.5rem;
	 border-bottom-right-radius: 0;
	 border-top-right-radius: 0;
	 padding-left: 2.6rem;
	 font-size: 1.4rem;
	 color: #646464;
	 background-color: #fafafa;
 }
 .header-search-btn{
	height: 3.4rem;
	line-height: 3.4rem; 
	margin-right: 0.2rem;
	border:0;
	border-radius: 0;
	border-bottom-right-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	padding: 0rem 1.2rem; 
	background-color: #e0e0e0;
    color: #666;
	font-size: 1.4rem;
	display: flex;
	flex-direction:row;
	align-items:center;
	cursor: pointer;
 }
 .header-back{
	 margin-right: 0.5rem;
	 cursor: pointer;
	 position: absolute;
 }
 .header-back:after{
	 font-family: "iconfont" !important;
	 content: "\e679";
	 width: 3rem;
	 height: 3rem;
		line-height: 3rem;
		justify-content: center;
		color: #646464;
		display: inline-flex;
		font-size: 2rem;
 }
 .header-back-fixed{
 	position: fixed;
 	left: 0rem;
 	top: 0.5rem;	 
 	width: 4rem;
 	height: 4rem;
 	border-radius: 50%;
 	line-height: 4rem;
 	color: #646464;
 	font-size: 2rem;
 	text-align: center;
	cursor: pointer;
 }
 .header-back-fixed:after{
 	font-family: "iconfont" !important;
 	content: "\e679";
 }
 .header-title{
	 color: #333;
	 font-size: 1.6rem;
	 text-align: center;
	 flex: 1;
	 line-height: 3rem;
	 height: 3rem;
	 overflow: hidden;
	 padding:0rem 3rem;
 }
 .header-right{
 	margin-right: 0.5rem;
 	color: #646464;
 	line-height: 3rem;
 }
.header-right-btn{
	margin-right: 0.5rem;
	color: #969696;
	line-height: 2.6rem;
	padding: 0rem 1rem;
	border:1px solid #969696;
	border-radius: 0.5rem;
	cursor: pointer;
	position: absolute;
    right: 0.5rem;
}

.header-fixtop{
	position: fixed;
	top:0rem;
	left:0rem;
	right: 0;
	display: flex;
	flex-direction: row; 
	z-index: 9990;
 }
 .header-fixtop-right{
 	position: fixed;
 	top:0rem;
 	right: 0;
 	display: flex;
 	flex-direction: row; 
 	z-index: 9990;
  }
 .header-fixtop-icon:before{
	 font-family: iconfont;
	 color: #fff;
	 font-size: 1.8rem;
	 margin-right: 1rem;
	 height: 4.4rem;
	 line-height: 4.4rem;
 }
 
/****main-body*****/
.main-body{
	
}
 /******footer*******/
 .footer-row{
	height: 5rem;
 }
.footer{
	position: fixed;
	bottom: 0rem;
	left: 0rem;
	right: 0rem;
	z-index: 100;
	background-color: #fafafa;
	border-top: 1px solid #eee;
	font-size: 1.4rem;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.footer-item {
	display: flex;
	flex-direction: column;
	position: relative;
	text-align: center;
	flex: 1; 
	text-decoration: none;
	color: #929292;
	padding: 0.7rem 0rem;
	line-height: 1.4;
	height: 5rem;
    box-sizing: border-box;
}
.footer-item:before{
	font-family:"iconfont" !important;
	font-size:1.6rem;
	font-style:normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #929292;
	line-height: 1;
	margin-bottom: 1px;
}
.footer-item-num {
	display: none;
	color: #929292;
	position: absolute;
	right: 0.3rem;
	top: 0.4rem;
	border-radius: 50%;
	border: 1px solid #eee;
	width: 1.6rem;
	height: 1.6rem;
	font-size: 1.2rem;
	line-height: 1.6rem;
}
 
 
.footer-add:after {
	font-family: iconfont;
	content: "\e6da";
	font-size: 1.8rem;
    position: absolute;
    width: 3.6rem;
    height: 3.6rem;
		line-height: 3.6rem;
    top: -1.6rem;
    left: 50%;
    margin-left: -1.8rem;
    z-index: 99;
	background-color: #d3d3d3;
	color: #666;
	border-radius: 50%;
}
.footer-add:before{
	content: "a";
	visibility: hidden;
}
.footer-active,.footer-active:before{
	color: #007bff;
}

.footerBox{
	position: fixed;
	bottom: 0rem;
	left: 0rem;
	right: 0rem;
	z-index: 100;
	background-color: #fafafa;
	border-top: 1px solid #eee;
	font-size: 1.4rem;
	display: flex;
	flex-direction: row;
	align-items: center;
}
 .footerFix{
 	position: fixed;
 	bottom: 0rem;
 	left: 0rem;
 	right: 0rem;
 	z-index: 100;
 } 

.back-top{
	position: fixed;
	right: 1rem;
	bottom:10rem;
	background-color: #009688;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.back-top-icon{
	font-family: iconfont;
	line-height: 1;
}
.back-top-icon:after{
	content:"\e603";
	font-size: 1.2rem;
	color: #fff;
}
.back-top-text{
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 300;
	color: #fff;
} /****tabs-border***/
.tabs-border{
	display: flex;
	flex-direction: row;
	border-bottom: 1px solid #eee;
	line-height: 3.6rem;
	padding: 0rem 0.5rem;
	background-color: #fff;
 
}
.tabs-border-item{
	flex: 1;
	text-align: center;
	cursor: pointer;
}
.tabs-border-item-inner{
	padding: 0rem 2rem;
}
.tabs-border-active{
	border-bottom: 1px solid #f60;
}
.tabs-border-box{
	display: none;
	flex-direction: column;
}
.tabs-border-box-active{
	display: flex;
}
/*****竖排 tabs-toggle******/
.tabs-toggle{
	background-color: #fff;
	 
	padding:0rem 0.5rem;
}
.tabs-toggle-hd{
	line-height: 3.6rem;
	flex: 1;
	display: flex;
	flex-direction: row;
	position: relative;
	border-bottom: 1px solid #f0f0f0;
}
.tabs-toggle-hd:after{
	font-family: iconfont;
	content: "\e661";
	color: #646464;
	font-size: 1.4rem;
	position: absolute;
	right: 1px;
}
.tabs-toggle-hd-active{
	margin-bottom: 0.5rem;
	border-bottom: 1px solid #fafafa;
}
.tabs-toggle-hd-active:after{
	content: "\e6de";
}
.tabs-toggle-box{
	display: none;
	padding-bottom: 1rem;
}
.tabs-toggle-active{
	display: block;
	border-bottom: 1px solid #eee;
}
/****tab-select*****/

.tab-select-section {
	display: block;
	position: relative;
}

.tab-select {
	border-bottom: 1px solid #ccc;
	background-color: #fff;
	color: #0088CC;
	display: flex;
	flex-direction: row;
}



.tab-select-item {
	display: flex;
	flex-direction: row;
	flex: 1;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 1.5rem 0rem;
	font-size: 1.4rem;
	cursor: pointer;
}

.tab-select-label {
	display: flex;
	flex-direction: row;
	position: relative;
	margin-right: 0.3rem;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	color: #646464;
}

.tab-select-t3up {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 0.4rem solid transparent;
	border-right: 0.4rem solid transparent;
	border-bottom: 0.6rem solid #323232;
	margin-left: 0.5rem;
	margin-top: 0.3rem;
}

.tab-select-t3down {
	width: 0;
	height: 0;
	display: inline-block;
	border-left: 0.4rem solid transparent;
	border-right: 0.4rem solid transparent;
	border-top: 0.6rem solid #323232;
	margin-left: 0.5rem;
	margin-top: 0.3rem;
	
}

.tab-select-b {
	width: 1px;
	height: 1.6rem;
	background: #ccc;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
}



/***.tab-select-box**/

.tab-select-box {
	display: none;
	border: 1px solid #ccc;
	border-left: 0rem;
	border-right: 0rem;
	position: absolute;
	top: 5rem;
	left: 0rem;
	right: 0rem;
	padding: 0.5rem;
	background-color: #fff;
	z-index: 999;
}
.tab-select-catbox{
	display: flex;
	flex-direction: row;
}
.tab-select-box-item {
	height: 4rem;
	line-height: 4rem;
	display: block;
	text-decoration: none;
	color: #999;
	font-size: 0.9em;
	padding-left: 0.3rem;
	cursor: pointer;
	border-bottom: 1px solid #ccc;
}

.tab-select-box1 {
	width: 10rem;
	background-color: #f9f9f9;
 
	float: left;
}

.tab-select-box2 {
	flex: 1;
	padding: 0rem 1rem;
	background-color: #fff;
	float: left;
}

.tab-select-box-pd {
	padding: 0rem 1rem;
}

.tab-select-box1item {
	height: 4rem;
	line-height: 4rem;
	display: block;
	text-decoration: none;
	color: #999;
	font-size: 1.4rem;
	padding-left: 0.3rem;
	cursor: pointer;
}

.tab-select-box1item-active {
	color: #1AB9AC;
}

.tab-select-box2item {
	height: 4rem;
	display: none;
	line-height: 4rem;
	text-decoration: none;
	color: #999;
	font-size: 1.4rem;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
}

.tab-select-box2item-active {
	color: #239EF7;
}

.tab-select-show {
	display: block;
}/****raty评价组件***/
.raty-group{
	display: flex;
	flex-direction: row;
}
.raty-label{
	margin-right: 1rem;
}
.raty-row{
	position: relative;
	height: 1.7rem;
	 
}
.raty-item{
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: row;
}

.raty-no,.raty-yes,.raty-yes-half:before{
	background-size: 100%;
	width: 1.7rem;
	height: 1.7rem;
	background-repeat: no-repeat;
	cursor: pointer;
}
.raty-yes-half{
	width: 0.8rem;
	height: 1.7rem;
	overflow: hidden;
}
.raty-no{
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAbCAYAAABvCO8sAAABS2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+nhxg7wAAAdBJREFUSIm91rtrFFEUwOFvk1VJ8EWK/AGCQQUfGBUCivhEN66pfKGNVSxEbNPY2FhY2miVRhttLCxMobAgaCFYpFAsRAu1sfCBD8RHcWdxMszM7tx1c5qZc8498+OeOefcW2u1WiLkMB7gR9XAgRgazuBQTGA9ImYwgdVwt2pwzA53YgRNDC8GsJk8l6OxGMDJ1PvJfgPXYl1Kb2BFP4FHM/qQfynuC3Ayx1YprVWAq4QKzcpBrO72I3VMYSJlG8TKHH0US3K+sQxP8Dl5H87EtWUppuuYwz6cF5o5RsY6+J/jGOYH8A0XhOnxLhJYJjexHfMs/Idz2Ig7/wn0HdPC3P3SNmaL5oOw9bP41APspVAXN7KOoiqdxRY8ioDdxjY8y3OWtcUr7MbVCrBZHFeSnU59+EtIc7eyvtOCbhr/SAXgDqzpBThq4VDoJDUhpdHARsGat7hfEHOqF+BUju0hxoWL1Dl8zfg3YUMMcAj7U/ofXMYBvE/069iKp5nYEzHAvcI1glCpTVwSKjctL4T/fAW/E1vhkVUGbB+2j4Vd3CtZ+xMz2IPXwjAfrwKsCe1wTWj+NyWwtLSwGbcUpLXoXjqGi8KYqiofcRq7.8rem/AS4ERUV8O+XDAAAAAElFTkSuQmCC);	
}

.raty-yes,.raty-yes-half:before{
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAbCAYAAABvCO8sAAABS2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+nhxg7wAAAx1JREFUSIm1lU9IFFEcx39vZvbtzOyYrq2sorsiIZFQUiFamVlUlBVkRJmpoKcudYgOWQQF0alLXboEC1qElxKC8FSiUVEQIf3DEnN3dVtd3dJt3J15816HsNx11J2N/Z3mfX+/7+/zHvP+IPYQLEdIbLyic3m3vKpv1qpXsI4DkIyxDgAmAcAlq17OqsEvt2OFfCmVDH+zVW9GQIHNnhHYHMohH71+ud2VdaDdCLcCAPAsjjCdvph1oMMY3bTwLRn+pqwCg1LzPtEYxwvjHPKpOCC3FmUNiOnk2SQzS4CNRi9nDSgbgdql2tjxrAADcpvHQUacqbpCPrsDcltpun3QxJOjNzCd2f1PYjwHupI0ZprMs1+KQobzzJrE+SKNgkgQ6BzHdB4AAAFFHJvn/4KAoCn73juCzjlv2ulkQ772shKApTvRpBCNEAYAvFw+zhdrEVx7smS+pxct3KUTYmOnS+u/jmnU8lFZKX7Ytn6bs1XUeNTuMAAAWnx5++W28lx96Gmu/q7kf0EUYZjCe+65E32ti3Vk9lqExUN3XYlnHTxTUSawOF+kT+O61uL5np7UnCkQACAona5z6q8fO8iXNVZgP22bg7O2jTUetWvcLL8sEODPy+AgX5+v1Qar0oFFbVVfnfqb8pVqVtwgXtWnUWSfSQcGAIDZdOFqNavuSNkY25Yu0EFGlaB0alfGwIDUUuEgIxb+IQM7nerMGIhZ9DwAXaJrnNOYEyoiZh6FDGe+QtEINKRqMWF9NCwe3hLF1e6w/cB9isSkvGT4xaDUdMQy0C+35ytkeNEmQBCx1w/O4O2FHrV7yKv6qDvR1zIhNh5U+TI1aaI0fMEy0EZ/nONZHAEAELSGhcSj11yJ/jqv6tMW15XMP+iL2OsLIrju1UI7hXyusQwUaegEAMAvYV3su3h4e1H80dXlar2qT3VpA9smpGPnNK6AiEYIj0snW8xqTQ++X27nCuO9WkzY8CEmrN/hVX2x5WCpEZDbPDn6+wEDOSbXaoPVqXnTFXIsvn8G77ydr72otAIDAPCoXYE8/W1Zgnd3meV/Ax9BMLJHjs9pAAAAAElFTkSuQmCC); 
}
.raty-yes-half:before{
	content: ".";
	color: #fff;
	display: block;
}

  /*****button*******/
button{
	border: 0;
}
 .btn {
 	padding: 0.8rem 2rem;
 	background-color: #007AFF;
 	color: #fff;
 	font-size: 1.4rem;
 	display: inline-flex;
 	cursor: pointer;
 	border-radius: 1rem;
 	text-align: center;
	line-height: 1;
 }

 .btn-small {
 	padding: 0.6rem 1rem;
 	font-size: 1.4rem;
 	background-color: #007AFF;
 	color: #fff;
 	display: inline-flex;
 	cursor: pointer;
	line-height: 1;
 	border-radius: 0.5rem;
	text-align: center;
 }

 .btn-mini {
 	padding: 0.4rem 0.4rem;
 	font-size: 1.2rem;
 	background-color: #007AFF;
 	color: #fff;
 	display: inline-flex;
 	cursor: pointer;
	line-height: 1;
	text-align: center;
	border-radius: 0.5rem;
 }
 .btn-icon{
	 display: flex;
	 flex-direction: row;
 }
.btn-icon:before{
	font-family: iconfont;
	display: inline-flex;
	font-size: 1.4rem;
	margin-right: 0.5rem;
}
 .btn-row-submit {
 	margin: 2rem auto;
 	background-color: #007bff;
 	text-align: center;
 	padding: 1.2rem 0rem;
	line-height: 1;
 	color: #fff !important;
 	font-size: 1.6rem;
 	border-radius: 0.6rem;
 	cursor: pointer;
 	display: block;
 	box-sizing: border-box;
 	width: 96%;
 }
.btn-group{
	display: flex;
	flex-direction: row;
	justify-content: center;
}
 .btn-primary {
 	color: #fff;
 	background-color: #007bff;
 	border-color: #007bff;
 }

 .btn-secondary {
 	color: #fff;
 	background-color: #6c757d;
 	border-color: #6c757d;
 }

 .btn-success {
 	color: #fff;
 	background-color: #28a745;
 	border-color: #28a745;
 }

 .btn-info {
 	color: #fff;
 	background-color: #17a2b8;
 	border-color: #17a2b8;
 }

 .btn-warning {
 	color: #fff;
 	background-color: #ffc107;
 	border-color: #ffc107;
 }

 .btn-danger {
 	color: #fff;
 	background-color: #dc3545;
 	border-color: #dc3545;
 }

 .btn-light {
 	color: #999;
 	background-color: #f8f9fa;
 	border-color: #f8f9fa;
 }

 .btn-dark {
 	color: #fff;
 	background-color: #343a40;
 	border-color: #343a40;
 }
.btn-disable{
	background-color: #eee;
	color: #999;
}
 .btn-outline-primary {
 	color: #007bff;
 	background-color: transparent !important;
 	background-image: none;
 
	border: 1px solid #007bff;
 }

 .btn-outline-secondary {
 	color: #6c757d;
 	background-color: transparent !important;
 	background-image: none;
	border: 1px solid #6c757d;
 
	
 }

 .btn-outline-success {
 	color: #28a745;
 	background-color: transparent !important;
 	background-image: none;
	border: 1px solid #28a745;
 
	
 }

 .btn-outline-info {
 	color: #17a2b8;
 	background-color: transparent !important;
 	background-image: none;
	border: 1px solid #17a2b8;
 
 }

 .btn-outline-warning {
 	color: #ffc107;
 	background-color: transparent !important;
 	background-image: none;
	border: 1px solid #ffc107;
 
 }

 .btn-outline-danger {
 	color: #dc3545;
 	background-color: transparent !important;
 	background-image: none;
	border: 1px solid #dc3545;
 
 }

 .btn-outline-light {
 	color: #f8f9fa;
 	background-color: transparent !important;
 	background-image: none;
	border: 1px solid #f8f9fa;
 
 }

 .btn-outline-dark {
 	color: #343a40;
 	background-color: transparent !important;
 	background-image: none;
	border: 1px solid #343a40;
 
 }

 .btn-link {
 	font-weight: 400;
 	color: #007bff;
 	background-color: transparent !important;
	border: 0;
 }
 .btn-round {
 	width: 6rem;
 	height: 6rem;
 	background-color: #f60;
	display: flex;
	flex-direction: column;
 	align-items: center;
 	justify-content: center;
 	border-radius: 50%;
 	color: #fff;
 	font-family: iconfont;
 }
 
 .btn-round:before {
 	font-size: 2.4rem;
 }
 /****点赞 喜欢按钮****/

 .btn-love {
	cursor: pointer;
 	display: flex;
 	flex-direction: row;
	align-items: center;
 	padding: 0 1rem;
 	height: 3.6rem;
 	border: 1px solid #aaa;
 	color: #333;
 	border-radius: 1rem;
 	font-size: 1.4rem;
 }
	
 .btn-love:before {
 	font-family: iconfont;
 	content: "\e669";
 	font-size: 1.4rem;
 	margin-right: 0.3rem;
 }

 .btn-love-active {
 	color: #f30;
 }

 .btn-love-active:before {
 	color: #f30;
 }

 .btn-fav {
	 cursor: pointer;
 	display: flex;
 	flex-direction: row;
	align-items: center;
 	font-size: 1.4rem;
 	padding: 0 1rem;
 	height: 3.6rem;
 	
 	border: 1px solid #aaa;
 	color: #333;
 	border-radius: 1rem;
 }

 .btn-fav:before {
 	font-family: iconfont;
 	content: "\e64c";
 	font-size: 1.4rem;
 	margin-right: 0.3rem;
 }

 .btn-fav-active {
 	color: #f30;
 }

 .btn-fav-active:before {
 	color: #f30;
 }
 
 .btn-fav-small,.btn-love-small{
 	height: 2.6rem;
 	
 }
 .btn-share {
 	cursor: pointer;
 	display: flex;
 	flex-direction: row;
 	align-items: center;
 	padding: 0 1rem;
 	height: 3.6rem;
 	background-color: transparent;
 	border: 1px solid #00BCD4;
 	color: #00BCD4;
 	border-radius: 1rem;
 	font-size: 1.4rem;
 }
 	
 .btn-share:before {
 	font-family: iconfont;
 	content: "\e7ed";
 	font-size: 1.4rem;
 	margin-right: 0.3rem;
 }
 
  .btn-comment {
  	display: flex;
  	flex-direction: row;
		align-items: center;
  	font-size: 1.4rem;
  	padding: 0 1rem;
  	height: 3.6rem;	
  	border: 1px solid #aaa;
  	color: #333;
  	border-radius: 1rem;
  }
 
  .btn-comment:before {
  	font-family: iconfont;
  	content: "\e7ee";
  	font-size: 1.4rem;
  	margin-right: 0.3rem;
  }
 
  .btn-comment-active {
  	color: #f30;
  }
 
  .btn-comment-active:before {
  	color: #f30;
  }
  .btn-fav,.btn-love,.btn-comment{
		cursor: pointer;
	}
  .btn-fav-small,.btn-love-small,.btn-comment-small{
  	height: 2.6rem;
  	
  }
	/**购买按钮****/
	.btn-buy{
		width: 3.6rem;
		height: 3.6rem;
		line-height: 3.6rem;
		color: #fff;
		text-align: center;
		border-radius: 50%;
		background-color: #007bff;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.btn-buy-small{
		width: 2.5rem;
		height: 2.5rem;
		line-height: 2.5rem;
		background-color:transparent;
		border:1px solid #007bff;
	}
	.btn-buy-small:before{
		font-size: 1.4rem;
	}
 /******end btn******/
/**
 * @author 老雷 362606856@qq.com
 */
 /*****定义flex*****/
 

.pointer{
	cursor: pointer;
}
.none{display: none !important;}
.yes,.no{
	cursor: pointer;
}
.yes:after,.no:after{
	display: inline-block;
	font-family: iconfont;
	font-size: 1.6rem;
	color: #15aba5;
	
}
.yes:after{
	content: "\e645";
}
.no:after{
	content: "\e646";
	color: #ccc;
}
.block{
	display: flex !important ;
	flex-direction: column;
}
.inlineblock{
	display: inline-block;
}
.flex{
 	display: flex!important;
 	flex-direction: row!important;
 }
 .flex-col{
	display: flex!important;
	flex-direction: column!important;
 }
 .flex-1{
 	flex: 1;
 }
.flex-wrap{
	flex-wrap: wrap;
}
 /***定义了 flex 容器中 flex 成员项在纵轴方向上如何排列以处理空白部分***/
 .flex-ai-stretch{ align-items: stretch;}
 .flex-ai-start{ align-items: flex-start;}
 .flex-ai-end{ align-items: flex-end;}
 .flex-ai-center{ align-items: center;}
 /***定义了 flex 容器中 flex 成员项在主轴方向上如何排列以处理空白部分***/
 .flex-jc-start{justify-content: flex-start;}
 .flex-jc-end{justify-content: flex-end;}
 .flex-jc-center{justify-content: center;}
 .flex-jc-bettwen{justify-content: space-between;}
 .flex-center{text-align: center;justify-content:center;align-items: center;}
 /****浮动****/
 .fr{ float: right;}
 .fl{float: left;}
 .clearfix{clear: both; display: flex; width: 100%;}
 .text-right{
	 text-align: right  !important;
 }
 .text-center{
	 text-align: center !important;
 }
 .text-left{
	 text-align: left !important;
 }
 /****定位*****/
 .pos-fixed{position: fixed !important;}
 .pos-abs{position: absolute !important;}
 .pos-relative{position: relative !important;}
 /**高度宽度**/

 .wh-30{ width: 3rem; height: 3rem;}
 .wh-40{width: 4rem; height: 4rem;}
 .wh-60{ width: 6rem !important; height: 6rem !important;}
 .wh-100{width:10rem; height: 10rem;}
 .wh-150{width: 15rem; height: 15rem;}
 .wh-200{width: 20rem; height: 20rem;}
 .wmax{ max-width: 100%; height:auto;}
  .wall{width: 100%;height: auto;}
 .w50{width: 5rem !important;flex: none;}
 .w60{width: 6rem !important;flex: none;}
 .w100{width: 10rem !important;flex: none;}
 .w150{width: 15rem !important;flex: none;}
 .w200{width: 20rem !important;flex: none;}
 .w300{width: 30rem !important;flex: none;}
 .h30{ height: 3rem !important;}
 .h60{height:6rem !important;}
 .h100{ height: 10rem !important;}
 .h160{height: 16rem !important;}
 .h200{height: 20rem !important;}
 /***fontsize**/
 .f36{ font-size: 3.6rem !important;}
 .f28{ font-size: 2.8rem !important;}
 .f22{font-size: 2.2rem!important;}
 .f20{font-size: 2rem!important;}
 .f18{font-size: 1.8rem!important;}
 .f16{font-size: 1.6rem!important;}
 .f14{font-size:1.4rem!important;}
 .f12{font-size: 1.2rem!important;}
 .fw-600{font-weight:600;}
 /***col1 2 3 内容字体差异 主标题 副标题 描述****/
 .cl1{color: #323232!important;}
 .cl2{color: #646464!important;}
 .cl3{color: #969696!important;}
 .cl-f30{color: #f30 !important;}
 .cl-red{color: #c12725 !important;}
 .cl-primary { color: #007bff!important;}
 .cl-secondary {color: #6c757d!important;}
 .cl-success{color: #28a745!important;}
 .cl-danger{color: #dc3545!important}
 .cl-warning{color: #ffc107!important}
 .cl-info { color: #17a2b8!important;}
 .cl-light { color: #f8f9fa!important;}
 .cl-dark{color:#343a40!important;}
 .cl-muted {color: #6c757d!important;}
 .cl-white{color: #fff !important;}
 .cl-money{color: #FF6600!important;}
 .cl-num{color: #f70!important;}
 .cl-status{color: #f70!important;}
 /***background-color***/
 .bg-ef{ background-color: #efefef !important;}
 .bg-fff{background-color: #fff!important;}
 .bg-f30{
 	background-color: #f30 !important;
 }
 .bg-primary { background-color: #007bff!important;}
 .bg-secondary {
    background-color: #6c757d!important;
}
.bg-success {
    background-color: #28a745!important;
}
.bg-danger {
    background-color: #dc3545!important;
}
.bg-warning {
    background-color: #ffc107!important;
}
.bg-info {
    background-color: #17a2b8!important;
}
.bg-light {
    background-color: #f8f9fa!important;
}
.bg-dark {
    background-color: #343a40!important;
}
.bg-white {
    background-color: #fff!important;
}
 .bg-transparent {background-color: transparent !important;}
 .bg-royal{background-color:#8a6de9 !important;}
 .bg-disabled{background-color:#FBFBFB !important;}
 /****固定颜色****/
 
 /***padding****/
 .pd-5{padding: 0.5rem !important;}
 .pdl-5{padding-left: 0.5rem !important;}
 .pdr-5{padding-right: 0.5rem !important;}
 .pdt-5{padding-top: 0.5rem !important;}
 .pdb-5{padding-bottom: 0.5rem !important;}
 .pd-10{padding: 1rem !important;}
 .pdl-10{padding-left: 1rem !important;}
 .pdr-10{padding-right: 1rem !important;}
 .pdt-10{padding-top: 1rem !important;}
 .pdb-10{padding-bottom: 1rem !important;}
 .pdb-30{padding-bottom: 3rem !important;}
 .pdt-0{ padding-top: 0rem !important;}
 /***margin****/
 .mg-5{margin: 0.5rem!important;}
 .mgb-5{margin-bottom: 0.5rem!important;}
 .mgt-5{margin-top: 0.5rem!important;}
 .mgl-5{margin-left: 0.5rem!important;}
 .mgr-5{margin-right: 0.5rem!important;}
 .mg-10{margin: 1rem!important;}
 .mgb-10{margin-bottom: 1rem!important;}
 .mgt-10{margin-top: 1rem!important;}
 .mgl-10{margin-left: 1rem!important;}
 .mgr-10{margin-right: 1rem!important;}
 .mgr-20{ margin-right: 2rem !important;}
 .mgb-20{margin-bottom: 2rem!important;}
 .mgl-20{margin-left: 2rem !important;}
 .mgt-20{margin-top: 2rem !important;}
 .mgb-0{margin-bottom: 0rem !important;}
 /***border***/
 .bd-mp-5{
	 border-bottom: 1px solid #eee !important;
	 padding-bottom: 0.5rem !important;
	 margin-bottom: 0.5rem !important;
 }
 .bd-mp-10{
 	border-bottom: 1px solid #eee !important;
 	padding-bottom: 1rem !important;
 	margin-bottom: 1rem !important;
 }
 .bd-mp-0{
	 border-bottom: 0 !important;
	 padding-bottom: 0 !important;
	 margin-bottom: 0 !important;
 }
 .bd { border: 1px solid #dee2e6 !important; }
 .bdt { border-top: 1px solid #dee2e6 !important;}
 .bdr {border-right: 1px solid #dee2e6 !important; } 
 .bdb { border-bottom: 1px solid #dee2e6 !important;}
 .bdl { border-left: 1px solid #dee2e6 !important;}
 
 .bd-0 {
   border: 0 !important;
 }
 
 .bdt-0 {
   border-top: 0 !important;
 }
 
 .bdr-0 {
   border-right: 0 !important;
 }
 
 .bdb-0 {
   border-bottom: 0 !important;
 }
 
 .bdl-0 {
   border-left: 0 !important;
 }
 /***border-color**/
 .bd-primary { border-color: #007bff !important;}
 
 .bd-secondary {
   border-color: #6c757d !important;
 }
 
 .bd-success {border-color: #28a745 !important;}
 
 .bd-info {
   border-color: #17a2b8 !important;
 }
 
 .bd-warning {
   border-color: #ffc107 !important;
 }
 
 .bd-danger {
   border-color: #dc3545 !important;
 }
 
 .bd-light {
   border-color: #f8f9fa !important;
 }
 
 .bd-dark {
   border-color: #343a40 !important;
 }
 
 .bd-white {
   border-color: #fff !important;
 }
 /****border-radius***/
 .bd-radius-5{border-radius: 0.5rem;}
 .bd-radius-10{
 	border-radius: 1rem;
 }
 .bd-radius-20{
 border-radius: 2rem;
 }
 .bd-radius-50{
	 border-radius: 50%;
 }

.bc-recommend, .bc-red{
	border: 1px solid #007AFF;
	line-height: 1;
	padding: 0.2rem;
	border-radius: 50%;
	font-size: 1.2rem;
	color: #007AFF;
	align-self: center;
}
.bc-red {
    border: 1px solid #f00;
    color: #f00;
}
.tag {
	padding: 0.4rem 0.6rem;
	border: 1px solid #ccc;
	font-size: 1.2rem;
	line-height: 1.5;
	color: #646464;
	border-radius: 0.5rem;
	margin-right: 0.5rem;
}
.tag-large{
	padding: 0.6rem 0.8rem;
	font-size: 1.4rem;
}
.tag-primary {
	color: #007bff;
	border: 1px solid #007bff;
}
.tag-secondary {
	color: #6c757d;
	border: 1px solid #6c757d;
}
.tag-success {
	color: #28a745;
	border: 1px solid #28a745;
}
.tag-info {
	color: #17a2b8;
	border: 1px solid #17a2b8;
}
.tag-warning {
	color: #ffc107;
	border: 1px solid #ffc107;
}

.tag-danger {
	color: #dc3545;
	border: 1px solid #dc3545;
}
 
.tag-dark {
	color: #343a40;
	border: 1px solid #343a40;
}
