/* 全局重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --header-height: 5.25rem;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(96, 120, 255, 0.78) rgba(255, 255, 255, 0.08);
}

::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.08);
}

::-webkit-scrollbar-thumb {
    border: 2px solid #03031E;
    border-radius: 999px;
    background: linear-gradient(180deg, #3EB9FB 0%, #797BFF 100%);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #64C8FF 0%, #9C4DFF 100%);
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: #333;
    min-height: 100vh;
    background-color: #03031E;
    overflow-y: auto;
}

/* 容器样式 */
#container {
    width: 100%;
    position: relative;
}

/* 顶部导航栏样式 */
#header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000;
    border-bottom: 0;
    box-shadow: none;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-name: fadeInUpHalf;
    transition:
        background-color 0.28s ease,
        backdrop-filter 0.28s ease,
        -webkit-backdrop-filter 0.28s ease;
}

body.header-is-transparent #header-container:not(:hover):not(:focus-within) {
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(0.25rem);
    -webkit-backdrop-filter: blur(0.25rem);
}

@keyframes fadeInUpHalf {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fixedSidebar {
    position: fixed;
    top: 68%;
    right: 1rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scheduleDemo {
    width: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;

}

.scheduleDemo-bc {
    position: absolute;
    top: -4.5rem;
    width: 6.5rem;
    height: 6.5rem;
    border: 0.3rem solid rgb(1, 1, 184);
    background-color: #3EB9FB;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.scheduleDemo-img {
    width: 4rem;
    height: 7rem;
    transition: all 0.3s ease;
}

.scheduleDemo:hover .scheduleDemo-img {
    transform: translateY(-0.5rem);
}

.scheduleDemo:hover .scheduleDemo-bc {
    box-shadow: 0 0.625rem 2.5rem 0.5rem rgba(4, 98, 239, 0.4);
}

.scheduleDemo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    width: 8rem;
    background: linear-gradient(45deg, #2d7bff, #9c4dff);
    color: #fff;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 1000;
}



/* 解决方案界面样式 */
.home-arrow-container {
    margin-top: 0.5rem;
    z-index: 100;
}

.home-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(128, 128, 128, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.home-arrow:hover {
    background-color: rgba(128, 128, 128, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.home-arrow svg {
    color: white;
    width: 24px;
    height: 24px;
}

.header-nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 62rem;
    max-width: 100rem;
    margin: 0 auto;
}

/* Logo 样式 */
.logo-container {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.company-logo {
    margin-left: -1.25rem;
    width: 11.75rem;
    height: 2.5rem;
}

/* 菜单样式 */
.menu-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.menu-list {
    display: flex;
    list-style: none;
}

.menu-item {
    padding: 0 1.2vw;
    color: #fff;
    cursor: pointer;
    position: relative;
    height: 5rem;
    line-height: 5rem;
    transition: color 0.3s ease;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 1.2vw;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.menu-item:hover {
    color: #1890ff;
}

.menu-item.active {
    color: #1890ff;
}

.menu-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.menu-item.active:after {
    content: '';
    position: absolute;
    bottom: 0.8rem;
    left: 1.5625rem;
    right: 1.5625rem;
    height: 0.1875rem;
    background-color: #1890ff;
}

/* New desktop header */
.header-nav {
    justify-content: flex-start;
    gap: clamp(1.25rem, 2vw, 2.5rem);
    width: min(100% - 2.25rem, 120rem);
    max-width: none;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 14rem;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0;
}

.brand-text {
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1;
}

.brand-ai {
    margin-left: 0.24rem;
    font-size: 2.05rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    color: #4f58ff;
    text-shadow: 0 0 0.7rem rgba(68, 80, 255, 0.48);
}

.brand-marketing {
    margin-left: 0.1rem;
    font-size: 1.95rem;
    font-weight: 900;
    line-height: 1;
    color: #235dff;
    text-shadow: 0 0 0.65rem rgba(35, 93, 255, 0.5);
}

.menu-container {
    flex: 1 1 auto;
    justify-content: stretch;
    min-width: 0;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    width: 100%;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
}

.menu-item {
    min-width: 0;
    height: var(--header-height);
    padding: 0;
    line-height: 1;
    text-align: center;
    font-size: 1.05rem;
}

.menu-item:hover,
.menu-item.active {
    color: #fff;
}

.menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    cursor: pointer;
    transition: opacity 0.18s ease, color 0.18s ease;
}

.menu-link:hover,
.menu-link:focus-visible {
    opacity: 0.86;
    outline: none;
}

.menu-link:focus-visible {
    border-radius: 0.25rem;
    box-shadow: 0 0 0 2px rgba(64, 96, 255, 0.72);
}

.menu-title {
    display: block;
    font-size: 1.14rem;
    font-weight: 700;
    line-height: 1;
    color: #f7f8ff;
    white-space: nowrap;
}

.menu-subtitle {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* 使用导航栏唯一的指示器，在菜单之间平滑滑动，避免切换时线条跳闪。 */
.menu-list { position: relative; }

.menu-item.active::after { content: none; }

.menu-list::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -1px;
    left: calc(6.25% - 1.9rem);
    width: 3.8rem;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, #4c62ff 22%, #8a4dff 78%, transparent);
    box-shadow: 0 0 0.55rem rgba(77, 97, 255, 0.75);
    transition: left .42s cubic-bezier(.22, 1, .36, 1);
}

.menu-list:has(> .menu-item:nth-child(2).active)::after { left: calc(18.75% - 1.9rem); }
.menu-list:has(> .menu-item:nth-child(3).active)::after { left: calc(31.25% - 1.9rem); }
.menu-list:has(> .menu-item:nth-child(4).active)::after { left: calc(43.75% - 1.9rem); }
.menu-list:has(> .menu-item:nth-child(5).active)::after { left: calc(56.25% - 1.9rem); }
.menu-list:has(> .menu-item:nth-child(6).active)::after { left: calc(68.75% - 1.9rem); }
.menu-list:has(> .menu-item:nth-child(7).active)::after { left: calc(81.25% - 1.9rem); }
.menu-list:has(> .menu-item:nth-child(8).active)::after { left: calc(93.75% - 1.9rem); }

.join-us-container {
    display: none;
}

.header-nav .info-dropdown-panel {
    width: 12.5rem;
    grid-template-columns: minmax(0, 1fr);
    padding: 0.45rem;
}

.header-nav .info-dropdown-panel .info-dropdown-links {
    gap: 0.15rem;
}

.header-nav .info-dropdown-panel .info-dropdown-link {
    min-height: auto;
    padding: 0.72rem 0.85rem;
}

.header-nav .info-dropdown-panel .info-dropdown-link strong {
    font-size: 0.86rem;
}

.header-nav .info-dropdown-panel .info-dropdown-link span {
    font-size: 0.68rem;
}

.menu-item-has-dropdown {
    z-index: 20;
}

.about-menu-trigger,
.product-menu-trigger,
.solution-menu-trigger,
.dealer-menu-trigger,
.info-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 100%;
    line-height: 1;
    color: inherit;
    text-decoration: none;
}

.dealer-menu-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.dealer-menu-trigger .menu-title {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.about-menu-trigger .menu-title {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.about-menu-chevron,
.product-menu-chevron,
.solution-menu-chevron,
.dealer-menu-chevron,
.info-menu-chevron {
    width: 0.95rem;
    height: 0.95rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.menu-item-has-dropdown:hover .about-menu-chevron,
.menu-item-has-dropdown:focus-within .about-menu-chevron,
.menu-item-has-dropdown:hover .product-menu-chevron,
.menu-item-has-dropdown:focus-within .product-menu-chevron,
.menu-item-has-dropdown:hover .solution-menu-chevron,
.menu-item-has-dropdown:focus-within .solution-menu-chevron,
.menu-item-has-dropdown:hover .dealer-menu-chevron,
.menu-item-has-dropdown:focus-within .dealer-menu-chevron,
.menu-item-has-dropdown:hover .info-menu-chevron,
.menu-item-has-dropdown:focus-within .info-menu-chevron {
    transform: rotate(180deg);
}

.about-dropdown-panel,
.product-dropdown-panel,
.solution-dropdown-panel,
.dealer-dropdown-panel,
.info-dropdown-panel {
    position: absolute;
    /* 与导航激活条留出明确间距，避免下拉面板与指示器视觉重叠。 */
    top: calc(100% + 0.75rem);
    left: 50%;
    width: 40rem;
    padding: 0.6rem;
    border: 1px solid rgba(99, 150, 255, 0.46);
    border-radius: 0.85rem;
    background: linear-gradient(145deg, rgba(7, 18, 54, 0.99), rgba(3, 5, 25, 0.99));
    box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.52), 0 0 1.75rem rgba(46, 100, 255, 0.12), inset 0 1px 0 rgba(202, 221, 255, 0.13);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 14rem;
    gap: 0.7rem;
    transform: translate(-50%, 0.75rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.product-dropdown-panel,
.solution-dropdown-panel,
.dealer-dropdown-panel,
.info-dropdown-panel {
    width: 24rem;
    grid-template-columns: minmax(0, 1fr);
}

.about-dropdown-panel::before,
.product-dropdown-panel::before,
.solution-dropdown-panel::before,
.dealer-dropdown-panel::before,
.info-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -0.42rem;
    left: 50%;
    width: 0.75rem;
    height: 0.75rem;
    border-left: 1px solid rgba(99, 150, 255, 0.46);
    border-top: 1px solid rgba(99, 150, 255, 0.46);
    background: #071236;
    transform: translateX(-50%) rotate(45deg);
}

.menu-item-has-dropdown:hover .about-dropdown-panel,
.menu-item-has-dropdown:focus-within .about-dropdown-panel,
.menu-item-has-dropdown:hover .product-dropdown-panel,
.menu-item-has-dropdown:focus-within .product-dropdown-panel,
.menu-item-has-dropdown:hover .solution-dropdown-panel,
.menu-item-has-dropdown:focus-within .solution-dropdown-panel,
.menu-item-has-dropdown:hover .dealer-dropdown-panel,
.menu-item-has-dropdown:focus-within .dealer-dropdown-panel,
.menu-item-has-dropdown:hover .info-dropdown-panel,
.menu-item-has-dropdown:focus-within .info-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.menu-item-has-dropdown.dropdown-force-closed .about-dropdown-panel,
.menu-item-has-dropdown.dropdown-force-closed .product-dropdown-panel,
.menu-item-has-dropdown.dropdown-force-closed .solution-dropdown-panel,
.menu-item-has-dropdown.dropdown-force-closed .dealer-dropdown-panel,
.menu-item-has-dropdown.dropdown-force-closed .info-dropdown-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 0.75rem);
}

.menu-item-has-dropdown.dropdown-force-closed .about-menu-chevron,
.menu-item-has-dropdown.dropdown-force-closed .product-menu-chevron,
.menu-item-has-dropdown.dropdown-force-closed .solution-menu-chevron,
.menu-item-has-dropdown.dropdown-force-closed .dealer-menu-chevron,
.menu-item-has-dropdown.dropdown-force-closed .info-menu-chevron {
    transform: rotate(0deg);
}

.about-dropdown-panel::after,
.product-dropdown-panel::after,
.solution-dropdown-panel::after,
.dealer-dropdown-panel::after,
.info-dropdown-panel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -0.75rem;
    height: 0.75rem;
}

.about-dropdown-links,
.product-dropdown-links,
.solution-dropdown-links,
.dealer-dropdown-links,
.info-dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.about-dropdown-link,
.product-dropdown-link,
.solution-dropdown-link,
.dealer-dropdown-link,
.info-dropdown-link {
    position: relative;
    display: block;
    width: 100%;
    min-height: 4.15rem;
    padding: 0.8rem 0.95rem 0.8rem 1.15rem;
    border: 1px solid rgba(116, 153, 223, 0.2);
    border-radius: 0.62rem;
    background: linear-gradient(112deg, rgba(18, 42, 89, 0.82), rgba(10, 20, 55, 0.82));
    color: #f4f7ff;
    font-family: inherit;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.about-dropdown-link::before,
.product-dropdown-link::before,
.solution-dropdown-link::before,
.dealer-dropdown-link::before,
.info-dropdown-link::before {
    content: '';
    position: absolute;
    left: 0.55rem;
    top: 0.8rem;
    bottom: 0.8rem;
    width: 0.14rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #3EB9FB 0%, #B268FF 55%, #FF3CC5 100%);
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.about-dropdown-link strong,
.product-dropdown-link strong,
.solution-dropdown-link strong,
.dealer-dropdown-link strong,
.info-dropdown-link strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 700;
}

.about-dropdown-link span,
.product-dropdown-link span,
.solution-dropdown-link span,
.dealer-dropdown-link span,
.info-dropdown-link span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #aebcda;
}

.about-dropdown-link:hover,
.about-dropdown-link:focus-visible,
.product-dropdown-link:hover,
.product-dropdown-link:focus-visible,
.solution-dropdown-link:hover,
.solution-dropdown-link:focus-visible,
.dealer-dropdown-link:hover,
.dealer-dropdown-link:focus-visible,
.info-dropdown-link:hover,
.info-dropdown-link:focus-visible {
    border-color: rgba(82, 185, 255, 0.62);
    background: linear-gradient(110deg, rgba(19, 84, 161, 0.95), rgba(31, 54, 129, 0.92));
    color: #fff;
    box-shadow: 0 0.6rem 1.25rem rgba(1, 9, 38, 0.34), inset 0 1px 0 rgba(217, 242, 255, 0.17);
    outline: none;
}

.about-dropdown-link:hover::before,
.about-dropdown-link:focus-visible::before,
.product-dropdown-link:hover::before,
.product-dropdown-link:focus-visible::before,
.solution-dropdown-link:hover::before,
.solution-dropdown-link:focus-visible::before,
.dealer-dropdown-link:hover::before,
.dealer-dropdown-link:focus-visible::before,
.info-dropdown-link:hover::before,
.info-dropdown-link:focus-visible::before {
    opacity: 1;
}

.about-dropdown-link:focus-visible,
.product-dropdown-link:focus-visible,
.solution-dropdown-link:focus-visible,
.dealer-dropdown-link:focus-visible,
.info-dropdown-link:focus-visible {
    outline: 2px solid rgba(62, 185, 251, 0.75);
    outline-offset: 2px;
}

.about-dropdown-phones {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.25rem 0 0.25rem 1rem;
    color: rgba(255, 255, 255, 0.88);
}

.about-dropdown-phones h3 {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
}

.about-phone-group {
    margin-bottom: 0.85rem;
}

.about-phone-group:last-child {
    margin-bottom: 0;
}

.about-phone-group strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
}

.about-phone-group span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 700;
    color: #fff;
}

.about-phone-number {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.65;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.about-phone-number svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.78);
}

.about-phone-number:hover {
    color: #78ccff;
}

.about-phone-number:focus-visible {
    outline: 2px solid rgba(62, 185, 251, 0.75);
    outline-offset: 3px;
}

.about-phone-icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    object-fit: contain;
}

