/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
.z1c792body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 容器 */
.z1c792container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 头部导航 */
.z1c792header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.z1c792navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.z1c792logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.z1c792logo h1 {
    margin: 0;
}

.z1c792nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z1c792nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.z1c792nav-link:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
}

.z1c792mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.z1c792menu-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* 主横幅区域 */
.z1c792hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.z1c792hero-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.z1c792hero-content {
    flex: 1;
    text-align: left;
    z-index: 2;
}

.z1c792hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.z1c792hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatAnimation 6s ease-in-out infinite;
}

.z1c792hero-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.z1c792hero-title {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.z1c792hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.z1c792hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.z1c792hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.z1c792highlight-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.z1c792hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 按钮样式 */
.z1c792btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.z1c792btn-primary {
    background-color: #fff;
    color: #667eea;
}

.z1c792btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.z1c792btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.z1c792btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.z1c792btn-download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-top: 1rem;
}

.z1c792btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 区域标题 */
.z1c792section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.z1c792section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.z1c792section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.z1c792section-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.z1c792section-intro-light {
    color: rgba(255, 255, 255, 0.95);
}

/* oe下载区域 */
.z1c792download-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.z1c792download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.z1c792download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z1c792download-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.08);
    display: flex;
    flex-direction: column;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.z1c792download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.z1c792download-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.z1c792download-card:hover::before {
    transform: scaleX(1);
}

.z1c792download-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.z1c792download-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.z1c792download-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
    font-size: 0.95rem;
}

.z1c792download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.z1c792feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 平台优势 */
.z1c792features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 50%, #e8f0fe 100%);
    position: relative;
}

.z1c792features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.z1c792features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z1c792feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    z-index: 1;
}

.z1c792feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.z1c792feature-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    border-color: transparent;
}

.z1c792feature-card:hover::after {
    opacity: 0.1;
}

.z1c792feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.z1c792feature-card:hover .z1c792feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.z1c792feature-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.z1c792feature-desc {
    color: #666;
    line-height: 1.8;
    text-align: left;
    font-size: 0.95rem;
}

/* 关于我们 */
.z1c792about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.z1c792about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.z1c792about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.z1c792about-section .z1c792section-title {
    color: #fff;
}

.z1c792about-section .z1c792about-paragraph {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.z1c792about-content {
    max-width: 900px;
    margin: 0 auto;
}

.z1c792about-text {
    text-align: center;
}

.z1c792about-paragraph {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
}

.z1c792stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.z1c792stat-item {
    text-align: center;
}

.z1c792stat-item {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.z1c792stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.z1c792stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z1c792stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 服务特色 */
.z1c792services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #fff;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.z1c792services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    pointer-events: none;
}

.z1c792services-section .z1c792section-title,
.z1c792services-section .z1c792section-subtitle {
    color: #fff;
}

.z1c792services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.z1c792service-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.z1c792service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.z1c792service-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.z1c792service-item:hover::before {
    left: 100%;
}

.z1c792service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #fff;
}

.z1c792service-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: left;
    font-size: 0.95rem;
}

