nav-tab.scss 718 Bytes
.reds-shop {
    .shop-tabs {
        display: flex;
        justify-content: space-around;
        width: 100%;
        font-size: 30px;
        line-height: 80px;
        border-top: 1PX solid #dededf;
        border-bottom: 1PX solid #dededf;
        background-color: #fff;
        touch-action: none;

        em {
            color: #dededf;
        }

        &.sticky {
            z-index: 10;
        }
    }

    .shop-tab-nav {
        color: #dededf;
        width: 33.33%;
        text-align: center;

        span {
            display: inline-block;
            width: 100%;
        }

        &.active {
            color: #434241;
        }

        a {
            color: inherit;
        }
    }
}