charge.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. .charge-form {
  2. padding: 30rpx;
  3. background-color: #fff;
  4. }
  5. .tit {
  6. font-size: 32rpx;
  7. color: #000;
  8. margin-bottom: 30rpx;
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: baseline;
  12. }
  13. .charge-yue {
  14. color: #000;
  15. font-size: 60rpx;
  16. }
  17. .details {
  18. margin-left: 20rpx;
  19. font-size: 26rpx;
  20. color: rgb(59,140,232);
  21. }
  22. .flex-ipt {
  23. position: relative;
  24. display: flex;
  25. font-size: 40rpx;
  26. color: #000;
  27. justify-content: center;
  28. align-content: center;
  29. overflow: hidden;
  30. }
  31. .flex-ipt .money {
  32. font-size: 30rpx;
  33. flex: 1;
  34. padding: 20rpx 0;
  35. border-bottom: 2rpx solid #ececec;
  36. }
  37. .flex-ipt .bottom-line {
  38. position: absolute;
  39. bottom: 0;
  40. left: 0;
  41. width: 0;
  42. height: 4rpx;
  43. background-color: rgb(59,140,232);
  44. transition: 200ms all ease-in;
  45. }
  46. .flex-ipt .bottom-line.ipt-focus {
  47. width: 100%;
  48. }
  49. .btn {
  50. margin: 50rpx 30rpx;
  51. background-color: #f75451;
  52. color: #fff;
  53. text-align: center;
  54. line-height: 88rpx;
  55. font-size: 30rpx;
  56. border-radius: 5rpx;
  57. }
  58. .btn.disable {
  59. background-color: #f59997;
  60. }
  61. .desc {
  62. padding: 0 30rpx;
  63. line-height: 1.6;
  64. font-size: 26rpx;
  65. color: #666;
  66. }
  67. .desc .h2 {
  68. font-size: 30rpx;
  69. margin-bottom: 10rpx;
  70. }
  71. .list {
  72. display: flex;
  73. flex-wrap: wrap;
  74. justify-content: space-between;
  75. margin: 30rpx 0;
  76. }
  77. .list-item {
  78. width: 30%;
  79. display: flex;
  80. flex-direction: column;
  81. justify-content: center;
  82. align-items: center;
  83. border: 1rpx solid rgb(59,140,232);
  84. border-radius: 5px;
  85. height: 110rpx;
  86. background-color: transparent;
  87. line-height: initial;
  88. box-sizing: initial;
  89. padding: 0;
  90. margin: 0 0 24rpx;
  91. }
  92. .list-item_empty {
  93. height: 0;
  94. width: 30%;
  95. }
  96. .item-tit {
  97. color: #408ce2;
  98. font-size: 32rpx;
  99. }
  100. .item-subtit {
  101. color: #7dbdf8;
  102. font-size: 22rpx;
  103. }
  104. .item-hover {
  105. background-color: rgb(59,140,232);
  106. }
  107. .item-hover .item-tit,
  108. .item-hover .item-subtit {
  109. color: #fff;
  110. }