select.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .total {
  6. height: 60rpx;
  7. line-height: 60rpx;
  8. font-size: 24rpx;
  9. font-family: PingFang SC-Regular, PingFang SC;
  10. color: #666666;
  11. padding-left: 30rpx;
  12. }
  13. .offer-list {
  14. display: flex;
  15. align-items: center;
  16. width: 100%;
  17. padding: 20rpx 30rpx;
  18. box-sizing: border-box;
  19. background-color: #fff;
  20. border-bottom: 1rpx solid #ddd;
  21. font-family: PingFang SC-Regular, PingFang SC;
  22. .box {
  23. flex: 1;
  24. .tag-box {
  25. margin-top: 10rpx;
  26. .tag {
  27. height: 40rpx;
  28. font-size: 20rpx;
  29. font-family: PingFang SC-Regular, PingFang SC;
  30. padding: 0 12rpx;
  31. margin-right: 8rpx;
  32. }
  33. }
  34. .title {
  35. position: relative;
  36. display: flex;
  37. height: 42rpx;
  38. align-items: center;
  39. >text {
  40. display: inline-block;
  41. width: 80%;
  42. font-size: 30rpx;
  43. color: #333333;
  44. }
  45. .status {
  46. position: absolute;
  47. right: -30rpx;
  48. width: 132rpx;
  49. height: 40rpx;
  50. border-radius: 20rpx 0px 0px 20rpx;
  51. box-sizing: border-box;
  52. padding-left: 30rpx;
  53. line-height: 40rpx;
  54. font-size: 24rpx;
  55. font-family: PingFang SC-Regular, PingFang SC;
  56. color: #FFFFFF;
  57. }
  58. }
  59. .exp {
  60. height: 34rpx;
  61. font-size: 24rpx;
  62. color: #666;
  63. margin-top: 8rpx;
  64. width: 700rpx;
  65. text {
  66. color: #333333;
  67. }
  68. }
  69. }
  70. }
  71. .footer {
  72. display: flex;
  73. justify-content: space-between;
  74. align-items: center;
  75. padding: 0 30rpx;
  76. position: fixed;
  77. width: 100vw;
  78. height: 130rpx;
  79. background: #FFFFFF;
  80. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  81. bottom: 0;
  82. box-sizing: border-box;
  83. .count {
  84. font-size: 28rpx;
  85. font-family: PingFang SC-Regular, PingFang SC;
  86. color: #333333;
  87. }
  88. .but {
  89. width: 156rpx;
  90. height: 90rpx;
  91. background: #3874F6;
  92. border-radius: 8rpx;
  93. font-size: 28rpx;
  94. font-family: PingFang SC-Bold, PingFang SC;
  95. font-weight: bold;
  96. color: #FFFFFF;
  97. }
  98. }
  99. .line-1 {
  100. overflow: hidden;
  101. white-space: nowrap;
  102. text-overflow: ellipsis;
  103. }