/*
 * =====================================================
 * 通用样式设定@mary2019.12.27
 * =====================================================
 */
html {
	font-family:Source Han Sans CN;
}

body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,form,span,input,textarea,p,a,i,b {
    margin: 0;
    padding: 0;
    font-family: 微软雅黑;
    box-sizing: border-box;
}

i,b{
	display:inline-block;
}

i{
	font-style:normal;
}

b{
	font-weight: bold;
}

html,body,div {
    margin: 0 auto;
}

ul,ol {
    list-style: none;
}

pre{
	white-space: pre-wrap;
}

a {
    text-decoration: none;
    color: #4e4e4e;
}

input,button{
	outline: none;
}
input{
	outline: none;
	border: none;
	width: 100%;
	height: 38px;
	border-radius: 5px;
	padding: 0 11px;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
	-webkit-appearance: none
}
input[type="number"] {
    -moz-appearance: textfield;
}
.fl{
	float: left;
}

.fr{
	float: right;
}

.clear:after{
	content:"";
	display: block;
	clear: both;
}

.pr {
    position: relative;
}

.tc {
    text-align: center;
}

.tr{
	text-align: right;
}

.hidden {
	display: none!important
}

[v-cloak] {
  display: none;
}

.bold{
	font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.roll {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.opentag-wrapper{
	width: 50%;
	display: inline-block;
	overflow: hidden;
}

body{
	background: #F5F5F5;
	max-width: 750px;
	font-size: 14px;
	color: #4e4e4e;
}

/*常用背景色*/
.bg-white{
	background: #fff;
}
.bg-lightblue{
	background: #E3EEFF;
}

/*常用字号*/
.fz-8{
	font-size: 12px;
	display: inline-block;
	transform: scale(.7);
	transform-origin: left bottom;
}
.fz-8:not(:last-child){
	transform: translateX(16%) scale(.7);
}
.fz-10{
	font-size: 12px;
	display: inline-block;
	transform: scale(.83);
	transform-origin: left bottom;
}
.fz-11{
	font-size: 12px;
	display: inline-block;
	transform: scale(.91);
	transform-origin: left bottom;
}
.fz-12{
	font-size: 12px;
}
.fz-13{
	font-size: 13px;
}
.fz-14{
	font-size: 14px;
}
.fz-15{
	font-size: 15px;
}
.fz-16{
	font-size: 16px;
}
.fz-18{
	font-size: 18px;
}
.fz-20{
	font-size: 20px;
}
.fz-22{
	font-size: 22px;
}
.fz-24{
	font-size: 24px;
}

/*常用字体颜色*/
.co-fff{
	color: #fff;
}
.co-c7{
	color: #C7C7C7;
}
.co-a3{
	color: #a3a3a3
}
.co-aaa{
	color: #aaa
}
.co-999{
	color: #999
}
.co-79{
	color: #797979
}
.co-70{
	color: #707070;
}
.co-6c{
	color: #6c6c6c
}
.co-5d{
	color: #5d5d5d
}
.co-57{
	color: #575757
}
.co-4d{
	color: #4D4D4D;
}
.co-3e{
	color: #3e3e3e
}
.co-333{
	color: #333
}
.co-gold{
	color: #D1BC8C
}
.co-darkblue{
	color: #265880
}
.co-red{
	color: #FF6060
}
.co-darkred{
	color: #C76B6B
}

/*常用padding、margin*/
.pr-5{
	padding-right: 5px;
}
.pr-10{
	padding-right: .2rem;
}
.pr-12{
	padding-right: .24rem;
}
.pr-14{
	padding-right: .28rem;
}
.pr-15{
	padding-right: .3rem;
}
.pr-22{
	padding-right: .44rem;
}
.pl-5{
	padding-left: 5px;
}
.pl-12{
	padding-left: .24rem;
}
.pl-14{
	padding-left: .28rem;
}
.pl-15{
	padding-left: .3rem;
}
.pl-22{
	padding-left: .44rem;
}
.pt-10{
	padding-top: .2rem;
}
.pt-15{
	padding-top: .3rem;
}
.pt-20{
	padding-top: .4rem;
}
.pb-1per{
	padding-bottom: 1vh;
}
.pd-1622{
	padding: .32rem .44rem;
}
.mb-5{
	margin-bottom:5px;
}
.mb-8{
	margin-bottom:.16rem;
}
.mb-10{
	margin-bottom:.2rem;
}
.mb-20{
	margin-bottom:.4rem;
}
.mb-50{
	margin-bottom: 1rem;
}
.mt-10{
	margin-top: .2rem;
}
.mt-15{
	margin-top: .3rem;
}
.mt-30{
	margin-top: .6rem;
}
.mr-5{
	margin-right: 5px;
}
.mr-8{
	margin-right: 8px;
}
.mr-10{
	margin-right: .2rem;
}
.mr-20{
	margin-right: .4rem;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.ellipsis-2 {
	display: -webkit-box!important;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: normal!important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.br50{
	border-radius: 50%;
    overflow: hidden;
}

.justify>:last-child{
	float: right;
}

.justify:after{
	content:"";
	display: inline-block;
	clear: both;
}
/*错误提示*/
.error-tip{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 50;
}
.error-tip p{
	margin: .12rem;
}
.error-img{
	margin-top: 40%;
	margin-bottom: .32rem;
}
.error-img img{
	width: 135px;
}
.error-btn{
	margin-top: 50%;
    width: 130px;
    height: 44px;
    border: none;
    background: #ededed;
    color: #4D4D4D;
    font-weight: bold;
    font-size: 15px;
}

/*弹出框*/
.t-pop-bg{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 800;
	background: rgba(26,26,26,.4);
}
.t-pop-wrapper{
	position: absolute;
	top: 46%;
	left: 16px;
	right: 16px;
	transform: translateY(-50%);
	background: #FFF;
	border-radius: 11px;
	text-align: center;
}
.t-pop-confirm{
	font-size: 15px;
	font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
	color: #2F2F2F;
}
@media screen and (min-width: 352px){
	.t-pop-confirm {
		width: 320px;
		margin: 0 auto;
	}
}
.t-pop-wrapper p.t-pop-title{
	padding: 28px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(0,0,0,.9);
}
.t-pop-btns{
	position: relative;
}
.t-pop-btns:after{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.t-pop-button{
	width: 50%;
	padding: 15px;
	border: none;
	color: #aaa;
	font-size: 17px;
	font-weight: 500;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	position: relative;
	vertical-align: top;
}
.t-pop-button-ok{
	background: none;
	color: #576b95;
}
.t-pop-button-ok:after{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px solid rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}
.t-pop-button-cancel{
	background: none;
	color: rgba(0,0,0,.9);
}
.t-pop-button-l{
	width: 100%;
}

/*弹出框1*/
.t-pop-wrapper1{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #FFF;
    border-radius: 14px;
    padding: .54rem .56rem .82rem;
	color: #141414;
	letter-spacing: 1px;
	width: 86%;
	min-width: 290px;
	max-width: 480px;
}
.t-pop-wrapper1 h2{
	text-align: center;
	font-size: 16px;
	margin-bottom: .46rem;
}
.t-pop-wrapper1 h3{
	font-size: 14px;
	margin: 6px 0;
}
.t-pop-wrapper1 p{
	line-height: .5rem;
}
.t-pop-wrapper1 button{
	border-radius: 3px;
	margin-top: .6rem;
}
@media (max-height:481px) {
	.t-pop-wrapper1 p{
		line-height: .4rem;
	}
}
/* 图形验证码 */
.t-pop-imgcode{
	width: 80%;
	padding: .72rem .9rem .6rem;
}
.t-pop-imgcode .title{
	font-size:15px;
	font-weight:bold;
	line-height:21px;
	color:#2F2F2F;
	margin-bottom: .7rem;
}
.t-pop-imgcode .tip{
	font-size: 12px;
	margin-top: .18rem;
	margin-bottom: .2rem!important;
	text-decoration: underline;
}
.t-pop-imgcode .form-line .form-group{
	border-color: 1px solid #D1D1D1;
	margin-bottom: .52rem;
}
.t-pop-imgcode .form-line input{
	text-align: center;
	padding: 0;
	font-size: 18px;
	color: #969595;
	font-family: Source Han Sans CN;
}
.t-pop-imgcode .btn{
	border-radius: 1rem ;
	font-size: 12px;
}
/* toast */
.toast {
	position: fixed;
	z-index: 2000;
	left: 50%;
	top: 50%;
	transition: all .3s ease-out;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	text-align: center;
	border-radius: 5px;
	color: #FFF;
	background: rgba(0, 0, 0, 0.7);
	height: 36px;
	line-height: 36px;
	padding: 0 15px;
    white-space: nowrap;
}
/* 空列表 */
.empty-coupon{
	margin-top: 30vh;
}
.empty-coupon img{
	height: 66px;
	opacity: .1;
	margin-bottom: .3rem;
}
.empty-coupon p{
	color: #7E7E7E;
}
.empty-list{
	margin-top: 20vh;
}
.empty-list img{
	height: 150px;
	margin-bottom: .5rem;
}
.empty-list p{
	color: #7E7E7E;
}
/* 选择框样式重写 */
.radio_type{
    width: 20px;
    height: 20px;
	padding: 0;
	-webkit-appearance: none;
    appearance: none;
	border: none;
    position: relative;
	background: transparent;
}
.radio_type_dis{
	width: 20px;
	height: 20px;
	line-height: 20px;
	display: inline-block;
	position: relative;
}
.radio_type:before{
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #D1BC8C;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
}
.radio_type:checked:before,.radio_type_dis:before{
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #D1BC8C;
    background:#D1BC8C;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
}
.radio_type:checked:after,.radio_type_dis:after{
    content: '';
    width: 10px;
    height:5px;
    border: 2px solid white;
    border-top: transparent;
    border-right: transparent;
    text-align: center;
    display: block;
    position: absolute;
    top: 6px;
    left:5px;
    vertical-align: middle;
    transform: rotate(-45deg);
}
.radio_type.white:before{
	border-color: #fff;
}
.radio_type.white:checked:before{
	border-color: #fff;
	background: #fff;
}
.radio_type.white:checked:after{
	border: 2px solid #D1BC8C;
	border-top: transparent;
	border-right: transparent;
}
#footer{
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 180;
	background: #fff;
	height: 36px;
}
#footer .van-tabbar--fixed{
	background: url(/wap/img/footer_bg.png) center top no-repeat;
	background-size: 100% auto;
	height: 90px;
	align-items: flex-end;
}
#footer .van-tabbar-item{
	height: 65px;
}
.van-tabbar .fz-10{
	width: 46px;
	transform-origin: center bottom;
	letter-spacing: 1px;
	white-space: nowrap;
	text-align: center;
}
[class*=van-hairline]::after{
	display: none;
}
.ts-btn{
	width: 100%;
	height: 36px;
	border: none;
	outline: none;
	border-radius: 3px;
}
.ts-btn-default{
	background-color: #D1BC8C;
	color: #fff;
}
.ts-btn-large{
	height: 50px;
	font-size: 16px;
}
.ts-btn-round{
	border-radius: 30px;
}
.ts-list-item time{
	min-width: 65px;
}
.ts-list-special{
	background: #E2CFA3 url(/wap/img/specialview.png) no-repeat center bottom;
	background-size: contain;
}
.ts-list-item .imgbox{
	float: right;
	width: 1.24rem;
	height: 1.24rem;
}
.ts-list-item .imgbox img{
	width: 100%;
	height: 100%;
}
.ts-list-special .imgbox{
	display: none;
}
.ts-list-special .imgbox+div{
	padding-right: 0!important;
}
.ts-list-special time{
	color: #fff;
}
.ts-list-special .news-tags{
	display: none;
}

/* 微信开放按钮 */
.open-btn-outer{
	position: relative;
}
.open-btn-inner{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.footer-item-cover{
	position: absolute;
	left: 20%;
	bottom: 0;
	width: 60%;
	height: 70px;
	z-index: 1688;
}
/* 客服弹框 */
#help .t-pop-wrapper1{
	color: #585858;
	width: 78%;
	min-width: 300px;
	padding: .5rem .56rem .6rem;
}
#help .t-pop-wrapper1 *{
	text-align: center;
}
#help .t-pop-wrapper1 h3{
	margin-bottom: .9rem;
	font-size: 16px;
	color: #0C0C0C;
}
#help .t-pop-wrapper1 p{
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .5px;
	color: #333;
}
#help .t-pop-wrapper1 p.contact{
	margin-bottom: 20px;
	position: relative;
	text-align: left;
}
#help .t-pop-wrapper1 p.contact i{
	position: absolute;
	right: 2px;
	top: 3px;
}
#help .t-pop-wrapper1 p.tip{
	color: #999;
	font-size: 12px;
	margin-top: -15px;
}
#help .t-pop-wrapper1 img{
	width: 80px;
	margin-bottom: .2rem;
	margin-top: .5rem;
}
.icon-call{
	display: inline-block;
	width: 48px;
	height: 21px;
	background: url(/wap/img/icon/icon-call-gold.png) center no-repeat;
	background-size: contain;
	vertical-align: middle;
}
.icon-copy{
	display: inline-block;
	width: 48px;
	height: 21px;
	background: url(/wap/img/icon/icon-copy-gold.jpg) center no-repeat;
	background-size: contain;
	vertical-align: middle;
}
#msgbox-kefu{
	position: absolute;
	z-index: -10;
	top: 50px;
}
.advs-banner{
	margin: .12rem 4vw 0;
}
.advs-banner .swiper-wrapper{
	display: flex;
}
.advs-banner img{
	width: 100%;
	max-width: 750px;
	max-height:17vw;
}