/* ==================
         导航栏
 ==================== */

.miao-tabs {
    .nav-title {
        min-width: 30Px;
        display: flex;
        justify-content: center;
    }

    .nav-fixed {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10;
    }

}

.nav {
    white-space: nowrap;

    &-item {
        height: 45Px;
        display: inline-block;
        line-height: 45Px;

        &.cur {

            position: relative;

            &::after {
                content: " ";
                width: 200%;
                height: 200%;
                position: absolute;
                top: 0;
                left: 0;
                border-radius: inherit;
                transform: scale(0.5);
                transform-origin: 0 0;
                pointer-events: none;
                box-sizing: border-box;
                border-bottom: 6Px solid;
            }

            // border-bottom: 4px solid;
        }
    }
}

::-webkit-scrollbar {
    display: none;
}

.scrollx {
    width: 100%;
    overflow: visible;
    white-space: nowrap;

    .tab-item {
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        white-space: initial;
        vertical-align: top;
        display: inline-block;

        //  height: 0;
        &.current {
            height: auto;
        }
    }

}
 

.miao-nav {
    .nav-title {
        display: flex;
        align-items: center;
    }
}