followUp.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .row {
  2. display: flex;
  3. .col {
  4. flex: 1;
  5. width: 0;
  6. padding: 10rpx 20rpx;
  7. border-radius: 20rpx;
  8. box-sizing: border-box;
  9. margin-right: 20rpx;
  10. .label {
  11. width: 100%;
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. min-height: 28rpx;
  16. font-family: PingFang SC, PingFang SC;
  17. font-size: 20rpx;
  18. color: #FFFFFF;
  19. .iconfont {
  20. flex-shrink: 0;
  21. font-size: 18rpx;
  22. }
  23. }
  24. .value {
  25. line-height: 44rpx;
  26. font-family: PingFang SC, PingFang SC;
  27. font-weight: bold;
  28. font-size: 32rpx;
  29. color: #FFFFFF;
  30. }
  31. }
  32. .col:last-child {
  33. margin-right: 0;
  34. }
  35. }
  36. .count {
  37. .label {
  38. font-family: PingFang SC, PingFang SC;
  39. font-size: 28rpx;
  40. color: #333333;
  41. line-height: 28rpx;
  42. }
  43. .tag-box {
  44. display: flex;
  45. flex-wrap: wrap;
  46. .tag {
  47. line-height: 28rpx;
  48. font-family: PingFang SC, PingFang SC;
  49. font-size: 20rpx;
  50. color: #3874F6;
  51. padding: 6rpx 10rpx 6rpx 8rpx;
  52. box-sizing: border-box;
  53. background: #E1EAFE;
  54. border-radius: 8rpx;
  55. margin-top: 20rpx;
  56. margin-right: 20rpx;
  57. flex-shrink: 0;
  58. }
  59. .tag:last-child {
  60. margin-right: 0;
  61. }
  62. }
  63. }
  64. .item {
  65. position: relative;
  66. .resource {
  67. position: absolute;
  68. line-height: 40rpx;
  69. padding: 0 8rpx;
  70. background-color: #3874F6;
  71. font-family: PingFang SC, PingFang SC;
  72. font-size: 24rpx;
  73. color: #FFFFFF;
  74. right: 20rpx;
  75. border-radius: 4rpx;
  76. }
  77. .createdate {
  78. line-height: 32rpx;
  79. font-family: Microsoft YaHei, Microsoft YaHei;
  80. font-size: 24rpx;
  81. color: #67C23A;
  82. margin-bottom: 20rpx;
  83. }
  84. .line {
  85. line-height: 32rpx;
  86. font-family: Microsoft YaHei, Microsoft YaHei;
  87. font-weight: 400;
  88. font-size: 24rpx;
  89. color: #999999;
  90. margin-top: 10rpx;
  91. }
  92. }