index.wxss 615 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. }
  9. .box .title {
  10. font-size: 30rpx;
  11. font-family: PingFang SC-Bold, PingFang SC;
  12. font-weight: bold;
  13. color: #333333;
  14. flex-shrink: 0;
  15. }
  16. .box .rep {
  17. flex: 1;
  18. height: 100%;
  19. margin-left: 20rpx;
  20. }
  21. .box .rep .switch {
  22. height: 100%;
  23. display: flex;
  24. justify-content: flex-end;
  25. align-items: center;
  26. }
  27. .box .rep .switch text {
  28. font-size: 28rpx;
  29. font-family: PingFang SC-Regular, PingFang SC;
  30. color: #999999;
  31. margin-right: 10rpx;
  32. height: 100%;
  33. line-height: 84rpx;
  34. }