12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/welfareMall/coupon/coupon.wxss */
- page{
- display:flex;
- flex-flow: column nowrap;
- justify-content: left;
- align-items: center;
- box-sizing: border-box;
- /* padding-top: 13px; */
- background: #F7F7F7;
- }
- .coupon-wrap-list {
- width: 100vw;
- padding: 0 30rpx 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;
- margin-top: 100rpx;
- }
- .top_banner{
- width: 750rpx;
- height: 100rpx;
- background: #FFFFFF;
- justify-content: space-around!important;
- align-items: flex-end!important;
- position: fixed;
- z-index: 9999;
- }
- .top_banner_item{
- width: 60px;
- font-size: 14px;
- font-weight: 700;
- text-align: center;
- color: #000000;
- justify-content: end!important;
- align-items: center!important;
- margin-bottom: 8px;
- }
- .t_b_i_border{
- width: 45px;
- height: 2px;
- margin-top: 5px;
- }
- .active{
- background: #B01717;
- border-radius: 1px;
- }
|