* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #eeeeee;
    color: #333;
}

/* 头部样式 */
.header {
    background-color: #EF4F36;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-name {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.company-subtitle {
    color: rgba(238, 238, 238, 0.85);
    font-size: 16px;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    gap: 5px;
    background: rgba(238, 238, 238, 0.1);
    border-radius: 10px;
    padding: 5px;
}

.nav-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-tab:hover {
    background: rgba(238, 238, 238, 0.2);
}

.nav-tab.active {
    background: white;
    color: #EF4F36;
}

.nav-tab i {
    font-size: 18px;
}

/* 主要内容区域 */
.main-content {
    flex: 1;
    padding: 20px 20px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* 首页样式 */
.logotitle {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3a86ff, #6f42c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    margin: 20px 0 10px;
    text-align: center;
}

.tagline {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: center;
}

.hero {
    text-align: center;
    margin: 40px 0 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222222;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555555;
}

/* 二维码区域样式 */
.qr-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #EEEEEE 100%);
    border-radius: 20px;
    padding: 50px 20px;
    margin: 60px auto;
    max-width: 1000px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3a86ff, #6f42c1);
}

.qr-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222222;
}

.qr-section > p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.qr-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 30px;
}

.qr-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.qr-code {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.qr-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3a86ff;
}

.qr-desc {
    color: #666666;
    font-size: 0.95rem;
}

/* 故事内容样式 */
.story {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
    max-width: 880px;
    width: 100%;
}

.story-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 35px;
    position: relative;
    border-left: 4px solid;
}

.origin {
    border-left-color: #ff6b6b;
}

.creation {
    border-left-color: #4cc9f0;
}

.product {
    border-left-color: #72efdd;
}

.story-section h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222222;
}

.story-section p {
    color: #444444;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.story-section p:last-child {
    margin-bottom: 0;
}

.icon {
    font-size: 1.4rem;
}

/* 召唤行动样式 */
.cta {
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(58, 134, 255, 0.1);
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #222222;
}

.cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #444444;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(90deg, #3a86ff, #6f42c1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.2);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
}

.highlight {
    color: #3a86ff;
    font-weight: 600;
}

.accent {
    color: #6f42c1;
}

/* 功能页面样式 */
.features-page {
    padding: 20px;
}

.page-title {
    font-size: 2.5rem;
    color: #3a86ff;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #EF4F36;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 15px;
}

