select.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. width: 100%;
  15. padding: 20rpx 30rpx;
  16. box-sizing: border-box;
  17. background-color: #fff;
  18. border-bottom: 1rpx solid #ddd;
  19. font-family: PingFang SC-Regular, PingFang SC;
  20. .tag-box {
  21. margin-top: 10rpx;
  22. .tag {
  23. height: 40rpx;
  24. font-size: 20rpx;
  25. font-family: PingFang SC-Regular, PingFang SC;
  26. padding: 0 12rpx;
  27. margin-right: 8rpx;
  28. }
  29. }
  30. .title {
  31. position: relative;
  32. display: flex;
  33. height: 42rpx;
  34. align-items: center;
  35. >text {
  36. display: inline-block;
  37. width: 80%;
  38. font-size: 30rpx;
  39. color: #333333;
  40. }
  41. .status {
  42. position: absolute;
  43. right: -30rpx;
  44. width: 132rpx;
  45. height: 40rpx;
  46. border-radius: 20rpx 0px 0px 20rpx;
  47. box-sizing: border-box;
  48. padding-left: 30rpx;
  49. line-height: 40rpx;
  50. font-size: 24rpx;
  51. font-family: PingFang SC-Regular, PingFang SC;
  52. color: #FFFFFF;
  53. }
  54. }
  55. .exp {
  56. height: 34rpx;
  57. font-size: 24rpx;
  58. color: #666;
  59. margin-top: 8rpx;
  60. text {
  61. color: #333333;
  62. }
  63. }
  64. }
  65. .line-1 {
  66. overflow: hidden;
  67. white-space: nowrap;
  68. text-overflow: ellipsis;
  69. }