index.scss 473 B

123456789101112131415161718192021222324252627282930
  1. .tabs {
  2. position: relative;
  3. display: flex;
  4. width: 100vw;
  5. overflow: hidden;
  6. background-color: #fff;
  7. box-shadow: 0rpx 4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  8. z-index: 9;
  9. .tab-active-class {
  10. font-size: 28rpx;
  11. color: #3874F6;
  12. text-transform: none;
  13. }
  14. .right {
  15. display: flex;
  16. align-items: center;
  17. flex-shrink: 0;
  18. width: 200rpx;
  19. .option {
  20. width: 100rpx;
  21. height: 88rpx;
  22. text-align: center;
  23. line-height: 88rpx;
  24. color: #666666;
  25. }
  26. }
  27. }