
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
    color: #333;
    line-height: 1.6;
    padding-bottom: 70px; /* 为底部悬浮条留出空间 */
}

/* 头部样式 */
header {
    background: linear-gradient(90deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* 给目标元素一个肉眼不可见的伪元素，把锚点上移 */
#consult-form::before {
    content: '';
    display: block;
    height: 90px;        /* 顶部固定条高度，按实际改 */
    margin-top: -90px;
    visibility: hidden;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-img,.logo-img img {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0056b3;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 按钮样式 */
.submit-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 10px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252, #ff7a45);
}

.submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

/* 按钮内容容器 */
.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 主文本样式 */
.main-text {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 计数文本样式 */
.counter-text {
    font-size: 12px;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}
 .form-submitting .main-text {
    animation: pulse 0.8s infinite;
}
/* 动画效果 */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.pulse-animate {
    animation: pulse 0.8s ease;
    display: inline-block;
    will-change: transform;
}
.counter-text {
    transition: transform 0.8s ease;
    display: inline-block;
}

/* 数字高亮样式 */
.counter-text strong {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
/* 按钮样式 */
.cta-button, .submit-btn {
    background: #ff6b00;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    display: inline-block;
}

.cta-button {
    padding: 12px 25px;
}

.cta-button:hover, .submit-btn:hover {
    background: #e55e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}
/* 添加额外CSS动画类 */
.pulse-animate {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/* 宣传条 */
.promo-bar {
    background: linear-gradient(90deg, #ff6b00, #ff8c3a);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.promo-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 8px;
}

.promo-tag {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-tag i {
    font-size: 1.2rem;
}

/* 主视觉区域 */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.85), rgba(0, 61, 130, 0.9)), url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    background: rgba(255, 107, 0, 0.9);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
}

/* 卡片通用样式 */
.channel-card, .guide-item, .policy-card, .why-card, .advantage-card {
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.channel-card:hover, .guide-item:hover, .why-card:hover, .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.2);
}

/* 快速通道 */
.quick-channels {
    background: #fff;
    padding: 50px 0;
}

.channels-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.channel-card {
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    padding: 30px;
    border: 1px solid #d0e3ff;
}

.channel-card h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.channel-card p {
    color: #555;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* 报考指南 */
.guide-section {
    background: #f0f7ff;
    padding: 70px 0;
}

.guide-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.guide-item {
    background: white;
    padding: 25px 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.guide-item:hover {
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.15);
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #0056b3;
    font-size: 1.5rem;
}

.guide-item h4 {
    color: #0056b3;
    margin-bottom: 10px;
}

/* 政策变化 */
.policy-section {
    padding: 70px 0;
    background: linear-gradient(rgba(0, 86, 179, 0.05), rgba(0, 86, 179, 0.05)), url('https://images.unsplash.com/photo-1543269865-cbf427effbad?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
}

.policy-overlay {
    background: rgba(255, 255, 255, 0.92);
    padding: 60px 40px;
    border-radius: 15px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 标题通用样式 */
.section-title, .policy-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.policy-title h2, .section-title h2 {
    font-size: 2rem;
    display: inline-block;
    padding-bottom: 15px;
}

.policy-title h2 {
    color: #d32f2f;
}

.policy-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #d32f2f;
    border-radius: 2px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.policy-card {
    background: #fff;
    padding: 25px;
    border-left: 4px solid #d32f2f;
}

.policy-card h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* 为什么需要学历 */
.why-degree {
    padding: 70px 0;
    background: #fff;
}

.why-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #f0f7ff;
    padding: 30px;
    border: 1px solid #d0e3ff;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.why-card h3 {
    color: #0056b3;
    margin-bottom: 15px;
}

/* 资料汇总 */
.resources-section {
    padding: 70px 0;
    background: #f8f9fc;
}

.resources-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 86, 179, 0.2);
}

.resource-header {
    background: linear-gradient(90deg, #0056b3, #0077e6);
    color: white;
    padding: 20px;
    text-align: center;
}

.resource-body {
    padding: 25px;
    text-align: center;
}

.resource-count {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* 常见问题 */
.faq-section {
    padding: 70px 0;
    background: #fff;
}

.faq-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: #f8f9fc;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid #0056b3;
}

.faq-item:hover {
    background: #f0f7ff;
    transform: translateX(5px);
}

.faq-item h3 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
}

/* 表单样式 */
.lead-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    margin: 40px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-title {
    text-align: center;
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
}
/* 验证码输入组样式 */
.verify-code-group {
    position: relative;
    display: flex;
    gap: 10px;
}

.verify-code-group input {
    flex: 1;
    padding-right: 120px;
}

.send-code-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 110px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.send-code-btn:hover {
    background: #e0e0e0;
}

.send-code-btn:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}
.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* 优势部分 */
.advantages {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    color: #0056b3;
}

.section-title h2 {
    font-size: 2.2rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6b00;
    border-radius: 2px;
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: white;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0056b3;
    font-size: 2rem;
}

.advantage-card h3 {
    margin: 15px 0;
    color: #0056b3;
    font-size: 1.4rem;
}

/* 课程部分 */
.courses {
    background: #f0f7ff;
    padding: 80px 0;
}

.courses-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    color: #0056b3;
    margin-bottom: 15px;
}

.course-features {
    list-style: none;
    margin: 20px 0;
}

.course-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-features li:last-child {
    border-bottom: none;
}

/* 学员评价 */
.testimonials {
    padding: 80px 0;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ddd;
    overflow: hidden;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: #0056b3;
}

/* 底部行动号召 */
.bottom-cta {
    background: linear-gradient(90deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.bottom-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.bottom-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

/* 页脚 */
footer {
    background: #1a2c42;
    color: #a0b1c5;
    padding: 50px 0 20px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0b1c5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #2a3b52;
    font-size: 0.9rem;
}

/* 悬浮元素 */
.floating-menu {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.floating-btn.chat {
    background: #ff6b00;
}

.floating-btn.phone {
    background: #28a745;
}

.floating-btn.wechat {
    background: #09bb07;
    position: relative;
}

.floating-btn.top {
    background: #0056b3;
}

.floating-btn.wechat:hover .wechat-qr {
    display: block;
}

.wechat-qr {
    position: absolute;
    right: 70px;
    top: 0;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: none;
    width: 180px;
    text-align: center;
}

.wechat-qr img {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto 10px;
}

/* 底部悬浮条 */
.fixed-bottom-bar, .bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0056b3, #003d82);
    color: white;
    padding: 15px 0;
    z-index: 998;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.bottom-bar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-bottom-bar {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: all 0.3s ease;
}

.close-bottom-bar:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.bottom-bar-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.countdown-text {
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

.countdown-highlight {
    display: inline-block;
    background: white;
    color: #0056b3;
    min-width: 30px;
    text-align: center;
    padding: 0 5px;
    border-radius: 5px;
    margin: 0 3px;
}

.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,.65);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 9999;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo h1 {
        font-size: 1.4rem; /* 移动端字体调小 */
    }
    
    .contact-header .phone,
    .contact-header .cta-button {
        display: none;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .bottom-bar {
        padding: 6px 0;
        font-size: 16px;
      }
    .bottom-bar .cta-button {
        padding: 8px 16px;
        font-size: 14px;
      }
    .close-bottom-bar {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }
    .main-text {
        font-size: 16px;
    }
    
    .counter-text {
        font-size: 11px;
        margin-top: 2px;
    }
    
    .submit-btn {
        padding: 14px 8px;
    }
    /* 手机端关闭按钮在左侧 */
    .close-bottom-bar {
        left: 10px;
        right: auto;
        width: 25px;
        height: 25px;
        font-size: 18px;
    }
    
    .fixed-bottom-bar {
        padding: 10px;
    }
    
    .fixed-bottom-bar .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    /* 统一悬浮按钮样式 */
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* 统一悬浮菜单位置 */
    .floating-menu {
        bottom: 60px;
        right: 10px;
    }
    
    /* 微信二维码位置调整 */
    .wechat-qr {
        right: 40px;
        top: -10px;
        width: 150px;
    }
    
    .wechat-qr img {
        width: 120px;
        height: 120px;
    }
    
    /* 移动端菜单按钮 */
    .mobile-menu-btn {
        display: flex;
        background: #ff6b00;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        position: fixed;
        bottom: 90px;
        left: 20px;
        z-index: 999;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    /* 添加移动端横向滚动容器样式 */
    .mobile-scroll-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 15px; /* 左右留出空间 */
        scroll-padding: 0 15px;
        scrollbar-width: none; /* 隐藏滚动条 */
    }
      
    .mobile-scroll-container::-webkit-scrollbar {
        display: none; /* 隐藏滚动条 */
    }
      
    .mobile-scroll-container > * {
        flex: 0 0 80%; /* 减小每个元素的宽度，留出空间显示相邻元素 */
        scroll-snap-align: center; /* 改为居中对齐 */
        /**margin: 0 5px;**/ /* 添加左右间距 */
    }
      
    .mobile-scroll-container > *:last-child {
        margin-right: 0;
    }
      
    /* 默认显示第二个块 */
    .mobile-scroll-container {
        scroll-snap-type: x proximity;
    }
      
    /* 隐藏底部快速链接 */
      .hide-on-mobile {
        display: none;
    }
}