/*隐藏面包屑 复原老需求*/
.breadcrumbArea {
    display: none !important; 
}
#CommonAlertPanel.headerPanel {
    width: 100%;
    height: 100%;
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(100, 100, 100, 0.5);
    display: none;
}

    #CommonAlertPanel.headerPanel #Commondialog {
        max-width: 25rem;
        width: 50%;
        padding: 35px 20px;
        position: fixed;
        opacity: 1;
        background: #fff;
        font-size: 1.3em;
    }

#CommonAlertPanel .bx-cpModal-img {
    width: 50%;
}

#CommonAlertPanel #Commondialog .btnCtaGroup .btnRequote span {
    background: #fcb040;
    color: #fff;
    padding: 5px 10px;
    line-height: 1.2;
    text-align: left;
    border-radius: 3px;
}

@media (max-width:768px) {
    #CommonAlertPanel.headerPanel #Commondialog {
        width: 80%;
    }

    #CommonAlertPanel .bx-cpModal-img {
        width: 45%;
    }
}

.mega-col-divider {
    width: 1px;
    background: #B4B4B4;
    min-height: 180px;
    align-self: stretch;
    margin: 0 20px;
}
/* 公共 Header 组件样式 */
:root {
    --bc-blue: #0085d2;
    --bc-blue-light: #d8f2fd;
    --bc-red: #d40000;
    --bc-text: #2a2d33;
    --medium-blue-60: #005697; /* 业务按钮默认 */
    --grey-90: #262626; /* 业务按钮激活 */
    --font-body-s-size: 12px;
    --font-body-s-line: 18px;
    --bc-gray-100: #f5f6f7;
    --bc-gray-200: #ececec;
    --bc-gray-300: #e3e5e8;
    --bc-border: #d9d9d9;
    --bc-radius: 4px;
    --bc-transition: .25s ease;
    --header-height: 80px;
    --break-desktop: 1280px;
    --break-tablet: 1024px;
    --break-mobile: 768px;
    --layout-max: 1280px; /* Figma 设计最大内容宽度 */
    --side-padding: clamp(16px, 8vw, 128px); /* 自适应左右留白 */
}

.bc-header * {
    box-sizing: border-box;
}

/* Header layout */
.bc-header {
    width: 100%;
    background: #fff;
    position: relative;
    font-size: 14px;
    box-shadow: 0 1px 0 var(--bc-border);
    transition: box-shadow .25s linear;
}

    .bc-header.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 300;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }
/* 业务类别条：允许折叠高度动画 */
.bc-business-bar {
    background: var(--bc-gray-200);
    height: 40px;
    width: 100%;
    transition: height .25s linear, opacity .25s linear, padding .25s linear;
}

.business-collapsed .bc-business-bar {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
}

.bc-business-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
}

.business-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
}

.business-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

    .business-right .icon-btn {
        padding: 4px 6px;
        font-size: 15px;
    }

    .business-right .badge {
        background: #005697;
    }

.divider {
    width: 1px;
    height: 18px;
    background: var(--bc-border);
    display: inline-block;
    margin: 0 4px;
}

.business-tabs li {
    margin: 0;
}

.business-tabs {
    height: 100%;
}

    .business-tabs li {
        height: 100%;
    }

    .business-tabs a {
        background: none;
        border: none;
        padding: 0 20px;
        cursor: pointer;
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        font-size: var(--Font-Size-Body---S, var(--font-body-s-size));
        line-height: var(--Font-Height-Body---S, var(--font-body-s-line));
        font-weight: 400;
        color: var(--medium-blue-60);
    }

    .business-tabs li.active a {
        background: #fff;
        color: var(--grey-90);
        font-weight: 400;
    }

    .business-tabs a:hover {
        color: var(--grey-90);
    }

.bc-topbar {
    display: flex;
    align-items: center;
    gap: 32px;
    height: var(--header-height);
    position: relative;
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    height: 80px;
}
/* 移除 nav 顶部分隔线与阴影 */
.bc-logo {
    display: flex;
    align-items: center;
    min-width: auto;
}

    .bc-logo picture, .bc-logo-img {
        display: block;
    }

