index.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. .wximg {
  48. width: 62rpx;
  49. height: 52rpx;
  50. }
  51. .img {
  52. height: 62rpx;
  53. width: 62rpx;
  54. }
  55. .name {
  56. margin-left: 34rpx;
  57. font-size: 36rpx;
  58. }
  59. }
  60. }
  61. }
  62. .paymentBox {
  63. position: absolute;
  64. left: 0;
  65. bottom: 0;
  66. padding: 60rpx 40rpx;
  67. box-sizing: border-box;
  68. width: 100%;
  69. display: flex;
  70. align-items: center;
  71. justify-content: space-between;
  72. background-color: white;
  73. .payment {
  74. display: flex;
  75. align-items: center;
  76. font-size: 36rpx;
  77. .num {
  78. font-size: 36rpx;
  79. color: #FF6300;
  80. }
  81. }
  82. .pay {
  83. padding: 12rpx 52rpx;
  84. background: #ff9108;
  85. color: white;
  86. font-weight: 500;
  87. font-size: 40rpx;
  88. border-radius: 45rpx;
  89. }
  90. }
  91. }
  92. }