/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.ze2761container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.ze2761header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.ze2761header .ze2761container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 16px;
}

.ze2761logo {
    flex-shrink: 0;
}

.ze2761logo h1 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #1a73e8;
    line-height: 1.3;
}

.ze2761main-nav {
    flex: 1;
    min-width: 0;
}

.ze2761main-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    gap: 4px 14px;
}

.ze2761main-nav li {
    margin-left: 0;
}

.ze2761main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9em;
    white-space: nowrap;
    transition: color 0.3s;
}

.ze2761main-nav a:hover {
    color: #1a73e8;
}

/* 主要内容区域 */
main {
    margin-top: 80px;
}

/* 英雄区域 */
.ze2761hero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}

.ze2761hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    align-items: center;
}

.ze2761hero-text {
    max-width: 560px;
    min-width: 0;
}

.ze2761hero-text h2 {
    font-size: clamp(1.6em, 3.5vw, 2.4em);
    margin-bottom: 16px;
    line-height: 1.35;
    word-break: break-word;
}

.ze2761hero-text p {
    font-size: clamp(0.95em, 1.8vw, 1.1em);
    margin-bottom: 14px;
    opacity: 0.9;
}

.ze2761hero-intro {
    font-size: 0.95em;
    margin-bottom: 20px;
    opacity: 0.85;
    line-height: 1.65;
}

.ze2761section-desc {
    text-align: center;
    color: #666;
    font-size: 1em;
    margin: -30px auto 40px;
    max-width: 720px;
    line-height: 1.7;
}

.ze2761hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.ze2761hero-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.ze2761hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* 按钮样式 */
.ze2761btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin: 0 10px;
}

.ze2761btn-primary {
    background-color: #fff;
    color: #1a73e8;
}

.ze2761btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.ze2761btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 特性区域 */
.ze2761features {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.ze2761features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #1a73e8;
}

.ze2761features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.ze2761feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    position: relative;
}

.ze2761feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #1a73e8;
}

.ze2761feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #0d47a1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ze2761feature-card:hover::before {
    opacity: 1;
}

.ze2761feature-header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ze2761feature-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.ze2761feature-header h3 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
}

.ze2761feature-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ze2761feature-body p {
    color: #666;
    font-size: 1em;
    margin-bottom: 15px;
    text-align: center;
}

.ze2761feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.ze2761feature-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #333;
    font-size: 0.95em;
}

.ze2761list-icon {
    color: #1a73e8;
    margin-right: 10px;
    font-weight: bold;
}

/* 统计数据区域 */
.ze2761statistics {
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
    color: white;
    padding: 60px 0;
}

.ze2761stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.ze2761stat-item h3 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}

.ze2761stat-item p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* 新手指南 */
.ze2761guide {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ze2761guide h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
    color: #1a73e8;
}

.ze2761guide-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.ze2761guide-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ze2761guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.ze2761guide-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #1a73e8;
}

.ze2761guide-card h3 {
    color: #1a73e8;
    margin-bottom: 15px;
    font-size: 1.4em;
    text-align: center;
}

.ze2761guide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ze2761guide-content p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    flex: 1;
}

.ze2761guide-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze2761guide-steps-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.ze2761guide-steps-list li:hover {
    background: #e8f0fe;
}

.ze2761guide-steps-list .step-number {
    width: 30px;
    height: 30px;
    background: #1a73e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9em;
    font-weight: bold;
    flex-shrink: 0;
}

.ze2761guide-steps-list li span:last-child {
    flex: 1;
    font-size: 0.95em;
    color: #333;
}

.ze2761guide-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ze2761tip-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ze2761tip-item:hover {
    transform: translateY(-3px);
}

.ze2761tip-icon {
    font-size: 1.8em;
    margin-right: 15px;
}

.ze2761tip-content h4 {
    color: #1a73e8;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.ze2761tip-content p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

/* 版本信息 */
.ze2761version-info {
    margin: 15px 0;
    font-size: 0.9em;
    color: #666;
}

.ze2761version-info span {
    display: block;
    margin: 5px 0;
}

/* FAQ部分样式更新 */
.ze2761faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ze2761faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
    color: #1a73e8;
}

