index.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .project-item {
  2. display: flex;
  3. align-items: center;
  4. background-color: #fff;
  5. width: 690rpx;
  6. border-radius: 8rpx;
  7. margin: 0 auto 20rpx;
  8. padding: 20rpx 30rpx;
  9. box-sizing: border-box;
  10. .main {
  11. position: relative;
  12. overflow: hidden;
  13. .label {
  14. font-size: 30rpx;
  15. font-family: PingFang SC-Regular, PingFang SC;
  16. color: #333333;
  17. }
  18. .tag-box {
  19. display: flex;
  20. align-items: center;
  21. width: 100%;
  22. .datatag,
  23. .systemtag {
  24. flex-shrink: 0;
  25. margin-top: 6rpx;
  26. background: #3874f6;
  27. color: #ffffff;
  28. margin-right: 10rpx;
  29. display: flex;
  30. align-items: center;
  31. height: 40rpx;
  32. font-size: 20rpx;
  33. padding: 0 10rpx;
  34. border-radius: 20rpx;
  35. font-family: PingFang SC-Regular, PingFang SC;
  36. }
  37. .datatag {
  38. background: #FA8C16;
  39. }
  40. }
  41. .replenish {
  42. display: flex;
  43. min-height: 34rpx;
  44. font-size: 24rpx;
  45. font-family: PingFang SC-Regular, PingFang SC;
  46. color: #333333;
  47. margin-top: 8rpx;
  48. word-break: break-all;
  49. white-space: pre-wrap;
  50. }
  51. }
  52. }
  53. .line-1 {
  54. overflow: hidden;
  55. white-space: nowrap;
  56. text-overflow: ellipsis;
  57. }