| 12345678910111213141516171819202122232425262728293031323334 |
- .task-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100vw;
- height: 74rpx;
- box-sizing: border-box;
- padding: 0 30rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- .left {
- font-size: 24rpx;
- color: #333333;
- text {
- font-weight: bold;
- }
- }
- .right {
- .switch {
- display: flex;
- align-items: center;
- font-size: 0;
- text {
- display: inline-block;
- font-size: 28rpx;
- color: #999999;
- margin-right: 6rpx;
- }
- }
- }
- }
|