index.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .rechargePopup-box {
  2. width: 100%;
  3. padding: 32rpx;
  4. box-sizing: border-box;
  5. .rechargePopup-title {
  6. position: relative;
  7. width: 100%;
  8. height: 44rpx;
  9. view {
  10. font-size: 30rpx;
  11. &:nth-of-type(1) {
  12. color: #222222;
  13. font-weight: 600;
  14. position: absolute;
  15. left: 50%;
  16. transform: translateX(-50%);
  17. }
  18. &:nth-of-type(2) {
  19. position: absolute;
  20. right: 0;
  21. color: #999999;
  22. }
  23. }
  24. }
  25. .rechargePopup-list {
  26. width: 100%;
  27. margin-top: 48rpx;
  28. @include flex(space-between, null, 16rpx);
  29. flex-wrap: wrap;
  30. .rechargePopup-item {
  31. width: 218rpx;
  32. height: 160rpx;
  33. background-color: #ffebe3;
  34. border-radius: 16rpx;
  35. color: #ef530e;
  36. font-size: 48rpx;
  37. font-weight: 600;
  38. @include flex(center, column, 10rpx);
  39. view {
  40. &:nth-of-type(2) {
  41. font-size: 24rpx;
  42. font-weight: normal;
  43. }
  44. }
  45. &:nth-last-of-type(1) {
  46. visibility: hidden;
  47. }
  48. }
  49. .custom {
  50. font-size: 28rpx;
  51. line-height: normal;
  52. font-weight: normal;
  53. @include flex(center, column, null);
  54. input {
  55. width: 160rpx;
  56. height: 50rpx;
  57. border-bottom: 2rpx solid #ff986a;
  58. font-weight: 600;
  59. }
  60. }
  61. .act {
  62. background-color: #ef530e;
  63. color: #ffffff;
  64. }
  65. }
  66. .custom {
  67. margin-top: 16rpx;
  68. width: 100%;
  69. height: 96rpx;
  70. background-color: #ffebe3;
  71. padding: 26rpx 32rpx;
  72. box-sizing: border-box;
  73. color: #ef530e;
  74. @include flex(center, null, null);
  75. border-radius: 16rpx;
  76. font-size: 24rpx;
  77. .custom-left {
  78. margin-right: 8rpx;
  79. }
  80. .custom-input {
  81. flex: 1;
  82. input {
  83. width: 100%;
  84. height: 45rpx;
  85. border-bottom: 2rpx solid #ff986a;
  86. }
  87. }
  88. .custom-right {
  89. margin-left: 54rpx;
  90. }
  91. &.act{
  92. background-color: #ef530e;
  93. color: #ffffff;
  94. }
  95. }
  96. .immediately-btn{
  97. width: 100%;
  98. height: 96rpx;
  99. background-color: #EF530E;
  100. text-align: center;
  101. line-height: 96rpx;
  102. margin-top: 26rpx;
  103. font-size: 28rpx;
  104. color: #FFFFFF;
  105. border-radius: 16rpx;
  106. }
  107. }