index.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. @import "./index.skeleton.wxss";
  2. .item-box {
  3. position: relative;
  4. width: 100vw;
  5. background-color: #fff;
  6. margin-bottom: 20rpx;
  7. padding-bottom: 20rpx;
  8. box-sizing: border-box;
  9. .top {
  10. display: flex;
  11. padding: 20rpx 30rpx 10rpx;
  12. box-sizing: border-box;
  13. .image {
  14. width: 128rpx;
  15. height: 128rpx;
  16. border-radius: 16rpx;
  17. overflow: hidden;
  18. margin-right: 20rpx;
  19. flex-shrink: 0;
  20. }
  21. .content {
  22. flex: 1;
  23. .title {
  24. display: flex;
  25. align-items: center;
  26. justify-content: space-between;
  27. height: 40rpx;
  28. .line-1 {
  29. display: block;
  30. width: 500rpx;
  31. font-size: 28rpx;
  32. font-family: PingFang SC-Semibold, PingFang SC;
  33. font-weight: 600;
  34. color: #333333;
  35. }
  36. .iconfont {
  37. position: absolute;
  38. width: 60rpx;
  39. height: 60rpx;
  40. line-height: 60rpx;
  41. right: 0;
  42. flex-shrink: 0;
  43. }
  44. }
  45. .exp {
  46. line-height: 34rpx;
  47. font-size: 24rpx;
  48. font-family: PingFang SC-Regular, PingFang SC;
  49. color: #999999;
  50. margin-top: 8rpx;
  51. }
  52. }
  53. }
  54. .bottom {
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: center;
  58. height: 58rpx;
  59. padding: 0 30rpx;
  60. box-sizing: border-box;
  61. margin-top: 12rpx;
  62. .check {
  63. display: flex;
  64. align-items: center;
  65. height: 100%;
  66. width: 380rpx;
  67. .label-class {
  68. font-size: 24rpx;
  69. font-family: PingFang SC-Regular, PingFang SC;
  70. color: #999999;
  71. margin-left: -6rpx;
  72. }
  73. }
  74. .input-class {
  75. width: 120rpx;
  76. }
  77. }
  78. }
  79. .footer {
  80. width: 100vw;
  81. min-height: 130rpx;
  82. position: fixed;
  83. bottom: 0;
  84. z-index: 999;
  85. display: flex;
  86. justify-content: space-between;
  87. padding: 0 30rpx;
  88. box-sizing: border-box;
  89. background-color: #fff;
  90. box-shadow: rgba(0, 0, 0, 0.15) 0px 5rpx 15rpx 0px;
  91. .left {
  92. flex: 1;
  93. color: #333333;
  94. .sum {
  95. height: 40rpx;
  96. line-height: 40rpx;
  97. font-size: 28rpx;
  98. font-family: PingFang SC-Medium, PingFang SC;
  99. font-weight: 500;
  100. margin-top: 14rpx;
  101. text {
  102. color: #FF3B30;
  103. }
  104. }
  105. .transport {
  106. height: 34rpx;
  107. line-height: 34rpx;
  108. font-size: 24rpx;
  109. font-family: PingFang SC-Regular, PingFang SC;
  110. margin-top: 8rpx;
  111. text {
  112. color: #FF3B30;
  113. }
  114. }
  115. }
  116. .but {
  117. width: 230rpx;
  118. height: 90rpx;
  119. background: #3874F6;
  120. border-radius: 16rpx;
  121. font-size: 28rpx;
  122. font-weight: 600;
  123. color: #FFFFFF;
  124. margin-top: 10rpx;
  125. }
  126. }