#about-menu-item .about-dropdown-panel {
    left: 50%;
    right: auto;
    width: min(32rem, calc(100vw - 2rem));
    padding: 0.7rem;
    grid-template-columns: minmax(0, 1fr) 11.5rem;
    gap: 0.7rem;
    transform: translate(-50%, 0.75rem);
}

#about-menu-item .about-dropdown-panel::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
}

#about-menu-item:hover .about-dropdown-panel,
#about-menu-item:focus-within .about-dropdown-panel {
    transform: translate(-50%, 0);
}

#about-menu-item.dropdown-force-closed .about-dropdown-panel {
    transform: translate(-50%, 0.75rem);
}

#about-menu-item .about-dropdown-links {
    gap: 0.18rem;
}

#about-menu-item .about-dropdown-link {
    min-height: 3.1rem;
    padding: 0.62rem 0.75rem 0.62rem 0.95rem;
    border-radius: 0.42rem;
}

#about-menu-item .about-dropdown-link strong {
    margin-bottom: 0.16rem;
    font-size: 0.88rem;
    line-height: 1.25;
}

#about-menu-item .about-dropdown-link span {
    font-size: 0.72rem;
    line-height: 1.35;
}

#about-menu-item .about-dropdown-phones {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    padding: 0.2rem 0 0.2rem 0.75rem;
    border-left-color: rgba(255, 255, 255, 0.12);
    text-align: left;
}

