Clue.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .tab-box {
  2. display: flex;
  3. height: 90rpx;
  4. background-color: #fff;
  5. .left {
  6. display: flex;
  7. width: 0;
  8. flex: 1;
  9. align-items: center;
  10. padding-left: 30rpx;
  11. justify-content: space-between;
  12. .user {
  13. flex-shrink: 0;
  14. line-height: 40rpx;
  15. font-family: PingFang SC, PingFang SC;
  16. font-weight: 700;
  17. font-size: 28rpx;
  18. color: #333333;
  19. margin-right: 20rpx;
  20. }
  21. .type {
  22. font-family: PingFang SC, PingFang SC;
  23. font-size: 28rpx;
  24. color: #666666;
  25. flex-shrink: 0;
  26. .iconfont {
  27. font-size: 26rpx;
  28. margin-right: 10rpx;
  29. }
  30. }
  31. }
  32. .right {
  33. display: flex;
  34. align-items: center;
  35. height: 90rpx;
  36. flex-shrink: 0;
  37. .filtrate-box {
  38. display: flex;
  39. height: 100%;
  40. align-items: center;
  41. padding: 0 20rpx;
  42. font-family: PingFang SC, PingFang SC;
  43. font-size: 28rpx;
  44. color: #666666;
  45. .iconfont {
  46. margin-right: 6rpx;
  47. color: #999999;
  48. }
  49. }
  50. .search-box {
  51. display: flex;
  52. height: 100%;
  53. align-items: center;
  54. padding: 0 30rpx;
  55. .iconfont {
  56. font-size: 40rpx;
  57. }
  58. }
  59. }
  60. }
  61. .item {
  62. position: relative;
  63. .tag-box {
  64. .tag {
  65. height: 40rpx;
  66. font-size: 18rpx !important;
  67. font-family: PingFang SC-Regular, PingFang SC;
  68. padding: 0 12rpx;
  69. margin-right: 10rpx;
  70. }
  71. }
  72. .title {
  73. position: relative;
  74. display: flex;
  75. line-height: 38rpx;
  76. align-items: center;
  77. font-family: Microsoft YaHei, Microsoft YaHei;
  78. font-weight: bold;
  79. font-size: 28rpx;
  80. color: #333333;
  81. >text {
  82. display: inline-block;
  83. width: 80%;
  84. font-size: 30rpx;
  85. color: #333333;
  86. font-weight: normal;
  87. }
  88. .status {
  89. position: absolute;
  90. right: -20rpx;
  91. width: 132rpx;
  92. height: 40rpx;
  93. border-radius: 20rpx 0px 0px 20rpx;
  94. box-sizing: border-box;
  95. padding-left: 30rpx;
  96. line-height: 40rpx;
  97. font-size: 24rpx;
  98. font-family: PingFang SC-Regular, PingFang SC;
  99. color: #FFFFFF;
  100. font-weight: normal;
  101. }
  102. }
  103. .row {
  104. display: flex;
  105. line-height: 32rpx;
  106. font-family: Microsoft YaHei, Microsoft YaHei;
  107. font-size: 24rpx;
  108. color: #999999;
  109. margin-top: 10rpx;
  110. flex-wrap: wrap;
  111. .col {
  112. width: 50%;
  113. }
  114. }
  115. }