/* --------------------------   全站常用样式-------------------- */
.popup_window_mask{
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	z-index:4567;
	display: none;
	top:0;
	left: 0;
    right: 0;
	margin:auto;
}
/* 弹性盒子垂直居中 */
.flex_cc{ display: flex;align-items: center;justify-content: center; }
/* 用于禁止滚动 */
.no_scrolling{overflow:hidden;overflow-y:hidden;}
/* 优惠券 */
.coupon_pop_box{
    display: flex;
    justify-content: center;
    align-items: center;
   	display: none;
}
.coupon_pop_main{
	width: 574px;
    height: 471px;
    border-radius: 12px;
    padding: 10px;
    background-image: url(./../../assets/images/coupon_bgi.png);
    background-size: 100% 100%;
    position: relative;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.coupon_btn{
	background-size: 100% 100%;
    background-image: url(./../../assets/images/use_btn.gif);
    width: 100%;
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    height: 200px;
    margin: 0 auto;
    background-color: transparent;
    border: none;
    background-repeat: no-repeat;
}
.coupon_mes{
	display: flex;
    align-items: center;
    color: #d61600;
    margin-bottom: 40px;
    margin-top: 85px;
}
.coupon_money{
	font-weight: bold;
    font-size: 86px;
    margin-right: 10px;
}
.coupon_money span{
	font-size: 20px;
}
.coupon_name_tips{
	font-size: 18px;
}
.coupon_name_tips p{
	font-size: 46px;
}
.past_due_box{
	/*position: absolute;*/
    bottom: 45px;
    font-size: 20px;
    color: #6d5654;
}
.order_prompt_tips {
    margin-bottom: 42px;
    font-size: 18px;
    color: red;
}
.coupon_close_img{
	position: absolute;
    right: 25px;
    top: 15px;
    width: 35px;
    height: 35px;
}
@media screen and (max-width: 768px){
	.coupon_pop_main{
		width: 287px;
		height: 235px;
	}
	.coupon_btn{
		bottom: -45px;
		height: 110px;
	}
	.coupon_mes{
		margin-bottom: 30px;
    	margin-top: 30px;
	}
	.coupon_money{
		font-size: 50px;
	}
	.coupon_money span {
	    font-size: 12px;
	}
	.coupon_name_tips p{
		font-size: 28px;
	}
	.coupon_name_tips{
		font-size: 12px;
	}
	.past_due_box {
	    bottom: 20px;
	    font-size: 14px;
	}
	.order_prompt_tips {
	    margin-bottom: 30px;
	    font-size: 12px;
	}
	.coupon_close_img{
		width: 20px;
	    height: 20px;
	    top: 10px;
	    right: 15px;
	}
}

/* 返回 */
.return_main{
	position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 50%;
    background-color: #f5f5f57d;
    z-index: 2222;
    width: 30px;
    height: 30px;
    display: none;
}
.return_main .return_icon{
	width: 100%;
    height: 100%;
}

.warn_border{border-color: red !important;}
.light_tips_mask{
	position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    bottom: 0;
    right: 0;
    max-width: 500px;
    display: none;
    max-height: 200px;
    justify-content: center;
    align-items: center;
    z-index: 222;
}
.light_tips_box{
	min-width: 180px;
    min-height: 50px;
    max-width: 100%;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 15px 0;
    flex-direction: column;
    justify-content: center;
    background-color: #FFF;
    border: 1px solid #f5f5f5;
}
.light_tips_box i{font-size: 24px;margin: 0;margin-bottom: 10px;}
.light_tips_list{display: flex;flex-direction: column;padding: 0 10px;}
.light_tips_list .tips_txt{display: none;}
.warning_tips{color: #f1c143;border: 1px solid #edb011;background-color: #fef8e7;}
.warning_tips i{color: #eea236;}
.error_tips{color: #f68484;border: 1px solid #f79898;background-color: #fcf0f0;}
.error_tips i{color: #f56c6c;}
.correct_tips{color: #95cb60;border: 1px solid #acd682;background-color: #d9edc7;}
.correct_tips i{color: #82c141;}