#about-menu-item .about-dropdown-phones h3 {
    margin-bottom: 0.55rem;
    font-size: 0.86rem;
    line-height: 1.2;
}

#about-menu-item .about-phone-group {
    width: 100%;
    margin-bottom: 0.55rem;
    text-align: left;
}

#about-menu-item .about-phone-group strong {
    margin-bottom: 0.18rem;
    font-size: 0.68rem;
    line-height: 1.35;
}

#about-menu-item .about-phone-number {
    gap: 0.35rem;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.88rem;
    line-height: 1.45;
    white-space: nowrap;
}

#about-menu-item .about-phone-number svg {
    width: 0.82rem;
    height: 0.82rem;
}

#info-menu-item .info-dropdown-panel {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0.75rem);
}

#info-menu-item .info-dropdown-panel::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
}

#info-menu-item:hover .info-dropdown-panel,
#info-menu-item:focus-within .info-dropdown-panel {
    transform: translate(-50%, 0);
}

#info-menu-item.dropdown-force-closed .info-dropdown-panel {
    transform: translate(-50%, 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
    .about-menu-chevron,
    .product-menu-chevron,
    .solution-menu-chevron,
    .dealer-menu-chevron,
    .info-menu-chevron,
    .about-dropdown-panel,
    .product-dropdown-panel,
    .solution-dropdown-panel,
    .dealer-dropdown-panel,
    .info-dropdown-panel,
    .about-dropdown-link,
    .product-dropdown-link,
    .solution-dropdown-link,
    .dealer-dropdown-link,
    .info-dropdown-link,
    .menu-list::after,
    .about-phone-number,
    .about-dropdown-link::before,
    .product-dropdown-link::before,
    .solution-dropdown-link::before,
    .dealer-dropdown-link::before,
    .info-dropdown-link::before {
        transition: none;
    }
}

