1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .box {
- width: 750rpx;
- height: 652rpx;
- padding: 28rpx 0 0;
- background: #FFFFFF;
- border-radius: 30rpx 30rpx 0rpx 0rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .box .header {
- width: 100%;
- position: relative;
- font-size: 28rpx;
- color: #000000;
- text-align: center;
- }
- .box .header .close {
- position: absolute;
- right: 24rpx;
- top: -30rpx;
- line-height: 60rpx;
- font-size: 50rpx;
- }
- .box .qrCodeBox {
- margin: 34rpx auto;
- padding: 40rpx;
- background: url('http://reader-wx.ai160.com/images/reader/v3/bgl.webp') no-repeat;
- background-size: contain;
- }
- .box .qrCodeBox .qrCode {
- width: 322rpx;
- height: 322rpx;
- background: #D8D8D8;
- border-radius: 40rpx;
- }
- .box .footer .row {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 20rpx;
- }
- .box .footer .row .icon {
- margin: 0 12rpx;
- font-size: 30rpx;
- width: 46rpx;
- height: 46rpx;
- }
- .box .footer .row text {
- padding: 0 10rpx;
- }
- .box .footer .row .price {
- font-size: 40rpx;
- color: #FF0707;
- font-weight: bold;
- }
|