index.scss 664 B

12345678910111213141516171819202122232425262728293031323334
  1. .task-head {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. width: 100vw;
  6. height: 74rpx;
  7. box-sizing: border-box;
  8. padding: 0 30rpx;
  9. font-family: PingFang SC-Bold, PingFang SC;
  10. .left {
  11. font-size: 24rpx;
  12. color: #333333;
  13. text {
  14. font-weight: bold;
  15. }
  16. }
  17. .right {
  18. .switch {
  19. display: flex;
  20. align-items: center;
  21. font-size: 0;
  22. text {
  23. display: inline-block;
  24. font-size: 28rpx;
  25. color: #999999;
  26. margin-right: 6rpx;
  27. }
  28. }
  29. }
  30. }