/* 加入我们样式 */
.join-us-link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.join-us-link:hover {
    color: #1890ff;
}

.join-us-link span {
    width: 10rem;
    height: 1.875rem;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 1.25rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(to right, #045AFF 0%, #797BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.9375rem;
}

.ai-logo {
    width: 2.375rem;
    height: 2.375rem;
}

/* 了解详情按钮 */
.join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 1.5rem 0 0;
    padding: 0.75rem 2.5rem;
    background: linear-gradient(45deg, #2d7bff, #9c4dff);
    color: #fff;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2d7bff, #ff4dea);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.join-btn:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.25rem rgba(78, 150, 255, 0.4);
}

.join-btn span {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.join-btn:hover .arrow-icon {
    transform: translate(3px, -3px);
}

/* 主体内容区域，添加顶部间距防止被导航栏遮挡 */
#body-container {
    min-height: 100%;
    /* 伪 SPA 切页时，目标页内容（如产品中心的 slick 轮播）在脚本初始化前会短暂
       铺开、宽度远超视口，导致底部一瞬间闪出横向滚动条。在主体内容区裁掉横向溢出，
       既消除这种瞬时溢出，也兜底任何静态的横向溢出。
       用 overflow-x: clip（而非 hidden）：clip 不建立滚动容器，内部 position: sticky
       侧栏仍正常吸顶；overflow-y 保持 visible 不影响竖向滚动与吸顶。 */
    overflow-x: clip;
    overflow-y: visible;
}

/* 伪 SPA 页面切换过渡：只让主体内容动，header/footer 保持稳定，避免整页刷新感 */
.page-transitioning #body-container {
    pointer-events: none;
    will-change: opacity, transform;
}

