* {
    margin: 0;
    padding: 0;
    font-family: 微软雅黑;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style-type: none;
}

input,
button,
img {
    border: none;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 120px;
}
.padding-t {
    padding-top: 120px;
}

/* header */
.header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding-top: env(safe-area-inset-top, 0);
}
.head {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    justify-content: space-between;
    height: 76px;
}
.head h1 {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.head h1 a {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
}
.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #b58d55;
    border-radius: 2px 2px 0 0;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.nav-item {
    color: #b58d55;
    font-size: 14px;
    margin: 0 12px;
    padding: 10px 0;
    transition: color 0.25s ease;
}
.nav-item:hover {
    color: #8b6914;
}
.nav-item.on {
    color: #8b6914;
}
.nav-divider {
    display: none; /* PC端隐藏分隔线 */
}
.nav-item-user {
    display: none; /* PC端隐藏用户菜单项，只显示右侧的登录链接 */
}
.login {
    font-size: 12px;
    width: 80px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #b58d55;
    color: #b58d55;
    cursor: pointer;
}
.login:hover {
    color: #fff;
    background-color: #b58d55;
    text-decoration: none;
}
/* 用户中心下拉（PC 已登录：用户中心 + 退出登录） */
.user-center-dropdown {
    position: relative;
    display: inline-flex;
}
.user-center-trigger {
    font-size: 12px;
    width: 80px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #b58d55;
    color: #b58d55;
    cursor: pointer;
    background: transparent;
    font-family: inherit;
}
.user-center-trigger:hover {
    color: #fff;
    background-color: #b58d55;
}
.user-center-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0;
    min-width: 120px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 8px 0 6px;
    display: none;
    z-index: 1000;
    border: 1px solid #eee;
}
.user-center-dropdown:hover .user-center-menu {
    display: block;
}
.user-center-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}
.user-center-menu a:hover {
    background: #fffcf6;
    color: #b58d55;
}
/* 汉堡菜单按钮：桌面隐藏，H5 显示 */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #b58d55;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}
.header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
.header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

/* H5 导航：小屏折叠为全屏菜单 */
@media (max-width: 992px) {
    .head {
        padding: 0 16px;
        flex-wrap: nowrap;
    }
    .nav-toggle {
        display: flex;
        order: 2;
    }
    .nav-indicator {
        display: none;
    }
    .nav-list {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        padding: 24px 0 80px;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
        display: none;
    }
    .header.nav-open .nav-list {
        display: flex;
    }
    .nav-item {
        width: 100%;
        padding: 16px 24px;
        margin: 0;
        font-size: 16px;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-item.on {
        border-bottom: 1px solid #f0f0f0;
        border-left: 3px solid #b58d55;
        padding-left: 21px;
    }
    .login-pc {
        display: none; /* H5模式下隐藏PC端的登录链接 */
    }
    .nav-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: #e0e0e0;
        margin: 8px 0;
    }
    .nav-item-user {
        display: block; /* H5模式下显示用户菜单项 */
        color: #b58d55;
        font-weight: 500;
    }
}
@media (max-width: 576px) {
    .head {
        height: 56px;
        padding: 0 12px;
    }
    .head h1 img {
        max-height: 36px;
        width: auto;
    }
    .nav-list {
        top: 56px;
    }
    .nav-toggle {
        width: 40px;
        height: 40px;
    }
}

/* home */
.home-banner {
    position: relative;
}
.home-banner img {
    width: 100%;
    display: block;
    vertical-align: top;
}
/* 首页首屏视频背景：铺满、自动播放、移动端兼容，纵向完整显示 */
.home-banner-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 400px;
}
@supports not (aspect-ratio: 16 / 9) {
    .home-banner-video::before {
        content: '';
        display: block;
        padding-top: 56.25%; /* 16:9 */
    }
}
/* 占位图与视频同位置同尺寸，避免闪缩 */
.home-banner-video .home-banner-poster,
.home-banner-video .home-banner-video-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}
.home-banner-video .home-banner-poster {
    display: block;
    transition: opacity 0.35s ease;
}
.home-banner-video .home-banner-video-el {
    opacity: 0;
    transition: opacity 0.35s ease;
}
.home-banner-video.is-video-ready .home-banner-poster {
    opacity: 0;
    pointer-events: none;
}
.home-banner-video.is-video-ready .home-banner-video-el {
    opacity: 1;
}
.home-banner-video .home-banner-word {
    z-index: 1;
}
.home-banner-word {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home-banner-word h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 45px;
}
.home-banner-word p {
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 38px;
}
.home-banner-word a {
    font-size: 18px;
    color: #fff;
    margin-top: 45px;
    width: 220px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cba268;
    border-radius: 26px;
}
.home-banner-word .down-link {
    color: #cfad71;
    background-color: #fff;
    font-size: 18px;
}
.home-banner-word .down-link span {
    color: #333;
    margin-left: 10px;
}

