index.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .gradeContainer {
  2. width: 100%;
  3. height: 100%;
  4. background: rgba(0, 0, 0, .7);
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. z-index: 9999;
  12. color: #000000;
  13. .popBox {
  14. position: relative;
  15. width: 680rpx;
  16. height: 678rpx;
  17. box-sizing: border-box;
  18. padding: 40rpx 46rpx 0rpx;
  19. border-radius: 40rpx;
  20. background-color: #F7F7F7;
  21. overflow: hidden;
  22. .title {
  23. position: relative;
  24. text-align: center;
  25. font-size: 36rpx;
  26. font-weight: 400;
  27. color: #000000;
  28. .close {
  29. position: absolute;
  30. padding: 20rpx;
  31. width: 26rpx;
  32. height: 26rpx;
  33. right: 0rpx;
  34. top: -30rpx;
  35. }
  36. }
  37. .group {
  38. margin-top: 20rpx;
  39. .weui-cell {
  40. padding: 60rpx 0 40rpx;
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. .pay-row {
  45. display: flex;
  46. align-items: center;
  47. .wxpay {
  48. width: 62rpx;
  49. height: 52rpx;
  50. }
  51. .alipay {
  52. height: 62rpx;
  53. width: 62rpx;
  54. }
  55. .name {
  56. margin-left: 34rpx;
  57. font-size: 36rpx;
  58. }
  59. }
  60. }
  61. .weui-cell:first-child {
  62. border-bottom: 2rpx solid white;
  63. }
  64. }
  65. .paymentBox {
  66. position: absolute;
  67. left: 0;
  68. bottom: 0;
  69. padding: 60rpx 40rpx;
  70. box-sizing: border-box;
  71. width: 100%;
  72. display: flex;
  73. align-items: center;
  74. justify-content: space-between;
  75. background-color: white;
  76. .payment {
  77. display: flex;
  78. align-items: center;
  79. font-size: 36rpx;
  80. .num {
  81. font-size: 36rpx;
  82. color: #FF6300;
  83. }
  84. }
  85. .pay {
  86. padding: 12rpx 52rpx;
  87. background: #ff9108;
  88. color: white;
  89. font-weight: 500;
  90. font-size: 40rpx;
  91. border-radius: 45rpx;
  92. }
  93. }
  94. }
  95. }