/* 顶部信息栏 */
.global-topbar {
    position: relative;
    top: 0;
    z-index: 99999;
    height: 80px;
    width: 100%;
    background: #ffffff;
}

.global-topbar-wrapper {
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.08);
}

.global-topbar-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.global-topbar-left {
    float: left;
    display: flex;
    align-items: center;
}

.global-topbar-logo-href {
    display: block;
}
/*
.global-topbar-nav {
    float: left;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
} */

/* .global-topbar-nav-item {
    padding-left: 23px;
    background-size: 16px 16px;
    background-position: left 3px;
    background-repeat: no-repeat;
    font-size: 0;
}

.global-topbar-nav-item:not(:first-of-type) {
    margin-top: 4px;
}

.global-topbar-nav-item.gtn-phone {
    background-image: url(/vietnam-city/imgs/header_phone.svg);
}

.global-topbar-nav-item.gtn-email {
    background-image: url(/vietnam-city/imgs/header_email.svg);
}

.global-topbar-nav-item-text {
    display: inline-block;
    margin-right: 20px;
    color: #333333;
    font-size: 14px;
    line-height: 1.428;
} */

.global-topbar-right {
}

.global-topbar-select {
    position: relative;
}

.global-topbar-select-label {
    box-sizing: border-box;
    display: block;
    min-width: 74px;
    height: 24px;
    padding: 0 16px 0 5px;
    border: 1px solid #666666;
    border-radius: 2px;
    background: url(/vietnam-city/imgs/header_down.svg) right center/16px 16px no-repeat;
    font-size: 0;
    line-height: 22px;
    cursor: pointer;
}

.global-topbar-select:hover .global-topbar-select-label {
    background-image: url(/vietnam-city/imgs/header_up.svg);
}

.global-topbar-select-img {
    display: inline-block;
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.global-topbar-select-text {
    display: inline-block;
    color: #333333;
    font-size: 12px;
    line-height: 1;
    vertical-align: middle;
}

.global-topbar-select-list {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    width: 74px;
    border: 1px solid #666666;
    border-radius: 2px;
    border-radius: 2px;
    background: #ffffff;
    transform: translateY(4px);
}

.global-topbar-select-list::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 5px;
    z-index: -1;
}

.global-topbar-select:hover .global-topbar-select-list {
    display: block;
}

.global-topbar-select-item {
    box-sizing: border-box;
    display: block;
    height: 24px;
    line-height: 24px;
    width: 100%;
    padding: 0 16px 0 5px;
    cursor: pointer;
}

.global-topbar-select-item:hover {
    background-color: #e5e7eb;
}
/* 顶部信息栏end */


/* 全站主导航 */
/* .global-navbar {
    position: relative;
    z-index: 99;
    border-bottom: 1px #E9E9E9 solid;
} */

/* .global-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.global-navbar-logo {
    display: inline-block;
    margin-top: -7px;
}

.global-main-nav {
    display: inline-block;
    height: 100%;
    margin-left: 30px;
    font-size: 0;
}

.global-main-nav-item, .global-main-nav-item:visited {
    position: relative;
    display: inline-block;
    height: 100%;
    font-size: 16px;
    line-height: 1.375;
    color: #333333;

    &:hover, &:focus {
        color: #E60012;
        font-weight: bold;
    }

    h2 {
        font-size: 16px;
        font-weight: bold;

        &:hover, &:focus {
            color: #E60012;
            font-weight: bold;
        }
    }
}

.global-main-nav-item:not(:last-child) {
    margin-right: 38px;
}

.global-main-nav-item.active {
    color: #E60012;
    font-weight: bold;

    &::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -11px;
        z-index: 99;
        width: 100%;
        height: 2px;
        background: #E60012;
        transform: translateX(-50%) translateY(1px);
    }
}

.global-navbar-right-link {
    display:block;
    float: right;
    font-size: 0;
}
/* 全站主导航end */