index.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. }
  16. .right {
  17. text-align: right;
  18. flex: 1;
  19. height: 34rpx;
  20. line-height: 34rpx;
  21. font-size: 24rpx;
  22. color: #3874F6;
  23. }
  24. }
  25. .footer {
  26. padding-left: 30rpx;
  27. box-sizing: border-box;
  28. .box {
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-between;
  32. height: 50rpx;
  33. width: 100%;
  34. box-sizing: border-box;
  35. border-bottom: 1rpx solid #ddd;
  36. padding-right: 40rpx;
  37. .tag-box {
  38. display: flex;
  39. width: 90%;
  40. height: 100%;
  41. .tag {
  42. height: 40rpx;
  43. line-height: 40rpx;
  44. border-radius: 20rpx;
  45. background-color: #FAAB16;
  46. font-size: 20rpx;
  47. color: #FFFFFF;
  48. padding: 0 10rpx;
  49. margin-right: 10rpx;
  50. }
  51. }
  52. }
  53. }
  54. .unfold {
  55. .empty {
  56. width: 100%;
  57. text-align: center;
  58. padding: 20rpx 0;
  59. font-size: 24rpx;
  60. color: #999;
  61. }
  62. }
  63. }