72 lines
1.3 KiB
Plaintext
72 lines
1.3 KiB
Plaintext
/* coupon.less */
|
|
.coupon-container {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
align-content: start;
|
|
flex-wrap: wrap;
|
|
height: 100%;
|
|
padding: 0;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.coupon_box{
|
|
background: linear-gradient(to right, #FF4B2B, #FF416C);
|
|
width: 40%;
|
|
border-radius: 12rpx;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-family: 'Tahoma', sans-serif;
|
|
position: relative;
|
|
margin: 5% 5% 0 5%;
|
|
}
|
|
|
|
.coupon_box::before{
|
|
content: '';
|
|
position: absolute;
|
|
top: 200rpx;
|
|
background: #f5f5f5;
|
|
width: 20rpx;
|
|
height: 30rpx;
|
|
z-index: 1;
|
|
left: -1rpx;
|
|
border-radius: 0 30rpx 30rpx 0
|
|
}
|
|
|
|
.coupon_box::after{
|
|
content: '';
|
|
position: absolute;
|
|
top: 200rpx;
|
|
background: #f5f5f5;
|
|
width: 20rpx;
|
|
height: 30rpx;
|
|
z-index: 1;
|
|
right: -1rpx;
|
|
border-radius: 30rpx 0 0 30rpx
|
|
}
|
|
|
|
.title{
|
|
color: rgba(255,255,255,0.75);
|
|
font-weight: 600;
|
|
font-size: 32rpx
|
|
}
|
|
|
|
.how_much{
|
|
font-size: 80rpx;
|
|
text-shadow: 0 0 20rpx rgba(0,0,0,0.3); text-align: center
|
|
}
|
|
|
|
.content{
|
|
padding: 4rpx 0 32rpx 0;
|
|
border-bottom: 4rpx dashed rgba(0,0,0,0.15);
|
|
position: relative;
|
|
}
|
|
.content::before{
|
|
content: '100';
|
|
position: absolute;
|
|
color: rgba(255,255,255,0.15);
|
|
top: 0%;
|
|
left: 16rpx;
|
|
font-size: 144rpx;
|
|
font-weight: bold;
|
|
} |