/**
 * @Author xutongzee.
 * @Time 2021-08-18
 * @Description Style of heade component
 */

.navaban {
    position: relative;
    z-index: 99;
    min-height: 64px;
}

.navaban .nav {
    position: absolute;
    left: 0;
    top: 0;
	z-index: 9;
}

.navaban .nav-menu  {
    margin: 0;
}

.navaban .logo-ntxt {
    font-size: 28px;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.logo-ntxt sub {
    font-size: 14px;
    vertical-align: middle;
    letter-spacing: 3px;
    margin-left: 4px;
}

.nav .wid-plus {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

@media screen and (max-width: 768px) {
    .logo-ntxt sub {
        display: none;
    }

    div.nav .wid-plus {
        display: flex;
        flex-direction: row;
        justify-items: center;
        align-content: space-between;
        width: 100%!important;
        max-width: inherit!important;
        min-width: inherit!important;
    }
}