index.module.less 748 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .guideWrap {
  2. width: 40vw;
  3. height: 100vh;
  4. :global {
  5. .van-tabs__nav {
  6. background-color: transparent;
  7. .van-tab {
  8. color: #fff;
  9. font-size: 16px;
  10. }
  11. }
  12. .van-tab__panel {
  13. height: calc(100vh - var(--van-tabs-line-height));
  14. overflow: hidden;
  15. overflow-y: auto;
  16. box-sizing: border-box;
  17. &::-webkit-scrollbar {
  18. width: 0;
  19. }
  20. }
  21. .van-tabs__line{
  22. bottom: .5rem;
  23. }
  24. }
  25. .content {
  26. padding: 18px 24px 0 24px;
  27. color: #fff;
  28. font-size: 12px;
  29. line-height: 20px;
  30. box-sizing: border-box;
  31. img {
  32. width: 100%;
  33. }
  34. .item {
  35. margin-bottom: 20px;
  36. }
  37. .title {
  38. font-size: 14px;
  39. font-weight: 500;
  40. }
  41. }
  42. }