.ze2761faq-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.ze2761faq-category {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ze2761faq-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.ze2761category-header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.ze2761category-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.ze2761category-header h3 {
    margin: 0;
    font-size: 1.4em;
}

.ze2761faq-list {
    padding: 20px;
}

.ze2761faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.ze2761faq-item:hover {
    background: #e8f0fe;
}

.ze2761faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.ze2761question-icon {
    background: #1a73e8;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.ze2761faq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1em;
    line-height: 1.4;
}

.ze2761faq-answer {
    display: flex;
    align-items: flex-start;
    padding-left: 34px;
}

.ze2761answer-icon {
    background: #4caf50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.ze2761faq-answer p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.ze2761faq-contact {
    margin-top: 40px;
    text-align: center;
}

.ze2761contact-card {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.ze2761contact-card:hover {
    transform: translateY(-3px);
}

.ze2761contact-icon {
    font-size: 2.5em;
    margin-right: 20px;
}

.ze2761contact-content h4 {
    color: #1a73e8;
    margin: 0 0 5px;
    font-size: 1.2em;
}

.ze2761contact-content p {
    color: #666;
    margin: 0 0 15px;
}

.ze2761contact-content .ze2761btn {
    padding: 10px 25px;
}

/* 响应式设计更新 */
@media (max-width: 1200px) {
    .ze2761faq-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ze2761faq {
        padding: 40px 0;
    }
    
    .ze2761faq-container {
        grid-template-columns: 1fr;
    }
    
    .ze2761category-header {
        padding: 15px;
    }
    
    .ze2761faq-list {
        padding: 15px;
    }
    
    .ze2761contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .ze2761contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .ze2761faq h2 {
        font-size: 1.8em;
    }
    
    .ze2761faq-item {
        padding: 12px;
    }
    
    .ze2761faq-question h4 {
        font-size: 1em;
    }
    
    .ze2761faq-answer p {
        font-size: 0.9em;
    }
}

@media (max-width: 992px) {
    .ze2761features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .ze2761features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .ze2761guide-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ze2761guide-tips {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ze2761features {
        padding: 40px 0;
    }

    .ze2761features h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .ze2761features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ze2761feature-header {
        padding: 15px;
    }

    .ze2761feature-header h3 {
        font-size: 1.3em;
    }

    .ze2761feature-body {
        padding: 15px;
    }

    .ze2761guide-card {
        padding: 20px;
    }
    
    .ze2761guide-icon {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .ze2761features h2 {
        font-size: 1.6em;
    }

    .ze2761feature-card {
        margin: 0 10px;
    }
}

/* 下载中心样式 */
.ze2761download-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ze2761download-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
    color: #1a73e8;
}

.ze2761download-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.ze2761download-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.ze2761download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.ze2761download-header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.ze2761download-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.ze2761download-header h3 {
    margin: 0;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.ze2761download-subtitle {
    opacity: 0.9;
    font-size: 1.1em;
}

.ze2761download-content {
    padding: 30px;
}

.ze2761version-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.ze2761version-item {
    text-align: center;
}

.ze2761version-label {
    display: block;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.ze2761version-value {
    color: #1a73e8;
    font-weight: 600;
    font-size: 1.1em;
}

.ze2761download-features {
    margin-bottom: 25px;
}

.ze2761download-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze2761download-features li {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.ze2761download-features li:hover {
    background: #e8f0fe;
}

.ze2761feature-icon {
    color: #1a73e8;
    margin-right: 10px;
    font-weight: bold;
}

.ze2761download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ze2761download-buttons .ze2761btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
}

.ze2761download-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ze2761tip-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ze2761tip-card:hover {
    transform: translateY(-3px);
}

.ze2761tip-icon {
    font-size: 1.8em;
    margin-right: 15px;
}

.ze2761tip-content h4 {
    color: #1a73e8;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.ze2761tip-content p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

/* 下载中心响应式设计 */
@media (max-width: 1200px) {
    .ze2761download-container {
        grid-template-columns: 1fr;
    }
    
    .ze2761download-tips {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ze2761download-section {
        padding: 40px 0;
    }
    
    .ze2761download-header {
        padding: 20px;
    }
    
    .ze2761download-content {
        padding: 20px;
    }
    
    .ze2761version-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ze2761download-buttons {
        flex-direction: column;
    }
    
    .ze2761download-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ze2761download-section h2 {
        font-size: 1.8em;
    }
    
    .ze2761tip-card {
        flex-direction: column;
        text-align: center;
    }
    
    .ze2761tip-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* 页脚样式更新 */
.ze2761footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.ze2761footer-main {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ze2761footer-brand h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}

.ze2761footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.ze2761footer-social {
    display: flex;
    gap: 15px;
}

.ze2761social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ze2761social-link:hover {
    background: #1a73e8;
    transform: translateY(-3px);
}

.ze2761social-icon {
    font-size: 1.2em;
}

.ze2761footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ze2761footer-column h4 {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.ze2761footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #1a73e8;
}

.ze2761footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze2761footer-column ul li {
    margin-bottom: 12px;
}

.ze2761footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

.ze2761footer-column ul li a:hover {
    color: #1a73e8;
}

.ze2761footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ze2761footer-legal {
    display: flex;
    gap: 20px;
}

.ze2761footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.ze2761footer-legal a:hover {
    color: #1a73e8;
}

.ze2761footer-copyright p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
    margin: 0;
}

/* 页脚响应式设计 */
@media (max-width: 1200px) {
    .ze2761footer-main {
        grid-template-columns: 1fr;
    }
    
    .ze2761footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ze2761footer {
        padding: 40px 0 20px;
    }
    
    .ze2761footer-main {
        gap: 30px;
    }
    
    .ze2761footer-brand {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .ze2761footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .ze2761footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }
    
    .ze2761footer-column {
        text-align: left;
    }
    
    .ze2761footer-column h4 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    
    .ze2761footer-column ul li {
        margin-bottom: 10px;
    }
    
    .ze2761footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 20px;
    }
    
    .ze2761footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .ze2761footer-legal a {
        font-size: 0.9em;
        padding: 5px 10px;
    }
    
    .ze2761footer-copyright {
        width: 100%;
    }
    
    .ze2761footer-copyright p {
        font-size: 0.85em;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .ze2761footer {
        padding: 30px 0 15px;
    }
    
    .ze2761footer-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ze2761footer-column {
        text-align: center;
    }
    
    .ze2761footer-column h4 {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .ze2761footer-column h4::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -5px;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: #1a73e8;
    }
    
    .ze2761footer-column ul li {
        margin-bottom: 8px;
    }
    
    .ze2761footer-column ul li a {
        font-size: 0.9em;
    }
    
    .ze2761footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .ze2761footer-legal a {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .ze2761footer-legal a:last-child {
        border-bottom: none;
    }
    
    .ze2761footer-copyright p {
        font-size: 0.8em;
        padding: 0 15px;
    }
}

/* 响应式设计优化 */
@media (max-width: 768px) {
    /* 导航菜单响应式 */
    .ze2761main-nav {
        display: none;
    }
    
    /* 英雄区域响应式 */
    .ze2761hero {
        padding: 60px 0;
    }
    
    .ze2761hero h2 {
        font-size: 2em;
    }
    
    .ze2761hero p {
        font-size: 1.1em;
    }
    
    /* 按钮响应式 */
    .ze2761download-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .ze2761download-buttons .ze2761btn {
        width: 100%;
        margin: 0;
    }
    
    /* 统计数字响应式 */
    .ze2761stat-item h3 {
        font-size: 2.2em;
    }
    
    .ze2761stat-item p {
        font-size: 1em;
    }
    
    /* 特性卡片响应式 */
    .ze2761feature-card {
        margin: 0 10px;
    }
    
    .ze2761feature-header {
        padding: 15px;
    }
    
    .ze2761feature-body {
        padding: 15px;
    }
    
    /* 指南卡片响应式 */
    .ze2761guide-card {
        padding: 20px;
    }
    
    .ze2761guide-icon {
        font-size: 2em;
    }
    
    /* FAQ响应式 */
    .ze2761faq-container {
        grid-template-columns: 1fr;
    }
    
    .ze2761category-header {
        padding: 15px;
    }
    
    .ze2761faq-list {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    /* 统计数字响应式 */
    .ze2761stat-item h3 {
        font-size: 2em;
    }
    
    .ze2761stat-item p {
        font-size: 0.9em;
    }
    
    /* 页脚响应式优化 */
    .ze2761footer-brand {
        text-align: center;
    }
    
    .ze2761footer-social {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .ze2761footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ze2761footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ze2761footer-legal {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ze2761contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ze2761contact-icon {
        margin-bottom: 10px;
    }
    
    /* 下载按钮响应式 */
    .ze2761download-buttons .ze2761btn {
        width: 100%;
        margin: 5px 0;
    }
    
    /* 提示卡片响应式 */
    .ze2761tip-card {
        flex-direction: column;
        text-align: center;
    }
    
    .ze2761tip-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    /* 版本信息响应式 */
    .ze2761version-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ze2761version-item {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .ze2761version-item:last-child {
        border-bottom: none;
    }
}

/* 添加汉堡菜单样式 */
.ze2761mobile-menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #1a73e8;
}

@media (max-width: 768px) {
    .ze2761mobile-menu-toggle {
        display: block;
        font-size: 1.5em;
        cursor: pointer;
        color: #1a73e8;
        z-index: 2001;
        position: relative;
        pointer-events: auto;
    }
    .ze2761main-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 2000;
        pointer-events: auto;
    }
    .ze2761main-nav.active {
        display: block;
    }
    .ze2761main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .ze2761main-nav li {
        margin: 0;
    }
    .ze2761main-nav a {
        display: block;
        padding: 10px 0;
        font-size: 1.1em;
    }
    .ze2761main-nav a:hover {
        color: #1a73e8;
        background: #f8f9fa;
    }
}

/* 优化触摸设备交互 */
@media (hover: none) {
    .ze2761feature-card:hover,
    .ze2761guide-card:hover,
    .ze2761download-card:hover,
    .ze2761tip-card:hover {
        transform: none;
    }
    
    .ze2761btn:active,
    .ze2761social-link:active,
    .ze2761footer-column ul li a:active {
        opacity: 0.8;
    }
    
    .ze2761main-nav a:active {
        background: #f8f9fa;
    }
}

/* 优化大屏幕显示 */
@media (min-width: 1400px) {
    .ze2761container {
        max-width: 1320px;
    }
    
    .ze2761features-grid,
    .ze2761guide-container,
    .ze2761faq-container {
        gap: 40px;
    }
    
    .ze2761feature-card,
    .ze2761guide-card,
    .ze2761faq-category {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .ze2761feature-card:hover,
    .ze2761guide-card:hover,
    .ze2761faq-category:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
}

/* 英雄区域响应式 */
@media (max-width: 1200px) {
    .ze2761hero-content {
        gap: 30px;
    }
    
    .ze2761hero-text h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 992px) {
    .ze2761hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ze2761hero-text {
        max-width: 100%;
    }
    
    .ze2761hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .ze2761hero-img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .ze2761hero {
        padding: 60px 0;
    }
    
    .ze2761hero-text h2 {
        font-size: 2em;
    }
    
    .ze2761hero-text p {
        font-size: 1.1em;
    }
    
    .ze2761hero-img {
        max-width: 95vw;
        width: 95vw;
        height: auto;
        margin: 0 auto 24px auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .ze2761hero {
        padding: 40px 0;
    }
    
    .ze2761hero-text h2 {
        font-size: 1.8em;
    }
    
    .ze2761hero-text p {
        font-size: 1em;
    }
    
    .ze2761hero-img {
        max-width: 100%;
    }
}

/* 新手指南移动端优化 */
@media (max-width: 768px) {
    .ze2761guide {
        padding: 40px 0;
    }
    
    .ze2761guide h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .ze2761guide-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .ze2761guide-card {
        padding: 25px;
        margin: 0;
        height: auto;
    }
    
    .ze2761guide-icon {
        font-size: 2em;
        margin-bottom: 15px;
    }
    
    .ze2761guide-card h3 {
        font-size: 1.3em;
        margin-bottom: 12px;
    }
    
    .ze2761guide-content p {
        font-size: 0.95em;
        margin-bottom: 15px;
    }
    
    .ze2761guide-steps-list {
        margin-top: 15px;
    }
    
    .ze2761guide-steps-list li {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .ze2761guide-steps-list .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9em;
    }
    
    .ze2761guide-tips {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .ze2761tip-item {
        padding: 15px;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .ze2761tip-icon {
        font-size: 1.5em;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .ze2761tip-content {
        flex: 1;
    }
    
    .ze2761tip-content h4 {
        font-size: 1.1em;
        margin-bottom: 5px;
    }
    
    .ze2761tip-content p {
        font-size: 0.9em;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .ze2761guide {
        padding: 16px 0;
    }
    .ze2761guide h2 {
        font-size: 1.2em;
        margin-bottom: 16px;
    }
    .ze2761guide-container {
        gap: 8px;
        padding: 0 4px;
    }
    .ze2761guide-card {
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    }
    .ze2761guide-icon {
        font-size: 1.2em;
        margin-bottom: 6px;
    }
    .ze2761guide-card h3 {
        font-size: 1em;
        margin-bottom: 6px;
    }
    .ze2761guide-content p {
        font-size: 0.8em;
        margin-bottom: 8px;
    }
    .ze2761guide-steps-list li {
        padding: 6px;
        margin-bottom: 4px;
        font-size: 0.85em;
    }
    .ze2761guide-steps-list .step-number {
        width: 18px;
        height: 18px;
        font-size: 0.7em;
        margin-right: 6px;
    }
    .ze2761guide-tips {
        gap: 6px;
        margin-top: 12px;
        padding: 0 4px;
    }
    .ze2761tip-item {
        padding: 6px;
        border-radius: 6px;
    }
    .ze2761tip-icon {
        font-size: 1em;
        margin-right: 6px;
    }
    .ze2761tip-content h4 {
        font-size: 0.95em;
        margin-bottom: 2px;
    }
    .ze2761tip-content p {
        font-size: 0.75em;
    }
    .ze2761download-buttons .ze2761btn {
        font-size: 0.95em;
        padding: 10px 0;
    }
    .ze2761guide-card,
    .ze2761tip-item {
        transition: none;
    }
}

/* 优化指南卡片样式 */
.ze2761guide-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ze2761guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.ze2761guide-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #1a73e8;
}

.ze2761guide-card h3 {
    color: #1a73e8;
    margin-bottom: 15px;
    font-size: 1.4em;
    text-align: center;
}

.ze2761guide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ze2761guide-content p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    flex: 1;
}

.ze2761guide-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze2761guide-steps-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.ze2761guide-steps-list li:hover {
    background: #e8f0fe;
}

.ze2761guide-steps-list .step-number {
    width: 30px;
    height: 30px;
    background: #1a73e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9em;
    font-weight: bold;
    flex-shrink: 0;
}

.ze2761guide-steps-list li span:last-child {
    flex: 1;
    font-size: 0.95em;
    color: #333;
}

.ze2761guide-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ze2761tip-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ze2761tip-item:hover {
    transform: translateY(-3px);
}

.ze2761tip-icon {
    font-size: 1.8em;
    margin-right: 15px;
}

.ze2761tip-content h4 {
    color: #1a73e8;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.ze2761tip-content p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

/* 关于我们部分样式 */
.ze2761about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ze2761about h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
    color: #1a73e8;
}

.ze2761about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ze2761about-text {
    text-align: center;
    margin-bottom: 40px;
}

.ze2761about-text p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.ze2761about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ze2761about-feature {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.ze2761about-feature:hover {
    transform: translateY(-5px);
}

.ze2761about-feature .ze2761feature-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a73e8;
}

.ze2761about-feature h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.ze2761about-feature p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
}

/* 联系我们部分样式 */
.ze2761contact {
    padding: 80px 0;
    background-color: white;
}

.ze2761contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
    color: #1a73e8;
}

.ze2761contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.ze2761contact-info {
    display: grid;
    gap: 20px;
}

.ze2761contact-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.ze2761contact-item:hover {
    transform: translateX(5px);
}

.ze2761contact-icon {
    font-size: 2em;
    margin-right: 20px;
    color: #1a73e8;
}

.ze2761contact-text h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.ze2761contact-text p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
}

.ze2761contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.ze2761contact-form h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: center;
}

.ze2761form-group {
    margin-bottom: 20px;
}

.ze2761form-group input,
.ze2761form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95em;
    transition: border-color 0.3s ease;
}

.ze2761form-group textarea {
    height: 120px;
    resize: vertical;
}

.ze2761form-group input:focus,
.ze2761form-group textarea:focus {
    border-color: #1a73e8;
    outline: none;
}

.ze2761contact-form .ze2761btn {
    width: 100%;
    margin-top: 10px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .ze2761about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ze2761contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ze2761about {
        padding: 60px 0;
    }
    
    .ze2761about h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .ze2761about-text p {
        font-size: 1.1em;
    }
    
    .ze2761about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ze2761contact {
        padding: 60px 0;
    }
    
    .ze2761contact h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .ze2761contact-item {
        padding: 20px;
    }
    
    .ze2761contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ze2761about {
        padding: 40px 0;
    }
    
    .ze2761about h2 {
        font-size: 1.6em;
    }
    
    .ze2761about-text p {
        font-size: 1em;
    }
    
    .ze2761about-feature {
        padding: 20px;
    }
    
    .ze2761contact {
        padding: 40px 0;
    }
    
    .ze2761contact h2 {
        font-size: 1.6em;
    }
    
    .ze2761contact-item {
        padding: 15px;
    }
    
    .ze2761contact-icon {
        font-size: 1.5em;
        margin-right: 15px;
    }
    
    .ze2761contact-text h3 {
        font-size: 1.1em;
    }
    
    .ze2761contact-form {
        padding: 15px;
    }
    
    .ze2761form-group input,
    .ze2761form-group textarea {
        padding: 10px;
    }
}

/* PC端主横幅下载按钮优化 */
@media (min-width: 769px) {
  .ze2761hero .ze2761download-buttons {
    gap: 32px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .ze2761hero .ze2761download-buttons .ze2761btn {
    min-width: 180px;
    font-size: 1.15em;
    padding: 18px 36px;
    border-radius: 8px;
    margin: 0;
    box-shadow: 0 2px 12px rgba(26,115,232,0.08);
  }
  .ze2761hero .ze2761download-buttons .ze2761btn-primary {
    background: linear-gradient(90deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 18px rgba(26,115,232,0.15);
  }
  .ze2761hero .ze2761download-buttons .ze2761btn-primary:hover {
    background: linear-gradient(90deg, #0d47a1 0%, #1a73e8 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(26,115,232,0.18);
  }
  .ze2761hero .ze2761download-buttons .ze2761btn-secondary {
    background: #fff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    font-weight: 600;
    font-size: 1.08em;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(26,115,232,0.08);
    transition: all 0.3s;
  }
  .ze2761hero .ze2761download-buttons .ze2761btn-secondary:hover {
    background: #e8f0fe;
    color: #0d47a1;
    border-color: #0d47a1;
    box-shadow: 0 4px 16px rgba(26,115,232,0.13);
  }
}

/* 下载中心板块 Mac版/iOS版下载按钮高亮 */
.ze2761download-section .ze2761download-buttons .ze2761btn-secondary {
  background: #fff;
  color: #1a73e8;
  border: 2px solid #1a73e8;
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(26,115,232,0.08);
  transition: all 0.3s;
}
.ze2761download-section .ze2761download-buttons .ze2761btn-secondary:hover {
  background: #e8f0fe;
  color: #0d47a1;
  border-color: #0d47a1;
  box-shadow: 0 4px 16px rgba(26,115,232,0.13);
}

/* 主横幅图片移动端/PC端显示控制 */
@media (max-width: 768px) {
  .ze2761hero-image.ze2761desktop-only { display: none !important; }
  .ze2761hero-image.ze2761mobile-only { display: block !important; margin: 24px auto 0; text-align: center; }
}
@media (min-width: 769px) {
  .ze2761hero-image.ze2761desktop-only { display: flex !important; }
  .ze2761hero-image.ze2761mobile-only { display: none !important; }
}

/* 导航当前栏目样式 */
.ze2761nav-item.ze2761this a,
.ze2761nav-item a:hover {
    color: #1a73e8;
}

.ze2761logo h1 a {
    text-decoration: none;
    color: #1a73e8;
}

/* 首页文章板块 */
.ze2761articles {
    padding: 64px 0;
    background-color: #f8f9fa;
}

.ze2761articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.ze2761articles h2 {
    font-size: 2em;
    color: #1a73e8;
    margin: 0;
}

.ze2761articles-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s;
}

.ze2761articles-more:hover {
    color: #0d47a1;
}

.ze2761articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
}

.ze2761article-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ze2761article-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.ze2761article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.ze2761article-card-thumb {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f0f0f0;
}

.ze2761article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ze2761article-card:hover .ze2761article-card-thumb img {
    transform: scale(1.05);
}

.ze2761article-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ze2761article-card-title {
    font-size: 0.95em;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ze2761article-card-date {
    font-size: 0.8em;
    color: #aaa;
}

/* 列表页 & 内容页通用布局 */
.ze2761page-main {
    padding: 30px 0 60px;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
}

.ze2761breadcrumb {
    padding: 15px 0;
    font-size: 0.9em;
    color: #888;
}

.ze2761breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.ze2761breadcrumb a:hover {
    color: #1a73e8;
}

.ze2761breadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
}

.ze2761breadcrumb-current {
    color: #333;
}

.ze2761page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* 列表页主内容 */
.ze2761list-main {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ze2761list-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f0fe;
}

.ze2761list-title {
    font-size: 1.8em;
    color: #1a73e8;
    margin: 0 0 10px;
}

.ze2761list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze2761list-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.ze2761list-item:last-child {
    border-bottom: none;
}

.ze2761list-item:hover {
    background: #f8f9fa;
}

.ze2761list-link {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
}

.ze2761list-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.ze2761list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ze2761list-thumb:empty,
.ze2761sidebar-thumb:empty,
.ze2761related-thumb:empty {
    display: none;
}

.ze2761list-content {
    flex: 1;
    min-width: 0;
}

.ze2761list-item-title {
    font-size: 1.15em;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.ze2761list-item:hover .ze2761list-item-title {
    color: #1a73e8;
}

.ze2761list-intro {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ze2761list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85em;
    color: #999;
}

.ze2761list-meta b {
    color: #1a73e8;
    font-weight: normal;
}

.ze2761list-meta small {
    color: #bbb;
}

/* 分页 - 左右布局 */
.ze2761pagebar {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ze2761pagebar .pagelist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ze2761pagebar li {
    display: inline-block;
}

.ze2761pagebar a,
.ze2761pagebar span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
    font-size: 0.9em;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: all 0.3s;
}

.ze2761pagebar a:hover {
    color: #1a73e8;
    border-color: #1a73e8;
    background: #e8f0fe;
}

.ze2761pagebar .thisclass,
.ze2761pagebar .thisclass a,
.ze2761pagebar span.thisclass {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

/* 内容页主内容 */
.ze2761article-main {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ze2761article-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f0fe;
}

.ze2761article-title {
    font-size: 1.8em;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.4;
}

.ze2761article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9em;
    color: #888;
}

.ze2761meta-item a {
    color: #1a73e8;
    text-decoration: none;
}

.ze2761meta-label {
    color: #aaa;
}

.ze2761article-body {
    font-size: 1em;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.ze2761article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.ze2761article-body p {
    margin-bottom: 15px;
}

.ze2761article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
}

.ze2761article-nav-prev,
.ze2761article-nav-next {
    flex: 1;
    max-width: 48%;
}

.ze2761article-nav-next {
    text-align: right;
}

.ze2761article-nav a {
    color: #333;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}

.ze2761article-nav a:hover {
    color: #1a73e8;
}

.ze2761section-title {
    font-size: 1.3em;
    color: #1a73e8;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0fe;
}

.ze2761related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze2761related-item {
    border-bottom: 1px solid #f0f0f0;
}

.ze2761related-item:last-child {
    border-bottom: none;
}

.ze2761related-link {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s;
}

.ze2761related-link:hover {
    background: #f8f9fa;
}

.ze2761related-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.ze2761related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ze2761related-info h4 {
    font-size: 0.95em;
    color: #333;
    margin: 0 0 5px;
    line-height: 1.4;
}

.ze2761related-link:hover .ze2761related-info h4 {
    color: #1a73e8;
}

.ze2761related-info p {
    font-size: 0.85em;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* 侧栏 */
.ze2761sidebar {
    position: sticky;
    top: 100px;
}

.ze2761sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ze2761sidebar-title {
    font-size: 1.1em;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0fe;
}

.ze2761sidebar-title a {
    color: #1a73e8;
    text-decoration: none;
}

.ze2761sidebar-title a:hover {
    color: #0d47a1;
}

.ze2761sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze2761sidebar-item {
    border-bottom: 1px solid #f5f5f5;
}

.ze2761sidebar-item:last-child {
    border-bottom: none;
}

.ze2761sidebar-link {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s;
}

.ze2761sidebar-link:hover {
    background: #f8f9fa;
}

.ze2761sidebar-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
}

.ze2761sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ze2761sidebar-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ze2761sidebar-item-title {
    font-size: 0.85em;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ze2761sidebar-link:hover .ze2761sidebar-item-title {
    color: #1a73e8;
}

.ze2761sidebar-date {
    font-size: 0.75em;
    color: #aaa;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .ze2761page-layout {
        grid-template-columns: 1fr;
    }

    .ze2761sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .ze2761articles {
        padding: 40px 0;
    }

    .ze2761articles h2 {
        font-size: 1.8em;
    }

    .ze2761article-card-thumb {
        height: 120px;
    }

    .ze2761page-main {
        padding: 20px 0 40px;
    }

    .ze2761list-main,
    .ze2761article-main {
        padding: 20px;
    }

    .ze2761list-link {
        flex-direction: column;
        gap: 12px;
    }

    .ze2761list-thumb {
        width: 100%;
        height: 180px;
    }

    .ze2761list-title,
    .ze2761article-title {
        font-size: 1.4em;
    }

    .ze2761article-meta {
        gap: 10px;
    }

    .ze2761article-nav {
        flex-direction: column;
    }

    .ze2761article-nav-prev,
    .ze2761article-nav-next {
        max-width: 100%;
        text-align: left;
    }

    .ze2761related-link {
        flex-direction: column;
    }

    .ze2761related-thumb {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .ze2761articles-grid {
        grid-template-columns: 1fr;
    }

    .ze2761articles h2 {
        font-size: 1.6em;
    }

    .ze2761article-card-body {
        padding: 12px;
    }

    .ze2761breadcrumb {
        font-size: 0.8em;
    }

    .ze2761list-meta {
        flex-direction: column;
        gap: 5px;
    }

    .ze2761sidebar-widget {
        padding: 15px;
    }

    .ze2761sidebar-thumb {
        width: 60px;
        height: 45px;
    }
}

/* ===== 首页板块重设计 ===== */

.ze2761hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ze2761hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* 通用板块标题 */
.ze2761section-head {
    text-align: center;
    margin-bottom: 36px;
}

.ze2761section-head h2 {
    font-size: clamp(1.5em, 3vw, 1.85em);
    color: #1a73e8;
    margin: 8px 0 0;
}

.ze2761section-head-light h2 {
    color: #1a73e8;
}

.ze2761section-head .ze2761section-desc {
    margin: 12px auto 0;
    color: #666;
    font-size: 0.95em;
    max-width: 640px;
    line-height: 1.7;
}

.ze2761section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 40px;
}

.ze2761section-head-row .ze2761section-head-row > div,
.ze2761section-head-row > div:first-child {
    text-align: left;
}

.ze2761section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: #e8f0fe;
    color: #1a73e8;
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

/* 平台优势 - Bento 网格 */
.ze2761features {
    padding: 64px 0;
    background: #fff;
}

.ze2761features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.ze2761bento-item {
    background: #f8f9fa;
    border: 1px solid #e8ecf0;
    border-radius: 16px;
    padding: 22px;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.ze2761bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26,115,232,0.1);
    border-color: #1a73e8;
}

.ze2761bento-item:nth-child(3n+1) {
    background: linear-gradient(135deg, #f0f6ff 0%, #f8f9fa 100%);
}

.ze2761bento-icon {
    font-size: 2.2em;
    flex-shrink: 0;
    line-height: 1;
}

.ze2761bento-item h3 {
    font-size: 1.15em;
    color: #1a73e8;
    margin: 0 0 8px;
}

.ze2761bento-item p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.6;
}

.ze2761bento-item:not(.ze2761bento-wide) .ze2761bento-icon {
    margin-bottom: 12px;
}

.ze2761bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.ze2761bento-tags span {
    padding: 4px 12px;
    background: #fff;
    border: 1px solid #d0e3fc;
    border-radius: 20px;
    font-size: 0.8em;
    color: #1a73e8;
}

/* 数据统计 - 横条分隔 */
.ze2761statistics {
    padding: 0;
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
}

.ze2761stat-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 0;
}

.ze2761stat-block {
    flex: 1;
    text-align: center;
    padding: 0 12px;
    min-width: 0;
}

.ze2761stat-num {
    display: block;
    font-size: clamp(1.6em, 3vw, 2.2em);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
}

.ze2761stat-label {
    display: block;
    font-size: 0.82em;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    word-break: break-word;
}

.ze2761stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.25);
    align-self: stretch;
    flex-shrink: 0;
}

/* 新手指南 - 时间轴 */
.ze2761guide {
    padding: 64px 0;
    background: #0d1b2a;
}

.ze2761guide .ze2761section-head-light h2 {
    color: #fff;
}

.ze2761guide .ze2761section-tag {
    background: rgba(26,115,232,0.3);
    color: #90caf9;
}

.ze2761guide-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
    position: relative;
    align-items: stretch;
}

.ze2761timeline-track {
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #64b5f6, #1a73e8);
    border-radius: 2px;
    z-index: 0;
}

.ze2761timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.ze2761timeline-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1a73e8;
    border: 4px solid #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 0 4px rgba(26,115,232,0.3);
}

.ze2761timeline-node span {
    color: #fff;
    font-weight: 700;
    font-size: 0.9em;
}

.ze2761timeline-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 24px 20px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s;
}

.ze2761timeline-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(26,115,232,0.5);
}

.ze2761timeline-icon {
    font-size: 2em;
    margin-bottom: 12px;
}

.ze2761timeline-card h3 {
    color: #fff;
    font-size: 1.2em;
    margin: 0 0 10px;
}

.ze2761timeline-card > p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
    margin: 0 0 16px;
    line-height: 1.6;
}

.ze2761timeline-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    text-align: left;
}

.ze2761timeline-list li {
    color: rgba(255,255,255,0.85);
    font-size: 0.88em;
    padding: 8px 0 8px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.ze2761timeline-list li:last-child {
    border-bottom: none;
}

.ze2761timeline-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #64b5f6;
    font-weight: bold;
}

/* 下载中心 - 横条堆叠 */
.ze2761download-section {
    padding: 64px 0;
    background: #f0f4f8;
}

.ze2761download-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.ze2761dl-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid #e0e6ed;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.ze2761dl-row:hover {
    box-shadow: 0 8px 28px rgba(26,115,232,0.1);
    border-color: #1a73e8;
}

.ze2761dl-mobile {
    background: linear-gradient(135deg, #fff 0%, #f0f6ff 100%);
}

.ze2761dl-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    font-weight: 700;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.ze2761dl-badge-mobile {
    background: linear-gradient(135deg, #00897b, #00695c);
}

.ze2761dl-info {
    flex: 1;
    min-width: 0;
}

.ze2761dl-info h3 {
    font-size: 1.2em;
    color: #222;
    margin: 0 0 6px;
}

.ze2761dl-sub {
    color: #888;
    font-size: 0.85em;
    margin: 0 0 12px;
}

.ze2761dl-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.ze2761dl-features li {
    font-size: 0.85em;
    color: #555;
    padding-left: 16px;
    position: relative;
}

.ze2761dl-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.ze2761dl-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 168px;
    max-width: 100%;
}

.ze2761dl-actions .ze2761btn {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 0.88em;
    padding: 11px 16px;
}

.ze2761btn-dl {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    border: none;
    text-align: center;
    margin: 0;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95em;
}

.ze2761btn-dl:hover {
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
    color: #fff;
    transform: translateY(-2px);
}

.ze2761btn-outline {
    background: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    text-align: center;
    margin: 0;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.95em;
}

.ze2761btn-outline:hover {
    background: #e8f0fe;
    color: #0d47a1;
}

.ze2761dl-notices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ze2761notice-item {
    background: #fff;
    border-left: 4px solid #1a73e8;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
}

.ze2761notice-item strong {
    color: #333;
    margin-right: 8px;
}

/* 关于我们 - 左右分栏 */
.ze2761about {
    padding: 64px 0;
    background: #fff;
}

.ze2761about-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.ze2761about-main h2 {
    font-size: clamp(1.5em, 3vw, 1.85em);
    color: #1a73e8;
    margin: 8px 0 20px;
}

.ze2761about-main p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.ze2761about-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid #e8f0fe;
}

.ze2761about-row {
    display: flex;
    gap: 20px;
    padding: 24px 0 24px 28px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.ze2761about-row:last-child {
    border-bottom: none;
}

.ze2761about-row::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 32px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a73e8;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #e8f0fe;
}

.ze2761about-num {
    font-size: 1.8em;
    font-weight: 700;
    color: #e8f0fe;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.ze2761about-row h3 {
    font-size: 1.05em;
    color: #333;
    margin: 0 0 6px;
}

.ze2761about-row p {
    font-size: 0.9em;
    color: #888;
    margin: 0;
}

/* 联系我们 - 磁贴 + 表单 */
.ze2761contact {
    padding: 64px 0;
    background: #f8f9fa;
}

.ze2761contact-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    align-items: stretch;
}