/* 页脚 */
.z1c792footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.z1c792footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.z1c792footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.z1c792footer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.z1c792footer-subtitle {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.z1c792footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.z1c792footer-links {
    list-style: none;
}

.z1c792footer-links li {
    margin-bottom: 0.5rem;
}

.z1c792footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.z1c792footer-link:hover {
    color: #fff;
}

.z1c792footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.z1c792copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.z1c792copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.z1c792copyright a:hover {
    color: #fff;
}

/* 通用广告容器 */
.z1c792ad-container {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

/* 响应式设计 */
/* 平板设备 (1024px以下) */
@media (max-width: 1024px) {
    .z1c792hero-wrapper {
        gap: 2.5rem;
    }
    
    .z1c792hero-title {
        font-size: 2.5rem;
    }
    
    .z1c792hero-subtitle {
        font-size: 1.3rem;
    }
    
    .z1c792download-grid,
    .z1c792features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .z1c792services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动设备 (768px以下) */
@media (max-width: 768px) {
    .z1c792container {
        padding: 0 15px;
    }
    
    .z1c792nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #667eea;
        display: none;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .z1c792nav.z1c792nav-active {
        display: flex;
    }

    .z1c792nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .z1c792nav-item {
        width: 100%;
    }

    .z1c792nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .z1c792mobile-menu-toggle {
        display: flex;
    }
    
    .z1c792logo-text {
        font-size: 1.5rem;
    }

    .z1c792hero-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .z1c792hero-content {
        text-align: center;
    }

    .z1c792hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .z1c792hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .z1c792hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .z1c792hero-img {
        max-width: 80%;
        border-radius: 15px;
    }
    
    .z1c792hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .z1c792btn {
        width: 100%;
        max-width: 300px;
    }

    .z1c792hero-highlights {
        flex-direction: column;
        align-items: center;
    }

    .z1c792highlight-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .z1c792section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .z1c792download-desc,
    .z1c792feature-desc,
    .z1c792service-desc {
        font-size: 0.9rem;
    }

    .z1c792section-title {
        font-size: 2rem;
    }

    .z1c792section-subtitle {
        font-size: 1rem;
    }

    .z1c792download-grid,
    .z1c792features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z1c792hero {
        padding: 40px 0;
    }

    .z1c792download-section,
    .z1c792features-section,
    .z1c792about-section,
    .z1c792services-section {
        padding: 50px 0;
    }
    
    .z1c792download-card,
    .z1c792feature-card {
        padding: 2rem 1.5rem;
    }
    
    .z1c792service-item {
        padding: 2rem 1.5rem;
    }
    
    .z1c792section-header {
        margin-bottom: 2rem;
    }

    .z1c792stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .z1c792stat-item {
        padding: 1rem;
    }
    
    .z1c792stat-number {
        font-size: 2rem;
    }
    
    .z1c792feature-card:hover {
        transform: translateY(-8px);
    }
    
    .z1c792download-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .z1c792service-item:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .z1c792services-list {
        grid-template-columns: 1fr;
    }

    .z1c792nav-item--mega .z1c792nav-dropdown {
        display: block !important;
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        border-radius: 0;
        min-width: 0;
        max-width: none;
        margin: 0.25rem 0 0.5rem 0;
        padding: 0.25rem 0;
    }

    .z1c792nav-item--mega .z1c792nav-dd a {
        color: #fff;
        padding-left: 1.25rem;
    }

    .z1c792nav-item--mega .z1c792nav-dd a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
    }

    .z1c792footer-content {
        grid-template-columns: 1fr;
    }
}

/* 小屏移动设备 (480px以下) */
@media (max-width: 480px) {
    .z1c792container {
        padding: 0 10px;
    }
    
    .z1c792logo-text {
        font-size: 1.3rem;
    }
    
    .z1c792hero-wrapper {
        gap: 1.2rem;
    }
    
    .z1c792hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }

    .z1c792hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .z1c792hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .z1c792hero-img {
        max-width: 90%;
        border-radius: 12px;
    }
    
    .z1c792hero {
        padding: 30px 0;
    }

    .z1c792section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .z1c792section-subtitle {
        font-size: 0.9rem;
    }
    
    .z1c792section-intro {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .z1c792stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .z1c792stat-item {
        padding: 0.8rem;
    }
    
    .z1c792stat-number {
        font-size: 1.8rem;
    }
    
    .z1c792stat-label {
        font-size: 1rem;
    }

    .z1c792hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

    .z1c792btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .z1c792download-card,
    .z1c792feature-card,
    .z1c792service-item {
        padding: 1.5rem 1rem;
    }
    
    .z1c792download-title,
    .z1c792feature-title,
    .z1c792service-title {
        font-size: 1.1rem;
    }
    
    .z1c792download-desc,
    .z1c792feature-desc,
    .z1c792service-desc {
        font-size: 0.85rem;
    }
    
    .z1c792download-section,
    .z1c792features-section,
    .z1c792about-section,
    .z1c792services-section {
        padding: 40px 0;
    }
    
    .z1c792about-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .z1c792footer-content {
        gap: 1.5rem;
    }
    
    .z1c792footer-title {
        font-size: 1.1rem;
    }
    
    .z1c792footer-text {
        font-size: 0.85rem;
    }
}

/* ---------- Logo 与导航扩展 ---------- */
.z1c792logo-link {
    color: inherit;
    text-decoration: none;
}

.z1c792logo-link:hover {
    opacity: 0.9;
}

.z1c792nav-item.z1c792this .z1c792nav-link,
.z1c792nav-item.z1c792this > .z1c792nav-link {
    background-color: rgba(255, 255, 255, 0.18);
}

.z1c792nav-item--mega {
    position: relative;
}

.z1c792nav-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    max-width: min(100vw - 40px, 360px);
    background: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    z-index: 1200;
}

.z1c792nav-item--mega:hover .z1c792nav-dropdown,
.z1c792nav-item--mega:focus-within .z1c792nav-dropdown {
    display: block;
}

.z1c792nav-child {
    margin: 0;
    padding: 0;
    list-style: none;
}

.z1c792nav-dd {
    margin: 0;
}

.z1c792nav-dd a {
    display: block;
    padding: 0.55rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
}

.z1c792nav-dd a:hover {
    background: #f3f4ff;
    color: #667eea;
}

/* ---------- 首页：常见问题 ---------- */
.z1c792faq-section {
    padding: 72px 0;
    background: #fff;
}

.z1c792faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.z1c792faq-item {
    border: 1px solid #e6e8f0;
    border-radius: 12px;
    background: #fafbff;
    overflow: hidden;
}

.z1c792faq-q {
    cursor: pointer;
    font-weight: 600;
    padding: 1rem 1.25rem;
    list-style: none;
}

.z1c792faq-q::-webkit-details-marker {
    display: none;
}

.z1c792faq-item[open] {
    border-color: #c8d0ff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12);
}

.z1c792faq-a {
    padding: 0 1.25rem 1.1rem;
    color: #555;
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ---------- 首页：文章资讯网格 ---------- */
.z1c792home-articles-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.z1c792home-articles-more-wrap {
    margin-top: 1rem;
}

.z1c792btn-ghost {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.z1c792btn-ghost:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #5a6fd6;
}

.z1c792home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.z1c792home-article-card {
    min-width: 0;
}

.z1c792home-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eceff8;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.z1c792home-article-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.15);
}

