getCouponCom.less 1.5 KB
@charset "UTF-8";

.coupon-com {
	background-color: transparent;
	.box {
		display: flex;
		justify-content: space-between;
		align-items: center;
		.coupons-box {
			display: flex;
			justify-content: space-between;
			align-items: center;
			background-repeat: no-repeat;
			background-size: 100% 100%;
			margin: 0 auto;
			width: 256px;
			height: 120px;
			.left-box {
				background-repeat: no-repeat;
				background-size: 100% 100%;
				margin-left: 25px;
				font-weight: 400;
				width: 170px;
				height: 120px;
				.discount-box {
					display: flex;
					justify-content: flex-start;
					align-items: baseline;
					margin-top: 20px;
					line-height: 42px;
					.sy {
						font-size: 20px;
						font-weight: 600;
					}
					.discount {
						font-size: 50px;
						font-weight: 600;
						white-space: nowrap;
						text-overflow: ellipsis;
						overflow: hidden;
					}
				}
				.filled-box {
					font-size: 24px;
					font-weight: 400;
					white-space: nowrap;
					text-overflow: ellipsis;
					overflow: hidden;
				}
			}
		}
	}
	&.usable {
		.box {
			.coupons-box {
				.left-box {
					.discount-box {
						.sy {
							color: #EA162D;
						}
						.discount {
							color: #EA162D;
						}
					}
					.filled-box {
						color: #966F4A;
					}
				}
			}
		}
	}
	&.disable {
		.box {
			.coupons-box {
				.left-box {
					.discount-box {
						.sy {
							color: #B4B4B4;
						}
						.discount {
							color: #B4B4B4;
						}
					}
					.filled-box {
						color: #B4B4B4;
					}
				}
			}
		}
	}
}