select.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .offer-list {
  2. display: flex;
  3. align-items: center;
  4. width: 100%;
  5. padding: 20rpx 30rpx;
  6. box-sizing: border-box;
  7. background-color: #fff;
  8. border-bottom: 1rpx solid #ddd;
  9. font-family: PingFang SC-Regular, PingFang SC;
  10. .box {
  11. .title {
  12. position: relative;
  13. display: flex;
  14. height: 42rpx;
  15. align-items: center;
  16. >text {
  17. display: inline-block;
  18. width: 80%;
  19. font-size: 30rpx;
  20. color: #333333;
  21. }
  22. .status {
  23. position: absolute;
  24. right: -30rpx;
  25. width: 132rpx;
  26. height: 40rpx;
  27. border-radius: 20rpx 0px 0px 20rpx;
  28. box-sizing: border-box;
  29. padding-left: 30rpx;
  30. line-height: 40rpx;
  31. font-size: 24rpx;
  32. font-family: PingFang SC-Regular, PingFang SC;
  33. color: #FFFFFF;
  34. }
  35. }
  36. .tag-box {
  37. display: flex;
  38. align-items: center;
  39. width: 100%;
  40. .datatag,
  41. .systemtag {
  42. flex-shrink: 0;
  43. margin-top: 6rpx;
  44. background: #FAAB16;
  45. color: #ffffff;
  46. margin-right: 10rpx;
  47. display: flex;
  48. align-items: center;
  49. height: 40rpx;
  50. font-size: 20rpx;
  51. padding: 0 10rpx;
  52. border-radius: 20rpx;
  53. font-family: PingFang SC-Regular, PingFang SC;
  54. }
  55. .systemtag {
  56. background: #FA8C16;
  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. .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. }