.bc-logo-img {
    width: 226px;
    height: 48px;
    object-fit: contain;
}
/* 使图片在高度72的topbar内居中 */
.bc-logo {
    padding: 12px 0;
}

@media (max-width:900px) {
    .bc-logo-img {
        width: 160px;
        height: 44px;
    }

    .bc-logo {
        padding: 8px 0;
    }
}

@media (max-width:600px) {
    .bc-logo-img {
        width: 130px;
        height: 40px;
    }

    .bc-logo {
        padding: 6px 0;
    }
}
/* Logo 仅图片，无文字说明 */

.bc-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.bc-primary-nav {
    height: 100%;
}

    .bc-primary-nav ul {
        list-style: none;
        display: flex;
        padding: 0;
        margin: 0;
        height: 100%;
    }

.nav-item {
    position: relative;
    height: 100%;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    height: var(--header-height);
    padding: 0 24px 0 24px;
    text-decoration: none;
    color: var(--medium-blue-medium-blue-60,#005697);
    font-size: var(--Font-Size-Body---L, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Font-Height-Body---L, 24px);
    border: none;
    background: none;
    cursor: pointer;
    height: 100%;
}

    .nav-item.active .nav-link, .nav-link:hover {
        color: var(--medium-blue-60);
    }
/* 导航 hover / active 线性下划线动画 */
.nav-link {
    position: relative;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4px;
        background: var(--bc-red);
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 220ms linear;
        width: 100%;
    }

    .nav-item.active .nav-link::after,
    .nav-item:hover .nav-link::after,
    .nav-link:hover::after {
        transform: scaleX(1);
    }

.bc-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.icon-btn {
    background: none;
    border: 1px solid transparent;
    padding: 4px 8px;
    border-radius: var(--bc-radius);
    cursor: pointer;
    font-size: 16px;
    position: relative;
    line-height: 1;
}

    .icon-btn:hover {
        color: var(--bc-blue);
    }

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--bc-blue);
    color: #fff;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 10px;
    display: inline-block;
}

.agent-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--medium-blue-medium-blue-60, #005697);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

    .agent-link:hover {
        color: var(--bc-blue);
    }

.lang-box a,
.lang-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--medium-blue-medium-blue-60, #005697);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
    background: none;
    border: none;
    cursor: pointer;
}

    .lang-box a:hover, .lang-btn:hover {
        color: var(--bc-blue);
    }

.bc-login {
    background: #03a9f4;
    color: #fff;
    border: none;
    padding: 10px 48px;
    height: 3rem;
    border-radius: 28px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,.12);
}

    .bc-login:hover {
        background: #008dd1;
    }

.bc-avatar {
    width: 58px;
    height: 30px;
    padding: 4px 12px;
    background: linear-gradient(135deg,#ff00c8,#7b00ff);
    border: 3px solid #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    position: absolute;
    right: 10px;
    top: -20px;
}

/* 登录下拉面板 */
.login-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    border: 1px solid var(--bc-border);
    box-shadow: 0 18px 38px -6px rgba(0,0,0,.25),0 4px 12px rgba(0,0,0,.12);
    font-size: 13px;
    line-height: 1.4;
    display: none;
    z-index: 120;
    width: 240px;
}

    .login-dropdown::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 10px;
        background: #fff;
        clip-path: polygon(50% 0,0 100%,100% 100%);
        filter: drop-shadow(0 2px 2px rgba(0,0,0,.08));
    }

    .login-dropdown.is-open {
        display: block;
    }

.login-drop-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .login-drop-list li {
        margin: 0;
    }
    /* 统一所有项为 drop-row，首项加强调 */
    .login-drop-list .drop-row:first-child {
        padding: 16px 24px;
        font-weight: 700;
    }

.drop-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    box-sizing: border-box;
    cursor: pointer;
}

.drop-label {
    color: #005697;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-decoration: none;
    display: block;
    border: none;
    background: none;
    cursor: pointer;
}

    .drop-label:hover {
        text-decoration: none;
        color: #1F91C2;
    }

