base.scss 2.3 KB

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