/* 第二屏 banner（非视频）H5 兼容 */
@media (max-width: 992px) {
    .home-banner:not(.home-banner-video) {
        position: relative;
        min-height: 420px;
        height: 52vh;
        max-height: 560px;
        overflow: hidden;
    }
    .home-banner:not(.home-banner-video) img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .home-banner:not(.home-banner-video) .home-banner-word {
        padding: 24px 20px;
        box-sizing: border-box;
    }
    .home-banner:not(.home-banner-video) .home-banner-word h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .home-banner:not(.home-banner-video) .home-banner-word p {
        font-size: 16px;
        line-height: 28px;
    }
    .home-banner:not(.home-banner-video) .home-banner-word a {
        margin-top: 24px;
    }
    .home-banner:not(.home-banner-video) .home-banner-word .down-link {
        min-height: 44px;
        padding: 0 20px;
        box-sizing: border-box;
    }
}
@media (max-width: 576px) {
    .home-banner:not(.home-banner-video) {
        min-height: 360px;
        height: 40vh;
        max-height: 520px;
    }
    .home-banner:not(.home-banner-video) .home-banner-word {
        padding: 20px 16px;
        justify-content: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: 100%;
        box-sizing: border-box;
    }
    .home-banner:not(.home-banner-video) .home-banner-word h2 {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .home-banner:not(.home-banner-video) .home-banner-word p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 4px;
    }
    .home-banner:not(.home-banner-video) .home-banner-word .down-link {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
        margin-top: 20px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .home-banner:not(.home-banner-video) .home-banner-word .down-link span {
        margin-left: 8px;
    }
}

.home-block {
    background-color: #fffcf6;
    padding: 120px 0;
}
.home-block-box {
    max-width: 1200px;
    background-color: #fff;
    border-left: 8px solid #caa26a;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 30px;
    flex: 1;
    padding: 40px;
}
.home-block-box h2 {
    font-size: 42px;
    color: #caa26a;
    font-weight: normal;
}
.home-block-box p {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    margin-top: 20px;
}
.home-block-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.home-block-item {
    width: calc(25% - 10px);
    background-color: #fbf7ec;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 3px solid #caa26a;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 10px;
    padding: 30px 0;
}
.home-block-item span {
    font-size: 38px;
    color: #cba268;
}
.home-block-item span::after {
    content: '+';
}
.home-block-item h3 {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    margin-top: 10px;
}


.container-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    flex: 1;
    min-width: 0;
}
.home-news-box h2 {
    font-size: 42px;
    color: #333;
    position: relative;
    margin-bottom: 70px;
}
.home-news-box h2::after {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: -10px;
    height: 4px;
    background-color: #cfad71;
    border-radius: 2px;
}
.home-news-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}
.home-news-empty {
    width: 100%;
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-size: 15px;
}
.home-news-item {
    flex: 1;
    margin: 0 30px;
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    text-decoration: none;
}
.home-news-item:hover {
    text-decoration: none;
}
.home-news-item-img {
    width: 100%;
    aspect-ratio: 360 / 210;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home-news-item-img img {
    width: 100%;
}
/* 标题严格两行：固定高度含内边距，避免 padding 导致多出半行 */
.home-news-item h3 {
    font-size: 20px;
    color: #333;
    line-height: 1.4;
    box-sizing: border-box;
    height: 3.6em; 
    padding: 0.6em 20px 0.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* 简介严格两行：固定高度，避免露出第三行 */
.home-news-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    box-sizing: border-box;
    height: 3em; /* 严格 2 行 (2 * 1.5em) */
    padding: 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-news-item span {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #cba268;
    border-radius: 20px;
    font-size: 14px;
    margin: 20px 0 30px 20px;
}
.home-list-box h2 {
    font-size: 42px;
    color: #333;
    position: relative;
    margin-bottom: 30px;
}
.home-list-box h2::after {
    content: '';
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: -10px;
    height: 4px;
    background-color: #cfad71;
    border-radius: 2px;
}
.home-list-box span {
    font-size: 18px;
    color: #333;
}
.home-list-block {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.home-list-item {
    flex: 1;
    margin: 0 30px;
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    border-top: 3px solid #caa26a;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 30px 20px;
}
.home-list-item img {
    width: 62px;
    height: 60px;
}
.home-list-item h3 {
    font-size: 32px;
    color: #333;
    margin: 20px 0;
}
.home-list-item p {
    font-size: 16px;
    color: #666;
    line-height: 30px;
}
.home-list-more {
    width: 250px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cba268;
    color: #fff;
    border-radius: 26px;
    margin-top: 50px;
}

/* ========== 首页 CSS3 动效与 H5 兼容 ========== */
@keyframes home-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes home-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 首屏文案入场 */
.home-banner-video .home-banner-word h2 {
    animation: home-fade-in-up 0.8s ease-out 0.2s both;
}
.home-banner-video .home-banner-word p {
    animation: home-fade-in-up 0.8s ease-out 0.35s both;
}
.home-banner-video .home-banner-word a {
    animation: home-fade-in-up 0.8s ease-out 0.5s both;
}

/* 区块/列表入场（由 .in-view 触发） */
.home-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.home-section.in-view {
    opacity: 1;
    transform: translateY(0);
}
.home-section.in-view .home-block-item,
.home-section.in-view .home-news-item,
.home-section.in-view .home-list-item {
    animation: home-fade-in-up 0.5s ease-out both;
}
.home-section.in-view .home-block-list .home-block-item:nth-child(1) { animation-delay: 0.1s; }
.home-section.in-view .home-block-list .home-block-item:nth-child(2) { animation-delay: 0.2s; }
.home-section.in-view .home-block-list .home-block-item:nth-child(3) { animation-delay: 0.3s; }
.home-section.in-view .home-block-list .home-block-item:nth-child(4) { animation-delay: 0.4s; }
.home-section.in-view .home-news-list .home-news-item:nth-child(1) { animation-delay: 0.1s; }
.home-section.in-view .home-news-list .home-news-item:nth-child(2) { animation-delay: 0.2s; }
.home-section.in-view .home-news-list .home-news-item:nth-child(3) { animation-delay: 0.3s; }
.home-section.in-view .home-list-block .home-list-item:nth-child(1) { animation-delay: 0.1s; }
.home-section.in-view .home-list-block .home-list-item:nth-child(2) { animation-delay: 0.2s; }
.home-section.in-view .home-list-block .home-list-item:nth-child(3) { animation-delay: 0.3s; }
.home-section.in-view .agent-banner-item {
    animation: home-fade-in-up 0.5s ease-out both;
}
.home-section.in-view .agent-banner-list .agent-banner-item:nth-child(1) { animation-delay: 0.1s; }
.home-section.in-view .agent-banner-list .agent-banner-item:nth-child(2) { animation-delay: 0.2s; }
.home-section.in-view .agent-banner-list .agent-banner-item:nth-child(3) { animation-delay: 0.3s; }
.home-section.in-view .agent-banner-list .agent-banner-item:nth-child(4) { animation-delay: 0.4s; }
.home-section.in-view .schedule-point {
    animation: home-fade-in-up 0.5s ease-out both;
}
.home-section.in-view .schedule-point:nth-child(1) { animation-delay: 0.1s; }
.home-section.in-view .schedule-point:nth-child(2) { animation-delay: 0.2s; }
.home-section.in-view .schedule-point:nth-child(3) { animation-delay: 0.3s; }
.home-section.in-view .gs-item {
    animation: home-fade-in-up 0.5s ease-out both;
}
.home-section.in-view .gs-item:nth-child(1) { animation-delay: 0.1s; }
.home-section.in-view .gs-item:nth-child(2) { animation-delay: 0.2s; }
.home-section.in-view .gs-item:nth-child(3) { animation-delay: 0.3s; }

/* 卡片悬停：上浮 + 阴影 */
.home-news-item,
.home-list-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home-news-item:hover,
.home-list-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.home-news-item-img {
    overflow: hidden;
}
.home-news-item-img img,
.home-list-item img {
    transition: transform 0.4s ease;
}
.home-news-item:hover .home-news-item-img img,
.home-list-item:hover img {
    transform: scale(1.06);
}
.home-list-item:hover img {
    transform: scale(1.08);
}

/* 按钮/链接过渡 */
.home-banner-word a,
.home-list-more,
.home-news-item span {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.home-banner-word a:hover,
.home-list-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 162, 104, 0.4);
    text-decoration: none;
    color: #fff;
}
.home-banner-word a:active,
.home-list-more:active {
    transform: translateY(0);
}
.home-news-item:hover span {
    background-color: #b8925a;
}

/* 数据块悬停 */
.home-block-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-block-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(202, 162, 106, 0.15);
}

/* 第二屏 banner 文案淡入（可选，保持简洁） */
.home-banner:not(.home-banner-video) .home-banner-word {
    transition: opacity 0.5s ease;
}

/* 尊重用户“减少动效”设置 */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .home-banner-video .home-banner-word h2,
    .home-banner-video .home-banner-word p,
    .home-banner-video .home-banner-word a {
        animation: none;
    }
    .home-section,
    .home-section.in-view {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .home-section.in-view .home-block-item,
    .home-section.in-view .home-news-item,
    .home-section.in-view .home-list-item {
        animation: none;
    }
    .home-news-item,
    .home-list-item,
    .home-block-item,
    .home-banner-word a,
    .home-list-more,
    .home-news-item span,
    .agent-banner-word a,
    .agent-banner-item,
    .schedule-point-block,
    .gs-item {
        transition-duration: 0.01ms;
    }
    .agent-banner-item:hover,
    .schedule-point-block:hover {
        transform: none;
    }
}

/* 首页 H5 响应式 */
@media (max-width: 992px) {
    .home-block {
        padding: 60px 16px;
    }
    .home-block-box {
        padding: 28px 24px;
        border-radius: 20px;
    }
    .home-block-box h2 {
        font-size: 28px;
    }
    .home-block-list {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 24px;
    }
    .home-block-item {
        width: calc(50% - 8px);
        padding: 24px 12px;
    }
    .home-block-item span {
        font-size: 28px;
    }
    .container.padding-t {
        padding-top: 60px;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 60px;
    }
    .home-news-box h2,
    .home-list-box h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .home-news-box h2::after,
    .home-list-box h2::after {
        left: 20px;
        right: 20px;
    }
    .home-news-list {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    .home-news-item {
        flex: 1 1 280px;
        margin: 0;
        max-width: 100%;
    }
    .home-list-block {
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 40px;
        justify-content: center;
    }
    .home-list-item {
        flex: 1 1 280px;
        margin: 0;
        max-width: 100%;
    }
    .home-list-more {
        margin-top: 36px;
    }
}
@media (max-width: 576px) {
    .home-banner-word h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .home-banner-word p {
        font-size: 14px;
        line-height: 24px;
    }
    .home-banner-word a {
        width: 180px;
        height: 44px;
        font-size: 16px;
        margin-top: 24px;
    }
    .home-block {
        padding: 40px 12px;
    }
    .home-block-box {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .home-block-box h2 {
        font-size: 22px;
    }
    .home-block-box p {
        font-size: 14px;
        line-height: 26px;
    }
    .home-block-list {
        gap: 12px;
    }
    .home-block-item {
        width: 100%;
        padding: 20px 12px;
    }
    .home-block-item span {
        font-size: 24px;
    }
    .container.padding-t {
        padding-top: 40px;
    }
    .container {
        padding-bottom: 40px;
    }
    .home-news-box h2,
    .home-list-box h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }
    .home-news-list {
        gap: 16px;
    }
    .home-news-item h3 {
        font-size: 17px;
        height: 3.2em;
        padding: 0.6em 16px 0.4em;
    }
    .home-news-item p {
        font-size: 14px;
        height: 3em;
        padding: 0 16px;
    }
    .home-news-item span {
        margin: 16px 0 24px 16px;
        min-height: 44px;
    }
    .home-list-item {
        padding: 24px 16px;
    }
    .home-list-item h3 {
        font-size: 22px;
        margin: 16px 0;
    }
    .home-list-item p {
        font-size: 14px;
        line-height: 26px;
    }
    .home-list-more {
        width: 100%;
        max-width: 280px;
        height: 48px;
        margin-top: 28px;
    }
}

/* 智能体港股大赛 */
.agent-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.agent-banner img {
    width: 100%;
    display: block;
}
.agent-banner-word {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.agent-banner-word h2 {
    font-size: 48px;
    margin-bottom: 40px;
}
.agent-banner-word p {
    font-size: 20px;
    text-align: center;
}
.agent-banner-word a {
    font-size: 18px;
    background: #b58d55;
    width: 300px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    margin: 80px 0;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.agent-banner-word a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 141, 85, 0.45);
    background-color: #a67c48;
    color: #fff;
    text-decoration: none;
}
.agent-banner-word a:active {
    transform: translateY(0);
}
.agent-banner-list {
    display: flex;
    align-items: center;
}
.agent-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 42px;
    font-weight: bold;
    margin: 0 60px;
}
.agent-banner-item span {
    font-size: 30px;
    font-weight: normal;
    margin-top: 20px;
}
.agent-banner-item {
    transition: transform 0.3s ease;
}
.agent-banner-item:hover {
    transform: scale(1.05);
}
.schedule-box h2 {
    position: relative;
    font-size: 42px;
    margin-bottom: 60px;
}
.schedule-box h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 80px;
    right: 80px;
    height: 4px;
    background-color: #cfad71;
    border-radius: 2px;
}
.schedule-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.schedule-point {
    width: 8px;
    height: 8px;
    background-color: #b58d55;
    border: 4px solid #fbf7ec;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #b58d55;
    position: relative;
    margin-bottom: 230px;
}
.schedule-point::after {
    position: absolute;
    content: '';
    width: 3px;
    height: 230px;
    top: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #b58d55;
}
.schedule-point:last-child {
    margin-bottom: 0;
}
.schedule-point:last-child::after {
    display: none;
}
.schedule-point:nth-child(2n - 1) .schedule-point-block {
    position: absolute;
    right: 100px;
}
.schedule-point:nth-child(2n) .schedule-point-block {
    position: absolute;
    left: 100px;
}
.schedule-point-block {
    width: 430px;
    border-left: 6px solid #b58d55;
    background-color: #fbf7ec;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.schedule-point-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(181, 141, 85, 0.2);
}
.schedule-point-block span {
    color: #fff;
    background-color: #b58d55;
    width: 180px;
    height: 34px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.schedule-point-block h3 {
    width: 100%;
    margin: 20px 0;
    color: #b58d55;
    font-size: 24px;
}
.schedule-point-block p {
    line-height: 32px;
    font-size: 16px;
    color: #b58d55;
    word-break: break-word;
    overflow-wrap: break-word;
}
.chart {
    background-color: #fffcf6;
    padding-top: 120px;
    width: 100%;
}
.chart-box {
    width: 100%;
}
.chart-box h2 {
    position: relative;
    font-size: 42px;
    margin-bottom: 60px;
}
.chart-box h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    margin: 0 auto;
    width: 100px;
    background-color: #cfad71;
    border-radius: 2px;
}
.mcp {
    background-color: #fffcf6;
    padding-top: 120px;
}
.mcp-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mcp-title h2 {
    position: relative;
    font-size: 42px;
    margin-bottom: 30px;
    color: #333;
}
.mcp-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    margin: 0 auto;
    width: 100px;
    background-color: #cfad71;
    border-radius: 2px;
}
.mcp-title p {
    font-size: 18px;
    color: #333;
}
.mcp-service-list {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}
.mcp-service-item {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid #c49f6a;
    box-shadow: 0 0 10px #eee;
}
.mcp-service-item img {
    width: 58px;
    height: 58px;
}
.mcp-service-item h3 {
    font-size: 32px;
    color: #333;
    margin: 20px 0;
}
.mcp-service-item p {
    font-size: 16px;
    color: #666;
    line-height: 32px;
}
.mcp-service-item:nth-child(1) {
    margin-right: 30px;
}
.mcp-service-item:nth-child(2) {
    margin-left: 15px;
    margin-right: 15px;
}
.mcp-service-item:nth-child(3) {
    margin-left: 30px;
}
.mcp-process {
    padding-top: 120px;
    width: 100%;
    max-width: 1200px;
}
.mcp-process-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0;
    width: 100%;
}
.mcp-process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}
.mcp-process-item h3 {
    font-size: 24px;
    margin: 30px 0 20px;
}
.mcp-process-item img {
    width: 62px;
    height: 55px;
}
.mcp-process-item p {
    color: #002741;
    font-size: 16px;
    text-align: center;
}
.mcp-next {
    margin-top: 40px;
}
.access-box {
    background-color: #fffcf6;
}
.access-video {
    padding: 50px;
    background-color: #fff;
    width: 100%;
    margin-top: 80px;
    box-shadow: 0 0 10px #eee;
}
.registration-process {
    border-bottom: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0;
    width: 100%;
}
.registration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}
.registration-item h3 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: #999;
}
.registration-item img {
    width: 62px;
    height: 55px;
}
.registration-item p {
    color: #999;
    font-size: 16px;
    text-align: center;
}
.registration-item.on {
    position: relative;
}
.registration-item.on::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 3px;
    background-color: #002741;
}
.registration-item.on p,.registration-item.on h3 {
    color: #002741;
}
.registration-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 40px 0;
    min-height: 50vh;
}
.registration-box form {
    width: 600px;
    margin-top: 30px;
}
.registration-box h2 {
    color: #333;
    font-size: 24px;
}
.registration-box h3 {
    color: #b58d55;
    font-size: 20px;
    margin-top: 20px;
}
.registration-box p {
    margin-top: 10px;
    color: #333;
    font-size: 16px;
}
.registration-box-input {
    height: 46px;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    margin-top: 10px;
    padding: 0 10px;
    border-radius: 10px;
}
.registration-box-input span,
.registration-box-input label {
    width: 14ch;
    min-width: 0;
    flex-shrink: 0;
    color: #bbb;
    cursor: pointer;
}
.registration-box-input label:hover {
    color: #b58d55;
}
.registration-box-input input {
    flex: 1;
    height: 100%;
    outline: none;
    color: #666;
}
.registration-box-input.textarea {
    flex-direction: column;
    align-items: flex-start;
    height: 160px;
    padding: 10px;
}
.registration-box-input.textarea span,
.registration-box-input.textarea label {
    width: 100%;
}
.registration-box-input.textarea textarea {
    height: 160px;
    width: 100%;
    border: none;
    outline: none;
    margin-top: 10px;
    color: #666;
}
.registration-check {
    font-size: 14px;
    color: #b58d55;
    margin: 10px 0;
}
.registration-check label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #b58d55;
    font-size: 14px;
}
.registration-check label input[type="checkbox"] {
    margin: 0 8px 0 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    cursor: pointer;
}
.registration-check label span {
    flex: 1;
}
.registration-check a {
    color: #b58d55;
    text-decoration: none;
}
.registration-check a:hover {
    text-decoration: underline;
}
.registration-box button,
.registration-box .btn-submit,
.registration-box .btn-login,
.registration-box .btn-mcp {
    width: 300px;
    height: 46px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #b58d55;
    border-radius: 23px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}
