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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z88effheader .z88effcontainer {
        flex-direction: column;
        height: auto;
        padding: 8px;
    }

    .z88efflogo h1 {
        font-size: 18px;
        margin-bottom: 4px;
    }
}

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

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

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

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

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

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

.z88effhero-image img {
    max-width: 100%;
    height: auto;
    /* 新增：放大图片 */
    width: 600px;
    max-height: 400px;
    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;
}

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

.z88effdownload-buttons {
    display: flex;
    gap: 20px;
}

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

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

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

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

/* 特点部分 */
.z88efffeatures {
    padding: 80px 0;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    margin: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z88effstep-body {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z88effcategory-body {
    padding: 20px;
}

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

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

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

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

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

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

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

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

    .z88effstep-header,
    .z88effcategory-header {
        padding: 15px;
    }

    .z88effstep-body,
    .z88effcategory-body {
        padding: 15px;
    }

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

    .z88effstep-icon,
    .z88effcategory-icon {
        font-size: 20px;
    }

    .z88effstep-body h3,
    .z88effcategory-header h3 {
        font-size: 18px;
    }
}

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

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

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

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

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

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

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

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

.z88efffaq-body {
    padding: 20px;
}

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

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

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

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

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

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

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

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

.z88effanswer-content {
    flex: 1;
}

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

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

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

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

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

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

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

    .z88efffaq-body {
        padding: 15px;
    }

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

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

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

    .z88efffaq-answer {
        padding: 15px;
    }

    .z88effquestion-icon,
    .z88effanswer-icon {
        font-size: 18px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .z88effheader .z88effcontainer {
        flex-direction: column;
        height: auto;
        padding: 8px;
    }

    .z88effmain-nav ul {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .z88effmain-nav li {
        margin: 10px 0;
    }

    .z88effhero {
        padding: 120px 0 60px;
    }

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

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

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

    .z88effhero-image img {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: 50vw;
        display: block;
        margin: 0 auto;
    }

    .z88effbtn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }

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

    .z88effsecurity-item,
    .z88effdownload-card,
    .z88effguide-item,
    .z88efffaq-item {
        padding: 20px;
    }

    .z88efffeature-box {
        padding: 20px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z88efffeature-item,
    .z88effdownload-card,
    .z88effstep {
        padding: 20px;
    }

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

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

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

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

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

    .z88efffeature-box,
    .z88effsecurity-box,
    .z88effdownload-box,
    .z88effguide-category,
    .z88efffaq-category {
        margin-bottom: 20px;
    }
}

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

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

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

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

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

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

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

    .z88effhero-image img {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: 50vw;
        display: block;
        margin: 0 auto;
    }

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

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

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

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

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

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

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

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

    .z88effstep-box {
        width: 100%;
    }

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

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

    /* 导航栏响应式 */
    .z88effheader {
        position: relative;
    }

    .z88effheader .z88effcontainer {
        flex-direction: column;
        padding: 15px;
    }

    .z88efflogo h1 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .z88effmain-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .z88effmain-nav li {
        margin: 0;
    }

    /* 英雄区域响应式 */
    .z88effhero {
        padding: 120px 0 60px;
    }

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

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

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

    .z88effhero-image img {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: 50vw;
        display: block;
        margin: 0 auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z88effhero-image img {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: 50vw;
        display: block;
        margin: 0 auto;
    }

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

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

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

    .z88efffeature-header,
    .z88effsecurity-header,
    .z88effdownload-header,
    .z88effguide-header,
    .z88efffaq-header {
        padding: 15px;
    }

    .z88efffeature-body,
    .z88effsecurity-body,
    .z88effdownload-body,
    .z88effguide-body,
    .z88efffaq-body {
        padding: 15px;
    }

    /* 列表项响应式 */
    .z88efffeature-list li,
    .z88effsecurity-list li,
    .z88effdownload-list li,
    .z88effguide-list li,
    .z88efffaq-list li {
        padding: 10px 15px;
    }

    .z88efffeature-title,
    .z88effsecurity-title,
    .z88effdownload-title,
    .z88effguide-title,
    .z88efffaq-title {
        font-size: 14px;
    }

    .z88efffeature-detail,
    .z88effsecurity-detail,
    .z88effdownload-detail,
    .z88effguide-detail,
    .z88efffaq-detail {
        font-size: 12px;
    }

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

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

/* 打印样式优化 */
@media print {
    .z88effheader,
    .z88effhero,
    .z88effdownload-buttons,
    .z88efffooter {
        display: none;
    }

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

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

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

    .z88efffeature-box,
    .z88effsecurity-box,
    .z88effdownload-box,
    .z88effguide-category,
    .z88efffaq-category {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 