index.scss 2.2 KB

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