index.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. .head {
  2. width: 100vw;
  3. background: #FFFFFF;
  4. padding: 20rpx 30rpx;
  5. box-sizing: border-box;
  6. .title {
  7. line-height: 44rpx;
  8. font-family: PingFang SC, PingFang SC;
  9. font-weight: bold;
  10. font-size: 32rpx;
  11. color: #333333;
  12. }
  13. .amount {
  14. color: #666666;
  15. font-size: 24rpx;
  16. line-height: 34rpx;
  17. margin-top: 8rpx;
  18. text {
  19. color: #FF3B30;
  20. font-weight: bold;
  21. }
  22. }
  23. .date {
  24. color: #666666;
  25. font-size: 24rpx;
  26. line-height: 34rpx;
  27. margin-top: 8rpx;
  28. .value {
  29. color: #333;
  30. }
  31. }
  32. }
  33. .search {
  34. display: flex;
  35. height: 100rpx;
  36. align-items: center;
  37. overflow: hidden;
  38. .label {
  39. width: 114rpx;
  40. font-family: PingFang SC, PingFang SC;
  41. font-size: 28rpx;
  42. color: #666666;
  43. flex-shrink: 0;
  44. font-weight: bold;
  45. padding: 0 30rpx;
  46. margin: 0;
  47. }
  48. .box {
  49. flex: 1;
  50. .custom-class {
  51. --search-background-color: #fff !important;
  52. }
  53. }
  54. }
  55. .row {
  56. line-height: 34rpx;
  57. font-family: PingFang SC, PingFang SC;
  58. font-size: 24rpx;
  59. color: #333333;
  60. margin-top: 8rpx;
  61. }
  62. .row:first-child {
  63. margin-top: 0;
  64. }
  65. .item {
  66. width: 100vw;
  67. background-color: #fff;
  68. padding: 30rpx;
  69. box-sizing: border-box;
  70. padding-right: 0;
  71. padding-bottom: 0;
  72. .row {
  73. padding-right: 30rpx;
  74. box-sizing: border-box;
  75. }
  76. .two-lines {
  77. display: flex;
  78. >view {
  79. width: 50%;
  80. }
  81. .left {
  82. padding-right: 6rpx;
  83. box-sizing: border-box;
  84. }
  85. }
  86. .price {
  87. color: #FF3B30;
  88. font-weight: bold;
  89. }
  90. margin-bottom: 20rpx;
  91. .bottom {
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. line-height: 80rpx;
  96. border-top: 1rpx solid #DDDDDD;
  97. margin-top: 20rpx;
  98. font-size: 28rpx;
  99. color: #666666;
  100. .iconfont {
  101. padding: 0 30rpx;
  102. line-height: 60rpx;
  103. }
  104. }
  105. }
  106. .footer {
  107. display: flex;
  108. justify-content: center;
  109. align-items: center;
  110. position: fixed;
  111. bottom: 0;
  112. left: 0;
  113. width: 750rpx;
  114. height: 130rpx;
  115. background: #FFFFFF;
  116. box-shadow: 0rpx -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  117. border-radius: 0rpx 0rpx 0rpx 0rpx;
  118. .button-class {
  119. width: 500rpx;
  120. height: 90rpx;
  121. background: #3874F6;
  122. border-radius: 100rpx;
  123. font-family: PingFang SC, PingFang SC;
  124. font-weight: bold;
  125. font-size: 28rpx;
  126. color: #FFFFFF;
  127. }
  128. }