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. text {
  65. color: #333333;
  66. }
  67. }
  68. }
  69. }
  70. .footer {
  71. display: flex;
  72. justify-content: space-between;
  73. align-items: center;
  74. padding: 0 30rpx;
  75. position: fixed;
  76. width: 100vw;
  77. height: 130rpx;
  78. background: #FFFFFF;
  79. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  80. bottom: 0;
  81. box-sizing: border-box;
  82. .count {
  83. font-size: 28rpx;
  84. font-family: PingFang SC-Regular, PingFang SC;
  85. color: #333333;
  86. }
  87. .but {
  88. width: 156rpx;
  89. height: 90rpx;
  90. background: #3874F6;
  91. border-radius: 8rpx;
  92. font-size: 28rpx;
  93. font-family: PingFang SC-Bold, PingFang SC;
  94. font-weight: bold;
  95. color: #FFFFFF;
  96. }
  97. }
  98. .line-1 {
  99. overflow: hidden;
  100. white-space: nowrap;
  101. text-overflow: ellipsis;
  102. }