|
- /* pages/coupon/coupon.wxss */
- image{
- display: block;
- }
- view{
- -webkit-overflow-scrolling: touch;
- }
- .main{
- height: calc(100vh - 150rpx);
- overflow: auto;
- position: relative;
- }
-
- .couponBg{
- width: 750rpx;
- height: 734rpx;
- }
- .prizeFrame{
- position: absolute;
- top: 672rpx;
- left: 50%;
- transform: translateX(-50%);
- width: 750rpx;
- height: auto;
- display: flex;
- align-items: center;
- flex-direction: column;
- padding-bottom: 34rpx;
- }
- .coupon{
- width: 627rpx;
- height: 581rpx;
- }
- .receiveBtn{
- width:653rpx;
- height:70rpx;
- text-align: center;
- line-height: 70rpx;
- font-size:30rpx;
- font-family:PingFang;
- font-weight:400;
- color:rgba(255,255,255,1);
- background-color: #29558D;
- border-radius: 20rpx;
- margin-top: 23rpx;
- }
- .getPrizeNumGroup{
- position: relative;
- width: 750rpx;
- height: 0;
- }
- .getPrizeNum{
- position: absolute;
- left: 0;
- top: -60rpx;
- width: 750rpx;
- height: 24rpx;
- line-height: 24rpx;
- font-size:24rpx;
- font-family:PingFang;
- font-weight:bold;
- color:rgba(248,197,109,1);
- text-align: center;
- }
|