#body-container.page-transition-leave {
    opacity: 0;
    transform: translate3d(0, -0.5rem, 0);
    transition:
        opacity 0.12s ease,
        transform 0.12s cubic-bezier(0.4, 0, 1, 1);
}

#body-container.page-transition-enter {
    opacity: 0;
    transform: translate3d(0, 0.75rem, 0);
}

#body-container.page-transition-enter.page-transition-enter-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.2s ease,
        transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#body-container>div {
    margin-top: var(--header-height);
}

body.product-service-shell,
body.product-service-shell #container,
body.product-service-shell #body-container,
body.product-service-shell #productService-page {
    background: #03031E;
}

body.product-service-shell #productService-page {
    min-height: 100vh;
    background: radial-gradient(circle at right, #6859E2 0, #03031E 10rem, #03031E 100%);
}

body.product-service-shell #footer-container,
body.product-service-shell .fixedSidebar,
body.product-service-shell .fab-container,
body.product-service-shell .faq-overlay {
    display: none !important;
}

#body-container .fixed-item-animate {
    visibility: visible !important;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

#body-container .observer-item {
    opacity: 0;
    transform: translate3d(0, 3rem, 0) scale(0.985);
    filter: blur(0.5rem);
    will-change: opacity, transform, filter;
    transition:
        opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

#body-container .item-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    #body-container.page-transition-leave,
    #body-container.page-transition-enter,
    #body-container.page-transition-enter.page-transition-enter-active {
        opacity: 1;
        transform: none;
        transition: none;
    }

    #body-container .observer-item {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* 公共模块内容样式--开始 */
#common-content {
    margin: 0 !important;
}

