C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
780 B

  1. .i-tabs-tab {
  2. flex: 1;
  3. display: flex;
  4. width: 100%;
  5. -webkit-box-pack: center;
  6. justify-content: center;
  7. -webkit-box-align: center;
  8. align-items: center;
  9. -webkit-box-orient: vertical;
  10. -webkit-box-direction: normal;
  11. flex-direction: column;
  12. text-align: center;
  13. position: relative
  14. }
  15. .i-tabs-tab-bar {
  16. display: block;
  17. width: 50%;
  18. height: 2px;
  19. background: 0 0;
  20. position: absolute;
  21. bottom: 0;
  22. left: 25%;
  23. background: #00C0FF;
  24. border-radius: 100px;
  25. }
  26. .i-tabs-tab-title {
  27. font-size: 28rpx;
  28. text-align: center;
  29. box-sizing: border-box;
  30. color: #B8B8B8;
  31. }
  32. .i-tabs-tab-title-current {
  33. color: #00C0FF
  34. }
  35. .i-tabs-tab-scroll {
  36. display: inline-block;
  37. width: auto;
  38. min-width: 60px;
  39. }