/* 全局样式重置 */
* {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z36e0bmain-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;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0bhero-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;
}

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

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

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

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

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

.z36e0bhero .z36e0bbtn {
    margin: 0;
}

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

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

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

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

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

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

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

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

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

/* 特点盒子 */
.z36e0bfeature-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;
}

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

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

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

.z36e0bfeature-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%;
}

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

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

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

.z36e0bfeature-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;
}

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

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

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

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

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

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

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

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

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

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

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

.z36e0bsecurity-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;
}

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

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

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

.z36e0bsecurity-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%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0bdownload-framework {
    margin: 0;
}

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

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

.z36e0bdownload-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;
}

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

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

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

.z36e0bdownload-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%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0bbtn-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0bstep-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;
}

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

.z36e0bstep-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;
}

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

.z36e0bstep-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;
}

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

.z36e0bstep-body {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

.z36e0bguide-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;
}

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

.z36e0bcategory-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;
}

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

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

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

.z36e0bcategory-body {
    padding: 20px;
}

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

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

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

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

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

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

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

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

    .z36e0bstep-header,
    .z36e0bcategory-header {
        padding: 15px;
    }

    .z36e0bstep-body,
    .z36e0bcategory-body {
        padding: 15px;
    }

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

    .z36e0bstep-icon,
    .z36e0bcategory-icon {
        font-size: 20px;
    }

    .z36e0bstep-body h3,
    .z36e0bcategory-header h3 {
        font-size: 18px;
    }
}

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

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

.z36e0bfaq-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;
}

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

.z36e0bfaq-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;
}

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

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

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

.z36e0bfaq-body {
    padding: 20px;
}

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

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

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

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

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

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

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

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

.z36e0banswer-content {
    flex: 1;
}

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

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

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

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

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

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

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

    .z36e0bfaq-body {
        padding: 15px;
    }

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

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

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

    .z36e0bfaq-answer {
        padding: 15px;
    }

    .z36e0bquestion-icon,
    .z36e0banswer-icon {
        font-size: 18px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z36e0bsecurity-item,
    .z36e0bdownload-card,
    .z36e0bguide-item,
    .z36e0bfaq-item {
        padding: 20px;
    }

    .z36e0bfeature-box {
        padding: 20px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z36e0bfeature-item,
    .z36e0bdownload-card,
    .z36e0bstep {
        padding: 20px;
    }

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

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

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

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

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

    .z36e0bfeature-box,
    .z36e0bsecurity-box,
    .z36e0bdownload-box,
    .z36e0bguide-category,
    .z36e0bfaq-category {
        margin-bottom: 20px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z36e0bstep-box {
        width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z36e0bfeature-header,
    .z36e0bsecurity-header,
    .z36e0bdownload-header,
    .z36e0bguide-header,
    .z36e0bfaq-header {
        padding: 15px;
    }

    .z36e0bfeature-body,
    .z36e0bsecurity-body,
    .z36e0bdownload-body,
    .z36e0bguide-body,
    .z36e0bfaq-body {
        padding: 15px;
    }

    /* 列表项响应式 */
    .z36e0bfeature-list li,
    .z36e0bsecurity-list li,
    .z36e0bdownload-list li,
    .z36e0bguide-list li,
    .z36e0bfaq-list li {
        padding: 10px 15px;
    }

    .z36e0bfeature-title,
    .z36e0bsecurity-title,
    .z36e0bdownload-title,
    .z36e0bguide-title,
    .z36e0bfaq-title {
        font-size: 14px;
    }

    .z36e0bfeature-detail,
    .z36e0bsecurity-detail,
    .z36e0bdownload-detail,
    .z36e0bguide-detail,
    .z36e0bfaq-detail {
        font-size: 12px;
    }

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

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

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

.z36e0bmain-nav li.z36e0bthis a::after {
    width: 100%;
}

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

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

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

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

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

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

.z36e0bbreadcrumb-current {
    color: #333;
}

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

.z36e0barticle-main,
.z36e0blist-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;
}

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

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

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

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

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

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

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

.z36e0barticle-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);
}

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

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

.z36e0bdiyfield:empty,
.z36e0barticle-images:empty {
    display: none;
}

.z36e0bclear {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

.z36e0btagitem 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0barticle-thumb img,
.z36e0blist-thumb img,
.z36e0bsidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

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

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

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

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

.z36e0bsubnav-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;
}

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

.z36e0blistbox {
    padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0bpages {
    width: 100%;
}

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

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

.z36e0bpagelist a,
.z36e0bpagelist span,
.pagelist.z36e0bpagelist a,
.pagelist.z36e0bpagelist 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;
}

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

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

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

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

.z36e0bsidebar-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;
}

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

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

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

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

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

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

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

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

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

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

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