.z1c792home-article-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef0fb;
}

.z1c792home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z1c792home-article-title {
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 600;
    color: #2b2f3a;
    padding: 0.75rem 0.85rem 1rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- 内页通用 ---------- */
.z1c792inner-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1.75rem 0 1.25rem;
}

.z1c792inner-hero--article {
    padding-bottom: 1.75rem;
}

.z1c792breadcrumb {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.6;
    flex-wrap: wrap;
}

.z1c792breadcrumb a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.z1c792breadcrumb a:hover {
    border-bottom-color: #fff;
}

.z1c792breadcrumb-sep {
    margin: 0 0.35rem;
    opacity: 0.7;
}

.z1c792breadcrumb-current {
    opacity: 0.85;
}

.z1c792slide-slot {
    margin-top: 1rem;
}

.z1c792page-main {
    background: #f5f5f5;
}

.z1c792inner-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
    padding: 2rem 0 3.5rem;
    align-items: start;
}

.z1c792article-main,
.z1c792list-main {
    min-width: 0;
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.75rem 2rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.z1c792article-header {
    margin-bottom: 1.25rem;
}

.z1c792article-title {
    font-size: 1.85rem;
    line-height: 1.3;
    color: #222;
    margin-bottom: 0.75rem;
}

.z1c792article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: #666;
}

.z1c792article-meta a {
    color: #667eea;
    text-decoration: none;
}

.z1c792article-litpic {
    margin-bottom: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    background: #eef0fb;
}

.z1c792article-litpic img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.z1c792article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    word-break: break-word;
}

.z1c792article-body img {
    max-width: 100%;
    height: auto;
}

.z1c792article-gallery {
    margin-top: 1.5rem;
}

.z1c792article-figure {
    margin: 1rem 0;
}

.z1c792article-figure img {
    max-width: 100%;
    border-radius: 10px;
}

.z1c792article-figure figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.35rem;
}

.z1c792diyfield {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f9f9ff;
    border-radius: 10px;
    border: 1px dashed #d6daf5;
}

.z1c792meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 0;
    padding: 0;
}

.z1c792tagitem a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #eef0fb;
    color: #4a4f63;
    text-decoration: none;
    font-size: 0.85rem;
}

.z1c792tagitem a:hover {
    background: #667eea;
    color: #fff;
}

.z1c792prenext {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
}

.z1c792prenext--native {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem 1.5rem;
}

.z1c792prenext--native > * {
    flex: 1 1 45%;
    min-width: 0;
}

.z1c792prenext a {
    color: #667eea;
    text-decoration: none;
}

.z1c792like-section {
    margin-top: 2rem;
}

.z1c792like-title {
    margin-bottom: 1rem;
}

.z1c792like-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.z1c792like-link {
    display: flex;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    padding: 0.65rem;
    border-radius: 10px;
    border: 1px solid #eceff8;
    transition: background 0.2s ease;
}

