index.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .offer-list {
  2. position: relative;
  3. .action {
  4. position: absolute;
  5. right: 0;
  6. bottom: 30rpx;
  7. }
  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: -20rpx;
  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. .tag-box {
  34. display: flex;
  35. align-items: center;
  36. width: 100%;
  37. .datatag,
  38. .systemtag {
  39. flex-shrink: 0;
  40. margin-top: 6rpx;
  41. background: #3874f6;
  42. color: #ffffff;
  43. margin-right: 10rpx;
  44. display: flex;
  45. align-items: center;
  46. height: 40rpx;
  47. font-size: 20rpx;
  48. padding: 0 10rpx;
  49. border-radius: 20rpx;
  50. font-family: PingFang SC-Regular, PingFang SC;
  51. }
  52. .datatag {
  53. background: #FA8C16;
  54. }
  55. }
  56. .exp {
  57. height: 34rpx;
  58. font-size: 24rpx;
  59. color: #666;
  60. margin-top: 8rpx;
  61. text {
  62. color: #333333;
  63. }
  64. }
  65. }
  66. .line-1 {
  67. overflow: hidden;
  68. white-space: nowrap;
  69. text-overflow: ellipsis;
  70. }