.z36e0bsidebar-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;
}

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

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

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

.z36e0barticle-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;
}

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

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

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

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

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

.z36e0barticle-info {
    padding: 15px;
}

.z36e0barticle-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;
}

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

.z36e0barticle-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;
}

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

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

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

    .z36e0bsidebar {
        width: 100%;
    }

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

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

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

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

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

    .z36e0barticle-header,
    .z36e0barticle-content,
    .z36e0brelated,
    .z36e0blist-header {
        padding-left: 20px;
        padding-right: 20px;
    }

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

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

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

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

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

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

    .z36e0bpagelist {
        justify-content: center;
    }

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

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

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

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

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

    .z36e0barticle-thumb {
        height: 180px;
    }

    .z36e0bbreadcrumb {
        font-size: 12px;
    }

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

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

/* 统一板块间距与标题 */
.z36e0bfeatures,
.z36e0bsecurity,
.z36e0bdownload-section,
.z36e0bguide,
.z36e0bfaq,
.z36e0barticles {
    padding: 64px 0;
}

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

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

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

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

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

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

.z36e0bfeatures .z36e0bfeature-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);
}

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

.z36e0bfeatures .z36e0bfeature-footer {
    margin-top: auto;
}

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

.z36e0bfeatures-grid .z36e0bcol-md-4:nth-child(3n) .z36e0bfeature-box {
    border-left-color: #7b1fa2;
}

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

.z36e0bfeatures .z36e0bfeature-header:after {
    display: none;
}

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

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

.z36e0bfeatures .z36e0bfeature-list {
    border: none;
    background: transparent;
}

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

.z36e0bfeatures .z36e0bfeature-detail {
    font-size: 11px;
    margin-top: 2px;
}

.z36e0bfeatures .z36e0bfeature-body {
    padding: 12px 16px 16px;
}

.z36e0bfeatures .z36e0bfeature-footer {
    padding-top: 10px;
    gap: 6px;
}

.z36e0bfeatures .z36e0bfeature-tag {
    font-size: 11px;
    padding: 3px 8px;
}

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

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

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

.z36e0bsecurity-framework {
    margin: 0;
}

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

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

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

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

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

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

.z36e0bsecurity .z36e0bsection-title:after {
    background: #64b5f6;
}

.z36e0bsecurity .z36e0bsection-intro {
    color: rgba(255, 255, 255, 0.7);
}

.z36e0bsecurity-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);
}

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

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

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

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

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

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

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

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

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

.z36e0bsecurity-title {
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0bdownload-col:last-child .z36e0binfo-value {
    color: #fff;
}

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

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

.z36e0bdownload-col:last-child .z36e0bfeature-title {
    color: #fff;
}

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

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

.z36e0bdownload-col:last-child .z36e0bbtn-download:hover {
    background: #f0f7ff;
}

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

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

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

.z36e0bdownload-section .z36e0bbtn-download {
    max-width: none;
    padding: 10px 20px;
}

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

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

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

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

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

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

.z36e0bguide-framework {
    margin: 0;
}

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

.z36e0bguide-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;
}

.z36e0bguide-timeline .z36e0bstep-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;
}

.z36e0bguide-timeline .z36e0bstep-body {
    flex: 1;
}

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

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

.z36e0bguide-timeline .z36e0bstep-header:after {
    display: none;
}

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

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

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

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

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

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

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

.z36e0bguide-category .z36e0bcategory-header:after {
    display: none;
}

.z36e0bguide-category .z36e0bcategory-body {
    padding: 0 0 16px;
}

.z36e0bguide-category .z36e0bcategory-list {
    border: none;
    background: transparent;
}

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

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

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

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

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

.z36e0bfaq-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0barticle-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%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .z36e0bfeatures,
    .z36e0bsecurity,
    .z36e0bdownload-section,
    .z36e0bguide,
    .z36e0bfaq,
    .z36e0barticles {
        padding: 48px 0;
    }

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

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

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

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

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

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

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

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

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

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

    .z36e0barticle-thumb {
        height: 150px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z36e0bfeatures-grid .z36e0bcol-md-4 {
    border: none !important;
}

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

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

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

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

    .z36e0bguide-timeline .z36e0bstep-body {
        padding: 14px;
    }

    .z36e0bguide-timeline .z36e0bstep-list li {
        padding: 8px 12px;
    }
}

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

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

/* 打印样式优化 */
@media print {
    .z36e0bheader,
    .z36e0bhero,
    .z36e0bdownload-buttons,
    .z36e0bfooter {
        display: none;
    }

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

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

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

    .z36e0bfeature-box,
    .z36e0bsecurity-box,
    .z36e0bdownload-box,
    .z36e0bguide-category,
    .z36e0bfaq-category {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 