12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* pages/public/cashCoupon/index.wxss */
- page{
- height: 100%;
- }
- .cash-bg{
- height: 100%;
- position: relative;
- }
- .cash-bg .btn{
- position: absolute;
- top: 800rpx;
- left: 0;
- right: 0;
- margin: 0 auto;
- background: #ed3a43;
- border-radius: 90rpx;
- text-align: center;
- height: 80rpx;
- width: 320rpx;
- line-height: 80rpx;
- color: #fff;
- font-weight: 700;
- box-shadow: 0rpx 4rpx 15rpx 0rpx rgba(255,255,255,1) inset,0rpx 8rpx 16rpx 0rpx rgba(211,17,13,1);
- }
- image{
- width: 100%;
- min-height: 100%;
- display: block;
- }
- .cash-bg .fail-content{
- position: absolute;
- top: 385rpx;
- left: 0;
- right: 0;
- margin: 0 auto;
- color: #fff;
- width: 70%;
- text-align: center;
- line-height: 1.8;
- }
|