    /* ----- FXTM 幻灯片----- */
    .fxtm-carousel-section {
        width: 100%;
        background: #0e2238;
        /* 背景色仅作为降级备用 */
        position: relative;
    }

    .fxtm-carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: min(680px, 90vh);
        min-height: 560px;
    }

    .fxtm-carousel-wrapper {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .fxtm-carousel-slide {
        flex: 0 0 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        position: relative;
    }

    .fxtm-carousel-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1;
    }

    .fxtm-slide-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1300px;
        padding: 2rem 5%;
        margin: 0 auto;
    }

    /* 背景图占位标签 (仅用于开发标识) */
    .fxtm-bg-label {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.6);
        color: #ddd;
        font-size: 0.8rem;
        padding: 4px 12px;
        border-radius: 20px;
        z-index: 20;
        border: 1px solid #d4af37;
        pointer-events: none;
    }

    /* 一行一列居中布局 */
    .fxtm-center-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
    }

    .fxtm-center-col h2 {
        font-size: clamp(2.2rem, 6vw, 4rem);
        font-weight: 700;
        line-height: 1.2;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    }

    .fxtm-center-col .fxtm-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.6rem);
        margin: 1rem 0 1.5rem;
        opacity: 0.95;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        white-space: pre-line;
    }

    /* 两列布局 */
    .fxtm-two-col {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        align-items: center;
    }

    .fxtm-col {
        flex: 1 1 300px;
        padding: 1rem 0;
    }

    .fxtm-col-left {
        text-align: left;
    }

    .fxtm-col-left h2 {
        font-size: clamp(2rem, 5vw, 3.6rem);
        font-weight: 700;
        line-height: 1.2;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    }

    .fxtm-col-left .fxtm-subtitle {
        font-size: 1.2rem;
        margin: 1rem 0 1.8rem;
        opacity: 0.9;
    }

    .fxtm-small-top {
        font-size: 1rem;
        color: #d4af37;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .fxtm-body-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin: 1.5rem 0 2rem;
        opacity: 0.9;
        max-width: 550px;
    }

    .fxtm-col-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fxtm-empty {
        /* 右列留空，仅用于占位 */
        min-height: 200px;
    }

    .fxtm-right-image {
        width: 100%;
        height: 300px;
        background-size: cover;
        background-position: center;
        border-radius: 24px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 215, 0, 0.2);
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 15px;
        color: white;
        font-weight: 500;
        text-shadow: 0 2px 5px black;
        background-color: #2a4d68;
    }

    /* 按钮组 (幻灯片专用) */
    .fxtm-btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .fxtm-btn-primary {
        padding: 0.9rem 2.6rem;
        border-radius: 40px;
        font-weight: 600;
        font-size: 1.1rem;
        border: none;
        cursor: pointer;
        transition: 0.2s;
        text-decoration: none;
        display: inline-block;
        border: 2px solid transparent;
        background: #d4af37;
        color: #0b1a2f;
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }

    .fxtm-btn-primary:hover {
        background: #e4c25c;
        transform: translateY(-2px);
        box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
    }

    /* 箭头与指示点 */
    .fxtm-carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: rgba(10, 25, 45, 0.6);
        backdrop-filter: blur(5px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.6rem;
        cursor: pointer;
        z-index: 10;
        transition: 0.2s;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .fxtm-carousel-arrow:hover {
        background: #d4af37;
        color: #0b1a2f;
    }

    .fxtm-arrow-left {
        left: 25px;
    }

    .fxtm-arrow-right {
        right: 25px;
    }

    .fxtm-carousel-dots {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .fxtm-dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        cursor: pointer;
        transition: 0.3s;
        border: 1px solid transparent;
    }

    .fxtm-dot.fxtm-active {
        background: #d4af37;
        width: 30px;
        box-shadow: 0 0 12px #d4af37;
    }

    /* 幻灯片背景模拟 (实际使用时替换为真实图片) */
    .fxtm-slide-bg-1 {
        background: url('001.jpg') center/cover no-repeat;
    }

    .fxtm-slide-bg-2 {
        background: url('002.jpg') center/cover no-repeat;
    }

    .fxtm-slide-bg-3 {
        background: url('003.jpg') center/cover no-repeat;
    }

    .fxtm-slide-bg-4 {
        background: url('004.jpg') center/cover no-repeat;
    }

    .fxtm-slide-bg-5 {
        background: linear-gradient(105deg, #0f3d58, #28647e);
    }

    /* ===== 响应式调整 (手机版优化 + 第三/五张幻灯片内容居中) ===== */
    @media (max-width: 900px) {

        /* 允许垂直滚动，确保内容完整显示 */
        .fxtm-carousel-slide {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        /* 增加底部内边距，为滚动提供更好体验 */
        .fxtm-slide-content {
            padding-top: 2rem;
            padding-bottom: 3rem;
        }

        /* 两列布局在移动端间距调小 */
        .fxtm-two-col {
            gap: 1rem;
        }

        .fxtm-col-left h2 {
            font-size: clamp(1.8rem, 7vw, 2.8rem);
        }

        .fxtm-col-left .fxtm-subtitle,
        .fxtm-body-text {
            font-size: 1rem;
            margin: 0.8rem 0 1.2rem;
        }

        /* 右列图片高度适当减小 */
        .fxtm-right-image {
            height: 220px;
        }

        .fxtm-carousel-container {
            height: 600px;
            min-height: 540px;
        }

        .fxtm-arrow-left {
            left: 10px;
        }

        .fxtm-arrow-right {
            right: 10px;
        }

        /* === 第三张和第五张幻灯片内容居中显示 === */
        .fxtm-slide-bg-3 .fxtm-col-left,
        .fxtm-slide-bg-5 .fxtm-col-left {
            text-align: center;
        }

        .fxtm-slide-bg-3 .fxtm-btn-group,
        .fxtm-slide-bg-5 .fxtm-btn-group {
            justify-content: center;
        }

        .fxtm-slide-bg-5 .fxtm-body-text {
            text-align: center;
            /* 正文也居中 */
            margin-left: auto;
            margin-right: auto;
        }

        .fxtm-slide-bg-5 .fxtm-small-top {
            text-align: center;
            /* 小标题居中 */
        }
    }

    @media (max-width: 500px) {
        .fxtm-btn-group a {
            padding: 0.7rem 1.5rem;
            font-size: 0.9rem;
        }

        .fxtm-carousel-container {
            height: 580px;
        }

        .fxtm-col-left h2 {
            font-size: 2rem;
        }

        .fxtm-subtitle {
            font-size: 0.95rem;
        }

        .fxtm-body-text {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .fxtm-small-top {
            font-size: 0.85rem;
        }

        .fxtm-right-image {
            height: 180px;
        }
    }

    
    /* ===== 快速了解富拓===== */
    .fxtm-about-section {
        background-color: #ffffff;
        padding: 4rem 5%;
        border-bottom: 1px solid #e5ecf3;
        font-family: 'Poppins', sans-serif;
        /* 如需统一字体，可自行修改或移除 */
    }

    .fxtm-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .fxtm-section-title {
        font-size: 2.5rem;
        font-weight: 600;
        color: #0b1a2f;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .fxtm-section-title i {
        color: #d4af37;
        font-size: 2.2rem;
    }

    .fxtm-about-text {
        margin-bottom: 3rem;
    }

    .fxtm-about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #2a3f5e;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .fxtm-about-text p i {
        color: #d4af37;
        font-size: 1.5rem;
        min-width: 2rem;
        margin-top: 0.2rem;
    }

    .fxtm-image-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: space-between;
    }

    .fxtm-grid-item {
        flex: 1 1 220px;
        aspect-ratio: 3 / 1;
        background-size: cover;
        background-position: center;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        position: relative;
        border: 1px solid #e0e9f2;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .fxtm-grid-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-color: #d4af37;
    }

    .fxtm-img-label {
        position: absolute;
        bottom: 8px;
        left: 12px;
        background: rgba(0, 0, 0, 0.6);
        color: #ddd;
        font-size: 0.75rem;
        padding: 2px 10px;
        border-radius: 16px;
        backdrop-filter: blur(4px);
        border: 1px solid #d4af37;
        pointer-events: none;
        /* 避免遮挡鼠标事件 */
    }

    /* 响应式调整 */
    @media (max-width: 900px) {
        .fxtm-section-title {
            font-size: 2rem;
        }

        .fxtm-about-text p {
            font-size: 1rem;
        }

        .fxtm-image-grid {
            gap: 1rem;
        }

        .fxtm-grid-item {
            flex: 1 1 300px;
        }

        /* 小屏幕一行两列 */
    }

    @media (max-width: 500px) {
        .fxtm-grid-item {
            flex: 1 1 100%;
        }

        /* 超小屏幕一行一列 */
    }



    /* ===== 为什么选择富拓===== */
    .fxtm-why-section {
        background-color: #ffffff;
        padding: 4rem 5%;
        font-family: 'Poppins', sans-serif;
        /* 如需统一字体，可自行修改或移除 */
    }

    .fxtm-why-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .fxtm-why-title {
        font-size: 2.5rem;
        font-weight: 600;
        color: #0b1a2f;
        text-align: center;
        margin-bottom: 3rem;
    }

    .fxtm-why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 三列 */
        gap: 2rem;
    }

    .fxtm-why-card {
        background: #f8fafd;
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 20, 40, 0.05);
        border: 1px solid #eef2f8;
        transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    .fxtm-why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px rgba(0, 35, 70, 0.1);
        border-color: #d4af37;
    }

    .fxtm-why-icon {
        width: 80px;
        height: 80px;
        background: #e9eff7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2.5rem;
        color: #d4af37;
    }

    .fxtm-why-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #0b1a2f;
        line-height: 1.4;
    }

    /* 响应式调整 */
    @media (max-width: 900px) {
        .fxtm-why-grid {
            grid-template-columns: repeat(2, 1fr);
            /* 平板两列 */
            gap: 1.5rem;
        }

        .fxtm-why-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 500px) {
        .fxtm-why-grid {
            grid-template-columns: 1fr;
            /* 手机单列 */
            gap: 1rem;
        }

        .fxtm-why-card {
            padding: 1.5rem 1rem;
        }

        .fxtm-why-icon {
            width: 70px;
            height: 70px;
            font-size: 2rem;
        }
    }



    /* ===== 富拓的账户类型 ===== */
    .fxtm-account-section {
        background-color: #ffffff;
        padding: 4rem 5%;
        font-family: 'Poppins', sans-serif;
    }

    .fxtm-account-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .fxtm-account-title {
        font-size: 2.5rem;
        font-weight: 600;
        color: #0b1a2f;
        margin-bottom: 1rem;
        text-align: left;
    }

    .fxtm-account-description {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #2a3f5e;
        margin-bottom: 3rem;
    }

    /* 两列卡片布局 */
    .fxtm-account-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .fxtm-account-card {
        background: #f8fafd;
        border-radius: 24px;
        padding: 2rem;
        border: 1px solid #eef2f8;
        box-shadow: 0 10px 25px rgba(0, 20, 40, 0.05);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .fxtm-account-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(0, 35, 70, 0.1);
        border-color: #d4af37;
    }

    .fxtm-account-card-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #0b1a2f;
        margin-bottom: 0.5rem;
    }

    .fxtm-account-badge {
        display: inline-block;
        background: #e9eff7;
        color: #d4af37;
        font-weight: 600;
        font-size: 0.9rem;
        padding: 0.3rem 1rem;
        border-radius: 30px;
        margin-bottom: 1.5rem;
        border: 1px solid #d4af37;
    }

    .fxtm-account-detail {
        font-size: 1rem;
        color: #4a5b73;
        margin-bottom: 0.8rem;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px dashed #d9e2ef;
        padding-bottom: 0.5rem;
    }

    .fxtm-account-detail span:first-child {
        font-weight: 500;
        color: #1e2f44;
    }

    .fxtm-account-detail:last-of-type {
        border-bottom: none;
    }

    .fxtm-account-btn {
        display: inline-block;
        background: #d4af37;
        color: #0b1a2f;
        text-decoration: none;
        font-weight: 600;
        padding: 0.9rem 2.5rem;
        border-radius: 40px;
        margin-top: 1.5rem;
        transition: 0.2s;
        border: 2px solid transparent;
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    }

    .fxtm-account-btn:hover {
        background: #e4c25c;
        transform: translateY(-2px);
        box-shadow: 0 15px 25px rgba(212, 175, 55, 0.3);
    }

    /* 八列图标网格 */
    .fxtm-account-icon-grid {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 1rem;
        margin-top: 3rem;
    }

    .fxtm-account-icon-item {
        text-align: center;
    }

    .fxtm-account-icon {
        width: 70px;
        height: 70px;
        background: #e9eff7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.8rem;
        font-size: 2rem;
        color: #d4af37;
        transition: 0.2s;
    }

    .fxtm-account-icon-item:hover .fxtm-account-icon {
        background: #d4af37;
        color: white;
    }

    .fxtm-account-icon-item span {
        font-size: 0.9rem;
        font-weight: 500;
        color: #1e2f44;
        display: block;
        line-height: 1.3;
    }

    /* 响应式 */
    @media (max-width: 1100px) {
        .fxtm-account-icon-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
    }

    @media (max-width: 900px) {
        .fxtm-account-row {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .fxtm-account-title {
            font-size: 2rem;
        }

        .fxtm-account-description {
            font-size: 1rem;
        }
    }

    @media (max-width: 600px) {
        .fxtm-account-icon-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }

        .fxtm-account-icon {
            width: 60px;
            height: 60px;
            font-size: 1.8rem;
        }
    }



    /* =====权威奖项 ===== */
    .fxtm-awards-section {
        background-color: #ffffff;
        padding: 4rem 5%;
        font-family: 'Poppins', sans-serif;
        /* 可按需修改或移除 */
    }

    .fxtm-awards-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .fxtm-awards-title {
        font-size: 2.5rem;
        font-weight: 600;
        color: #0b1a2f;
        text-align: center;
        margin-bottom: 3rem;
    }

    .fxtm-awards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        align-items: center;
    }

    .fxtm-awards-item {
        text-align: center;
    }

    .fxtm-awards-img {
        max-width: 100%;
        height: auto;
        display: inline-block;
        filter: grayscale(0.2);
        transition: filter 0.3s, transform 0.3s;
        margin: 20px;
    }

    .fxtm-awards-img:hover {
        filter: grayscale(0);
        transform: scale(1.05);
    }

    /* 响应式 */
    @media (max-width: 900px) {
        .fxtm-awards-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .fxtm-awards-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 500px) {
        .fxtm-awards-grid {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }
    }


    /* ===== 区块专用样式===== */

    .fxtm-join-section {
        position: relative;
        background-image: url('012.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 6rem 1.5rem;
        text-align: center;
        color: #ffffff;
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* 半透明遮罩层，提高文字可读性 */
    .fxtm-join-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .fxtm-join-container {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .fxtm-join-title {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .fxtm-join-subtitle {
        font-size: 1.4rem;
        font-weight: 400;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    .fxtm-join-btn {
        display: inline-block;
        background: #d4af37;
        color: #0b1a2f;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 3rem;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }

    .fxtm-join-btn:hover {
        background: #e4c25c;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        .fxtm-join-title {
            font-size: 2.2rem;
        }

        .fxtm-join-subtitle {
            font-size: 1.2rem;
        }

        .fxtm-join-btn {
            font-size: 1rem;
            padding: 0.8rem 2.5rem;
        }
    }

    @media (max-width: 480px) {
        .fxtm-join-section {
            padding: 4rem 1rem;
        }

        .fxtm-join-title {
            font-size: 1.8rem;
        }

        .fxtm-join-subtitle {
            font-size: 1rem;
        }
    }