index.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .main {
  2. padding: 20rpx 30rpx;
  3. width: 100vw;
  4. background-color: #fff;
  5. .item {
  6. position: relative;
  7. display: flex;
  8. height: 128rpx;
  9. width: 100%;
  10. margin-top: 20rpx;
  11. .img {
  12. width: 128rpx;
  13. height: 128rpx;
  14. border-radius: 16rpx;
  15. overflow: hidden;
  16. margin-right: 20rpx;
  17. flex-shrink: 0;
  18. image {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. view {
  23. background-color: #EEEEEE;
  24. width: 100%;
  25. height: 100%;
  26. line-height: 128rpx;
  27. text-align: center;
  28. }
  29. }
  30. .right {
  31. flex: 1;
  32. width: 0;
  33. .title {
  34. width: 75%;
  35. line-height: 40rpx;
  36. font-size: 28rpx;
  37. font-family: PingFang SC-Bold, PingFang SC;
  38. font-weight: bold;
  39. color: #333333;
  40. }
  41. .exp {
  42. width: 93%;
  43. height: 34rpx;
  44. font-size: 24rpx;
  45. font-family: PingFang SC-Regular, PingFang SC;
  46. color: #666666;
  47. margin-top: 10rpx;
  48. }
  49. .time {
  50. width: 90%;
  51. display: flex;
  52. height: 28rpx;
  53. line-height: 28rpx;
  54. font-size: 20rpx;
  55. font-family: PingFang SC-Regular, PingFang SC;
  56. color: #999999;
  57. margin-top: 16rpx;
  58. .line-1 {
  59. width: 230rpx;
  60. }
  61. }
  62. }
  63. .tag {
  64. position: absolute;
  65. top: 4rpx;
  66. right: 50rpx;
  67. width: 96rpx;
  68. height: 36rpx;
  69. line-height: 36rpx;
  70. text-align: center;
  71. background: #3874F6;
  72. border-radius: 4rpx;
  73. font-size: 20rpx;
  74. font-family: PingFang SC-Regular, PingFang SC;
  75. color: #FFFFFF;
  76. }
  77. }
  78. .item:nth-child(1) {
  79. margin-top: 0 !important;
  80. }
  81. }
  82. .line-1 {
  83. overflow: hidden;
  84. white-space: nowrap;
  85. text-overflow: ellipsis;
  86. }