/* 说明页面样式 */
.instructions-page {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.instruction-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.instruction-section h3 {
    color:#3a86ff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instruction-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-list {
    list-style: none;
    padding-left: 0;
}

.step-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.step-list li:last-child {
    border-bottom: none;
}

.step-number {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #3a86ff;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    margin-right: 10px;
}

/* 下载页面样式 */
.download-page {
    padding: 20px;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-icon {
    font-size: 3rem;
    color: #3a86ff;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.version-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.version-info li {
    padding: 5px 0;
    color: #666;
}

/* 底部样式 */
.footer {
    background-color: #979797;
    min-height: 3cm;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    color: white;
    width: 100%;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
}

.footer-copyright {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 13px;
    color: rgba(238, 238, 238, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 3px;
    }
    
    .nav-tab {
        padding: 10px 18px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .logo-container {
        width: 100%;
    }
    
    .company-name {
        font-size: 22px;
    }
    
    .company-subtitle {
        font-size: 14px;
    }
    
    .nav-menu {
        width: 100%;
        overflow-x: auto;
        padding: 5px;
    }
    
    .nav-tab {
        padding: 10px 15px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .nav-tab span:not(.nav-tab i) {
        display: none;
    }
    
    .nav-tab i {
        font-size: 20px;
    }
    
    .logotitle {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p, .story-section p, .cta p {
        font-size: 1.05rem;
    }
    
    .qr-section {
        padding: 30px 15px;
        margin: 40px auto;
    }
    
    .qr-container {
        gap: 40px;
    }
    
    .qr-code {
        width: 200px;
        height: 200px;
    }
    
    .qr-code img {
        width: 160px;
        height: 160px;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .story-section {
        padding: 25px;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 12px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .logotitle {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .qr-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .qr-item {
        width: 100%;
    }
    
    .nav-tab {
        padding: 8px 12px;
    }
    
    .footer {
        padding: 15px 20px;
    }
}
/* 选项卡式图片展示样式 */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #EEEEEE 100%);
    border-radius: 20px;
    padding: 50px 20px;
    margin: 60px auto;
    max-width: 1200px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3a86ff, #6f42c1);
}

.gallery-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222222;
}

.gallery-section > p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 选项卡按钮样式 */
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.tab-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #eaeaea;
    border-radius: 30px;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: #3a86ff;
    color: #3a86ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 134, 255, 0.1);
}

.tab-btn.active {
    background: linear-gradient(90deg, #3a86ff, #6f42c1);
    border-color: #3a86ff;
    color: white;
    box-shadow: 0 4px 12px rgba(58, 134, 255, 0.2);
}

/* 选项卡内容样式 */
.tab-contents {
    margin-bottom: 40px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content-inner {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.tab-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tab-image:hover img {
    transform: scale(1.05);
}
.tab-image1 {
    flex: 1;
    min-width: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-image1 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tab-image1:hover img {
    transform: scale(1.05);
}
.tab-text {
    flex: 1;
    min-width: 300px;
}

.tab-text h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.tab-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3a86ff, #6f42c1);
    border-radius: 2px;
}

.tab-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.feature-list i {
    color: #3a86ff;
    font-size: 1.2rem;
}

/* 下载提示 */
.download-hint {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.05) 0%, rgba(111, 66, 193, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(58, 134, 255, 0.1);
}

.download-hint p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .tab-buttons {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .tab-content-inner {
        gap: 30px;
        padding: 30px;
    }
    .tab-content-inner {
        gap: 30px;
        padding: 10px;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        
        
        h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .tagline {
            font-size: 1.2rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        /* 主内容区 */
        .main-content {
            background-color: #EEEEEE;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
        }
        
        .intro-section {
            margin-bottom: 30px;
        }
        
        .highlight-box {
            background-color: #fff8f7;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 5px solid #EF4F36;
        }
        
        h2 {
            color: #3282F6;
            margin-bottom: 15px;
            font-size: 1.6rem;
        }
        
        h3 {
            color: #3282F6;
            margin: 20px 0 10px 0;
            font-size: 1.3rem;
        }
        
        .emoji-heading {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 10px;
            padding-left: 5px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .benefit-card {
            background-color: #EEEEEE;
            padding: 20px;
            border-radius: 10px;
            border-top: 4px solid #EF4F36;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(239, 79, 54, 0.1);
        }
        
        .benefit-card h4 {
            color: #EF4F36;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .benefit-card p {
            color: #666;
        }
        
        .target-audience {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        
        .audience-badge {
            background-color: #fff0ee;
            color: #EF4F36;
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: 1px solid #ffe0dd;
        }
        
        .audience-badge:hover {
            background-color: #ffe0dd;
            transform: scale(1.05);
        }
        
        /* 倒计时样式 */
        .countdown-container {
            text-align: center;
            padding: 20px;
            background-color: #fff8f7;
            border-radius: 12px;
            margin: 25px 0;
            border: 2px dashed #EF4F36;
        }
        
        .countdown-text {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #EF4F36;
            font-weight: 600;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .countdown-value {
            background-color: #EF4F36;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            padding: 10px 15px;
            border-radius: 8px;
            min-width: 70px;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            margin-top: 5px;
            color: #666;
        }
        
        /* CTA按钮 */
        .cta-section {
            text-align: center;
            margin: 30px 0;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, #EF4F36, #e6392b);
            color: white;
            padding: 18px 40px;
            font-size: 1.3rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            margin: 15px 0;
            box-shadow: 0 5px 15px rgba(239, 79, 54, 0.3);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(239, 79, 54, 0.4);
            background: linear-gradient(to right, #e6392b, #EF4F36);
        }
        
        .cta-note {
            font-size: 0.9rem;
            color: #999;
            margin-top: 10px;
        }
        
        /* 等级展示 */
        .levels-section {
            margin: 30px 0;
        }
        
        .levels-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        
        .level-item {
            width: 80px;
            text-align: center;
            padding: 10px 5px;
            border-radius: 8px;
            background-color: #f8f8f8;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }
        
        .level-item.active {
            background: linear-gradient(135deg, #EF4F36 0%, #e6392b 100%);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(239, 79, 54, 0.3);
        }
        
        .level-num {
            font-size: 1.8rem;
            font-weight: bold;
            color: #EF4F36;
        }
        
        .active .level-num {
            color: white;
        }
        
        .level-name {
            font-size: 0.8rem;
            margin-top: 5px;
        }
        
        .active .level-name {
            color: white;
        }
        
        /* 合规声明 */
        .compliance {
            background-color: #fff8f7;
            border-left: 4px solid #EF4F36;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            font-size: 0.85rem;
            color: #666;
        }

        
        .hashtags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        
        .hashtag {
            background-color: #f8f8f8;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #666;
            transition: all 0.3s ease;
        }
        
        .hashtag:hover {
            background-color: #ffe0dd;
            color: #EF4F36;
            transform: translateY(-2px);
        }
         .status {
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            display: none;
            font-size: 1rem;
        }
        
        .status.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }
        
        .status.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }
        
        .status.processing {
            background-color: #cce5ff;
            color: #004085;
            border: 1px solid #b8daff;
            display: block;
        }
        
        
        
         /* 表格样式 */
        .services-table-container {
            overflow-x: auto;
            margin-bottom: 30px;
            border-radius: 8px;
            border: 1px solid #eaeff5;
        }
        
        .services-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 500px;
        }
        
        .services-table th {
            background-color: #1a3a5f;
            color: white;
            font-weight: 500;
            text-align: left;
            padding: 15px 10px;
            border-right: 1px solid #2d5a9a;
        }
        
        .services-table th:last-child {
            border-right: none;
        }
        
        .services-table td {
            padding: 12px 10px;
            border-bottom: 1px solid #eaeff5;
            vertical-align: top;
        }
        
        .services-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .services-table tr:hover {
            background-color: #f0f7ff;
        }
        
        .service-name {
            font-weight: 600;
            color: #1a3a5f;
        }
        
        .service-content {
            color: #555;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .service-level {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        
        .level-basic {
            background-color: #e8f4ff;
            color: #2d5a9a;
        }
        
        .level-standard {
            background-color: #e8f8f0;
            color: #0a8f4e;
        }
        
        .level-premium {
            background-color: #fef2e8;
            color: #e67e22;
        }
        
        .level-enterprise {
            background-color: #f9e8ff;
            color: #8e44ad;
        }
        
        .service-period {
            font-size: 14px;
            color: #666;
        }
        
        .service-price {
            font-weight: 600;
            color: #c0392b;
        }
        
        .service-current-price {
            font-weight: 700;
            color: #e74c3c;
            font-size: 16px;
        }
        
        .contact-note {
            background-color: #f0f7ff;
            border-left: 4px solid #2d5a9a;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-top: 30px;
        }
        
        .contact-note h3 {
            color: #1a3a5f;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .contact-note p {
            color: #555;
            margin-bottom: 5px;
        }
        
        
        
/* 缩略图样式 */
.qrcode-icon {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.qrcode-icon:hover {
    transform: scale(1.05);
}

.qrcode-thumbnail {
    width: 105px;
    height: 136px;
    object-fit: cover; /* 或使用 contain 根据需求 */
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 模态框样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 10;
}

.close-btn:hover {
    color: #333;
    background-color: #f5f5f5;
    transform: scale(1.1);
}

.image-container {
    text-align: center;
    padding: 10px;
}

.modal-img {
    max-width: 700px;
    max-height: 700px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto 15px;
}

.modal-info {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.image-size {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .modal-content {
        padding: 15px;
        width: 95vw;
    }
    
    .modal-img {
        max-width: 90vw;
        max-height: 60vh;
    }
}