
/* 头部 */

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: url('../images/new/header-bg.png') no-repeat center;
    background-size: cover;
    margin: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-login {
    text-align: right;
    display: flex;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 17px;
    color: #FFFFFF;

}

.header-wel {
    color: white;
    text-align: right;
    padding-top: 0px;
    margin: 0;
    line-height: 24px;
    margin-right: 10px;
    font-size: 16px;
}

.navbar-links img {
    vertical-align: middle;
    margin: 0 5px;
    position: absolute;
    top: 30px;
    /* left: 36px; */
    right: -16px;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.menu-arrow {
    vertical-align: middle;
    margin: 0 5px;
    position: absolute;
    top: 30px;
    right: -16px;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}


.navbar-container {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    color: #fff;
    line-height: 80px;
    overflow: hidden;
    background: transparent;
}


.navbar-container-ul {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    margin: auto;
    text-align: center;
    cursor: pointer;
}

.navbar-container-ul li {
    width: 200px;
    text-align: center;
}

.navbar-container-ul li.is-active {
    /*border: none;*/
    /*position: relative;*/
    background: #61A2FE;
    font-weight: 600;
}

.header-width {
    margin-left: calc(50% - 650PX);
    width: 1552px;
}

.navbar-links {
    position: relative;
}

.navbar-links img {
    vertical-align: middle;
    margin: 0 5px;
    position: absolute;
    top: 30px;
    /* left: 36px; */
    right: -16px;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.menu-arrow {
    vertical-align: middle;
    margin: 0 5px;
    position: absolute;
    top: 30px;
    right: -16px;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.navbar-links:hover .navbar-menu {
    display: block;
}

.navbar-menu {
    display: none;
    width: auto;
    position: absolute;
    left: -14px;
    top: 55px;
    line-height: 48px;
    font-size: 14px;
    z-index: 2;
}

.navbar-menu li {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
}

.navbar-menu li:hover {
    background-color: rgb(237, 242, 250);
}

.navbar-menu .a-url {
    display: inline-block;
    color: #595757;
    width: 100%;
    height: 48px;
    padding: 0 14px;
}

.header-logo {
    width: 177px;
    height: 52px;
}

.header-logo img {
    width: 177px;
    height: 52px;
}



/* Navigation in Header */
.header-container .navbar-container {
    flex: 1;
    /*margin: 0 40px;*/
}

.header-container .navbar-container-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
    list-style: none;
    margin: 0;
}

.header-container .navbar-container-ul .navbar-li {
    position: relative;
    height: 80px;
    width: 157px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    cursor: pointer;
}

.menu-arrow-image {
    margin-left: 9px;
}

/* 导航竖线（#navbarApp）：
   - 每项左侧 ::before：第 1 项为整组最左线，其余为「与上一项之间」的分隔；
   - 仅最后一项保留 ::after：整组最右线；中间项隐藏 ::after，避免与下一项 ::before 画双线。
   - 选中项：隐藏自身 ::before / ::after，并隐藏下一项 ::before（去掉与下一项之间的线）。
   - 勿使用 .is-active ~ li::after，会误伤后续所有项。 */

body #navbarApp .navbar-li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 1px !important;
    height: 19px !important;
    background: rgba(255, 255, 255, 0.3) !important;
}

body #navbarApp .navbar-li::after {
    content: '' !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 1px !important;
    height: 19px !important;
    background: rgba(255, 255, 255, 0.3) !important;
}

body #navbarApp .navbar-li:not(:last-child)::after {
    display: none !important;
}

body #navbarApp .navbar-li.is-active::before,
body #navbarApp .navbar-li.is-active::after {
    display: none !important;
}

body #navbarApp .navbar-li.is-active + .navbar-li::before {
    display: none !important;
}

.header-container .navbar-container-ul .tab-title {
    color: white;
    font-size: 20px;
    white-space: nowrap;
}


/* Menu Arrow */
.header-container .navbar-container-ul .menu-arrow {
    margin-left: 8px;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

/* Dropdown Menu */
.header-container .navbar-container-ul .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    padding: 10px 0;
    min-width: 150px;
    z-index: 1001;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container .navbar-container-ul .navbar-li:hover .navbar-menu {
    display: block;
}

.header-container .navbar-container-ul .navbar-menu li {
    padding: 8px 20px;
    list-style: none;
}

.header-container .navbar-container-ul .navbar-menu a {
    color: #595757;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    font-size: 14px;
}

.header-container .navbar-container-ul .navbar-menu a:hover {
    color: #1F73FF;
}

/* Quick Sub-menu */
.quick-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1300px;
    height: 54px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    margin-left: calc(50% - 650px);
}

