index.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. height: 34rpx;
  47. line-height: 34rpx;
  48. font-size: 24rpx;
  49. font-family: PingFang SC-Regular, PingFang SC;
  50. color: #999999;
  51. margin-top: 8rpx;
  52. }
  53. }
  54. }
  55. .bottom {
  56. display: flex;
  57. justify-content: space-between;
  58. align-items: center;
  59. height: 58rpx;
  60. padding: 0 30rpx;
  61. box-sizing: border-box;
  62. margin-top: 12rpx;
  63. .check {
  64. display: flex;
  65. align-items: center;
  66. height: 100%;
  67. width: 380rpx;
  68. .label-class {
  69. font-size: 24rpx;
  70. font-family: PingFang SC-Regular, PingFang SC;
  71. color: #999999;
  72. margin-left: -6rpx;
  73. }
  74. }
  75. .input-class {
  76. width: 120rpx;
  77. }
  78. }
  79. }
  80. .footer {
  81. width: 100vw;
  82. min-height: 130rpx;
  83. position: fixed;
  84. bottom: 0;
  85. z-index: 999;
  86. display: flex;
  87. justify-content: space-between;
  88. padding: 0 30rpx;
  89. box-sizing: border-box;
  90. background-color: #fff;
  91. box-shadow: rgba(0, 0, 0, 0.15) 0px 5rpx 15rpx 0px;
  92. .left {
  93. flex: 1;
  94. color: #333333;
  95. .sum {
  96. height: 40rpx;
  97. line-height: 40rpx;
  98. font-size: 28rpx;
  99. font-family: PingFang SC-Medium, PingFang SC;
  100. font-weight: 500;
  101. margin-top: 14rpx;
  102. text {
  103. color: #FF3B30;
  104. }
  105. }
  106. .transport {
  107. height: 34rpx;
  108. line-height: 34rpx;
  109. font-size: 24rpx;
  110. font-family: PingFang SC-Regular, PingFang SC;
  111. margin-top: 8rpx;
  112. text {
  113. color: #FF3B30;
  114. }
  115. }
  116. }
  117. .but {
  118. width: 230rpx;
  119. height: 90rpx;
  120. background: #3874F6;
  121. border-radius: 16rpx;
  122. font-size: 28rpx;
  123. font-weight: 600;
  124. color: #FFFFFF;
  125. margin-top: 10rpx;
  126. }
  127. }