list.scss 1.5 KB

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