.submenu-content {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.submenu-list {
    display: flex;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.submenu-list li {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.submenu-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #999;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.submenu-item {
    color: #595757;
    text-decoration: none;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    display: block;
    transition: color 0.3s ease;
}

.submenu-item:hover {
    color: #1F73FF;
    font-weight: 600;
}

.login-btn-view {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #0C78FC;
    border-radius: 14px;
    background: #fff;
    padding: 2px 9px;
    cursor: pointer;
}

.submenu-item-select {
    color: #1F73FF;
    font-weight: 600;
}


/* .submenu-item-select:hover {
    color: #1F73FF;
    font-weight: 600;
} */

.submenu-item-select .submenu-item{
    color: #1F73FF;
    font-weight: 600;
}


/* ========== index2 底部 footer2：对齐 test/index.html box_23 / test/index.css ========== */
.footer-container.footer-index2 {
    margin-top: 0;
    height: 229px;
    min-height: 229px;
    background-color: #0d6efd;
    background-image: url("../images/new/index2-footer-box23-bg.png");
    background-repeat: no-repeat;
    background-position: -8px 0;
    background-size: 1930px 229px;
    color: #fff;
}

.footer-container.footer-index2 .footer-wrap {
    background: none !important;
    width: 100% !important;
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    height: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.footer-container.footer-index2 .footer-head.footer-index2-head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 75px 0 0 0;
    margin: 0;
    list-style: none;
}

.footer-container.footer-index2 .footer-index2-col {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.footer-container.footer-index2 .footer-index2-col-host {
    width: 260px;
    margin-right: 113px;
}

.footer-container.footer-index2 .footer-index2-col-phone {
    width: 157px;
    margin-right: 6px;
}

.footer-container.footer-index2 .footer-index2-col-hours {
    width: 171px;
    margin-right: 118px;
    margin-top: 36px;
    align-self: flex-start;
}

.footer-container.footer-index2 .footer-index2-col-qr {
    /*flex: 1 1 auto;*/
    min-width: 0;
    margin-top: -2px;
}

.footer-container.footer-index2 .footer2-label {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    color: #fff !important;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.footer-container.footer-index2 .footer-index2-col-host .footer-links-list {
    float: none;
    width: auto;
    max-width: 260px;
    margin-top: 12px;
    line-height: 21px;
}

.footer-container.footer-index2 .footer-index2-col-host .footer-links-list a {
    margin-top: 0;
    font-size: 21px;
    font-weight: 700;
    line-height: 21px;
    color: #fff !important;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.footer-container.footer-index2 .footer-index2-col-phone .footer-phone {
    margin: 14px 0 0 0;
    padding: 0;
    font-size: 21px;
    font-weight: 700;
    line-height: 21px;
    color: #fff !important;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.footer-container.footer-index2 .footer2-hours {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    line-height: 14px;
    color: #fff;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    white-space: nowrap;
}

.footer-container.footer-index2 .qr-div {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-container.footer-index2 .qr-div .qr-image {
    width: 66px;
    height: 67px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-container.footer-index2 .qr-div .content {
    margin: 6px 0 0 10px;
    max-width: 403px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    color: #fff;
}

.footer-container.footer-index2 .footer2-follow {
    margin-top: 12px;
    font-size: 21px;
    font-weight: 700;
    line-height: 21px;
    color: #fff;
}


.map-search-list li {
    height: 24px  !important;
    line-height: 29px  !important;
    padding: 0 3px 0 6px  !important;
    cursor: pointer;
}

@media (max-width: 1400px) {
    .footer-container.footer-index2 {
        background-size: cover;
        background-position: center top;
    }
}

@media (max-width: 1100px) {
    .footer-container.footer-index2 {
        height: auto;
        min-height: 0;
        padding-bottom: 32px;
        background-size: cover;
    }

    .footer-container.footer-index2 .footer-head.footer-index2-head {
        flex-wrap: wrap;
        padding-top: 48px;
        gap: 20px 24px;
    }

    .footer-container.footer-index2 .footer-index2-col-host,
    .footer-container.footer-index2 .footer-index2-col-phone,
    .footer-container.footer-index2 .footer-index2-col-hours {
        width: auto;
        margin-right: 0;
        margin-top: 0 !important;
    }

    .footer-container.footer-index2 .footer-index2-col-qr {
        flex-basis: 100%;
        margin-top: 8px;
    }

    .footer-container.footer-index2 .qr-div {
        justify-content: flex-start;
    }
}