.registration-box .btn-login,
.registration-box .btn-mcp {
    text-decoration: none;
}
.registration-box-input select {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 32px 0 8px;
    outline: none;
    color: #333;
    border: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 12px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.registration-box-input select:focus {
    color: #b58d55;
}
.registration-box-input select option {
    padding: 8px;
    color: #333;
}

/* ========== 全局统一提示弹窗 Toast（全站复用） ========== */
.toast-wrap {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 32px);
}
.toast-item {
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.toast-item.toast-in {
    opacity: 1;
    transform: translateY(0);
}
.toast-item.toast-out {
    opacity: 0;
    transform: translateY(-8px);
}
.toast-item.toast-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.toast-item.toast-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
.toast-item.toast-info {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.registration-box-tip .tip-text {
    margin: 20px 0;
    color: #666;
}
.rejected-tip {
    padding: 12px 16px;
    margin-top: 16px;
    background: #fff3f3;
    color: #c00;
    border-radius: 8px;
    font-size: 14px;
}
.registration-box-pending,
.registration-box-mcp {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}
.registration-box-pending span,
.registration-box-mcp p {
    margin-top: 16px;
    color: #333;
}
.registration-box-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.shadow {
    box-shadow: 0 0 15px #bbb;
}
.mcp-service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mcp-code-box {
    margin-bottom: 110px;
}
.mcp-service-box h2 {
    margin-bottom: 30px;
    font-size: 42px;
    color: #333;
}
.gs-list-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}
.gs-list-title h2 {
    font-size: 42px;
    color: #333;
    position: relative;
    margin-bottom: 30px;
}
.gs-list-title h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    width: 100px;
    height: 4px;
    background-color: #cfad71;
    border-radius: 2px;
}
.gs-list-title p {
    text-align: center;
}
.gs-item {
    display: flex;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gs-item:hover {
    box-shadow: 0 8px 28px rgba(181, 141, 85, 0.12);
}
.gs-item-img {
    width: 40%;
}
.gs-item-img img {
    width: 100%;
}
.gs-item-word {
    flex: 1;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ml80 {
    margin-left: 80px;
}
.mr80 {
    margin-right: 80px;
}
.gs-item-word h3 {
    font-size: 32px;
    color: #b58d55;
}
.gs-item-word p {
    color: #333;
    font-size: 16px;
    line-height: 26px;
}
.gs-item-word li {
    margin-top: 10px;
    padding-left: 30px;
    background: url("/static/image/index/gs_li_icon.png") no-repeat 0 center;
    color: #333;
    font-size: 16px;
}
.gs-form {
    background-color: #fffcf6;
}

/* 智能体/创业营 H5 响应式 */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
    .agent-banner {
        height: 380px;
        min-height: 320px;
    }
    .agent-banner img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        object-position: center;
    }
    .agent-banner-word {
        padding: 24px 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: center;
    }
    .agent-banner-word h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .agent-banner-word p {
        font-size: 16px;
        line-height: 26px;
    }
    .agent-banner-word a {
        width: 260px;
        height: 48px;
        font-size: 16px;
        margin: 40px 0 24px;
    }
    .agent-banner-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .agent-banner-item {
        margin: 0;
        font-size: 32px;
    }
    .agent-banner-item span {
        font-size: 16px;
    }
    .schedule-box {
        width: 100%;
    }
    .schedule-box h2 {
        font-size: 28px;
        margin-bottom: 40px;
        word-break: break-word;
    }
    .schedule-progress {
        width: 100%;
        overflow: visible;
    }
    .schedule-point {
        margin-bottom: 300px;
    }
    .schedule-point:last-child {
        margin-bottom: 0;
    }
    .schedule-point::after {
        height: 300px;
    }
    .schedule-point:nth-child(2n - 1) .schedule-point-block,
    .schedule-point:nth-child(2n) .schedule-point-block {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 16px;
        width: min(480px, calc(100vw - 32px));
        max-width: calc(100vw - 32px);
        box-sizing: border-box;
    }
    .schedule-point-block {
        width: 100%;
        padding: 24px 20px;
    }
    .schedule-point-block:hover {
        transform: translateX(-50%) translateY(-4px);
    }
    .container.schedule,
    .container.chart {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    .container.schedule .container-box,
    .container.chart .chart-box {
        width: 100%;
        max-width: 100%;
    }
    .chart {
        padding-top: 60px;
    }
    .chart-box h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .gs-list-title,
    .gs-form .gs-list-title {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .gs-list-title h2,
    .gs-form .gs-list-title h2 {
        font-size: 28px;
    }
    .gs-list-title p,
    .gs-form .gs-list-title p {
        font-size: 15px;
    }
    .gs-item {
        flex-direction: column;
        padding: 24px 16px;
    }
    .gs-item-img {
        width: 100%;
        order: 0;
    }
    .gs-item-word {
        padding: 20px 0 0;
        order: 1;
    }
    .ml80,
    .mr80 {
        margin-left: 0;
        margin-right: 0;
    }
    .gs-item-word h3 {
        font-size: 24px;
    }
    .gs-item-word p,
    .gs-item-word li {
        font-size: 15px;
    }
    .container .container-box,
    .gs-form .container-box {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 10px;
    }
    .gs-list {
        width: 100%;
    }
    .gs-item {
        width: 100%;
        min-width: 0;
    }
    .gs-item-img {
        min-width: 0;
        max-width: 100%;
    }
    .gs-item-img img {
        max-width: 100%;
        height: auto;
    }
    .gs-item-word {
        min-width: 0;
    }
    .registration-box {
        padding: 24px 16px;
        width: 100%;
        max-width: 100%;
    }
    .registration-box form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .registration-box-input {
        min-width: 0;
    }
    .registration-box-input input,
    .registration-box-input textarea {
        min-width: 0;
    }
    .mcp{
        padding-top: 20px;
    }
    /* 报名流程 H5：纵向排列，避免横向挤在一起 */
    .registration-process {
        flex-direction: column;
        align-items: center;
        margin: 40px 0 32px;
        padding: 0 16px;
        border-bottom: none;
        gap: 0;
    }
    .registration-item {
        width: 100%;
        max-width: 320px;
        padding: 20px 16px 16px;
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
        box-sizing: border-box;
    }
    .registration-item:last-child {
        border-bottom: none;
    }
    .registration-item h3 {
        font-size: 18px;
        margin: 12px 0 8px;
    }
    .registration-item img[alt="注册报名"],
    .registration-item img[alt="平台审核"],
    .registration-item img[alt="申请MCP地址"],
    .registration-item img[alt="智能体接入"] {
        width: 48px;
        height: 42px;
        object-fit: contain;
    }
    .registration-item p {
        font-size: 14px;
        line-height: 1.5;
    }
    .registration-process .mcp-next-noMar {
        width: 24px;
        height: auto;
        margin: 12px 0;
        transform: rotate(90deg);
        flex-shrink: 0;
    }
    .registration-item.on::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* 登录注册 */
.login-block {
    background-color: #fff;
    margin-top: 100px;
    padding: 50px 90px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ddd;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
}
.login-img {
    width: 45%;
}
.login-img img {
    width: 100%;
}
.login-form {
    flex: 1;
    margin-left: 120px;
}
.login-table {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: nowrap;
}
.login-table-item {
    color: #999;
    font-size: 26px;
    margin: 0 40px;
    cursor: pointer;
    min-width: 64px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-sizing: border-box;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}
.login-table-item.on {
    font-size: 26px;
    color: #333;
    border-bottom-color: #b58d55;
}
.login-table-block button {
    width: 100%;
    height: 46px;
    margin: 40px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #caa26a;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}
.login-table-block span {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #b58d55;
}
.login-table-block .forgot-link {
    color: #b58d55;
    text-decoration: none;
}
.login-table-block .forgot-link:hover {
    text-decoration: underline;
}
.auth-msg {
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}
.auth-msg-ok {
    background: #f0f9eb;
    color: #67c23a;
}
.auth-msg-error {
    background: #fef0f0;
    color: #f56c6c;
}

/* 注册成功弹窗 */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.auth-modal-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.auth-modal-box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 40px 36px 36px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: auth-modal-in 0.3s ease;
}
@keyframes auth-modal-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.auth-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    line-height: 56px;
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #cba268 0%, #b58d55 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(181, 141, 85, 0.4);
}
.auth-modal-title {
    font-size: 22px;
    color: #333;
    margin: 0 0 12px;
}
.auth-modal-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 28px;
}
.auth-modal-btn {
    display: block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, #cba268 0%, #b58d55 100%);
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.auth-modal-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
.auth-modal-btn:active {
    transform: translateY(0);
}
.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 24px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}
.auth-modal-close:hover {
    color: #333;
    background: #f0f0f0;
}

.code-btn {
    color: #fff;
    background-color: #caa26a;
    border-radius: 5px;
    font-size: 16px;
    padding: 5px 15px;
    cursor: pointer;
}
.member-box {
    background-color: #fffcf6;
    padding-top: 100px;
}
.member-box h2 {
    font-size: 42px;
    color: #333;
    position: relative;
    margin-bottom: 40px;
}
.member-box h2::after {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: -10px;
    height: 4px;
    background-color: #cfad71;
    border-radius: 2px;
}
.member-box h2 span {
    position: absolute;
    font-size: 14px;
    color: #666;
    width: 70px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: -80px;
    border: 1px solid #d6d6d6;
    background-color: #f1f1f1;
    border-radius: 10px;
    font-weight: normal;
}
.tournament-box {
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}
.tournament-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

/* 我的赛事 - 未报名时居中提示与介绍 */
.member-unregistered {
    margin-top: 40px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.member-unregistered-tip {
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    padding: 40px 30px 36px;
    margin-bottom: 24px;
}
.member-unregistered-text {
    font-size: 20px;
    color: #333;
    margin: 0 0 12px;
    font-weight: bold;
}
.member-unregistered-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.5;
}
.member-unregistered-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #d4af37 0%, #b8960c 100%);
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.member-unregistered-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}
.member-unregistered-intro {
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    padding: 28px 30px 32px;
    text-align: left;
}
.member-intro-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}
.member-unregistered-intro .member-intro-title:not(:first-child) {
    margin-top: 22px;
}
.member-intro-list {
    margin: 0 0 6px;
    padding-left: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.member-intro-list li {
    margin-bottom: 6px;
}
.member-intro-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 4px;
    margin-bottom: 14px;
}
.member-intro-step {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #555;
}
.member-intro-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    margin-right: 6px;
}
.member-intro-arrow {
    color: #999;
    font-size: 12px;
    margin: 0 2px;
}
.member-intro-footer {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
.member-intro-phase {
    font-size: 13px;
    color: #555;
    margin: 0 0 8px;
    line-height: 1.6;
}
.member-intro-phase:last-child {
    margin-bottom: 0;
}

.user-info-box {
    flex: 1;
}
.balance {
    display: flex;
    align-items: flex-end;
    border-bottom: 2px solid #eee;
    font-size: 20px;
    color: #333;
    padding-bottom: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}
.balance span {
    font-size: 36px;
    color: #d4af37;
    margin-left: 40px;
    font-weight: normal;
    line-height: 36px;
}
.user-info-item {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    display: flex;
}
.user-info-item.first {
    color: #15b300;
}
.user-info-item span {
    width: 130px;
    color: #666;
}
.user-instructions {
    flex: 1;
    padding-left: 100px;
}
.user-instructions h3 {
    position: relative;
    font-size: 20px;
    color: #333;
    line-height: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.user-instructions h3::before {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 20px;
    border-radius: 2px;
    background-color: #cfad71;
}
.user-instructions p {
    margin-top: 20px;
    color: #333;
    font-size: 16px;
}
.member-mcp-entries {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.member-mcp-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #cfad71;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.member-mcp-btn:hover {
    background-color: #b58d55;
    color: #fff;
}
.member-mcp-btn-lobster {
    background-color: #8b5cf6;
}
.member-mcp-btn-lobster:hover {
    background-color: #7c3aed;
    color: #fff;
}
.record-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.record-item {
    width: calc(50% - 10px);
    box-sizing: border-box;
    margin-bottom: 20px;
}
/* 记录卡片：持股/买入/卖出/结算 */
.record-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
}
.record-card-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}
.record-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}
.record-card-icon-hold {
    background: #409eff;
}
.record-card-icon-buy {
    background: #d4af37;
    font-size: 22px;
    line-height: 1;
}
.record-card-icon-sell {
    background: #15b300;
    font-size: 22px;
    line-height: 1;
}
.record-card-icon-settle {
    background: #8b5cf6;
    font-size: 18px;
}
.record-card-icon-fee {
    background: #6b7280;
    font-size: 16px;
}
.record-card-title {
    margin: 0;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 600;
}
.settlement-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    border-radius: 50%;
    color: #999;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}
