index.scss 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .task-item {
  2. width: 100vw;
  3. box-sizing: border-box;
  4. background-color: #fff;
  5. margin-bottom: 20rpx;
  6. .head {
  7. display: flex;
  8. padding: 20rpx 30rpx;
  9. .left {
  10. width: 80%;
  11. font-size: 24rpx;
  12. color: #333333;
  13. line-height: 34rpx;
  14. word-wrap: break-word;
  15. .pivotal {
  16. display: inline-block;
  17. width: 60rpx;
  18. height: 36rpx;
  19. text-align: center;
  20. line-height: 36rpx;
  21. background: #E5EEFF;
  22. border-radius: 4rpx;
  23. border: 1rpx solid #3874F6;
  24. box-sizing: border-box;
  25. font-size: 20rpx;
  26. font-family: PingFang SC-Regular, PingFang SC;
  27. color: #3874F6;
  28. margin-right: 15rpx;
  29. }
  30. }
  31. .right {
  32. text-align: right;
  33. flex: 1;
  34. height: 34rpx;
  35. line-height: 34rpx;
  36. font-size: 24rpx;
  37. color: #3874F6;
  38. }
  39. }
  40. .footer {
  41. padding-left: 30rpx;
  42. box-sizing: border-box;
  43. .box {
  44. display: flex;
  45. align-items: center;
  46. justify-content: space-between;
  47. width: 100%;
  48. box-sizing: border-box;
  49. padding-right: 20rpx;
  50. .tag-box {
  51. display: flex;
  52. width: 85%;
  53. flex-wrap: wrap;
  54. .tag {
  55. height: 40rpx;
  56. line-height: 40rpx;
  57. border-radius: 20rpx;
  58. background-color: #FAAB16;
  59. font-size: 20rpx;
  60. color: #FFFFFF;
  61. padding: 0 10rpx;
  62. margin-right: 10rpx;
  63. flex-shrink: 0;
  64. margin-bottom: 6rpx;
  65. }
  66. }
  67. .history {
  68. flex: 1;
  69. display: flex;
  70. height: 100%;
  71. align-items: center;
  72. justify-content: flex-end;
  73. font-size: 24rpx;
  74. font-family: PingFang SC-Regular, PingFang SC;
  75. color: #3874F6;
  76. }
  77. }
  78. }
  79. .unfold {
  80. .empty {
  81. width: 100%;
  82. text-align: center;
  83. padding: 20rpx 0;
  84. font-size: 24rpx;
  85. color: #999;
  86. }
  87. }
  88. }