index.scss 674 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .box {
  2. display: flex;
  3. align-items: center;
  4. width: 100vw;
  5. height: 90rpx;
  6. padding: 0 30rpx;
  7. box-sizing: border-box;
  8. .title {
  9. font-size: 30rpx;
  10. font-family: PingFang SC-Bold, PingFang SC;
  11. font-weight: bold;
  12. color: #333333;
  13. flex-shrink: 0;
  14. }
  15. .rep {
  16. flex: 1;
  17. height: 100%;
  18. margin-left: 20rpx;
  19. .switch {
  20. height: 100%;
  21. display: flex;
  22. justify-content: flex-end;
  23. align-items: center;
  24. .text {
  25. font-size: 28rpx;
  26. font-family: PingFang SC-Regular, PingFang SC;
  27. color: #999999;
  28. margin-right: 10rpx;
  29. height: 100%;
  30. line-height: 84rpx;
  31. }
  32. }
  33. }
  34. }