chargeStandard.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .charge {
  2. background-color: #F6F6FF;
  3. .charge-rules-container {
  4. background-color: #fff;
  5. border-radius: 25rpx;
  6. padding: 32rpx 40rpx;
  7. margin-bottom: 20rpx;
  8. }
  9. .charge-type {
  10. text {
  11. font-size: 32rpx;
  12. font-weight: 400;
  13. color: #2E2E2E;
  14. line-height: 40rpx;
  15. font-family: PingFangSC-Regular, PingFang SC;
  16. }
  17. }
  18. .charge-rules {
  19. display: flex;
  20. flex-direction: row;
  21. justify-content: space-between;
  22. padding: 25rpx 0;
  23. border-bottom: solid 2rpx #979797;
  24. view:first-child {
  25. color: #2A2A2A;
  26. font-weight: 400;
  27. }
  28. view.charge-rules-right {
  29. width: 70%;
  30. view {
  31. display: flex;
  32. flex-direction: row;
  33. justify-content: space-between;
  34. font-size: 24rpx;
  35. font-weight: 400;
  36. color: #6E6E6E;
  37. line-height: 40rpx;
  38. }
  39. }
  40. }
  41. .charge-instructions {
  42. background-color: #fff;
  43. border-radius: 25rpx;
  44. padding: 40rpx;
  45. .charge-instructions-title {
  46. line-height: 40rpx;
  47. font-size: 32rpx;
  48. color: #2e2e2e;
  49. margin-bottom: 30rpx;
  50. }
  51. .charge-instructions-item {
  52. text-indent: -1.5em;
  53. margin-left: 1.5em;
  54. line-height: 40rpx;
  55. font-size: 24rpx;
  56. color: #757575;
  57. }
  58. }
  59. .charge-telphone {
  60. margin-top: 30rpx;
  61. font-size: 24rpx;
  62. font-weight: 400;
  63. color: #757575;
  64. line-height: 40rpx;
  65. }
  66. .charge-list {
  67. width: calc(100% - 78rpx);
  68. margin: 0 auto;
  69. padding: 33rpx 0;
  70. display: flex;
  71. justify-content: space-between;
  72. .charge-list-item {
  73. width: 32%;
  74. margin-right: 2%;
  75. background-color: #fff;
  76. border-radius: 10rpx;
  77. padding: 29rpx;
  78. text-align: center;
  79. &:last-child {
  80. margin-right: 0;
  81. }
  82. view {
  83. &:first-child {
  84. color: #008CFF;
  85. font-size: 30rpx;
  86. font-weight: 500;
  87. line-height: 42rpx;
  88. }
  89. &:last-child {
  90. color: #999999;
  91. font-size: 24rpx;
  92. font-weight: 400;
  93. margin-top: 7rpx;
  94. line-height: 33rpx;
  95. }
  96. }
  97. }
  98. }
  99. }