/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* 容器 */
.z0eb4acontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.z0eb4aheader {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.z0eb4aheader .z0eb4acontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.z0eb4alogo h1 {
    font-size: 24px;
    color: #1a73e8;
}

/* 导航切换按钮 */
.z0eb4anav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.z0eb4anav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1a73e8;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.z0eb4amain-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.z0eb4amain-nav li {
    margin-left: 30px;
}

.z0eb4amain-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.z0eb4amain-nav a:hover {
    color: #1a73e8;
}

.z0eb4amain-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a73e8;
    transition: width 0.3s ease;
}

.z0eb4amain-nav a:hover::after {
    width: 100%;
}

/* 移动端导航样式 */
@media (max-width: 768px) {
    .z0eb4anav-toggle {
        display: flex;
    }

    .z0eb4amain-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .z0eb4amain-nav.active {
        right: 0;
    }

    .z0eb4amain-nav ul {
        flex-direction: column;
        padding: 80px 20px 20px;
    }

    .z0eb4amain-nav li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .z0eb4amain-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    .z0eb4amain-nav a::after {
        display: none;
    }

    /* 汉堡菜单动画 */
    .z0eb4anav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .z0eb4anav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .z0eb4anav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* 遮罩层 */
    .z0eb4anav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .z0eb4anav-overlay.active {
        display: block;
    }

    .z0eb4aheader .z0eb4acontainer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 15px;
    }

    .z0eb4alogo h1 {
        font-size: 18px;
        margin-bottom: 0;
    }
}

/* 英雄区域 */
.z0eb4ahero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.z0eb4ahero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.z0eb4ahero-text {
    flex: 1;
    max-width: 600px;
}

.z0eb4ahero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z0eb4ahero-text p {
    font-size: 20px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.z0eb4ahero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.z0eb4ahero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.z0eb4ahero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

/* 按钮样式 */
.z0eb4abtn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin: 0 10px;
}

.z0eb4abtn-primary {
    background-color: #fff;
    color: #1a73e8;
}

.z0eb4abtn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.z0eb4ahero .z0eb4abtn {
    margin: 0;
}

.z0eb4abtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 特点部分 */
.z0eb4afeatures {
    padding: 64px 0;
    background-color: #fff;
    border: none;
    border-radius: 0;
    margin: 0;
}

.z0eb4asection-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
    padding-bottom: 20px;
    border-bottom: 2px solid #1a73e8;
    position: relative;
}

.z0eb4asection-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #1a73e8;
}

.z0eb4asection-intro {
    text-align: center;
    max-width: 780px;
    margin: -30px auto 40px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.z0eb4ahero-intro {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.92;
    margin-bottom: 28px;
}

/* 框架布局 */
.z0eb4arow {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
}

.z0eb4acol-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 15px;
    border-right: 1px solid #e0e0e0;
}

.z0eb4acol-md-4:last-child {
    border-right: none;
}

/* 特点盒子 */
.z0eb4afeature-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.z0eb4afeature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.z0eb4afeature-header {
    padding: 25px 25px 15px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #1a73e8;
    position: relative;
}

.z0eb4afeature-header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #1a73e8;
}

.z0eb4afeature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 10px;
    border: 2px solid #1a73e8;
    border-radius: 50%;
}

.z0eb4afeature-header h3 {
    color: #333;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.z0eb4afeature-body {
    padding: 20px 25px;
    background: #fff;
}

.z0eb4afeature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f8f9fa;
}

.z0eb4afeature-list li {
    color: #666;
    margin: 0;
    padding: 12px 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.z0eb4afeature-list li:last-child {
    border-bottom: none;
}

.z0eb4afeature-list li:before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-weight: bold;
    padding: 0 10px;
}

.z0eb4afeature-detail {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    padding-left: 20px;
    font-style: italic;
}

.z0eb4afeature-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.z0eb4afeature-tag {
    background: #f0f7ff;
    color: #1a73e8;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #1a73e8;
}

/* 特点盒子内容样式 */
.z0eb4afeature-description {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #1a73e8;
}

.z0eb4afeature-description p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 安全保障部分 */
.z0eb4asecurity {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.z0eb4asecurity-framework {
    margin: 0 -15px;
}

.z0eb4asecurity-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.z0eb4asecurity-col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 15px;
}

.z0eb4asecurity-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.z0eb4asecurity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.z0eb4asecurity-header {
    padding: 25px 25px 15px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #1a73e8;
    position: relative;
}

.z0eb4asecurity-header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #1a73e8;
}

.z0eb4asecurity-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 10px;
    border: 2px solid #1a73e8;
    border-radius: 50%;
}

.z0eb4asecurity-header h3 {
    color: #333;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.z0eb4asecurity-body {
    padding: 20px 25px;
}

.z0eb4asecurity-description {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #1a73e8;
}

.z0eb4asecurity-description p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.z0eb4asecurity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f8f9fa;
}

.z0eb4asecurity-list li {
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.z0eb4asecurity-list li:last-child {
    border-bottom: none;
}

.z0eb4asecurity-title {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.z0eb4asecurity-detail {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.z0eb4asecurity-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
}

.z0eb4asecurity-metric {
    text-align: center;
    padding: 10px;
    background: #f0f7ff;
    border-radius: 5px;
    min-width: 100px;
}

.z0eb4ametric-value {
    display: block;
    color: #1a73e8;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z0eb4ametric-label {
    display: block;
    color: #666;
    font-size: 12px;
}

/* 安全保障响应式布局 */
@media (max-width: 992px) {
    .z0eb4asecurity-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .z0eb4asecurity-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .z0eb4asecurity-header {
        padding: 20px 20px 10px;
    }

    .z0eb4asecurity-body {
        padding: 15px 20px;
    }

    .z0eb4asecurity-icon {
        font-size: 36px;
    }

    .z0eb4asecurity-header h3 {
        font-size: 18px;
    }

    .z0eb4asecurity-footer {
        flex-direction: column;
        gap: 10px;
    }

    .z0eb4asecurity-metric {
        width: 100%;
    }
}

/* 下载中心部分 */
.z0eb4adownload-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.z0eb4adownload-framework {
    margin: 0;
}

.z0eb4adownload-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.z0eb4adownload-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.z0eb4adownload-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.z0eb4adownload-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.z0eb4adownload-header {
    padding: 25px 25px 15px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #1a73e8;
    position: relative;
}

.z0eb4adownload-header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #1a73e8;
}

.z0eb4adownload-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 10px;
    border: 2px solid #1a73e8;
    border-radius: 50%;
}

