purchase-s-details.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. @import "../../public/page/purchase-details.wxss";
  2. @import "../../../../public/pages/public-view.wxss";
  3. /* 选择户籍 */
  4. .choose-account {
  5. background-color: #F1F8FF;
  6. width: 100%;
  7. height: 100rpx;
  8. margin-top: 24rpx;
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .choose-account>view:nth-child(1) {
  13. margin: 0 34rpx;
  14. display: flex;
  15. }
  16. .choose-account>view:nth-child(1) view {
  17. color: #3296FB;
  18. font-size: 28rpx;
  19. line-height: 100rpx;
  20. margin-left: auto
  21. }
  22. .choose-account>view:nth-child(1)>view:nth-child(1) {
  23. margin-left: 0rpx;
  24. }
  25. .choose-account>view:nth-child(2) {
  26. width: 112rpx;
  27. height: 5rpx;
  28. background-color: #3296FB;
  29. margin-left: 34rpx;
  30. }
  31. /* toCalculator */
  32. .to-calculator {
  33. width: 100%;
  34. height: 100rpx;
  35. background-color: white;
  36. display: flex;
  37. }
  38. .to-calculator>text {
  39. font-size: 28rpx;
  40. color: #3296FB;
  41. line-height: 100rpx;
  42. margin-left: auto;
  43. }
  44. .to-calculator>image {
  45. width: 16rpx;
  46. height: 24rpx;
  47. margin: auto auto auto 10rpx;
  48. }
  49. /* 档线间隔 */
  50. .interval {
  51. width: 100%;
  52. height: 24rpx;
  53. background-color: #F5F5F5;
  54. margin-top: -0.7px;
  55. }
  56. /* 总价格 */
  57. .total-view {
  58. background-color: white;
  59. width: 100%;
  60. height: 112rpx;
  61. display: flex;
  62. }
  63. .total-view>text:first-child {
  64. font-family: PingFangSC-Regular;
  65. font-size: 28rpx;
  66. color: #333333;
  67. line-height: 112rpx;
  68. margin-left: 30rpx;
  69. }
  70. .total-view>text:nth-child(2) {
  71. font-family: PingFangSC-Medium;
  72. color: #FF5E5E;
  73. font-size: 34rpx;
  74. line-height: 112rpx;
  75. margin: 0 30rpx 0 auto;
  76. }
  77. /* 分项价格 */
  78. .list-view {
  79. background-color: white;
  80. width: 100%;
  81. height: 70rpx;
  82. display: flex;
  83. }
  84. .list-view text {
  85. font-family: PingFangSC-Regular;
  86. font-size: 28rpx;
  87. line-height: 70rpx;
  88. }
  89. .list-view>text:nth-child(1) {
  90. color: #333333;
  91. margin-left: 30rpx;
  92. }
  93. .list-view>view:nth-child(2) {
  94. color: #FF5E5E;
  95. font-size: 22rpx;
  96. text-align: center;
  97. line-height: 32rpx;
  98. width: 56rpx;
  99. height: 32rpx;
  100. border: 1px solid #FF5E5E;
  101. border-radius: 4rpx;
  102. margin: auto 0rpx auto 16rpx;
  103. }
  104. .list-view>text:last-child {
  105. color: #666666;
  106. margin-left: auto;
  107. margin-right: 30rpx;
  108. }