/* 通用-question模块样式 */
.common-page-question {
    position: relative;
    padding: 4rem 0;
    color: #fff;
    background: radial-gradient(circle at right, #6859E2 0, #03031E 10rem, #03031E 100%);
    overflow: hidden;
    min-height: 35rem;
    animation-duration: 4.5s;
}

.common-page-question .question-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 标题样式 */
.common-page-question .question-title {
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #3EB9FB 0%, #B268FF 55%, #FF3CC5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.common-page-question .question-desc {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.cooperation-page-question {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle at left, #2C57C9 0, #03031E 11rem, #03031E 100%);
}

/* 合作咨询仅属于“关于瞬维”；预约演示表单仍作为全站通用入口。 */
body.has-cooperation-inquiry .cooperation-page-question {
    display: block;
}

.cooperation-page-question .question-title {
    margin-bottom: 1rem;
}

.common-page-question.cooperation-page-question .question-form-container {
    max-width: 46rem;
    min-width: 46rem;
}

/* 表单容器 */
.common-page-question .question-form-container {
    position: relative;
    width: 100%;
    max-width: 36rem;
    min-width: 36rem;
    margin: 0 auto;
    padding-top: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
}

/* 表单背景 */
.common-page-question .decoration-bg {
    pointer-events: none;
    position: absolute;
    inset: 0;
}

.common-page-question .decoration-bg .form-star1 {
    position: absolute;
    top: -1rem;
    left: -11rem;
    width: 10rem;
    height: 10.6rem;
}

.common-page-question .decoration-bg .form-star2 {
    position: absolute;
    top: -1rem;
    right: -11rem;
    width: 10rem;
    height: 10.6rem;
}

.common-page-question .decoration-bg .form-block1 {
    position: absolute;
    left: 0;
    bottom: 0.2rem;
    transform: translateX(-100%);
    overflow: hidden;
    opacity: 0.4;
    width: 8rem;
    height: 19rem;
}

.common-page-question .decoration-bg .form-block1 .rect {
    transform-origin: top right;
    transform: translateX(1rem) rotate(-12deg);
    position: absolute;
    top: 0;
    right: -1rem;
    bottom: 2rem;
    left: -1rem;
    border-radius: 1rem;
    background: hsla(0, 0%, 100%, 0.24);
    backdrop-filter: blur(0.13333rem);
    -webkit-backdrop-filter: blur(0.13333rem);
}

.common-page-question .decoration-bg .form-block1 .rect svg {
    pointer-events: none;
    transform-origin: center center;
    position: absolute;
    inset: 0;
}

.common-page-question .decoration-bg .form-block2 {
    position: absolute;
    right: 0;
    bottom: 0.2rem;
    transform: translateX(100%);
    overflow: hidden;
    opacity: 0.4;
    width: 8rem;
    height: 19rem;
}

.common-page-question .decoration-bg .form-block2 .rect {
    transform-origin: top left;
    transform: translateX(-1rem) rotate(12deg);
    position: absolute;
    top: 0;
    right: -1rem;
    bottom: 2rem;
    left: -1rem;
    border-radius: 1rem;
    background: hsla(0, 0%, 100%, 0.24);
    backdrop-filter: blur(0.13333rem);
    backdrop-filter: blur(0.13333rem);
    -webkit-backdrop-filter: blur(0.13333rem);
}

.common-page-question .decoration-bg .form-block2 .rect svg {
    pointer-events: none;
    transform-origin: center center;
    position: absolute;
    inset: 0;
}

.common-page-question .question-form-bg {
    position: absolute;
    inset: 0;
}

.common-page-question .question-form-bg .form-bg-container {
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    width: initial;
    height: initial;
    background: none;
    opacity: 1;
    border: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.common-page-question .question-form-bg img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    padding: 0;
    border: none;
    margin: auto;
    display: block;
    width: 0;
    height: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.common-page-question .question-form-bg .form-bg-mask {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    padding: 0.032rem;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(0deg, #fff 0%, #fff 100%) content-box, linear-gradient(0deg, #fff 0%, #fff 100%);
    mask: linear-gradient(0deg, #fff 0%, #fff 100%) content-box, linear-gradient(0deg, #fff 0%, #fff 100%);
    -webkit-mask-composite: xor;
    mask-composite: xor;
}

/* 表单样式 */
.common-page-question .question-form {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
}

/* 表单组样式 */
.common-page-question .form-group {
    margin-bottom: 1.5rem;
}

/* 表单行样式，用于并排的输入框 */
.common-page-question .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* 半宽元素 */
.common-page-question .half {
    flex: 1;
}

/* 标签样式 */
.common-page-question .question-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 输入框样式 */
.common-page-question .form-input, .common-page-question .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.common-page-question .form-input:focus, .common-page-question .form-select:focus {
    outline: none;
    border-color: rgba(65, 189, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(65, 189, 255, 0.25);
}

/* 下拉选择器样式 */
.common-page-question .form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.55)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.common-page-question .form-select option {
    color: #0f172a;
    background: #fff;
}

.cooperation-page-question .scope-group {
    margin-bottom: 1rem;
}

.cooperation-page-question .cooperation-scope-textarea {
    min-height: 8rem;
    line-height: 1.6;
    resize: vertical;
}

.cooperation-page-question .cooperation-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.cooperation-page-question .scope-option {
    position: relative;
    display: block;
    margin-bottom: 0;
    cursor: pointer;
}

.cooperation-page-question .scope-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.cooperation-page-question .scope-option span {
    position: relative;
    min-height: 3rem;
    display: flex;
    align-items: center;
    padding: 0.78rem 1rem 0.78rem 2.6rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.cooperation-page-question .scope-option span::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-50%);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.cooperation-page-question .scope-option span::after {
    content: "";
    position: absolute;
    left: 1.34rem;
    top: 50%;
    width: 0.28rem;
    height: 0.52rem;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: translateY(-58%) rotate(45deg);
    transition: opacity 0.2s ease;
}

.cooperation-page-question .scope-option:hover span {
    border-color: rgba(65, 189, 255, 0.5);
    background: linear-gradient(180deg, rgba(65, 189, 255, 0.16), rgba(255, 255, 255, 0.08));
    color: #fff;
}

.cooperation-page-question .scope-option input:focus-visible + span {
    border-color: rgba(65, 189, 255, 0.75);
    box-shadow: 0 0 0 2px rgba(65, 189, 255, 0.25);
}

.cooperation-page-question .scope-option input:checked + span {
    border-color: rgba(65, 189, 255, 0.8);
    background: linear-gradient(135deg, rgba(65, 189, 255, 0.26), rgba(178, 104, 255, 0.22));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0.5rem 1.2rem rgba(78, 150, 255, 0.2);
    color: #fff;
}

.cooperation-page-question .scope-option input:checked + span::before {
    border-color: rgba(138, 219, 255, 0.95);
    background: #4e96ff;
}

.cooperation-page-question .scope-option input:checked + span::after {
    opacity: 1;
}

.cooperation-page-question .scope-option input.error + span {
    border-color: #ff6b9b;
}

.cooperation-page-question .cooperation-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
    box-shadow: none;
}

.common-page-question .form-input.error,
.common-page-question .form-select.error {
    border-color: #ff6b9b;
}

.common-page-question .city-selector {
    position: relative;
}

.common-page-question .city-input {
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.common-page-question .industry-selector {
    position: relative;
}

.common-page-question .industry-input {
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.common-page-question .industry-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(14, 19, 47, 0.98);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: none;
    margin-top: 0.5rem;
}

.common-page-question .industry-dropdown.active {
    display: block;
}

.common-page-question .industry-options {
    max-height: 15rem;
    padding: 0.35rem;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.common-page-question .industry-item {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
    color: rgba(255, 255, 255, 0.8);
}

.common-page-question .industry-item:hover,
.common-page-question .industry-item.active {
    background-color: rgba(65, 189, 255, 0.2);
    color: #fff;
}

.common-page-question .city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(14, 19, 47, 0.98);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: none;
    margin-top: 0.5rem;
}

.common-page-question .city-dropdown.active {
    display: block;
}

.common-page-question .city-dropdown-content {
    display: flex;
    height: 15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.common-page-question .provinces-list {
    width: 40%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    max-height: 15rem;
}

.common-page-question .province-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common-page-question .province-item:hover, .common-page-question .province-item.active {
    background-color: rgba(65, 189, 255, 0.2);
    color: #fff;
}

.common-page-question .province-item .arrow {
    font-size: 1.2rem;
    opacity: 0.7;
}

.common-page-question .cities-container {
    width: 60%;
    overflow-y: auto;
    max-height: 15rem;
}

.common-page-question .provinces-list,
.common-page-question .cities-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.common-page-question .provinces-list::-webkit-scrollbar,
.common-page-question .cities-container::-webkit-scrollbar {
    display: none;
}

.common-page-question .cities-list {
    display: none;
}

.common-page-question .cities-list.active {
    display: block;
}

.common-page-question .city-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    color: rgba(255, 255, 255, 0.8);
}

.common-page-question .city-item:hover {
    background-color: rgba(65, 189, 255, 0.2);
    color: #fff;
}

.common-page-question .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* 验证码容器 */
.common-page-question .captcha-container {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    width: 100%;
}

.common-page-question .captcha-input {
    flex: 1 1 0;
    min-width: 0;
}

.common-page-question .captcha-img {
    flex: 0 0 6rem;
    margin-left: 1rem;
    cursor: pointer;
    height: 2.5rem;
    width: 6rem;
    border-radius: 0.25rem;
}

.common-page-question .sms-captcha-container {
    gap: 0;
    height: 2.9rem;
    padding: 0 0.4rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.55rem;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.common-page-question .sms-captcha-container:focus-within {
    border-color: rgba(65, 189, 255, 0.62);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(65, 189, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.common-page-question .sms-captcha-container:has(.form-input.error) {
    border-color: rgba(255, 77, 79, 0.78);
    box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.common-page-question .sms-captcha-container .form-input {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    padding: 0 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.common-page-question .sms-captcha-container .form-input:focus {
    border: 0;
    box-shadow: none;
}

/* 提交按钮样式 */
.common-page-question .submit-group {
    margin-top: 2rem;
    text-align: center;
}

.common-page-question .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 3rem;
    background: linear-gradient(90deg, #4e96ff, #e066ff);
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.common-page-question .submit-btn:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1rem rgba(78, 150, 255, 0.4);
}

.common-page-question .cooperation-submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.common-page-question .submit-icon {
    margin-left: 1rem;
}

/* 公共模块内容样式--结束 */



/* 底部footer模块内容样式--开始 */
.observer-footer {
    visibility: hidden;
    animation-duration: 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.footer-animate {
    visibility: visible !important;
    animation-name: fadeIn;
}

/* footer-container模块样式 */
#footer-container {
    width: 100%;
    background: radial-gradient(circle at left, #6859E2 0, #03031E 10rem, #03031E 100%);
    color: #fff;
    padding: 0;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* 顶部主要内容区 */
.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 3.75rem 8.75rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

/* 左侧logo区域 */
.footer-logo {
    flex: 0 0 16rem;
}

.footer-logo-img {
    margin: -4rem 0 0 0;
    width: 10rem;
}

/* 中间导航区域 */
.footer-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 60rem;
    max-width: 60rem;
    min-width: 36rem;
}

.footer-nav-column {
    flex: 0 0 calc(20%);
}

.footer-nav-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.625rem;
}

.footer-nav-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4.5rem;
    height: 0.125rem;
    background: linear-gradient(90deg, #9d4edd, #5a189a);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

/* 右侧联系方式 */
.footer-contact {
    flex: 0 0 18rem;
    display: flex;
    flex-direction: column;
}

.footer-qr-codes {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin: 0 0.5rem 1.25rem 0;
}

.footer-qr-item {
    text-align: center;
}

.footer-qr-img {
    width: 6.25rem;
    height: 6.25rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.footer-qr-item p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-contact-info {
    margin-bottom: 0.9375rem;
}

.footer-phone, .footer-address {
    display: flex;
    align-items: center;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.phone-icon:before {
    content: "\e87a";
}

.address-icon:before {
    content: "\e67b";
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* 版权信息 */
.footer-copyright {
    padding: 0.5rem 8.75rem;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright p {
    margin: 0.125rem 0;
}

.footer-license {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-license:hover {
    color: #9d4edd;
}

/* 底部footer模块内容样式--结束 */

.getCaptcha {
    flex: 0 0 auto;
    min-width: 7.25rem;
    height: 2.18rem;
    padding: 0 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #4e96ff, #e066ff);
    color: #fff;
    border: none;
    border-radius: 0.45rem;
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.getCaptcha:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.4rem 0.9rem rgba(78, 150, 255, 0.3);
}

.getCaptcha:disabled,
.getCaptcha.disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
}

#toast {
    visibility: hidden;
    position: fixed;
    z-index: 50000;
    left: 50%;
    bottom: 10rem;
    transform: translateX(-50%) translateY(20rem);
    min-width: 20rem;
    padding: 1rem;
    border-radius: 10rem;
    /* 圆角更大，更柔和 */
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(135deg, #5cc225 0%, #02af28 100%);
    box-shadow: 0 1rem 2rem rgba(120, 255, 214, 0.4);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    /* 使用贝塞尔曲线实现弹性效果 */
}

/* 显示状态类 */
#toast.toast-show {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    /* 回到正常位置 */
    bottom: 10rem;
}

.backStage {
    margin-top: 4rem;
    display: inline-block;
    padding: 0.75rem 3rem;
    background: linear-gradient(90deg, #4e96ff, #e066ff);
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.backStage:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1rem rgba(78, 150, 255, 0.4);
}

/* 验证码区域 */
.verificationCode {
    display: none;
    transition: opacity 0.3s ease;
    /* 添加过渡动画 */
}

/* .verificationCode.show {
    display: block;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} */

.verificationCode {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transform-origin: top center;
    pointer-events: none;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, transform 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.verificationCode.is-rendered {
    visibility: visible;
}

.verificationCode.is-visible {
    max-height: 12rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 1rem;
}

.error-message {
    color: #ff4d4f;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-left: 0.9rem;
    animation: error-message-fade-in 0.5s ease-in-out;
}

.common-page-question .sms-captcha-container + .error-message {
    margin-left: 0.15rem;
}


@keyframes error-message-fade-in {
    0% {
        opacity: 0;
        transform: translateY(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.gold-stream {
    overflow: hidden;
    font-size: 1.2rem;
    font-style: oblique;
    text-align: center;
    line-height: 3rem;
    background-image: linear-gradient(90deg,
            #e8b73b 0%,
            #e8b73b 20%,
            #e8b73b 35%,
            #ffffff 50%,
            #e8b73b 65%,
            #e8b73b 80%,
            #e8b73b 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: stream 4s linear infinite;
}

@keyframes stream {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}