.drop-row.is-disabled .drop-label {
    color: #9aa0a6;
    cursor: default;
}

.drop-row + .drop-row {
    border-top: 1px solid #ececec;
}

.drop-row.is-disabled {
    color: #9aa0a6;
    background: #f5f6f7;
    font-weight: 600;
}

.drop-outline {
    background: none;
    border: 1px solid var(--bc-blue);
    padding: 6px 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    line-height: 1;
    font-size: 12px;
    font-weight: 600;
    color: #005697;
}

    .drop-outline:hover {
        background: var(--bc-blue);
        color: #fff;
    }

.drop-icon {
    line-height: 1;
}

    .drop-icon img {
        width: 16px;
    }

/* Mega Menu */
.bc-mega-container {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--header-height) + 40px); /* 40px 业务条 + header-height topbar */
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--bc-border);
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: var(--bc-transition), height .25s linear;
    z-index: 301; /* 高于 header */
}

.business-collapsed .bc-mega-container {
    top: var(--header-height);
}

.bc-mega-container.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.bc-mega-panel {
    display: flex;
    min-height: 340px;
}
    /* Ensure hidden mega panels are not displayed when switching tabs */
    .bc-mega-panel[hidden] {
        display: none;
    }
/* 多级重构 */
.bc-mega-sidebar {
    width: 200px;
    padding: 0;
    background: var(--bright-blue-bright-blue-5, #F2FCFF);
}

.bc-mega-sidebar-hide {
    background: #fff
}

    .bc-mega-sidebar-hide .mega-side-list {
        display: none;
    }

.mega-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .mega-side-list li {
        margin: 0;
    }

    .mega-side-list button {
        cursor: pointer;
        border: 0;
        width: 100%;
        display: flex;
        padding: 32px;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        color: var(--medium-blue-medium-blue-60, #005697);
        font-size: var(--Font-Size-Body---XL, 16px);
        font-style: normal;
        font-weight: 700;
        background: var(--bright-blue-bright-blue-5, #F2FCFF);
        line-height: var(--Font-Height-Body---XL, 26px); /* 162.5% */
        text-align:left;
    }

        .mega-side-list button .side-ico {
            font-size: 16px;
        }

            .mega-side-list button .side-ico img {
                width: 32px;
            }

        .mega-side-list li.is-active button, .mega-side-list button:hover {
            background: var(--white, #FFF);
        }

.bc-mega-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.mega-level {
    display: flex;
    width: 100%;
    animation: megaFade .22s ease;
}
    /* 切换时彻底隐藏未激活内容区 */
    .mega-level[hidden] {
        display: none !important;
    }

@keyframes megaFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex: 3;
    padding: 32px;
}

.mega-col-group {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mega-side-info {
    width: 300px;
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
    border-radius: 0 0 24px 0;
    background: var(--grey-grey-5, #FBFBFB);
}

.info-card, a.info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    width:100%;
}

.info-img {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    flex-shrink: 0;
    background: lightgray;
    display: block;
}

.info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    gap: 4px;
}

    .info-content h5 {
        padding: 0;
        margin: 0;
        color: var(--medium-blue-medium-blue-60, #005697);
        font-size: var(--Font-Size-Body---L, 14px);
        font-style: normal;
        font-weight: 400;
        line-height: var(--Font-Height-Body---L, 24px); /* 171.429% */
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-all;
    }

    .info-content p {
        color: var(--grey-grey-90, #262626);
        font-size: var(--Font-Size-Body---M, 12px);
        font-style: normal;
        font-weight: 400;
        line-height: var(--Font-Height-Body---M, 18px); /* 150% */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-all;
        padding: 0;
        margin: 0;
    }

.mega-col {
    min-width: 0;
}

.mega-col-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

    .mega-col-head .col-ico {
        font-size: 18px;
    }

        .mega-col-head .col-ico img {
            width: 32px;
        }

    .mega-col-head h4 {
        margin: 0;
        color: var(--medium-blue-medium-blue-60, #005697);
        font-size: var(--Font-Size-Body---XL, 16px);
        font-style: normal;
        font-weight: 700;
        line-height: var(--Font-Height-Body---XL, 26px); /* 162.5% */
    }

    .mega-col-head h4 a {
        margin: 0;
        color: var(--medium-blue-medium-blue-60, #005697);
        font-size: var(--Font-Size-Body---XL, 16px);
        font-style: normal;
        font-weight: 700;
        line-height: var(--Font-Height-Body---XL, 26px); /* 162.5% */
    }

.badge-new {
    border-radius: 10px;
    display: inline-block;
    background: var(--bright-blue-bright-blue-60, #04AFFF);
    padding: 0 8px;
    color: var(--white, #FFF);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
}

.drawer-sub-title .badge-new {
    margin-left: 8px;
}

.drawer-inner-links .badge-new {
    margin-left: 8px;
}

.mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mega-links li {
        font-size: 0px;
    }

    .mega-links a {
        text-decoration: none;
        display: inline-block;
        position: relative;
        color: var(--grey-grey-90, #262626);
        font-size: var(--Font-Size-Body---L, 14px);
        font-style: normal;
        font-weight: 400;
        line-height: var(--Font-Height-Body---L, 24px); /* 171.429% */
    }

    .mega-links .text {
        text-decoration: none;
        display: inline-block;
        position: relative;
        color: var(--grey-grey-90, #262626);
        font-size: var(--Font-Size-Body---L, 14px);
        font-style: normal;
        font-weight: 400;
        line-height: var(--Font-Height-Body---L, 24px); /* 171.429% */
    }

        .mega-links a:hover {
            color: #005697;
        }

    .mega-links li .badge-new {
        margin-left: 8px;
    }

/* Mobile View (formerly Drawer) */
.bc-mobile-view {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    width: 100%;
    background: #fff;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--bc-border);
    height: 80px;
    position: relative;
}

.drawer-logo-wrap {
    flex: 1;
}

.drawer-header .bc-logo-img {
    width: 150px;
    height: auto;
}

.drawer-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .drawer-header-actions .icon-btn {
        font-size: 24px;
        padding: 6px;
        color: #005697;
    }

.mobile-menu-toggle .icon-close {
    color: #005697;
}


.drawer-body {
    display: none; /* Hide menu content by default */
    padding: 0;
}

.bc-mobile-view.is-menu-open .drawer-body {
    display: block; /* Show menu when open */
    overflow-y: auto;
    max-height: 70vh
}

.drawer-biz-tabs {
    display: flex;
    background: var(--grey-grey-10, #F3F3F3);
}

    .drawer-biz-tabs button,
    .drawer-biz-tabs a {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        height: 56px;
        padding: 16px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex: 1 0 0;
        color: var(--grey-grey-90, #262626);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: var(--Font-Height-Body---M, 18px); /* 150% */
    }

        .drawer-biz-tabs button.active,
        .drawer-biz-tabs a.active {
            background: var(--white, #FFF);
        }

.drawer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    padding: 0 24px 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    background: #FFF;
}

.drawer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    width: 100%;
}

.drawer-toggle {
    color: var(--medium-blue-medium-blue-60, #005697);
    font-size: var(--Font-Size-Body---XL, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Font-Height-Body---XL, 26px);
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 16px 0
}


.drawer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--medium-blue-medium-blue-60, #005697);
    font-size: var(--Font-Size-Body---XL, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Font-Height-Body---XL, 26px); /* 162.5% */
}

.drawer-toggle::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #858585;
    border-bottom: 2px solid #858585;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.drawer-toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.drawer-panel {
    background: #fff;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 24px;
}

    /* Ensure the hidden attribute takes effect regardless of default display */
    .drawer-panel[hidden],
    .drawer-sub-panel[hidden] {
        display: none;
    }

.drawer-sub-section {
    width: 100%;
}


.drawer-sub-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
}

    .drawer-sub-toggle .link-icon {
        font-size: 24px;
        color: #005697;
        flex-shrink: 0;
    }

        .drawer-sub-toggle .link-icon img {
            width: 32px
        }

.drawer-sub-toggle-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}


    .drawer-sub-toggle-text .drawer-sub-title {
        color: var(--medium-blue-medium-blue-60, #005697);
        font-size: var(--Font-Size-Body---XL, 16px);
        font-style: normal;
        font-weight: 700;
        line-height: var(--Font-Height-Body---XL, 26px); /* 162.5% */
    }

    .drawer-sub-toggle-text .drawer-sub-desc {
        color: var(--grey-grey-90, #262626);
        font-size: var(--Font-Size-Body---M, 12px);
        font-style: normal;
        font-weight: 400;
        line-height: var(--Font-Height-Body---M, 18px); /* 150% */
    }

.drawer-sub-toggle::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #858585;
    border-bottom: 2px solid #858585;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

a.drawer-sub-toggle::after {
    content: '';
    width: 0px;
    height: 0px;
    border: 0;
}

.drawer-sub-toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

.drawer-sub-panel {
    /*padding-left: 24px;*/ /* Indent content */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 20px;
}

.drawer-sub-panel-no-padding {
    padding-left: 0;
    padding-top: 0;
}

.drawer-inner-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    padding-left: 40px;
}

    .drawer-inner-links li {
        display: flex;
        align-items: center;
    }


    .drawer-inner-links a {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: var(--grey-grey-90, #262626);
        font-size: var(--Font-Size-Body---L, 14px);
        font-style: normal;
        font-weight: 400;
        line-height: var(--Font-Height-Body---L, 24px); /* 171.429% */
    }

        .drawer-inner-links a:hover {
            color: #005697;
        }

.drawer-promo-card {
    background: #FBFBFB;
    border-radius: 14px;
    text-align: center;
    width: 100%;
    border-radius: 16px;
    background: var(--grey-grey-5, #FBFBFB);
    padding: 16px;
}

.promo-carousel {
    position: relative;
    overflow: hidden;
}

.promo-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    display: none;
    animation: fadeIn .5s;
}

    .promo-slide.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.drawer-promo-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    max-height: 160px;
    object-fit: cover;
    object-position: 50%;
}

.drawer-promo-card h5 {
    font-size: 14px;
    font-weight: 400;
    color: #005697;
    margin: 0 0 4px;
}

.drawer-promo-card p {
    font-size: 12px;
    color: #262626;
    margin: 0 0 16px;
}

.promo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .promo-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #D9D9D9;
        cursor: pointer;
    }

        .promo-dots span.active {
            background: #04AFFF;
        }

.drawer-footer {
    list-style: none;
    padding: 0;
    padding-top: 8px;
    margin: 16px;
    border-top: 1px solid #E6E6E6;
}

    .drawer-footer li {
        margin-bottom: 24px;
    }

        .drawer-footer li:last-child {
            margin-bottom: 0;
        }

    .drawer-footer a,
    .drawer-footer button {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        background: none;
        border: none;
        padding: 0;
        font-size: 14px;
        font-weight: 700;
        color: #005697;
        cursor: pointer;
    }

    .drawer-footer .footer-icon {
        font-size: 24px;
    }

/* Responsive */
@media (max-width: 1100px) {
    .bc-primary-nav ul {
        gap: 0;
    }

    .bc-primary-nav .nav-link {
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .bc-desktop-view {
        display: none;
    }

    .bc-mobile-view {
        display: flex;
    }

    .bc-mega-container {
        display: none !important;
    }

    body.mobile-menu-is-open {
        overflow: hidden;
    }
    /* 移动端登录下拉定位与箭头修正 */
    .bc-mobile-view .login-dropdown {
        left: auto;
        right: 16px;
        transform: none;
        top: calc(100% + 8px);
        width: 260px;
        z-index: 500;
    }

        .bc-mobile-view .login-dropdown::before {
            left: auto;
            right: 50px;
            transform: none;
        }
}

@media (max-width: 480px) {
    .bc-topbar {
        padding: 0 14px;
        height: 60px;
    }
}

/* Utility */
.header-hidden {
    display: none !important;
}

#bx-content {
    padding-top: 0 !important;
}

.pcswiper .swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination {
    bottom: 0px;
}