.settlement-help-icon:hover {
    color: #666;
    border-color: #666;
}
.settlement-help-popover {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    z-index: 10;
    min-width: 280px;
    max-width: 360px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}
.settlement-help-popover.is-visible {
    display: block;
}
.settlement-help-popover-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}
.settlement-help-popover p {
    margin: 0 0 8px;
}
.settlement-help-popover p:last-child {
    margin-bottom: 0;
}
.record-card-table-wrap {
    flex: 1;
    overflow-x: auto;
    border-top: 1px solid #eee;
}
.record-card-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.record-card-table th {
    text-align: left;
    padding: 12px 8px;
    color: #666;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}
.record-card-table td {
    padding: 10px 8px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}
.record-card-table tbody tr:last-child td {
    border-bottom: none;
}
.record-card-table .price-up {
    color: #15b300;
}
.record-card-table .price-down {
    color: #d4af37;
}
.record-card-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.record-card-summary {
    margin: 0 0 8px;
    font-size: 14px;
    color: #666;
}
.record-card-summary .price-up {
    color: #15b300;
    font-weight: 600;
}
.record-card-link {
    font-size: 14px;
    color: #409eff;
    text-decoration: none;
}
.record-card-link:hover {
    text-decoration: underline;
}
.member-pagination-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
}
.member-pagination-info {
    margin: 0;
    font-size: 14px;
    color: #666;
}
.member-pagination {
    display: flex;
    gap: 8px;
}
.member-pagination-btn {
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    color: #409eff;
    border: 1px solid #409eff;
    border-radius: 6px;
    text-decoration: none;
}
.member-pagination-btn:hover {
    color: #fff;
    background: #409eff;
}
/* 我的赛事 - 四个「查看全部」列表页与首页宽度一致，单卡占满内容区 */
.member-list-single {
    width: 100%;
}
.member-list-single .tournament-box.record-card {
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .record-item {
        width: 100%;
    }
    .record-card {
        padding: 20px 16px;
    }
    .record-card-title {
        font-size: 18px;
    }
    .settlement-help-popover {
        left: 0;
        right: 0;
        min-width: 0;
        max-width: none;
    }
    .record-card-table {
        font-size: 13px;
    }
    /* 我的赛事区域 H5 适配 */
    .member-box {
        padding-top: 0px;
    }
    .member-box h2 {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .member-box h2::after {
        left: 0;
        right: 0;
    }
    .member-box h2 span {
        position: static;
        display: inline-block;
        margin-left: 10px;
        width: auto;
        height: auto;
        padding: 4px 10px;
        border: 1px solid #d6d6d6;
        background-color: #f1f1f1;
        border-radius: 10px;
        font-size: 12px;
        vertical-align: middle;
    }
    .member-box .tournament-box {
        padding: 20px 16px;
        margin-top: 24px;
    }
    .member-box .tournament-info {
        flex-direction: column;
        gap: 24px;
    }
    .member-box .user-info-box {
        width: 100%;
    }
    .member-box .balance {
        font-size: 16px;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }
    .member-box .balance span {
        font-size: 24px;
        margin-left: 16px;
    }
    .member-box .user-info-item {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .member-box .user-info-item span {
        width: 90px;
        min-width: 90px;
    }
    .member-box .user-instructions {
        padding-left: 0;
        width: 100%;
    }
    .member-box .user-instructions h3 {
        font-size: 18px;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }
    .member-box .user-instructions p {
        font-size: 14px;
        margin-top: 12px;
    }
    .member-box .member-mcp-entries {
        margin-top: 16px;
        flex-direction: column;
        align-items: stretch;
    }
    .member-box .member-mcp-btn {
        display: block;
        text-align: center;
        padding: 12px 16px;
    }
    .member-unregistered {
        margin-top: 24px;
        padding: 0 12px;
    }
    .member-unregistered-tip {
        padding: 28px 20px 24px;
    }
    .member-unregistered-text {
        font-size: 18px;
    }
    .member-unregistered-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .member-unregistered-btn {
        padding: 10px 24px;
        font-size: 15px;
    }
    .member-unregistered-intro {
        padding: 20px 18px 24px;
    }
    .member-intro-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    .member-unregistered-intro .member-intro-title:not(:first-child) {
        margin-top: 18px;
    }
    .member-intro-list {
        font-size: 13px;
    }
    .member-intro-steps {
        flex-wrap: wrap;
        gap: 6px 2px;
    }
    .member-intro-step {
        font-size: 12px;
    }
    .member-intro-step-num {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    .member-intro-footer {
        font-size: 12px;
    }
}









@media (max-width: 1200px) {
    .head {
        padding: 0 24px;
    }
}









