12345678910111213141516171819202122232425262728293031323334 |
- /* pages/welfareMall/coupon/coupon.wxss */
- page{
- background: #FFF6F5;
- display:flex;
- flex-flow: column nowrap;
- justify-content: left;
- align-items: center;
- box-sizing: border-box;
- padding-top: 13px;
- }
- .coupon-wrap-list {
- width: 100vw;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- }
- .coupon_wrap {
- width: 690rpx;
- }
- .coupon-item-style {
- background: #fff !important;
- }
- .coupon-circule-style {
- background: #FFF6F5 !important;
- }
- .no_result {
- font-size: 24rpx;
- color: #B1B1B1;
- line-height: 100rpx;
- font-weight: 1000;
- text-align: center;
- }
|