index.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .head {
  2. display: flex;
  3. align-items: center;
  4. width: 100vw;
  5. height: 120rpx;
  6. padding: 0 20rpx 0 30rpx;
  7. box-sizing: border-box;
  8. .count {
  9. font-size: 28rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #333333;
  12. }
  13. .expand {
  14. flex: 1;
  15. display: flex;
  16. align-items: center;
  17. justify-content: flex-end;
  18. .but {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. flex-shrink: 0;
  23. width: 80rpx;
  24. height: 80rpx;
  25. background: #FFFFFF;
  26. border-radius: 8rpx;
  27. border: 2rpx solid #CCCCCC;
  28. margin-left: 20rpx;
  29. color: #666666;
  30. }
  31. }
  32. }
  33. .custom-class {
  34. --search-background-color: #fff !important;
  35. padding-right: 10rpx !important;
  36. }
  37. .project-item {
  38. display: flex;
  39. align-items: center;
  40. background-color: #fff;
  41. width: 690rpx;
  42. border-radius: 8rpx;
  43. margin: 0 auto 20rpx;
  44. padding: 20rpx 30rpx;
  45. box-sizing: border-box;
  46. .main {
  47. position: relative;
  48. overflow: hidden;
  49. width: 100%;
  50. .iconfont-box {
  51. position: absolute;
  52. top: -20rpx;
  53. right: -30rpx;
  54. padding: 30rpx;
  55. color: #B5B5B5;
  56. border-radius: 8rpx;
  57. }
  58. .label {
  59. font-size: 30rpx;
  60. font-family: PingFang SC-Regular, PingFang SC;
  61. color: #333333;
  62. }
  63. .tag-box {
  64. display: flex;
  65. align-items: center;
  66. width: 100%;
  67. .datatag,
  68. .systemtag {
  69. flex-shrink: 0;
  70. margin-top: 6rpx;
  71. background: #3874f6;
  72. color: #ffffff;
  73. margin-right: 10rpx;
  74. display: flex;
  75. align-items: center;
  76. height: 40rpx;
  77. font-size: 20rpx;
  78. padding: 0 10rpx;
  79. border-radius: 20rpx;
  80. font-family: PingFang SC-Regular, PingFang SC;
  81. }
  82. .datatag {
  83. background: #FA8C16;
  84. }
  85. }
  86. .replenish {
  87. display: flex;
  88. min-height: 34rpx;
  89. font-size: 24rpx;
  90. font-family: PingFang SC-Regular, PingFang SC;
  91. color: #333333;
  92. margin-top: 8rpx;
  93. word-break: break-all;
  94. white-space: pre-wrap;
  95. }
  96. .bottom {
  97. display: flex;
  98. align-items: center;
  99. height: 58rpx;
  100. font-family: PingFang SC, PingFang SC;
  101. font-size: 24rpx;
  102. color: #333333;
  103. width: 100%;
  104. margin-top: 8rpx;
  105. padding-bottom: 2rpx;
  106. input {
  107. width: 400rpx;
  108. height: 58rpx;
  109. background: #FFFFFF;
  110. border-radius: 8rpx;
  111. border: 1rpx solid #CCCCCC;
  112. padding-left: 20rpx;
  113. }
  114. }
  115. }
  116. }