.z1c792like-link:hover {
    background: #f7f8ff;
}

.z1c792like-thumb img {
    width: 96px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.z1c792like-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.z1c792like-item-title {
    font-weight: 600;
    color: #222;
}

.z1c792like-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.z1c792sql-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.z1c792sql-list {
    list-style: disc;
    padding-left: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.z1c792sql-list a {
    color: #667eea;
    text-decoration: none;
}

/* ---------- 列表页 ---------- */
.z1c792list-header {
    margin-bottom: 1.25rem;
}

.z1c792list-title {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.z1c792list-intro {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.z1c792channelart-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.z1c792chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #eef0fb;
    color: #4a4f63;
    text-decoration: none;
    font-size: 0.88rem;
    border: 1px solid #e0e4fb;
}

.z1c792chip:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

.z1c792chip--parent a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.z1c792list-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.z1c792list-card-link {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 1.1rem;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border: 1px solid #eceff8;
    border-radius: 14px;
    background: #fafbff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.z1c792list-card-link:hover {
    box-shadow: 0 10px 26px rgba(102, 126, 234, 0.12);
    transform: translateY(-2px);
}

.z1c792list-card-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #eef0fb;
    min-height: 120px;
}

.z1c792list-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 120px;
}

.z1c792list-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.4rem;
    display: block;
}

.z1c792list-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.45rem;
}

.z1c792list-card-desc {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
    display: block;
}

.z1c792pagebar {
    margin-top: 2rem;
}

.z1c792pages .z1c792pagelist,
.z1c792pages .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.z1c792pages .z1c792pagelist li,
.z1c792pages .pagelist li {
    list-style: none;
}

.z1c792pages .z1c792pagelist a,
.z1c792pages .pagelist a {
    color: #667eea;
    text-decoration: none;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
}

.z1c792pages .z1c792pagelist a:hover,
.z1c792pages .pagelist a:hover {
    background: #eef0fb;
}

/* ---------- 侧栏 ---------- */
.z1c792sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.z1c792sidebar-block {
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1rem 1.1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eceff8;
}

.z1c792sidebar-title {
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
    color: #222;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eef0fb;
}

.z1c792sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-height: none;
}

.z1c792sidebar-link {
    text-decoration: none;
    color: #333;
    font-size: 0.88rem;
    line-height: 1.45;
}

.z1c792sidebar-link:hover {
    color: #667eea;
}

.z1c792sidebar-link--thumb {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}

.z1c792sidebar-thumb img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.z1c792sidebar-text {
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z1c792meta-tags--sidebar {
    margin: 0;
}

.z1c792sidebar-block--muted {
    background: #fafbff;
}

.z1c792sidebar-note {
    font-size: 0.8rem;
    color: #888;
    margin: 0 0 0.5rem;
}

.z1c792sidebar-type {
    margin: 0 0 0.75rem;
}

.z1c792btn-sidebar {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
}

.z1c792sidebar-channel {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
}

.z1c792sidebar-channel a {
    color: #667eea;
    text-decoration: none;
}

.z1c792city-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
}

.z1c792city-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
}

.z1c792city-list a:hover {
    color: #fff;
}

.z1c792footer-links--columns .z1c792footer-nav {
    margin-bottom: 0.35rem;
}

.z1c792footer-mail {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.clear {
    clear: both;
}

@media (max-width: 1100px) {
    .z1c792home-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .z1c792inner-layout {
        grid-template-columns: 1fr;
    }

    .z1c792sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .z1c792home-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .z1c792list-card-link {
        grid-template-columns: 1fr;
    }

    .z1c792list-card-thumb {
        min-height: 180px;
    }

    .z1c792prenext--native {
        flex-direction: column;
    }

    .z1c792prenext--native > * {
        flex: 1 1 auto;
    }

    .z1c792article-title {
        font-size: 1.45rem;
    }

    .z1c792faq-section,
    .z1c792home-articles-section {
        padding: 50px 0;
    }
}

@media (max-width: 520px) {
    .z1c792home-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* 打印样式 */
@media print {
    .z1c792header,
    .z1c792footer,
    .z1c792hero-buttons,
    .z1c792btn {
        display: none;
    }

    .z1c792hero,
    .z1c792download-section,
    .z1c792features-section,
    .z1c792about-section,
    .z1c792services-section,
    .z1c792faq-section,
    .z1c792home-articles-section {
        page-break-inside: avoid;
    }
}

