coupon_use_layer.less 2.34 KB
@charset "UTF-8";

.coupon-use-layer {
	.layer-box {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 110;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		background-color: rgba(0, 0, 0, 0.6);
		width: 100%;
		height: 100%;
		.box {
			width: 634upx;
			height: 840upx;
			.main-box {
				position: relative;
				.bg-box {
					width: 634upx;
					height: 703upx;
					.img {
						width: 634upx;
						height: 703upx;
					}
				}
				.quota-box {
					position: absolute;
					top: 440upx;
					left: 0;
					width: 100%;
					text-align: center;
					.title-box {
						color: #FFFFFF;
						font-size: 34upx;
						.number {
							color: #FFD58E;
							padding-left: 10upx;
							padding-right: 10upx;
						}
					}
					.sub-title-box {
						color: #FFFFFF;
						font-size: 24upx;
						margin-top: 10upx;
					}
				}
				.buttons-box {
					position: absolute;
					left: 0;
					bottom: 36upx;
					width: 100%;
					.buttons-center-box {
						width: 460upx;
						margin: 0 auto;
						text-align: center;
						.btn {
							display: inline-block;
							width: 160upx;
							height: 68upx;
							& + .btn {
								margin-left: 40upx;
							}
							.func-button {
								position: relative;
								display: flex;
								justify-content: center;
								align-items: center;
								margin: 0;
								padding: 0;
								width: 100%;
								height: 100%;
								box-sizing: border-box;
								text-align: center;
								text-decoration: none;
								line-height: normal;
								border-radius: none;
								overflow: hidden;
								background-color: transparent;
								&[disabled] {
									color: #999999;
									pointer-events: none;
								}
								&::after {
									content: none;
								}
							}
							&.btn-gray {
								.func-button {
									background-color: #FC4884;
									color: #ffffff;
									font-size: 30upx;
									border-radius: 34upx;
								}
							}
							&.btn-gray-out {
								.func-button {
									background-color: transparent;
									color: #FC4984;
									font-size: 30upx;
									border: 1px solid #FC4984;
									border-radius: 34upx;
								}
							}
						}
					}
				}
			}
			.close-box {
				width: 100%;
				height: 58upx;
				padding-top: 78upx;
				text-align: center;
				.img {
					width: 58upx;
					height: 58upx;
				}
			}
		}
	}
}