@media(min-width:900px) {
    .content-mobile {
        display: none;
    }
}
section {
    margin: 0;
    padding: 0;
    display: block;
}
.notice-section,.fb-section,.sc-section,.question-section{
            background-color: #EDEEF3;
        }
        
.notice-section,.fb-section{
        padding: 30px 20px 0px 20px;
    }
    .zx8m4k_news_container-section{
        padding: 0px 20px 0px 20px;
    }
.sc-section{
            padding-top: 30px;
        }
.question-section{
    padding: 30px 20px 20px 20px;
}
.activity-section,.mall-section{
    background-color: #FFF;
    padding: 30px 20px 0px 20px;
}
.content-mobile{

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: var(--vh, 100vh)
}
.bitfufu-container {
    margin: 0 auto;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
    overflow: visible; /* 改为visible让内容可以超出 */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* 头部区域 */
.bitfufu-header {
    padding: 30px 25px 0px;
}

.bitfufu-app-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
}

.bitfufu-app-name {
    font-size: 28px;
    font-weight: 700;
    color: #f0b90b;
}

.bitfufu-nasdaq-tag {
    background: #f0b90b;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.bitfufu-settings-icon {
    margin-left: auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
}



.bitfufu-subtitle {
    font-size: 14px;
    color: #ccc;
    margin-top: 5px;
}

/* 主要内容卡片 */
.bitfufu-main-content {
    margin: 0 20px;
    position: relative;
    /* 根据图片尺寸设置，需要你提供具体尺寸 */
    width: calc(100% - 40px);
    height: auto;
    top: 20px;
}

.bitfufu-promo-card {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #333;
}

.bitfufu-promo-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.bitfufu-benefits-title {
    color: #f0b90b;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bitfufu-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.bitfufu-benefit-number {
    color: #f0b90b;
    font-weight: 600;
    margin-right: 8px;
    min-width: 20px;
}

.bitfufu-benefit-text {
    color: #555;
}