.ze2761contact-tile {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #e8ecf0;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
}

.ze2761contact-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ze2761contact-tile-icon {
    font-size: 2.2em;
    display: block;
    margin-bottom: 12px;
}

.ze2761contact-tile h3 {
    font-size: 1.1em;
    color: #1a73e8;
    margin: 0 0 8px;
}

.ze2761contact-tile p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

.ze2761contact-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ze2761contact-form-wrap h3 {
    text-align: center;
    font-size: 1.3em;
    color: #333;
    margin: 0 0 24px;
}

.ze2761form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ze2761contact-form-wrap .ze2761btn-dl {
    width: 100%;
    margin-top: 8px;
}

/* FAQ - 折叠双栏 */
.ze2761faq {
    padding: 64px 0;
    background: #fff;
}

.ze2761faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ze2761faq-col-full {
    grid-column: span 2;
}

.ze2761faq-group-title {
    font-size: 1.1em;
    color: #1a73e8;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0fe;
}

.ze2761faq-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.ze2761faq-detail {
    background: #f8f9fa;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.ze2761faq-detail[open] {
    border-color: #1a73e8;
    background: #f0f6ff;
}

.ze2761faq-detail summary {
    padding: 16px 20px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style: none;
    font-size: 0.95em;
    line-height: 1.5;
    position: relative;
    padding-right: 36px;
    word-break: break-word;
}

