index.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .box {
  2. width: 750rpx;
  3. height: 652rpx;
  4. padding: 28rpx 0 0;
  5. background: #FFFFFF;
  6. border-radius: 30rpx 30rpx 0rpx 0rpx;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. .box .header {
  12. width: 100%;
  13. position: relative;
  14. font-size: 28rpx;
  15. color: #000000;
  16. text-align: center;
  17. }
  18. .box .header .close {
  19. position: absolute;
  20. right: 24rpx;
  21. top: -30rpx;
  22. line-height: 60rpx;
  23. font-size: 50rpx;
  24. }
  25. .box .qrCodeBox {
  26. margin: 34rpx auto;
  27. padding: 40rpx;
  28. background: url('http://reader-wx.ai160.com/images/reader/v3/bgl.webp') no-repeat;
  29. background-size: contain;
  30. }
  31. .box .qrCodeBox .qrCode {
  32. width: 322rpx;
  33. height: 322rpx;
  34. background: #D8D8D8;
  35. border-radius: 40rpx;
  36. }
  37. .box .footer .row {
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. margin-bottom: 20rpx;
  42. }
  43. .box .footer .row .icon {
  44. margin: 0 12rpx;
  45. font-size: 30rpx;
  46. width: 46rpx;
  47. height: 46rpx;
  48. }
  49. .box .footer .row text {
  50. padding: 0 10rpx;
  51. }
  52. .box .footer .row .price {
  53. font-size: 40rpx;
  54. color: #FF0707;
  55. font-weight: bold;
  56. }