123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /* required by usingComponents */
- /* pages/coupon/coupon.wxss */
- page{
- background-color: #f2f3f5;
- }
- .coupon{
- padding: 30rpx;
- }
- .coupon-dui{
- height: 100rpx;
- line-height:100rpx;
- text-align: center;
- border-radius: 8rpx;
- font-size: 34rpx;
- background-color: var(--globleColor);
- color: var(--fontColor);
- }
- .coupon-item{
- background-color: #fff;
-
- margin-top: 30rpx;
- display: flex;
- }
- .left{
- flex:0 0 30%;
- padding: 50rpx 0;
- border-right: dashed 2rpx #ebebeb;
- text-align: center;
- color: var(--orgFont);
- font-weight: 600;
- font-size: 30rpx;
- }
- .num{
- font-size: 50rpx;
- font-weight: bold;
- }
- .right{
- flex: 1;
- padding: 40rpx 0;
- padding-left: 10%;
- /* text-align: center; */
- }
- .right-title{
- font-size: 30rpx;
- }
- .right-text{
- font-size: 24rpx;
- color: var(--orgFont);
- margin-top: 20rpx;
- }
- .frame{
- height: 100vh;
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- background-color: rgba(0, 0, 0, 0.6);
- }
- .frame-content{
- border-radius: 12rpx;
- padding:30rpx 50rpx 80rpx;
- width: 70%;
- margin: 0 auto;
- margin-top: 45%;
- background-color: #fff;
- opacity: 1;
- font-size: 28rpx;
- }
- .top{
- height: 50rpx;
- font-size: 30rpx;
- color: #333333;
- font-weight: 500;
- margin-bottom: 20rpx;
- text-align: right;
- }
- input{
- border: solid 1rpx #ebebeb;
- padding: 20rpx;
- border-radius: 5rpx;
- }
- .no-input{
- color: #cfcece;
- }
- .sure-button{
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- background-color: var(--globleColor);
- color: var(--fontColor);
- margin: 0 30rpx;
- margin-top: 40rpx;
- border-radius: 40rpx;
- font-size: 28rpx;
- }
- .no-card {
- color: #979797;
- text-align: center;
- margin-top: 45%;
- font-size: 26rpx;
- }
- .no-card image{
- height: 150rpx;
- width: 150rpx;
- margin-bottom: 30rpx;
- }
- .tab{
- display: flex;
- }
- .tab-item{
- flex: 1;
- text-align: center;
- font-size: 28rpx;
- color: #5e5d5d;
- }
- .tab-item1{
- flex: 1;
- text-align: center;
- font-size: 32rpx;
- height: 60rpx;
- border-bottom:solid 2rpx var(--orgFont);
- color:var(--orgFont);
- }
|