.z0eb4adownload-header h3 {
    color: #333;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.z0eb4adownload-body {
    padding: 20px 25px;
}

.z0eb4adownload-description {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #1a73e8;
}

.z0eb4adownload-description p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.z0eb4adownload-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.z0eb4ainfo-item {
    text-align: center;
    padding: 10px;
    background: #f0f7ff;
    border-radius: 5px;
    border: 1px solid #1a73e8;
}

.z0eb4ainfo-label {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.z0eb4ainfo-value {
    display: block;
    color: #1a73e8;
    font-size: 16px;
    font-weight: 600;
}

.z0eb4adownload-features {
    margin-bottom: 20px;
}

.z0eb4afeature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f8f9fa;
}

.z0eb4afeature-list li {
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.z0eb4afeature-list li:last-child {
    border-bottom: none;
}

.z0eb4afeature-title {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.z0eb4afeature-detail {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.z0eb4adownload-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.z0eb4abtn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1a73e8;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    max-width: 200px;
}

.z0eb4abtn-download:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.z0eb4abtn-icon {
    font-size: 20px;
}

.z0eb4adownload-tags {
    display: flex;
    gap: 10px;
}

.z0eb4adownload-tag {
    background: #f0f7ff;
    color: #1a73e8;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #1a73e8;
}

/* 系统要求部分 */
.z0eb4asystem-requirements {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.z0eb4arequirements-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
}

.z0eb4arequirements-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #1a73e8;
}

.z0eb4arequirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.z0eb4arequirement-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.z0eb4arequirement-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.z0eb4arequirement-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.z0eb4arequirement-icon {
    font-size: 24px;
}

.z0eb4arequirement-header h4 {
    color: #333;
    margin: 0;
    font-size: 18px;
}

.z0eb4arequirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z0eb4arequirement-list li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.z0eb4arequirement-list li:before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
}

/* 下载中心响应式布局 */
@media (max-width: 992px) {
    .z0eb4adownload-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .z0eb4adownload-info {
        grid-template-columns: 1fr;
    }

    .z0eb4adownload-header {
        padding: 20px 20px 10px;
    }

    .z0eb4adownload-body {
        padding: 15px 20px;
    }

    .z0eb4adownload-icon {
        font-size: 36px;
    }

    .z0eb4adownload-header h3 {
        font-size: 18px;
    }

    .z0eb4arequirements-grid {
        grid-template-columns: 1fr;
    }

    .z0eb4adownload-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .z0eb4abtn-download {
        max-width: 100%;
        width: 100%;
        margin: 0;
        font-size: 17px;
        padding: 16px 0;
        letter-spacing: 1px;
    }
    .z0eb4adownload-tags {
        justify-content: center;
    }
    .z0eb4adownload-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 8px 0;
    }
    .z0eb4adownload-box {
        margin-bottom: 16px;
        padding: 10px 0;
    }
    .z0eb4adownload-description p {
        font-size: 15px;
    }
}

/* 使用指南 */
.z0eb4aguide {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.z0eb4aguide-framework {
    margin: 0 -15px;
}

.z0eb4aguide-steps {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 40px 0;
    gap: 20px;
}

.z0eb4astep-box {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.z0eb4astep-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.z0eb4astep-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #1a73e8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.z0eb4astep-header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #1a73e8;
}

.z0eb4astep-number {
    width: 40px;
    height: 40px;
    background: #1a73e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.z0eb4astep-icon {
    font-size: 24px;
}

.z0eb4astep-body {
    padding: 20px;
}

.z0eb4astep-body h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.z0eb4astep-description {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #1a73e8;
}

.z0eb4astep-description p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.z0eb4astep-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f8f9fa;
}

