index.acss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .hospital-new-component .recharge {
  2. padding-bottom: 140rpx;
  3. }
  4. .hospital-new-component .recharge .theme {
  5. color: #1677FF;
  6. }
  7. .hospital-new-component .recharge .recharge-block {
  8. margin: 24rpx;
  9. padding: 24rpx;
  10. background: #fff;
  11. border-radius: 16rpx;
  12. font-size: 24rpx;
  13. color: #999;
  14. line-height: 50rpx;
  15. }
  16. .hospital-new-component .recharge .recharge-block.flex {
  17. display: flex;
  18. justify-content: space-between;
  19. align-items: center;
  20. }
  21. .hospital-new-component .recharge .recharge-block .recharge-balance {
  22. font-size: 36rpx;
  23. color: #333;
  24. font-weight: 500;
  25. }
  26. .hospital-new-component .recharge .recharge-block .recharge-t {
  27. font-size: 32rpx;
  28. color: #333;
  29. font-weight: 500;
  30. }
  31. .hospital-new-component .recharge .recharge-block .recharge-amount {
  32. display: flex;
  33. flex-wrap: wrap;
  34. margin: 16rpx -16rpx -16rpx 0;
  35. }
  36. .hospital-new-component .recharge .recharge-block .recharge-amount .recharge-amount-item {
  37. background: #f5f5f5;
  38. border-radius: 8rpx;
  39. margin-bottom: 16rpx;
  40. margin-right: 16rpx;
  41. width: calc((100% - 48rpx) / 3);
  42. height: 140rpx;
  43. font-size: 42rpx;
  44. font-weight: 500;
  45. color: #333;
  46. text-align: center;
  47. line-height: 140rpx;
  48. position: relative;
  49. overflow: hidden;
  50. }
  51. .hospital-new-component .recharge .recharge-block .recharge-amount .recharge-amount-item .recharge-amount-icon {
  52. display: none;
  53. background: #1677FF;
  54. transform: rotate3d(0, 0, 1, 45deg);
  55. position: absolute;
  56. bottom: -59%;
  57. right: -5%;
  58. padding: 10rpx;
  59. }
  60. .hospital-new-component .recharge .recharge-block .recharge-amount .recharge-amount-item .recharge-amount-icon .icon-s {
  61. transform: rotate3d(0, 0, 1, -45deg);
  62. }
  63. .hospital-new-component .recharge .recharge-block .recharge-amount .recharge-amount-item.checked {
  64. background: rgba(76, 146, 245, 0.1);
  65. color: #1677FF;
  66. }
  67. .hospital-new-component .recharge .recharge-block .recharge-amount .recharge-amount-item.checked .recharge-amount-icon {
  68. display: block;
  69. }
  70. .hospital-new-component .recharge .recharge-block .recharge-input {
  71. font-size: 48rpx;
  72. color: #333;
  73. display: flex;
  74. align-items: center;
  75. margin-top: 40rpx;
  76. margin-bottom: 10rpx;
  77. height: 72rpx;
  78. }
  79. .hospital-new-component .recharge .recharge-block .recharge-input .input {
  80. font-size: 72rpx;
  81. font-weight: 500;
  82. height: 72rpx;
  83. line-height: 72rpx;
  84. }
  85. .hospital-new-component .recharge .recharge-block .recharge-input .input-placeholder {
  86. font-size: 28rpx;
  87. font-weight: 300;
  88. }
  89. .hospital-new-component .recharge .recharge-block-tip {
  90. color: #FF6430;
  91. font-size: 24rpx;
  92. text-align: center;
  93. margin-top: 40rpx;
  94. }
  95. .hospital-new-component .recharge .recharge-fixed {
  96. position: fixed;
  97. left: 0;
  98. bottom: 0;
  99. padding-bottom: 40rpx;
  100. background: #f5f5f5;
  101. width: 100%;
  102. }
  103. .hospital-new-component .recharge .recharge-fixed .recharge-button {
  104. margin: 0 24rpx;
  105. }
  106. .hospital-new-component .recharge-pop {
  107. padding: 0 24rpx;
  108. max-height: 634rpx;
  109. overflow-y: auto;
  110. margin-bottom: 40rpx;
  111. }
  112. .hospital-new-component .recharge-pop .recharge-pop-item {
  113. background: #f8f8f8;
  114. border-radius: 8rpx;
  115. display: flex;
  116. justify-content: space-between;
  117. align-items: center;
  118. line-height: 60rpx;
  119. font-size: 34rpx;
  120. color: #333;
  121. padding: 10rpx 24rpx;
  122. margin-bottom: 24rpx;
  123. }
  124. .hospital-new-component .recharge-pop .recharge-pop-item .recharge-pop-btn {
  125. width: 120rpx;
  126. height: 50rpx;
  127. background: #1677FF;
  128. border-radius: 8rpx;
  129. text-align: center;
  130. letter-spacing: 5rpx;
  131. line-height: 50rpx;
  132. font-size: 24rpx;
  133. color: #fff;
  134. }