.ze2761faq-detail summary::-webkit-details-marker {
    display: none;
}

.ze2761faq-detail summary::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a73e8;
    font-size: 1.2em;
    font-weight: 400;
}

.ze2761faq-detail[open] summary::after {
    content: '−';
}

.ze2761faq-detail p {
    padding: 0 20px 16px;
    margin: 0;
    color: #666;
    font-size: 0.9em;
    line-height: 1.7;
}

/* 文章板块标题对齐 */
.ze2761articles .ze2761section-head-row h2 {
    margin: 8px 0 0;
}

/* 首页重设计 - 响应式 */
@media (max-width: 1200px) {
    .ze2761articles-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ze2761dl-info h3 {
        font-size: 1.05em;
    }

    .ze2761dl-sub {
        font-size: 0.8em;
    }
}

@media (max-width: 1100px) {
    .ze2761dl-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ze2761dl-actions {
        width: 100%;
        flex-direction: row;
    }
}

@media (max-width: 992px) {
    .ze2761features-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .ze2761articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ze2761stat-strip {
        flex-wrap: wrap;
        gap: 24px;
        padding: 40px 0;
    }

    .ze2761stat-block {
        flex: 0 0 calc(50% - 12px);
    }

    .ze2761stat-divider {
        display: none;
    }

    .ze2761guide-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ze2761timeline-track {
        display: none;
    }

    .ze2761timeline-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .ze2761timeline-node {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .ze2761timeline-card {
        text-align: left;
    }

    .ze2761dl-row {
        flex-wrap: wrap;
    }

    .ze2761dl-actions {
        width: 100%;
        flex-direction: row;
        min-width: 0;
    }

    .ze2761dl-actions .ze2761btn {
        flex: 1;
    }

    .ze2761about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ze2761faq-inline {
        grid-template-columns: 1fr;
    }

    .ze2761faq-col-full {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .ze2761section-head h2,
    .ze2761about-main h2 {
        font-size: 1.7em;
    }

    .ze2761features,
    .ze2761guide,
    .ze2761download-section,
    .ze2761about,
    .ze2761contact,
    .ze2761faq,
    .ze2761articles {
        padding: 48px 0;
    }

    .ze2761features-bento {
        grid-template-columns: 1fr;
    }

    .ze2761articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ze2761hero {
        padding: 48px 0 56px;
    }

    .ze2761stat-block {
        flex: 0 0 100%;
    }

    .ze2761stat-num {
        font-size: 2em;
    }

    .ze2761timeline-step {
        flex-direction: column;
        align-items: center;
    }

    .ze2761timeline-card {
        text-align: center;
    }

    .ze2761timeline-list {
        text-align: left;
    }

    .ze2761dl-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .ze2761dl-actions {
        flex-direction: column;
        width: 100%;
    }

    .ze2761contact-tiles {
        grid-template-columns: 1fr;
    }

    .ze2761form-row {
        grid-template-columns: 1fr;
    }

    .ze2761contact-form-wrap {
        padding: 24px 20px;
    }

    .ze2761faq-columns {
        grid-template-columns: 1fr;
    }

    .ze2761faq-col-full {
        grid-column: span 1;
    }

    .ze2761section-head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .ze2761articles-grid {
        grid-template-columns: 1fr;
    }

    .ze2761bento-item {
        padding: 18px;
        min-height: auto;
    }

    .ze2761dl-badge {
        width: 48px;
        height: 48px;
        font-size: 0.75em;
    }

    .ze2761dl-actions {
        flex-direction: column;
    }

    .ze2761notice-item {
        font-size: 0.85em;
        padding: 12px 16px;
    }

    .ze2761about-row {
        padding-left: 20px;
    }

    .ze2761main-nav a {
        font-size: 0.85em;
    }

    .ze2761section-head {
        margin-bottom: 28px;
    }
}

@media (min-width: 1400px) {
    .ze2761articles-grid {
        grid-template-columns: repeat(5, 1fr);
    }
} 