index.scss 1.3 KB

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