index.scss 1.4 KB

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