C端小程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

46 righe
852 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: 6rpx;
  19. background: 0 0;
  20. position: absolute;
  21. bottom: 0;
  22. left: 25%;
  23. background: #af6e34;
  24. border-radius: 100px;
  25. }
  26. .i-tabs-tab-title {
  27. font-size: 30rpx;
  28. line-height: 30rpx;
  29. text-align: center;
  30. box-sizing: border-box;
  31. color: #666666;
  32. }
  33. .i-tabs-tab-title-current {
  34. color: #af6e34;
  35. font-size: 36rpx;
  36. }
  37. .i-tabs-tab-scroll {
  38. display: inline-block;
  39. width: auto;
  40. min-width:75rpx;
  41. margin-right:33rpx;
  42. }