12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .guideWrap {
- width: 40vw;
- height: 100vh;
- :global {
- .van-tabs__nav {
- background-color: transparent;
- .van-tab {
- color: #fff;
- font-size: 16px;
- }
- }
- .van-tab__panel {
- height: calc(100vh - var(--van-tabs-line-height));
- overflow: hidden;
- overflow-y: auto;
- box-sizing: border-box;
- &::-webkit-scrollbar {
- width: 0;
- }
- }
- .van-tabs__line{
- bottom: .5rem;
- }
- }
- .content {
- padding: 18px 24px 0 24px;
- color: #fff;
- font-size: 12px;
- line-height: 20px;
- box-sizing: border-box;
- img {
- width: 100%;
- }
- .item {
- margin-bottom: 20px;
- }
- .title {
- font-size: 14px;
- font-weight: 500;
- }
- }
- }
|