/* 背景图片 */
.bitfufu-gift-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bitfufu-gift-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
        /* 使用 ann- 前缀避免class冲突 */
        .ann-notice-container {
            background-color: #f0f2f5;
            border-radius: 6px;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        .ann-speaker-icon {
            flex-shrink: 0;
            margin-right: 10px;
            font-size: 16px;
            color: #666;
        }
        .ann-speaker-icon img{
            width: 20px;
            height: 20px;
        }
        .ann-marquee-wrapper {
            flex: 1;
            overflow: hidden;
        }

        .ann-marquee-content {
            white-space: nowrap;
            animation: ann-scroll 12s linear infinite;
            font-size: 13px;
            color: #333;
            line-height: 1.4;
        }

        @keyframes ann-scroll {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* 悬停时暂停动画 */
        .ann-notice-container:active .ann-marquee-content {
            animation-play-state: paused;
        }
        
        /* 使用 fb- 前缀避免class冲突 */
        .fb-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 370px;
            margin: 0 auto;
            gap: 15px;
        }

        .fb-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .fb-item:active {
            transform: scale(0.95);
        }

        .fb-icon-box {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            position: relative;
        }

        

        .fb-label {
            font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 14px;
            color: #000000;
            line-height: 17px;
            text-align: center;
            font-style: normal;
            text-transform: none;
        }
                /* 使用 sc- 前缀避免class冲突 */
        .sc-container {
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .sc-container::-webkit-scrollbar {
            display: none;
        }

        .sc-wrapper {
            display: flex;
            gap: 12px;
            padding: 0 16px;
            width: max-content;
        }

        .sc-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 16px;
            min-width: 120px;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .sc-name {
            font-size: 14px;
            color: #333;
            font-weight: 500;
            margin-bottom: 8px;
            white-space: nowrap;
        }

        .sc-price {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .sc-change {
            font-size: 12px;
            margin-bottom: 2px;
        }

        .sc-percent {
            font-size: 12px;
        }

        .sc-positive {
            color: #00c853;
        }

        .sc-negative {
            color: #ff1744;
        }

        .sc-neutral {
            color: #666;
        }

        /* 添加滚动指示器 */
        .sc-scroll-indicator {
            text-align: center;
            margin-top: 12px;
            font-size: 12px;
            color: #999;
        }

        /* 响应式调整 */
        @media (max-width: 480px) {
            .sc-card {
                min-width: 100px;
                padding: 12px;
            }
            
            .sc-name {
                font-size: 13px;
            }
            
            .sc-price {
                font-size: 16px;
            }
        }
               .question-container {
           background-color: #F8F9FD;
            border-radius: 49px;
            padding: 15px;
            max-width: 400px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        .question-slider {
            display: flex;
            transition: transform 0.3s ease-in-out;
            width: 200%;
        }

        .question-slide {
            width: 50%;
            flex-shrink: 0;
            text-align: center;
        }

        .question-pagination {
            display: inline-block;
            margin-right: 12px;
            font-size: 16px;
            color: #8a8a8a;
            font-weight: 400;
        }

        .current-page {
            font-size: 18px;
            color: #333;
            font-weight: 500;
        }

        .total-pages {
            margin-left: 2px;
        }

        .question-text {
            display: inline-block;
            font-size: 18px;
            color: #333;
            font-weight: 500;
            line-height: 1.4;
        }

        .nav-buttons {
            display: none;
        }

        /* 触摸滑动支持 */
        .question-container {
            touch-action: pan-x;
            user-select: none;
        }

        .question-slider.dragging {
            transition: none;
        }
                .activity-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .activity-title {
            font-size: 22px;
            font-weight: 600;
            color: #333;
        }

        .more-link {
            display: flex;
            align-items: center;
            color: #666;
            text-decoration: none;
            font-size: 16px;
        }

        .more-link::after {
            content: '›';
            margin-left: 4px;
            font-size: 18px;
            font-weight: bold;
        }

        .share-card {
            background: white;
            border-radius: 16px;
            padding: 15px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            max-width: 500px;
        }

        .share-main-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .share-subtitle {
            font-size: 12px;
            color: #666;
            margin-bottom: 24px;
        }

        .social-icons {
            display: flex;
            gap: 5px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .facebook {
            background-color: #1877f2;
        }

        .twitter {
            background-color: #1da1f2;
        }

        .telegram {
            background-color: #0088cc;
        }

        .whatsapp {
            background-color: #25d366;
        }

        .linkedin {
            background-color: #0077b5;
        }

        .pinterest {
            background-color: #bd081c;
        }

        .reddit {
            background-color: #ff4500;
        }

        .vk {
            background-color: #ff6b35;
        }

        .share-button {
            width: 100%;
            background: linear-gradient( 90deg, #FFE9BA 0%, #F5BC4A 100%);
            border: none;
            border-radius: 28px;
            padding: 10px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .share-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 179, 71, 0.3);
        }

        .share-button:active {
            transform: translateY(0);
        }
        .activity-desc{
            font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 12px;
            color: #000000;
            line-height: 14px;
            text-align: left;
            font-style: normal;
            text-transform: none;
            margin-bottom: 20px;
        }

                .investment-card {
            background: white;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            margin: 0 auto;
            overflow: hidden;
            border:1px solid #DCDCDC;
            margin-bottom: 20px;
        }

        .mining-image1 {
            position: relative;
            padding: 20px 20px 0 20px;
            border-radius: 12px;
            text-align: center;
        }

        .mining-server {
            width: 100%;
            height: 150px;
            background: #ddd;
            border-radius: 8px;
            position: relative;
        }
        .mining-server img{
            width: 100%;
            height: 100%;
        }
        .sold-out-stamp {
                position: absolute;
    top: 24%;
    /* left: 52%; */
    left: 35%;
    color: white;
    /* padding: 8px 16px; */
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    width: 100px;
        }

        .card-content {
            padding: 20px;
        }

        .investment-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .price-section {
            margin-bottom: 15px;
        }

        .main-price {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 4px;
        }

        .price-unit {
            font-size: 16px;
            color: #666;
            font-weight: 400;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 16px;
            margin-bottom: 20px;
            
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            font-weight: 500;
            font-size: 12px;
            color: #999999;
        }
        .detail-item-line{
            font-weight: 500;
            font-size: 12px;
            color: #999999;
            margin-bottom: 8px;
        }
        .affiliate-section {
            margin-bottom: 20px;
        }

        .affiliate-title {
            font-size: 12px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }

        .affiliate-levels {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        .affiliate-level {
            flex: 1;
            background: #f5f5f5;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
        }

        .level-title {
            font-size: 14px;
            color: #666;
            margin-bottom: 4px;
        }

        .level-rate {
            font-size: 18px;
            font-weight: 700;
            color: #333;
        }

        .progress-section {
            margin-bottom: 24px;
        }

        .progress-bar {
            width: 100%;
            height: 20px;
            background: #e0e0e0;
            border-radius: 10px;
            position: relative;
            overflow: visible; /* 改为visible让内容可以超出 */
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #333, #666);
            width: 55.51%;
            border-radius: 10px;
            position: relative;
        }

        .progress-label {
            position: absolute;
            right: -0px;
            top: 50%;
            transform: translateY(-50%);
            background: #ffd700;
            color: #333;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

        

        .action-buttons {
            display: flex;
            gap: 12px;
        }

        .btn1 {
            flex: 1;
            padding: 7px 12px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.2s ease;
        }

        .btn-outline {
            background: white;
            border: 1px solid #E1B93D;
        }

        .btn-outline:hover {
            background: #ffd700;
            color: #333;
        }

        .btn-primary {
            background: linear-gradient( 90deg, #FFE9BA 0%, #F5BC4A 100%);
            color: #333;
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 179, 71, 0.3);
        }
        .x9k7m-wrapper {
            padding: 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .x9k7m-item {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        .x9k7m-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .x9k7m-text {
            flex: 1;
            margin-right: 12px;
        }

        .x9k7m-heading {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin: 0 0 6px 0;
            line-height: 1.4;
        }

        .x9k7m-summary {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.5;
            margin: 0;
        }

        .x9k7m-icon {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .x9k7m-icon img {
            object-fit: contain;
        }
                .kj7x9m_header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            background-color: #ffffff;
            min-height: 56px;
        }

        .zt8n4p_title {
            font-size: 18px;
            font-weight: 500;
            color: #333333;
            flex: 1;
        }

        .bx2w5q_icon {
            width: 24px;
            height: 24px;
            border: 2px solid #666666;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .bx2w5q_icon:hover {
            border-color: #007aff;
            background-color: #f0f8ff;
        }

        .bx2w5q_icon:active {
            transform: scale(0.95);
        }

        .ly9c3k_question {
            font-size: 14px;
            font-weight: bold;
            color: #666666;
            line-height: 1;
        }

        /* 响应式调整 */
        @media (max-width: 320px) {
            .kj7x9m_header {
                padding: 10px 12px;
            }
            
            .zt8n4p_title {
                font-size: 16px;
            }
            
            .bx2w5q_icon {
                width: 22px;
                height: 22px;
            }
        }
         /* 头部容器 */
        .kx9p2m_header_wrapper {
            background: #ffffff;
            /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        /* 头部内容区域 */
        .zt7q4n_header_container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            max-width: 100%;
            margin: 0 auto;
            height: 56px;
        }
        
        /* 返回按钮 */
        .bw5l8r_back_button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border: none;
            background: none;
            cursor: pointer;
            border-radius: 6px;
            transition: background-color 0.2s ease;
            flex-shrink: 0;
        }
        .nh6d4s_right_spacer-title{
            font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 20px;
            color: #000000;
        }
        .nh6d4s_right_spacer{
            width: 20px;
        }
        /* 返回箭头图标 */
        .mg3x9v_back_icon {
            width: 20px;
            height: 20px;
            stroke: #333333;
            stroke-width: 2;
            fill: none;
        }
         /* 新闻列表容器 */
        .zx8m4k_news_container {
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* 新闻卡片 */
        .pq7n3r_news_card {
            background: #ffffff;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .pq7n3r_news_card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }
        
        /* 新闻图片 */
        .wv5l9t_news_image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        
        /* 内容区域 */
        .ml6z4h_content_area {
            padding: 16px;
        }
        
        /* 新闻标题 */
        .qw9e3x_news_title {
            font-size: 16px;
            font-weight: 600;
            color: #333333;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        
        /* 新闻时间 */
        .ay7r5p_news_time {
            font-size: 12px;
            color: #999999;
            margin-bottom: 8px;
        }
        
        /* 新闻描述 */
        .bz4n8t_news_desc {
            font-size: 14px;
            color: #666666;
            line-height: 1.5;
        }
        
        /* 响应式设计 */
        @media (max-width: 480px) {
            /* body {
                padding: 12px;
            } */
            
            .wv5l9t_news_image {
                height: 160px;
            }
            
            .ml6z4h_content_area {
                padding: 12px;
            }
            
            .qw9e3x_news_title {
                font-size: 15px;
            }
            
            .bz4n8t_news_desc {
                font-size: 12px;
            }
        }
        .vip-header-container {
            /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
            padding: 60px 20px;
            text-align: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .vip-main-title {
            font-size: 48px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .vip-subtitle {
            font-size: 18px;
            color: #7f8c8d;
            font-weight: 400;
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .vip-header-container {
                padding: 40px 15px 0 15px;
            }

            .vip-main-title {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .vip-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .vip-header-container {
                padding: 30px 10px;
            }

            .vip-main-title {
                font-size: 28px;
                line-height: 1.3;
            }

            .vip-subtitle {
                font-size: 14px;
            }
        }
        .yf8k2p_title{
            font-size: 20px;
        }
                /* 主容器 */
        .kx8n2q-login-container {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 40px 32px;
            width: 100%;
            max-width: 400px;
            /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
        }

        /* 标题 */
        .m7j5w3-page-title {
           font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 24px;
            color: #000000;
            margin-bottom: 32px;
            text-align: left;
        }

         /* 标签页容器 */
        .p9k4l8-tab-container {
            display: flex;
            margin-bottom: 24px;
            justify-content: flex-start;
            gap: 32px;
        }

        /* 标签页项 */
        .r2x6v1-tab-item {
            padding: 12px 0;
            cursor: pointer;
            font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 16px;
            color: #666666;
            position: relative;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .r2x6v1-tab-item:hover {
            color: #1d1d1f;
        }

        /* 激活的标签页 */
        .r2x6v1-tab-item.t5y9h7-active {
            font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 16px;
            color: #000000;
        }

        .r2x6v1-tab-item.t5y9h7-active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 2px;
            background-color: #313131;
            border-radius: 1px;
        }

        /* 输入框容器 */
        .d4z8n2-input-container {
            margin-bottom: 20px;
        }

        /* 输入框 */
        .b6m3x9-input-field {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #e8e8ed;
            border-radius: 12px;
            font-size: 16px;
            color: #1d1d1f;
            background-color: #fbfbfd;
            transition: border-color 0.3s ease, background-color 0.3s ease;
            outline: none;
        }

        .b6m3x9-input-field:focus {
            border-color: #f5a623;
            background-color: #ffffff;
        }

        .b6m3x9-input-field::placeholder {
            color: #86868b;
        }

        /* 复选框容器 */
        .w1q5k7-checkbox-container {
            display: flex;
            align-items: flex-start;
            margin-bottom: 32px;
            cursor: pointer;
        }

        /* 自定义复选框 */
        .u8j2n4-custom-checkbox {
            width: 18px;
            height: 18px;
            border: 2px solid #d2d2d7;
            border-radius: 4px;
            margin-right: 12px;
            margin-top: 1px;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .u8j2n4-custom-checkbox.s3l9p6-checked {
            background-color: #f5a623;
            border-color: #f5a623;
        }

        .u8j2n4-custom-checkbox.s3l9p6-checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        /* 隐藏原生复选框 */
        .i7h4t2-hidden-checkbox {
            display: none;
        }

        /* 复选框文字 */
        .a9c1z5-checkbox-text {
            font-size: 14px;
            color: #86868b;
            line-height: 1.4;
            flex: 1;
        }

        .a9c1z5-checkbox-text a {
            color: #f5a623;
            text-decoration: none;
        }

        .a9c1z5-checkbox-text a:hover {
            text-decoration: underline;
        }

        /* 下一步按钮 */
        .v4n7k1-next-button {
            width: 100%;
            padding: 16px;
            background: linear-gradient( 90deg, #FFE9BA 0%, #F5BC4A 100%);
            color: white;
            border: none;
            border-radius: 44px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 24px;
        }

        /* .v4n7k1-next-button:hover {
            background: linear-gradient(135deg, #e59712 0%, #d68910 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
        } */

        .v4n7k1-next-button:active {
            transform: translateY(0);
        }

        /* 底部链接 */
        .o6f8m3-bottom-link {
            text-align: center;
            font-size: 14px;
            color: #86868b;
        }

        .o6f8m3-bottom-link a {
            color: #f5a623;
            text-decoration: none;
            margin-left: 4px;
        }

        .o6f8m3-bottom-link a:hover {
            text-decoration: underline;
        }
        .guanbi{
            display: none;
        }
        .kaiqi{
            display: block;
        }
        .title-email{
            font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 16px;
            color: #000000;
        }
        .sadak-btn{
            display: flex;
            justify-content: space-between;
            font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 14px;
            color: #333333;
            margin-bottom: 20px;
        }
        .qw8n5r1 {
            font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 14px;
            color: #FFFFFF;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .zx3c4v8 {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            gap: 8px;
        }

        .fl9k2j6 {
            width: 24px;
            height: 24px;
            background: linear-gradient( 90deg, #FFE9BA 0%, #F5BC4A 100%);
            /* border-radius: 4px; */
            border-radius: 6px 0px 6px 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            color: #2c2c2c;
            font-family: monospace;
        }

        .bh4t7y9 {
            font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 14px;
            color: #FFFFFF;
        }

        .mn6u3i5 {
            font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 12px;
color: #FFFFFF;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #444444;
        }
                .rt8q5m3 {
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            max-width: 400px;
        }

        .px9w2k7 {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .dc4v8n1 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .lk6j3y5 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .bm7h9i2 {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .bm7h9i2:hover {
            transform: translateY(-2px);
        }

        .fz1x4c8 {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

        .hn5g2q9 {
            font-size: 14px;
            color: #333;
            font-weight: 500;
        }
                /* 主容器 */
        .zx9c2v {
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* 优惠券卡片 */
        .qp3m7b {
            background-color: #fff;
            border-radius: 16px;
            padding: 16px 20px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            border: 1px solid #DCDCDC;
        }
        
        /* 顶部区域 */
        .fm8k4r {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        /* 标题区域 */
        .vb2n7x {
            display: flex;
            align-items: center;
        }
        
        /* 左侧黄色条 */
        .ty6u3i {
            width: 3px;
            height: 18px;
            background-color: #FFC107;
            margin-right: 8px;
            border-radius: 1px;
        }
        
        /* 标题文本 */
        .pl9o2k {
            font-size: 16px;
            font-weight: 500;
            color: #333;
        }
        
        /* 金额 */
        .xc4v8j {
            font-size: 20px;
            font-weight: bold;
            color: #FFA000;
        }
        
        /* 中间区域 */
        .kj2m7b {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        
        /* 有效期 */
        .hu5f9s {
            font-size: 14px;
            color: #999;
        }
        
        /* 满额条件 */
        .wn3e6t {
            font-size: 14px;
            color: #999;
            text-align: right;
        }
        
        /* 底部区域 */
        .ga7r2q {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* 左侧使用信息 */
        .yt5m2b {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* 使用文本 */
        .lk9p3e {
            font-size: 14px;
            color: #666;
            margin-bottom: 6px;
        }
        
        /* 规则标识区域 */
        .df8h6j {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        /* 圆形图标 */
        .cg5v2n {
            width: 16px;
            height: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-left: 5px;
        }
        
        /* 勾选图标 */
        .bv4c7m {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #43A047;
        }
        
        /* 使用按钮 */
        .tq2z8p {
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 6px 20px;
            font-size: 14px;
            color: #333;
            background-color: #fff;
            cursor: pointer;
        }
        .zx9c2v-section{
            padding: 20px;
        }
                .xk9j2-container {
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
        }

        .pq4m8-item {
            border-bottom: 1px solid #e5e5e5;
            border: 1px solid #D6D6D6;
            margin: 10px 0;
            border-radius: 10px;
        }

        .pq4m8-item:last-child {
            border-bottom: none;
        }

        .zr7w3-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 24px;
            cursor: pointer;
            user-select: none;
            
        }

        .zr7w3-header:hover {
            background-color: #f8f9fa;
        }

        .bt5n1-title {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            flex: 1;
        }

        .hy8k6-arrow {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            opacity: 0.6;
        }

        .hy8k6-arrow.expanded {
            transform: rotate(180deg);
        }

        .mv2l9-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: #fafafa;
        }

        .mv2l9-content.expanded {
            max-height: 200px;
            padding: 20px 24px;
        }

        .qw6x7-text {
            color: #666;
            line-height: 1.6;
            font-size: 16px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .xk9j2-container {
                margin: 0 10px;
                border-radius: 8px;
            }
            
            .zr7w3-header {
                padding: 10px 20px;
            }
            
            .bt5n1-title {
                font-size: 16px;
            }
            
            .mv2l9-content.expanded {
                padding: 16px 20px;
            }
            
            .qw6x7-text {
                font-size: 14px;
            }
        }
        .input-container-row{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }
                .xk9m2p {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
        }

        .wq7r3l {
            max-width: 400px;
            width: 100%;
            text-align: center;
            margin-bottom: 40px;
        }

        .zh8n4k {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .pl6t9m {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .vm2k8d {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
        }

        .bg5j7n {
            position: relative;
            margin: 30px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 600px;
            height: 400px;
        }

        .rt4h9q {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #6c757d;
            background-image: url('phone-mockup-placeholder.jpg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }



        .ls2y4m {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .qr9w5k {
            flex: 1;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 50px;
            padding: 15px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .qr9w5k:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            border-color: #3498db;
        }

        .fj6u8n {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .hy7m2p {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        @media (max-width: 480px) {
            .zh8n4k {
                font-size: 1.8rem;
            }
            
            .bg5j7n {
                height: 300px;
            }
        }
                .kx9m2n8p {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f5f5f7;
            min-height: 100vh;
            padding: 20px;
            margin: 0;
        }

        .qw4e7r2t {
            max-width: 400px;
            margin: 0 auto;
        }

        .az3x8c9v {
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 12px;
            border: 1px solid #e5e5e7;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bg7n4m1s {
            display: flex;
            flex-direction: column;
        }

        .df8k5l2p {
            font-size: 16px;
            font-weight: 500;
            color: #1d1d1f;
            margin: 0 0 4px 0;
        }

        .rt9y6u3i {
            font-size: 13px;
            color: #86868b;
            margin: 0;
        }

        .op2w5e8r {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .nh4t7y9u {
            font-size: 16px;
            font-weight: 600;
            color: #34c759;
            margin: 0 0 4px 0;
        }

        .mi6r3e5t {
            font-size: 12px;
            color: #86868b;
            margin: 0;
        }
                .kx9m2n4p {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            max-width: 480px;
            margin: 0 auto;
        }

        .qw7r8t3k {
            background: white;
            border-radius: 16px;
            padding: 24px;
        }

        .zv5b9m1x {
            font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 16px;
color: #000000;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .ap4c6h8j {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            
        }

        .lm8k2w9v {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }

        .df3n7q5r {
            font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 12px;
            color: #333333;
            margin-bottom: 8px;
        }

        .yh1p4x6s {
            font-family: DIN, DIN;
            font-weight: bold;
            font-size: 20px;
            color: #333333;
        }

        .rt9k5m2b {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .ue7w3z8n {
            width: 1px;
            height: 40px;
            background: #e5e5e5;
            margin: 0 20px;
        }

        .gh2s6f9l {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid #e5e5e5;
        }

        .ik5m8q1x {
            font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 12px;
            color: #999999;
            flex: 1;
        }

        .wz4p7n3k {
            font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 12px;
            color: #333333;
            flex: 2;
        }

        .cv8h2r6t {
            font-family: PingFang SC, PingFang SC;
            font-weight: 800;
            font-size: 16px;
            color: #000000;
            margin-bottom: 20px;
        }

        .jx3k9m5w {
            display: flex;
            gap: 16px;
        }

        .pl7n4q8r {
            flex: 1;
            background: linear-gradient( 90deg, #EAEDF4 0%, #F8F8FA 100%);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .bm2w6k9x {
            font-size: 14px;
            color: #333333;
            margin-bottom: 12px;
        }

        .nd5h8p1v {
           font-family: DIN, DIN;
font-weight: bold;
font-size: 20px;
color: #333333;
        }
                .bg8m4x9k {
            background-color: #eeeff2;
            min-height: 100vh;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container7w3n2q {
            width: 100%;
            padding: 16px 16px;
        }

        .card9k5h1m {
            background: white;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .amount-section6x8z4p {
            flex: 1;
        }

        .label3n7w9e {
           font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 12px;
color: #333333;
            margin-bottom: 4px;
        }

        .amount1q4y8r {
            font-family: DIN, DIN;
            font-weight: bold;
            font-size: 20px;
            color: #333333;
            margin: 0;
            line-height: 1.1;
        }

        .invest-btn5j2k7n {
            background: linear-gradient(135deg, #f0d89e 0%, #e8ca8a 100%);
            border: none;
            border-radius: 24px;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            color: #5a4a2a;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            margin-left: 16px;
            font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 14px;
            color: #000000;
        }

        .invest-btn5j2k7n:hover {
            background: linear-gradient(135deg, #efd498 0%, #e6c884 100%);
        }

        .invest-btn5j2k7n:active {
            transform: scale(0.98);
            background: linear-gradient(135deg, #edd192 0%, #e4c67e 100%);
        }

        .k8j5h3g9f2 {
            max-width: 480px;
            width: 100%;
            text-align: center;
            padding: 20px 60px;
            background-color: #000;
        }

        .m7n4b6v8c1 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .p3q9w2e5r7 {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #ff8f00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 32px;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
        }

        .t5y7u1i3o9 {
            position: relative;
            border-radius: 12px;
        }

        .a6s8d4f2g7 {
            width: 180px;
            height: 150px;
            margin: 0 auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: l9z3x5c7v1 3s ease-in-out infinite;
        }

        .a6s8d4f2g7 img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        @keyframes l9z3x5c7v1 {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .h4j6k8l0z2 {
            display: flex;
            flex-direction: column;
            gap: 24px;
            text-align: left;
        }

        .n5m7x9c1v3 {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .n5m7x9c1v3:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .b8n6m4k2j0 {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .b8n6m4k2j0 img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        .q1w3e5r7t9 {
            flex: 1;
        }

        .i8o0p2a4s6 {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
            line-height: 1.4;
            font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 16px;
            color: #FFFFFF;
        }

        .d7f9g1h3j5 {
            font-size: 14px;
            color:#F3B53E;
            line-height: 1.5;
            font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 16px;
        }

        

        @keyframes u6i8o0p2a4 {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .k8j5h3g9f2 {
            position: relative;
        }

                .r8t5y3u1i9 {
            max-width: 420px;
            margin: 0 auto;
            background: white;
            border-radius: 30px;
        }

        .w2e6r4t8y0 {
            padding: 20px;
        }

        .q9w7e3r1t5 {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 24px;
        }

        .a4s8d2f6g0 {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 20px;
        }

        .z5x9c1v7b3 {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 12px;
        }

        .n6m2k8l4j0 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }

        .h7g5f9d1s3 {
            font-size: 16px;
            color: #2c3e50;
            font-weight: 600;
        }

        .p0o8i6u4y2 {
            width: 24px;
            height: 24px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.2s ease;
        }

        .p0o8i6u4y2:hover {
            opacity: 1;
        }

        .l3k7j9h1g5 {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }

        .v8c4x2z6n0 {
            flex: 1;
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 16px;
            position: relative;
            white-space: nowrap; /* 不换行 */
            overflow: hidden; /* 隐藏超出部分 */
            text-overflow: ellipsis; /* 显示省略号 */
        }

        .b9n1m5k3j7 {
            font-size: 12px;
            color: #6c757d;
            margin-bottom: 8px;
        }

        .f2d6s8a4g0 {
            font-size: 16px;
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 8px;
            word-break: break-all;
        }

        .c5v7b3n1m9 {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.2s ease;
        }

        .c5v7b3n1m9:hover {
            opacity: 1;
        }

        .x4z8n2m6k0 {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
        }

        .q1w5e9r3t7 {
            flex:1;
            background: #2c3e50;
            color: white;
            padding: 14px 20px;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        .q1w5e9r3t7:hover {
            background: #34495e;
            transform: translateY(-2px);
        }

        .i8u4y6t2r0 {
            flex: 3;
            background: linear-gradient( 90deg, #FFE9BA 0%, #F5BC4A 100%);
            color: #2c3e50;
            padding: 14px 24px;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .i8u4y6t2r0:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 179, 0, 0.3);
        }

        .o7p1a3s5d9 {
            border-top: 2px dotted #dee2e6;
            padding-top: 24px;
            margin-bottom: 24px;
        }

        .g6h8j2k4l0 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .y5t7r1e3w9 {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
        }

        .u2i6o8p0a4 {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6c757d;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .u2i6o8p0a4:hover {
            color: #007bff;
        }

        .s1d5f7g9h3 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .j4k6l8z0x2 {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }

        .c7v9b1n3m5 {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 8px;
        }

        .x8z2a4s6d0 {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
        }

        .n0m4k6j8h2 {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            grid-column: 1 / -1;
        }

        .l9p7o5i3u1 {
            width: 100%;
            background: linear-gradient( 90deg, #FFE9BA 0%, #F5BC4A 100%);
            color: #2c3e50;
            padding: 16px 24px;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.3s ease;
            opacity: 0.6;
        }

        .l9p7o5i3u1:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 179, 0, 0.2);
        }

        /* QR码图标 */
        .qr-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* 箭头图标 */
        .arrow-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* 响应式设计 */
        @media (max-width: 480px) {
            .w2e6r4t8y0 {
                padding: 16px;
            }

            .q9w7e3r1t5 {
                font-size: 20px;
            }


        }

       .kx9m2_container {
            margin: 20px 0;
            background-color: #fff;
            border-radius: 10px;
            max-width: 420px;
        }

        .zt7n5_main_content {
            padding: 20px;
        }

        .qw8r4_title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .lp3j9_description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .mx4k7_detail_link {
            color: #1890ff;
            font-size: 14px;
            text-decoration: none;
            margin-bottom: 30px;
            display: inline-block;
        }

        .bg9n6_progress_section {
            margin-bottom: 10px;
        }

        .vf2m8_progress_header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .nh5k1_progress_label {
            font-size: 14px;
            color: #333;
        }

        .jr8t3_reward_badge {
            background-color: #ffa940;
            color: #fff;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
        }

        .cs6w9_progress_bar {
            width: 100%;
            height: 6px;
            background-color: #f0f0f0;
            border-radius: 3px;
            overflow: hidden;
        }

        .dt4p2_progress_fill {
            height: 100%;
            background-color: #333;
            width: 100%;
            border-radius: 3px;
        }

        .ey7n5_event_section {
        }

        .pk9m3_event_card {
            background-color: #f8f8f8;
            border-radius: 8px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .rw6j8_event_info h3 {
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
            font-weight: normal;
        }

        .rw6j8_event_info p {
            font-size: 14px;
            color: #666;
        }

        .mn7k4_share_btn {
            background-color: #d9d9d9;
            color: #333;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
        }

        .mn7k4_share_btn:active {
            background-color: #bfbfbf;
        }
        .qz8x5_container {
            background-color: #fff;
            padding: 20px;
        }

        .mw7n2_title {
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            color: #333;
            margin-bottom: 30px;
        }

        .kt9r4_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #e8e8e8;
            margin-bottom: 20px;
        }

        .lp6j3_header_text {
            font-size: 14px;
            color: #666;
            font-weight: normal;
        }

        .vx5m8_ranking_list {
            list-style: none;
        }

        .bg4k7_ranking_item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .bg4k7_ranking_item:last-child {
            border-bottom: none;
        }

        .nh2w9_left_section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cr8t5_rank_number {
            font-size: 16px;
            color: #333;
            font-weight: bold;
            min-width: 15px;
        }

        .dy6p1_user_id {
            font-size: 14px;
            color: #666;
        }

        .js9n4_reward_amount {
            font-size: 14px;
            color: #52c41a;
            font-weight: normal;
        }

        .js9n4_reward_amount::before {
            content: "+ ";
        }

         .zx9k2m_container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .hp7v3q_grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .ql8n4r_card {
            background: linear-gradient( 90deg, #EAEDF4 0%, #F8F8FA 100%);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .wm5y6s_title {
            font-family: PingFang SC, PingFang SC;
            font-weight: bold;
            font-size: 12px;
            color: #333333;
            margin-bottom: 8px;
        }

        .bg9x2t_amount {
            font-family: DIN, DIN;
            font-weight: bold;
            font-size: 20px;
            color: #333333;
            margin: 0;
        }

                .bx7q4m_container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
        }

        .kp9n3r_section_title {
            font-size: 18px;
            color: #202124;
            margin: 0 0 16px 0;
            font-weight: 500;
        }

        .yz5w8t_referral_card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
        }

        .hj2m6l_link_text {
            font-family: PingFang SC, PingFang SC;
        font-weight: 800;
        font-size: 16px;
        color: #000000;
            margin-bottom: 8px;
        }

        .qf4v7s_description {
            font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 12px;
color: #000000;
            margin-bottom: 20px;
        }

        .nc8x1p_copy_button {
            width: 100%;
            background: #fdd835;
            border: none;
            border-radius: 24px;
            padding: 12px 24px;
            font-size: 16px;
            color: #202124;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .nc8x1p_copy_button:hover {
            background: #f9c842;
        }

        .nc8x1p_copy_button:active {
            background: #f5c236;
        }

        .dg9k2z_stats_card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 40px 24px;
            text-align: center;
        }

        .vr3j5n_stats_number {
            font-size: 48px;
            color: #202124;
            font-weight: 400;
            margin-bottom: 8px;
        }

        .lw7e4q_stats_labels {
            display: flex;
            justify-content: center;
            gap: 24px;
        }

        .mf6u8x_label {
           font-family: PingFang SC, PingFang SC;
            font-weight: 500;
            font-size: 12px;
            color: #999999;
        }

        /* 响应式设计 */
        @media (max-width: 480px) {
            .bx7q4m_container {
                padding: 16px;
            }
            
            .yz5w8t_referral_card {
                padding: 20px;
            }
            
            .dg9k2z_stats_card {
                padding: 32px 20px;
            }
            
            .vr3j5n_stats_number {
                font-family: DIN, DIN;
                font-weight: bold;
                font-size: 28px;
                color: #000000;
            }
        }
                .k7x9m2 {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
.k7x9m21 {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background: linear-gradient( 94deg, #F8F8FA 0%, #F8F5F0 100%);
            border-radius: 20px;
        }
        .n4q8r1 {
            margin-bottom: 15px;
            font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 16px;
color: #000000;
        }

        .timeline-container-p5w7z3 {
            border-radius: 12px;
        }

        /* 年份导航 */
        .year-nav-t8h4j6 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }

        .year-nav-t8h4j6::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #e9ecef;
            z-index: 1;
        }

        .year-item-v2c9k5 {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .year-dot-m6x1b8 {
            width: 8px;
            height: 8px;
            border: 1px solid #000;
            border-radius: 50%;
            background: #ffc107;
            transition: all 0.3s ease;
            margin-top: 19px;
            margin-bottom: 5px;
        }

        .year-item-v2c9k5.active .year-dot-m6x1b8 {
            background: #ffc107;
            transform: scale(1.5);
            margin-top: 19px;
            margin-bottom: 5px;
        }

        .year-text-q3l7n9 {
            font-size: 16px;
            font-weight: 500;
            color: #6c757d;
            transition: color 0.3s ease;
        }

        .year-item-v2c9k5.active .year-text-q3l7n9 {
            color: #333;
            font-weight: 600;
        }

        /* 卡片容器 */
        .card-container-s4d8r2 {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .card-wrapper-w9e5a7 {
            display: flex;
            transition: transform 0.3s ease;
            width: 500%;
        }

        .card-item-b1n6h4 {
            width: 20%;
            padding: 20px;
            background: #fff;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            margin-right: 20px;
            box-sizing: border-box;
            align-self: flex-start;
            height: auto;
            min-height: auto;
        }

        .card-item-b1n6h4:last-child {
            margin-right: 0;
        }

        .event-item-y8k3m1 {
            padding-bottom: 15px;
        }

        .event-item-y8k3m1:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .month-tag-f7r2p6 {
            display: inline-block;
            color: #FABD10;
            border-radius: 16px;
            font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 14px;
color: #FABD10;
            margin-bottom: 8px;
        }

        .event-desc-x5j9l3 {
           font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 12px;
color: #000000;
        }

        /* 滑动指示器 */
        .indicators-c2v8k4 {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }

        .indicator-dot-z9m4q7 {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #dee2e6;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .indicator-dot-z9m4q7.active {
            background: #ffc107;
        }

        /* 移动端优化 */
        @media (max-width: 768px) {
            .k7x9m2 {
                padding: 15px;
            }

            .year-nav-t8h4j6 {
                margin-bottom: 30px;
            }

            .year-text-q3l7n9 {
                font-size: 14px;
            }

            .event-desc-x5j9l3 {
                font-size: 15px;
            }
        }
        .k7x9m211{
            font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 14px;
color: #FABD10;
margin-bottom: 10px;
        }
        .k7x9m2112{
            font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 12px;
color: #000000;
margin-bottom: 10px;
        }
        .k7x9m21221{
            font-family: PingFang SC, PingFang SC;
font-weight: bold;
font-size: 12px;
color: #000000;
margin-bottom: 5px;
        }
        .k7x9m212212{
            font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 10px;
color: #999999;
margin-bottom: 5px;
        }
.container-x7k9m {
            max-width: 400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .settings-list-p3r8w {
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .setting-item-q5t2n {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .setting-item-q5t2n:last-child {
            border-bottom: none;
        }

        .setting-item-q5t2n:hover {
            background-color: #f8f8f8;
        }

        .setting-item-q5t2n:active {
            background-color: #f0f0f0;
        }

        .setting-label-f9h4k {
            font-size: 16px;
            color: #333;
            font-weight: 400;
        }

        .setting-value-m6j8s {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
        }

        .arrow-v2z7e {
            width: 8px;
            height: 8px;
            border-right: 2px solid #c7c7cc;
            border-top: 2px solid #c7c7cc;
            transform: rotate(45deg);
            flex-shrink: 0;
        }

        .logout-section-b4n1l {
            margin-top: auto;
            padding: 40px 16px 60px;
        }

        .logout-btn-c8w3y {
            width: 100%;
            padding: 16px;
            background-color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            color: #333;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .logout-btn-c8w3y:hover {
            background-color: #f8f8f8;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .logout-btn-c8w3y:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* 响应式设计 */
        @media (max-width: 480px) {
            .container-x7k9m {
                max-width: 100%;
            }
            
            .settings-list-p3r8w {
                border-radius: 8px;
            }
            
            .setting-item-q5t2n {
                padding: 14px 16px;
            }
            
            .logout-section-b4n1l {
                padding: 30px 12px 50px;
            }
        }
       /* 你的原始样式 */
        .xk8d9f2l {
            width: 100%;
            overflow-x: hidden;  /* 改为hidden以支持跑马灯 */
            overflow-y: hidden;
            padding: 0 16px;
            -webkit-overflow-scrolling: touch;
            position: relative; /* 为跑马灯定位 */
        }

        .xk8d9f2l::-webkit-scrollbar {
            display: none;
        }

        .q7w3m8n5 {
            display: flex;
            gap: 12px;
            width: max-content;
            padding-bottom: 10px;
            /* 移除了原来的滚动，改用jQuery控制 */
        }

        .p2r5t9k1 {
            background: #ffffff;
            border-radius: 12px;
            padding: 16px;
            min-width: 120px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #e8e8e8;
        }

        .p2r5t9k1:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .m4n8b6v3 {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            font-weight: 500;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .z1x5c7y9 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
            text-align: center;
        }

        .a8s2d4f6 {
            font-size: 12px;
            margin-bottom: 2px;
            text-align: center;
            font-weight: 500;
        }

        .h9j3k5l7 {
            font-size: 11px;
            text-align: center;
            font-weight: 500;
        }

        .w6e4r8t0 {
            color: #ff4d4f;
        }

        .i2o7u1y5 {
            color: #52c41a;
        }

        .lvse {
            color: #60D28F;
        }

        /* 响应式设计 */
        @media (max-width: 480px) {
            .p2r5t9k1 {
                min-width: 100px;
                padding: 14px;
            }
            
            .z1x5c7y9 {
                font-size: 16px;
            }
            
            .m4n8b6v3 {
                font-size: 12px;
            }
        }

        /* 滚动提示 - 保留你的原始样式 */
        .xk8d9f2l::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 20px;
            background: linear-gradient(to right, transparent, rgba(245, 245, 245, 0.8));
            pointer-events: none;
        }

        /* 容器样式 */
        .ticker-section {
            background-color: #EDEEF3;
            padding: 20px 0;
        }

        /* 控制按钮样式 */
        .controls {
            text-align: center;
            margin: 20px 0;
        }

        .control-btn {
            background: #1890ff;
            color: white;
            border: none;
            padding: 8px 16px;
            margin: 0 5px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
        }

        .control-btn:hover {
            background: #40a9ff;
        }

        .status-info {
            margin-top: 10px;
            font-size: 12px;
            color: #666;
        }