.z0eb4astep-list li {
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.z0eb4astep-list li:last-child {
    border-bottom: none;
}

.z0eb4astep-title {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.z0eb4astep-detail {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

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

.z0eb4aguide-category {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.z0eb4aguide-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.z0eb4acategory-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #1a73e8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.z0eb4acategory-header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #1a73e8;
}

.z0eb4acategory-icon {
    font-size: 24px;
}

.z0eb4acategory-header h3 {
    color: #333;
    font-size: 20px;
    margin: 0;
}

.z0eb4acategory-body {
    padding: 20px;
}

.z0eb4acategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f8f9fa;
}

.z0eb4acategory-list li {
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.z0eb4acategory-list li:last-child {
    border-bottom: none;
}

.z0eb4acategory-title {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.z0eb4acategory-detail {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

/* 使用指南响应式布局 */
@media (max-width: 992px) {
    .z0eb4aguide-steps {
        flex-direction: column;
    }

    .z0eb4astep-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .z0eb4aguide-details {
        grid-template-columns: 1fr;
    }

    .z0eb4astep-header,
    .z0eb4acategory-header {
        padding: 15px;
    }

    .z0eb4astep-body,
    .z0eb4acategory-body {
        padding: 15px;
    }

    .z0eb4astep-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .z0eb4astep-icon,
    .z0eb4acategory-icon {
        font-size: 20px;
    }

    .z0eb4astep-body h3,
    .z0eb4acategory-header h3 {
        font-size: 18px;
    }
}

/* FAQ部分 */
.z0eb4afaq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.z0eb4afaq-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 0 -15px;
}

.z0eb4afaq-category {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.z0eb4afaq-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.z0eb4afaq-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #1a73e8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.z0eb4afaq-header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #1a73e8;
}

.z0eb4afaq-icon {
    font-size: 24px;
}

.z0eb4afaq-header h3 {
    color: #333;
    font-size: 20px;
    margin: 0;
}

.z0eb4afaq-body {
    padding: 20px;
}

.z0eb4afaq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.z0eb4afaq-item:last-child {
    margin-bottom: 0;
}

.z0eb4afaq-question {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.z0eb4afaq-question:hover {
    background: #f0f7ff;
}

.z0eb4aquestion-icon {
    font-size: 20px;
    color: #1a73e8;
}

.z0eb4afaq-question h4 {
    color: #333;
    font-size: 16px;
    margin: 0;
    flex: 1;
}

.z0eb4afaq-answer {
    padding: 20px;
    background: white;
    display: flex;
    gap: 15px;
}

.z0eb4aanswer-icon {
    font-size: 20px;
    color: #1a73e8;
}

.z0eb4aanswer-content {
    flex: 1;
}

.z0eb4aanswer-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.z0eb4aanswer-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.z0eb4aanswer-steps li {
    padding: 10px 15px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.z0eb4aanswer-steps li:last-child {
    border-bottom: none;
}

.z0eb4aanswer-steps li:before {
    content: "→";
    color: #1a73e8;
    position: absolute;
    left: 10px;
}

/* FAQ响应式布局 */
@media (max-width: 992px) {
    .z0eb4afaq-framework {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .z0eb4afaq-header {
        padding: 15px;
    }

    .z0eb4afaq-body {
        padding: 15px;
    }

    .z0eb4afaq-icon {
        font-size: 20px;
    }

    .z0eb4afaq-header h3 {
        font-size: 18px;
    }

    .z0eb4afaq-question {
        padding: 12px 15px;
    }

    .z0eb4afaq-answer {
        padding: 15px;
    }

    .z0eb4aquestion-icon,
    .z0eb4aanswer-icon {
        font-size: 18px;
    }

    .z0eb4afaq-question h4 {
        font-size: 15px;
    }

    .z0eb4aanswer-content p {
        font-size: 13px;
    }

    .z0eb4aanswer-steps li {
        font-size: 13px;
        padding: 8px 12px;
        padding-left: 25px;
    }
}

/* 页脚 */
.z0eb4afooter {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.z0eb4afooter-info h3 {
    margin-bottom: 20px;
    color: #fff;
}

.z0eb4acontact-info {
    margin-top: 20px;
    color: #ccc;
}

.z0eb4afooter-links h4,
.z0eb4afooter-news h4 {
    margin-bottom: 20px;
    color: #fff;
}

.z0eb4afooter-links ul,
.z0eb4afooter-news ul {
    list-style: none;
}

.z0eb4afooter-links a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.z0eb4afooter-links a:hover {
    color: #fff;
}

.z0eb4afooter-news li {
    color: #ccc;
    margin-bottom: 10px;
}

.z0eb4afooter-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .z0eb4acol-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
        border-right: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    .z0eb4acol-md-4:nth-child(2n) {
        border-right: none;
    }

    .z0eb4acol-md-4:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .z0eb4ahero {
        padding: 100px 0 48px;
    }

    .z0eb4ahero-text h2 {
        font-size: 36px;
    }

    .z0eb4ahero-text p {
        font-size: 18px;
    }

    .z0eb4ahero-image {
        max-width: 300px;
    }

    .z0eb4ahero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 280px;
        transform: none;
    }

    .z0eb4abtn {
        display: block;
        margin: 8px auto;
        max-width: 240px;
    }

    .z0eb4asection-title {
        font-size: 28px;
    }

    .z0eb4asecurity-item,
    .z0eb4adownload-card,
    .z0eb4aguide-item,
    .z0eb4afaq-item {
        padding: 20px;
    }

    .z0eb4afeature-box {
        padding: 20px;
    }

    .z0eb4afeature-icon {
        font-size: 36px;
    }

    .z0eb4afeature-header {
        padding: 20px 20px 10px;
    }

    .z0eb4afeature-body {
        padding: 15px 20px;
    }

    .z0eb4afeature-header h3 {
        font-size: 18px;
    }

    .z0eb4afeature-list li {
        padding: 10px 15px;
    }

    .z0eb4afeature-detail {
        padding-left: 15px;
    }

    .z0eb4afeature-footer {
        flex-direction: column;
        gap: 5px;
    }

    .z0eb4afeature-tag {
        width: 100%;
        text-align: center;
    }

    .z0eb4acol-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .z0eb4acol-md-4:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .z0eb4ahero-text h2 {
        font-size: 28px;
    }

    .z0eb4ahero-text p {
        font-size: 16px;
    }

    .z0eb4ahero-image {
        max-width: 250px;
    }

    .z0eb4adownload-buttons {
        flex-direction: column;
        align-items: center;
    }

    .z0eb4abtn {
        width: 100%;
        max-width: 200px;
    }

    .z0eb4asection-title {
        font-size: 24px;
    }

    .z0eb4afeature-item,
    .z0eb4adownload-card,
    .z0eb4astep {
        padding: 20px;
    }

    .z0eb4afooter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .z0eb4afooter-links ul,
    .z0eb4afooter-news ul {
        text-align: center;
    }
}

/* 响应式设计优化 */
@media (max-width: 1200px) {
    .z0eb4acontainer {
        max-width: 960px;
        padding: 0 15px;
    }

    .z0eb4ahero-text h2 {
        font-size: 42px;
    }

    .z0eb4ahero-image {
        max-width: 450px;
    }

    .z0eb4afeature-box,
    .z0eb4asecurity-box,
    .z0eb4adownload-box,
    .z0eb4aguide-category,
    .z0eb4afaq-category {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .z0eb4acontainer {
        max-width: 720px;
    }

    /* 导航栏响应式 */
    .z0eb4aheader .z0eb4acontainer {
        padding: 0 15px;
    }

    .z0eb4amain-nav ul {
        gap: 15px;
    }

    /* 英雄区域响应式 */
    .z0eb4ahero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .z0eb4ahero-text {
        max-width: 100%;
    }

    .z0eb4ahero-text h2 {
        font-size: 36px;
    }

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

    .z0eb4ahero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 280px;
        transform: none;
    }

    .z0eb4adownload-buttons {
        justify-content: center;
    }

    /* 特点部分响应式 */
    .z0eb4arow {
        margin: 0;
    }

    .z0eb4acol-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px;
    }

    /* 安全保障响应式 */
    .z0eb4asecurity-row {
        flex-wrap: wrap;
    }

    .z0eb4asecurity-col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px;
    }

    /* 下载中心响应式 */
    .z0eb4adownload-row {
        flex-direction: column;
    }

    .z0eb4adownload-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 8px 0;
    }

    /* 使用指南响应式 */
    .z0eb4aguide-steps {
        flex-direction: column;
    }

    .z0eb4astep-box {
        width: 100%;
    }

    /* FAQ响应式 */
    .z0eb4afaq-framework {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .z0eb4acontainer {
        max-width: 540px;
    }

    /* 英雄区域响应式 */
    .z0eb4ahero {
        padding: 100px 0 48px;
    }

    .z0eb4ahero-text h2 {
        font-size: 32px;
    }

    .z0eb4ahero-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .z0eb4ahero-image {
        max-width: 300px;
    }

    .z0eb4ahero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 260px;
        transform: none;
    }

    /* 特点部分响应式 */
    .z0eb4acol-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .z0eb4afeature-box {
        margin-bottom: 15px;
    }

    /* 安全保障响应式 */
    .z0eb4asecurity-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .z0eb4asecurity-box {
        margin-bottom: 15px;
    }

    /* 下载中心响应式 */
    .z0eb4adownload-info {
        grid-template-columns: 1fr;
    }

    .z0eb4adownload-box {
        margin-bottom: 15px;
    }

    /* 使用指南响应式 */
    .z0eb4aguide-details {
        grid-template-columns: 1fr;
    }

    .z0eb4aguide-category {
        margin-bottom: 15px;
    }

    /* FAQ响应式 */
    .z0eb4afaq-category {
        margin-bottom: 15px;
    }

    .z0eb4afaq-question h4 {
        font-size: 15px;
    }

    .z0eb4afaq-answer {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .z0eb4acontainer {
        padding: 0 10px;
    }

    /* 英雄区域响应式 */
    .z0eb4ahero {
        padding: 100px 0 40px;
    }

    .z0eb4ahero-text h2 {
        font-size: 28px;
    }

    .z0eb4ahero-text p {
        font-size: 14px;
    }

    .z0eb4ahero-image {
        max-width: 250px;
    }

    .z0eb4ahero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 220px;
        transform: none;
    }

    .z0eb4adownload-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .z0eb4abtn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    /* 特点部分响应式 */
    .z0eb4asection-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .z0eb4afeature-header,
    .z0eb4asecurity-header,
    .z0eb4adownload-header,
    .z0eb4aguide-header,
    .z0eb4afaq-header {
        padding: 15px;
    }

    .z0eb4afeature-body,
    .z0eb4asecurity-body,
    .z0eb4adownload-body,
    .z0eb4aguide-body,
    .z0eb4afaq-body {
        padding: 15px;
    }

    /* 列表项响应式 */
    .z0eb4afeature-list li,
    .z0eb4asecurity-list li,
    .z0eb4adownload-list li,
    .z0eb4aguide-list li,
    .z0eb4afaq-list li {
        padding: 10px 15px;
    }

    .z0eb4afeature-title,
    .z0eb4asecurity-title,
    .z0eb4adownload-title,
    .z0eb4aguide-title,
    .z0eb4afaq-title {
        font-size: 14px;
    }

    .z0eb4afeature-detail,
    .z0eb4asecurity-detail,
    .z0eb4adownload-detail,
    .z0eb4aguide-detail,
    .z0eb4afaq-detail {
        font-size: 12px;
    }

    /* 页脚响应式 */
    .z0eb4afooter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .z0eb4afooter-links ul,
    .z0eb4afooter-news ul {
        text-align: center;
    }
}

/* 导航当前栏目样式 */
.z0eb4amain-nav li.z0eb4athis a,
.z0eb4amain-nav li.z0eb4athis a:hover {
    color: #1a73e8;
}

.z0eb4amain-nav li.z0eb4athis a::after {
    width: 100%;
}

.z0eb4alogo h1 a {
    color: #1a73e8;
    text-decoration: none;
}

/* 内页布局 */
.z0eb4apage-main {
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.z0eb4abreadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.z0eb4abreadcrumb a {
    color: #1a73e8;
    text-decoration: none;
}

.z0eb4abreadcrumb a:hover {
    text-decoration: underline;
}

.z0eb4abreadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
}

.z0eb4abreadcrumb-current {
    color: #333;
}

.z0eb4apage-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.z0eb4aarticle-main,
.z0eb4alist-main {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

/* 内容页 */
.z0eb4aarticle-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.z0eb4aarticle-page-title {
    font-size: 28px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.z0eb4aarticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    font-size: 14px;
    color: #666;
}

.z0eb4aarticle-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.z0eb4ameta-item small {
    color: #999;
}

.z0eb4aarticle-thumb-main {
    padding: 0 30px;
    margin-top: 20px;
    text-align: center;
}

.z0eb4aarticle-thumb-main:empty {
    display: none;
    padding: 0;
    margin: 0;
}

.z0eb4aarticle-thumb-main img {
    max-width: 680px;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.z0eb4aarticle-thumb-main img[src=""],
.z0eb4aarticle-thumb-main img:not([src]) {
    display: none;
}

.z0eb4aarticle-thumb-main:not(:has(img[src]:not([src=""]))) {
    display: none;
    padding: 0;
    margin: 0;
}

.z0eb4adiyfield:empty,
.z0eb4aarticle-images:empty {
    display: none;
}

.z0eb4aclear {
    display: none;
}

.z0eb4aarticle-content {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.z0eb4aarticle-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}

.z0eb4aarticle-content p {
    margin-bottom: 15px;
}

.z0eb4adiyfield {
    padding: 0 30px 20px;
}

.z0eb4aarticle-images {
    padding: 0 30px 20px;
}

.z0eb4aarticle-figure {
    margin-bottom: 20px;
    text-align: center;
}

.z0eb4aarticle-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.z0eb4aarticle-figure figcaption {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.z0eb4ameta-tags {
    list-style: none;
    padding: 15px 30px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid #e0e0e0;
}

.z0eb4ameta-tags:empty {
    display: none;
    padding: 0;
    border: none;
}

.z0eb4atagitem a {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f7ff;
    color: #1a73e8;
    border-radius: 15px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid #1a73e8;
    transition: all 0.3s;
}

.z0eb4atagitem a:hover {
    background: #1a73e8;
    color: #fff;
}

.z0eb4aarticle-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.z0eb4aarticle-nav:empty {
    display: none;
}

.z0eb4aarticle-nav > *:first-child {
    flex: 1;
    min-width: 0;
}

.z0eb4aarticle-nav > *:last-child {
    flex: 1;
    min-width: 0;
    text-align: right;
}

.z0eb4aarticle-nav a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
}

.z0eb4aarticle-nav a:hover {
    text-decoration: underline;
}

.z0eb4arelated {
    padding: 25px 30px 30px;
    border-top: 1px solid #e0e0e0;
}

.z0eb4arelated-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a73e8;
}

.z0eb4arelated-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z0eb4arelated-item {
    border-bottom: 1px solid #eee;
}

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

.z0eb4arelated-link {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    text-decoration: none;
    transition: background 0.3s;
}

.z0eb4arelated-link:hover {
    background: #f8f9fa;
}

.z0eb4arelated-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    overflow: hidden;
    border-radius: 6px;
}

.z0eb4arelated-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z0eb4aarticle-thumb img,
.z0eb4alist-thumb img,
.z0eb4asidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z0eb4arelated-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.z0eb4arelated-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* 列表页 */
.z0eb4alist-header {
    padding: 25px 30px;
    border-bottom: 2px solid #1a73e8;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.z0eb4alist-title {
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
}

.z0eb4alist-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.z0eb4alist-subnav:empty {
    display: none;
    margin: 0;
}

.z0eb4asubnav-item {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f7ff;
    color: #1a73e8;
    border-radius: 15px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid #1a73e8;
    transition: all 0.3s;
}

.z0eb4asubnav-item:hover {
    background: #1a73e8;
    color: #fff;
}

.z0eb4alistbox {
    padding: 0;
}

.z0eb4alist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z0eb4alist-item {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s;
}

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

.z0eb4alist-item:hover {
    background: #f8f9fa;
}

.z0eb4alist-link {
    display: flex;
    gap: 20px;
    padding: 20px 30px;
    text-decoration: none;
}

.z0eb4alist-thumb {
    flex-shrink: 0;
    width: 240px;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.z0eb4alist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.z0eb4alist-item:hover .z0eb4alist-thumb img {
    transform: scale(1.05);
}

.z0eb4alist-info {
    flex: 1;
    min-width: 0;
}

.z0eb4alist-item-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.z0eb4alist-item:hover .z0eb4alist-item-title {
    color: #1a73e8;
}

.z0eb4alist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.z0eb4alist-meta-item small {
    color: #aaa;
}

.z0eb4alist-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 分页 - 左右显示 */
.z0eb4apagebar {
    padding: 25px 30px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.z0eb4apages {
    width: 100%;
}

.z0eb4apagelist,
.pagelist.z0eb4apagelist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.z0eb4apagelist li,
.pagelist.z0eb4apagelist li {
    display: inline-block;
    list-style: none;
}

.z0eb4apagelist a,
.z0eb4apagelist span,
.pagelist.z0eb4apagelist a,
.pagelist.z0eb4apagelist span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s;
}

.z0eb4apagelist a:hover,
.pagelist.z0eb4apagelist a:hover {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

.z0eb4apagelist .thisclass span,
.z0eb4apagelist .thisclass a,
.pagelist.z0eb4apagelist .thisclass span,
.pagelist.z0eb4apagelist .thisclass a {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

.z0eb4apagelist .pageinfo,
.pagelist.z0eb4apagelist .pageinfo {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    color: #666;
}

/* 侧栏 */
.z0eb4asidebar {
    width: 300px;
    flex-shrink: 0;
}

.z0eb4asidebar-block {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    overflow: hidden;
}

.z0eb4asidebar-title {
    padding: 15px 20px;
    font-size: 16px;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #1a73e8;
}

.z0eb4asidebar-title a {
    color: #333;
    text-decoration: none;
}

.z0eb4asidebar-title a:hover {
    color: #1a73e8;
}

.z0eb4asidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z0eb4asidebar-item {
    border-bottom: 1px solid #eee;
}

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

.z0eb4asidebar-link {
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    transition: background 0.3s;
}

.z0eb4asidebar-link:hover {
    background: #f0f7ff;
}

.z0eb4asidebar-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
}

.z0eb4asidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z0eb4asidebar-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.z0eb4asidebar-item-title {
    display: block;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.z0eb4asidebar-item-date {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

/* 首页文章板块 */
.z0eb4aarticles {
    padding: 80px 0;
    background-color: #fff;
}

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

.z0eb4aarticle-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.z0eb4aarticle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #1a73e8;
}

.z0eb4aarticle-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.z0eb4aarticle-thumb {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f0f0f0;
}

.z0eb4aarticle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.z0eb4aarticle-card:hover .z0eb4aarticle-thumb img {
    transform: scale(1.05);
}

.z0eb4aarticle-info {
    padding: 15px;
}

.z0eb4aarticle-title {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.z0eb4aarticle-card:hover .z0eb4aarticle-title {
    color: #1a73e8;
}

.z0eb4aarticle-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.z0eb4aarticle-date {
    font-size: 12px;
    color: #aaa;
}

/* 内页与文章板块响应式 */
@media (max-width: 1200px) {
    .z0eb4aarticle-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .z0eb4apage-layout {
        flex-direction: column;
    }

    .z0eb4asidebar {
        width: 100%;
    }

    .z0eb4aarticle-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z0eb4alist-thumb {
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .z0eb4aheader {
        position: fixed;
        width: 100%;
        top: 0;
    }

    .z0eb4aheader .z0eb4acontainer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 15px;
    }

    .z0eb4apage-main {
        padding-top: 80px;
    }

    .z0eb4aarticle-header,
    .z0eb4aarticle-content,
    .z0eb4arelated,
    .z0eb4alist-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .z0eb4aarticle-page-title {
        font-size: 22px;
    }

    .z0eb4aarticle-nav {
        flex-direction: column;
        padding: 15px 20px;
    }

    .z0eb4aarticle-nav > *:last-child {
        text-align: left;
    }

    .z0eb4alist-link {
        flex-direction: column;
        padding: 15px 20px;
    }

    .z0eb4alist-thumb {
        width: 100%;
        height: 180px;
    }

    .z0eb4alist-item-title {
        font-size: 16px;
    }

    .z0eb4apagelist {
        justify-content: center;
    }

    .z0eb4apagelist .pageinfo {
        width: 100%;
        order: -1;
        margin-bottom: 10px;
    }

    .z0eb4aarticle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .z0eb4arelated-link {
        flex-direction: column;
    }

    .z0eb4arelated-thumb {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .z0eb4aarticle-grid {
        grid-template-columns: 1fr;
    }

    .z0eb4aarticle-thumb {
        height: 180px;
    }

    .z0eb4abreadcrumb {
        font-size: 12px;
    }

    .z0eb4aarticle-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== 首页板块差异化布局 ===== */

/* 统一板块间距与标题 */
.z0eb4afeatures,
.z0eb4asecurity,
.z0eb4adownload-section,
.z0eb4aguide,
.z0eb4afaq,
.z0eb4aarticles {
    padding: 64px 0;
}

.z0eb4asection-title {
    margin-bottom: 36px;
    font-size: 32px;
    padding-bottom: 16px;
}

.z0eb4asection-intro {
    margin: -12px auto 32px;
}

/* 产品特点：Bento 网格 + 左侧色条卡片 */
.z0eb4afeatures {
    background: #fff;
    border: none;
    border-radius: 0;
    margin: 0;
}

.z0eb4afeatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.z0eb4afeatures-grid .z0eb4arow {
    display: contents;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
}

.z0eb4afeatures-grid .z0eb4acol-md-4 {
    flex: none;
    max-width: none;
    padding: 0;
    border: none;
    display: flex;
}

.z0eb4afeatures .z0eb4afeature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8eef5;
    border-left-width: 4px;
    border-left-color: #1a73e8;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.06);
}

.z0eb4afeatures .z0eb4afeature-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.z0eb4afeatures .z0eb4afeature-footer {
    margin-top: auto;
}

.z0eb4afeatures-grid .z0eb4acol-md-4:nth-child(3n+2) .z0eb4afeature-box {
    border-left-color: #34a853;
}

.z0eb4afeatures-grid .z0eb4acol-md-4:nth-child(3n) .z0eb4afeature-box {
    border-left-color: #7b1fa2;
}

.z0eb4afeatures .z0eb4afeature-header {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 20px 20px 10px;
    background: transparent;
    border-bottom: none;
}

.z0eb4afeatures .z0eb4afeature-header:after {
    display: none;
}

.z0eb4afeatures .z0eb4afeature-header h3 {
    border-bottom: none;
    padding: 0;
    font-size: 18px;
}

.z0eb4afeatures .z0eb4afeature-icon {
    margin: 0;
    font-size: 26px;
    padding: 8px;
    flex-shrink: 0;
}

.z0eb4afeatures .z0eb4afeature-list {
    border: none;
    background: transparent;
}

.z0eb4afeatures .z0eb4afeature-list li {
    padding: 8px 12px 8px 28px;
    border-bottom: 1px dashed #e8eef5;
    font-size: 13px;
}

.z0eb4afeatures .z0eb4afeature-detail {
    font-size: 11px;
    margin-top: 2px;
}

.z0eb4afeatures .z0eb4afeature-body {
    padding: 12px 16px 16px;
}

.z0eb4afeatures .z0eb4afeature-footer {
    padding-top: 10px;
    gap: 6px;
}

.z0eb4afeatures .z0eb4afeature-tag {
    font-size: 11px;
    padding: 3px 8px;
}

.z0eb4afeatures .z0eb4afeature-description {
    background: #f8fafc;
    border-left: none;
    border-radius: 8px;
    padding: 12px 14px;
}

.z0eb4afeatures .z0eb4afeature-description p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 安全保障：深色背景 + 玻璃卡片 */
.z0eb4asecurity {
    background: linear-gradient(160deg, #0a1628 0%, #1a3a5c 50%, #0d2137 100%);
}

.z0eb4asecurity-framework {
    margin: 0;
}

.z0eb4asecurity-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.z0eb4asecurity-col {
    flex: none;
    max-width: none;
    padding: 0;
    display: flex;
}

.z0eb4asecurity-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.z0eb4asecurity-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.z0eb4asecurity-footer {
    margin-top: auto;
}

.z0eb4asecurity .z0eb4asection-title {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.z0eb4asecurity .z0eb4asection-title:after {
    background: #64b5f6;
}

.z0eb4asecurity .z0eb4asection-intro {
    color: rgba(255, 255, 255, 0.7);
}

.z0eb4asecurity-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.z0eb4asecurity-box:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(100, 181, 246, 0.4);
    transform: translateY(-4px);
}

.z0eb4asecurity-header {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 22px 22px 12px;
    background: transparent;
    border-bottom: none;
}

.z0eb4asecurity-header:after {
    display: none;
}

.z0eb4asecurity-header h3 {
    color: #fff;
    border-bottom: none;
    padding: 0;
}

.z0eb4asecurity-icon {
    font-size: 32px;
    margin: 0;
    border-color: rgba(100, 181, 246, 0.5);
}

.z0eb4asecurity-description {
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid #64b5f6;
}

.z0eb4asecurity-description p {
    color: rgba(255, 255, 255, 0.85);
}

.z0eb4asecurity-list {
    border: none;
    background: transparent;
}

.z0eb4asecurity-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.z0eb4asecurity-title {
    color: #fff;
}

.z0eb4asecurity-detail {
    color: rgba(255, 255, 255, 0.55);
}

.z0eb4asecurity-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.z0eb4asecurity-metric {
    background: rgba(100, 181, 246, 0.15);
    border: 1px solid rgba(100, 181, 246, 0.25);
}

.z0eb4ametric-value {
    color: #64b5f6;
}

.z0eb4ametric-label {
    color: rgba(255, 255, 255, 0.6);
}

/* 下载中心：非对称双栏 + 渐变移动端卡片 */
.z0eb4adownload-section {
    background: #f0f4f8;
}

.z0eb4adownload-section .z0eb4adownload-framework {
    margin: 0;
}

.z0eb4adownload-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.z0eb4adownload-col {
    flex: none;
    max-width: none;
    padding: 0;
    display: flex;
}

.z0eb4adownload-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.z0eb4adownload-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.z0eb4adownload-footer {
    margin-top: auto;
}

.z0eb4adownload-col:first-child .z0eb4adownload-box {
    background: #fff;
    border: 2px dashed #c5d9f0;
    box-shadow: none;
}

.z0eb4adownload-col:first-child .z0eb4adownload-box:hover {
    border-color: #1a73e8;
    border-style: solid;
}

.z0eb4adownload-col:last-child .z0eb4adownload-box {
    background: linear-gradient(145deg, #1a73e8 0%, #0d47a1 100%);
    border: none;
    color: #fff;
}

.z0eb4adownload-col:last-child .z0eb4adownload-header {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.z0eb4adownload-col:last-child .z0eb4adownload-header h3,
.z0eb4adownload-col:last-child .z0eb4adownload-description p {
    color: #fff;
}

.z0eb4adownload-col:last-child .z0eb4adownload-description {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.5);
}

.z0eb4adownload-col:last-child .z0eb4ainfo-item {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.z0eb4adownload-col:last-child .z0eb4ainfo-label {
    color: rgba(255, 255, 255, 0.7);
}

.z0eb4adownload-col:last-child .z0eb4ainfo-value {
    color: #fff;
}

.z0eb4adownload-col:last-child .z0eb4afeature-list {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.z0eb4adownload-col:last-child .z0eb4afeature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.z0eb4adownload-col:last-child .z0eb4afeature-title {
    color: #fff;
}

.z0eb4adownload-col:last-child .z0eb4afeature-detail {
    color: rgba(255, 255, 255, 0.65);
}

.z0eb4adownload-col:last-child .z0eb4abtn-download {
    background: #fff;
    color: #1a73e8;
}

.z0eb4adownload-col:last-child .z0eb4abtn-download:hover {
    background: #f0f7ff;
}

.z0eb4adownload-col:last-child .z0eb4adownload-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.z0eb4adownload-section .z0eb4adownload-header {
    padding: 20px 20px 12px;
}

.z0eb4adownload-section .z0eb4adownload-body {
    padding: 16px 20px 20px;
}

.z0eb4adownload-section .z0eb4abtn-download {
    max-width: none;
    padding: 10px 20px;
}

.z0eb4asystem-requirements {
    margin-top: 36px;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e8f0;
}

.z0eb4arequirements-grid {
    grid-template-columns: repeat(4, 1fr);
}

.z0eb4arequirement-box {
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 14px;
}

.z0eb4arequirement-header {
    flex-direction: column;
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
}

.z0eb4arequirement-icon {
    font-size: 32px;
}

/* 使用指南：时间轴步骤 + 简约分类列表 */
.z0eb4aguide {
    background: #fff;
}

.z0eb4aguide-framework {
    margin: 0;
}

.z0eb4aguide-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    margin-bottom: 40px;
    padding-top: 20px;
    align-items: stretch;
}

.z0eb4aguide-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #1a73e8, #34a853, #7b1fa2);
    opacity: 0.25;
    z-index: 0;
}

.z0eb4aguide-timeline .z0eb4astep-box {
    background: #f8fafc;
    border: 1px solid #e8eef5;
    border-radius: 16px;
    box-shadow: none;
    position: relative;
    z-index: 1;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.z0eb4aguide-timeline .z0eb4astep-body {
    flex: 1;
}

.z0eb4aguide-timeline .z0eb4astep-box:hover {
    border-color: #1a73e8;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.1);
}

.z0eb4aguide-timeline .z0eb4astep-header {
    flex-direction: column;
    gap: 8px;
    border-bottom: none;
    padding-bottom: 0;
}

.z0eb4aguide-timeline .z0eb4astep-header:after {
    display: none;
}

.z0eb4aguide-timeline .z0eb4astep-number {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin: 0 auto;
}

.z0eb4aguide-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.z0eb4aguide-category {
    background: transparent;
    border: none;
    box-shadow: none;
    border-top: 3px solid #1a73e8;
    border-radius: 0;
}

.z0eb4aguide-category:nth-child(2) {
    border-top-color: #34a853;
}

.z0eb4aguide-category:nth-child(3) {
    border-top-color: #7b1fa2;
}

.z0eb4aguide-category:hover {
    transform: none;
    box-shadow: none;
}

.z0eb4aguide-category .z0eb4acategory-header {
    background: transparent;
    border-bottom: none;
    justify-content: flex-start;
    padding: 16px 0 12px;
}

.z0eb4aguide-category .z0eb4acategory-header:after {
    display: none;
}

.z0eb4aguide-category .z0eb4acategory-body {
    padding: 0 0 16px;
}

.z0eb4aguide-category .z0eb4acategory-list {
    border: none;
    background: transparent;
}

.z0eb4aguide-category .z0eb4acategory-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* 常见问题：居中窄栏 + 分类标签式 */
.z0eb4afaq {
    background: #f8fafc;
}

.z0eb4afaq-framework {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
}

.z0eb4afaq-category {
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    overflow: visible;
}

.z0eb4afaq-category:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.z0eb4afaq-header {
    justify-content: flex-start;
    background: linear-gradient(90deg, #f0f7ff 0%, #fff 100%);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 16px 24px;
}

.z0eb4afaq-header:after {
    display: none;
}

.z0eb4afaq-body {
    padding: 0 24px 20px;
}

.z0eb4afaq-item {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

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

.z0eb4afaq-question {
    background: transparent;
    padding: 16px 0;
    cursor: default;
}

.z0eb4afaq-question:hover {
    background: transparent;
}

.z0eb4afaq-answer {
    padding: 0 0 16px 36px;
    background: transparent;
}

/* 最新资讯：图片底部渐变叠加 */
.z0eb4aarticles {
    background: #fff;
}

.z0eb4aarticle-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: stretch;
}

.z0eb4aarticle-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.z0eb4aarticle-link {
    position: relative;
    display: block;
    height: 100%;
    min-height: 168px;
}

.z0eb4aarticle-thumb {
    height: 168px;
    min-height: 168px;
}

.z0eb4aarticle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z0eb4aarticle-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 14px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
}

.z0eb4aarticle-title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
    -webkit-line-clamp: 2;
}

.z0eb4aarticle-card:hover .z0eb4aarticle-title {
    color: #fff;
}

.z0eb4aarticle-date {
    color: rgba(255, 255, 255, 0.75);
}

/* 首页板块响应式 */
@media (max-width: 992px) {
    .z0eb4afeatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z0eb4asecurity-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .z0eb4asecurity-header {
        padding: 16px 14px 10px;
    }

    .z0eb4asecurity-body {
        padding: 14px 16px;
    }

    .z0eb4asecurity-header h3 {
        font-size: 16px;
    }

    .z0eb4adownload-row {
        grid-template-columns: 1fr;
    }

    .z0eb4aguide-timeline {
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .z0eb4aguide-timeline::before {
        display: none;
    }

    .z0eb4aguide-details {
        grid-template-columns: 1fr;
    }

    .z0eb4arequirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z0eb4aarticle-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z0eb4ahero {
        padding: 120px 0 56px;
    }
}

@media (max-width: 768px) {
    .z0eb4afeatures,
    .z0eb4asecurity,
    .z0eb4adownload-section,
    .z0eb4aguide,
    .z0eb4afaq,
    .z0eb4aarticles {
        padding: 48px 0;
    }

    .z0eb4aheader .z0eb4acontainer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 15px;
    }

    .z0eb4alogo h1 {
        margin-bottom: 0;
        font-size: 18px;
    }

    .z0eb4ahero {
        padding: 100px 0 48px;
    }

    .z0eb4ahero-content {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .z0eb4ahero-image {
        max-width: 100%;
        width: 100%;
    }

    .z0eb4afeatures-grid {
        grid-template-columns: 1fr;
    }

    .z0eb4asecurity-row {
        grid-template-columns: 1fr;
    }

    .z0eb4arequirements-grid {
        grid-template-columns: 1fr 1fr;
    }

    .z0eb4aarticle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z0eb4aarticle-thumb,
    .z0eb4aarticle-link {
        min-height: 150px;
    }

    .z0eb4aarticle-thumb {
        height: 150px;
    }

    .z0eb4adownload-buttons {
        flex-direction: column;
        align-items: center;
    }

    .z0eb4abtn {
        margin: 6px 0;
        width: 100%;
        max-width: 280px;
    }

    .z0eb4afaq-answer {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .z0eb4acontainer {
        padding: 0 16px;
    }

    .z0eb4asection-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .z0eb4asection-intro {
        margin: -8px auto 24px;
        font-size: 14px;
    }

    .z0eb4aarticle-grid {
        grid-template-columns: 1fr;
    }

    .z0eb4arequirements-grid {
        grid-template-columns: 1fr;
    }

    .z0eb4ahero-text h2 {
        font-size: 26px;
    }
}

/* 首页布局最终修正（覆盖旧规则冲突） */
main {
    overflow-x: hidden;
}

.z0eb4amain-nav ul {
    flex-wrap: wrap;
    gap: 4px 20px;
}

.z0eb4asecurity-framework {
    margin: 0 !important;
}

.z0eb4aguide-framework {
    margin: 0 !important;
}

.z0eb4afaq-framework {
    margin: 0 auto !important;
}

.z0eb4arow {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.z0eb4afeatures-grid .z0eb4acol-md-4 {
    border: none !important;
}

@media (max-width: 768px) {
    .z0eb4aheader {
        position: fixed !important;
        width: 100%;
        top: 0;
    }

    .z0eb4aheader .z0eb4acontainer {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        height: 60px !important;
        padding: 0 15px !important;
    }

    .z0eb4asecurity-row {
        grid-template-columns: 1fr !important;
    }

    .z0eb4adownload-section .z0eb4adownload-body {
        padding: 14px 16px 16px;
    }

    .z0eb4aguide-timeline .z0eb4astep-body {
        padding: 14px;
    }

    .z0eb4aguide-timeline .z0eb4astep-list li {
        padding: 8px 12px;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .z0eb4amain-nav li {
        margin-left: 16px;
    }

    .z0eb4amain-nav a {
        font-size: 14px;
    }
}

/* 打印样式优化 */
@media print {
    .z0eb4aheader,
    .z0eb4ahero,
    .z0eb4adownload-buttons,
    .z0eb4afooter {
        display: none;
    }

    .z0eb4acontainer {
        max-width: 100%;
        padding: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .z0eb4asection-title {
        font-size: 18pt;
        margin-bottom: 20pt;
    }

    .z0eb4afeature-box,
    .z0eb4asecurity-box,
    .z0eb4adownload-box,
    .z0eb4aguide-category,
    .z0eb4afaq-category {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 