index.scss 745 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .switch-box {
  2. position: relative;
  3. display: flex;
  4. width: 170rpx;
  5. height: 60rpx;
  6. background: #F5F5F5;
  7. border-radius: 30rpx;
  8. view {
  9. position: relative;
  10. flex: 1;
  11. height: 60rpx;
  12. text-align: center;
  13. line-height: 60rpx;
  14. z-index: 2;
  15. font-size: 24rpx;
  16. font-family: PingFang SC-Regular, PingFang SC;
  17. color: #999999;
  18. }
  19. .active {
  20. font-size: 24rpx;
  21. color: #FFFFFF;
  22. }
  23. .bg {
  24. /* width: 85px;
  25. height: 52px; */
  26. position: absolute;
  27. width: calc(50% - 4px);
  28. height: calc(100% - 8rpx);
  29. background: #FA8C16;
  30. border-radius: 30rpx;
  31. top: 4rpx;
  32. z-index: 1;
  33. }
  34. }