select.scss 2.5 KB

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