index.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. .exp {
  34. height: 34rpx;
  35. font-size: 24rpx;
  36. color: #666;
  37. margin-top: 8rpx;
  38. text {
  39. color: #333333;
  40. }
  41. }
  42. }
  43. .line-1 {
  44. overflow: hidden;
  45. white-space: nowrap;
  46. text-overflow: ellipsis;
  47. }