index.scss 774 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .item {
  2. position: relative;
  3. width: 100vw;
  4. height: 192rpx;
  5. padding: 20rpx 30rpx;
  6. background-color: #ffffff;
  7. border-bottom: 1rpx solid #dddddd;
  8. box-sizing: border-box;
  9. .line-1 {
  10. line-height: 36rpx;
  11. font-size: 24rpx;
  12. font-family: PingFang SC-Regular, PingFang SC;
  13. font-weight: 400;
  14. color: #999999;
  15. }
  16. .title {
  17. max-width: 550rpx;
  18. height: 40rpx;
  19. line-height: 40rpx;
  20. font-size: 28rpx;
  21. font-family: PingFang SC-Regular, PingFang SC;
  22. color: #000000;
  23. margin-bottom: 6rpx;
  24. }
  25. .tag {
  26. position: absolute;
  27. top: 20rpx;
  28. right: 30rpx;
  29. height: 48rpx;
  30. padding: 0 15rpx;
  31. border-radius: 8rpx;
  32. }
  33. }