/* 全局样式重置 */
* {
    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;
}

.z97bdbcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.z97bdbheader {
    background-color: #00B900;
    padding: 0.6rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.z97bdbheader .z97bdbcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z97bdblogo h1 {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.z97bdblogo-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.z97bdbmain-nav {
    display: flex;
    align-items: center;
}

.z97bdbmain-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.z97bdbmain-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.z97bdbmain-nav a:hover {
    opacity: 0.8;
}

.z97bdbmenu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.z97bdbmenu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 主要内容区域 */
main {
    margin-top: 65px;
}

/* 英雄区域 */
.z97bdbhero {
    background: linear-gradient(135deg, #00B900 0%, #00A000 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.z97bdbhero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.z97bdbhero-text {
    flex: 1;
    max-width: 600px;
}

.z97bdbhero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.z97bdbhero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.z97bdbhero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.z97bdbhero-image .z97bdbline-logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 按钮样式 */
.z97bdbbtn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.z97bdbbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.z97bdbbtn-primary {
    background-color: white;
    color: #00B900;
    margin-right: 1rem;
}

.z97bdbbtn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

/* 特性区域 */
.z97bdbfeatures {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.z97bdbfeatures h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.z97bdbfeatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.z97bdbfeature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.z97bdbfeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z97bdbfeature-card.z97bdbprimary {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.z97bdbfeature-card.z97bdbprimary .z97bdbfeature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.z97bdbfeature-card.z97bdbprimary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.z97bdbfeature-card.z97bdbprimary p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.z97bdbfeature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: #00B900;
}

.z97bdbfeature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.z97bdbfeature-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.z97bdbfeature-details {
    list-style: none;
    margin-top: auto;
    padding: 0;
}

.z97bdbfeature-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.z97bdbfeature-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00B900;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .z97bdbcontainer {
        padding: 0 15px;
    }

    .z97bdbfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .z97bdbversion-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .z97bdbguide-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .z97bdbguide-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .z97bdbheader {
        padding: 0.5rem 0;
    }

    .z97bdblogo h1 {
        font-size: 1.2rem;
    }

    .z97bdblogo-desc {
        font-size: 0.7rem;
    }

    .z97bdbmain-nav ul {
        gap: 1rem;
    }

    .z97bdbmain-nav a {
        font-size: 0.85rem;
    }

    main {
        margin-top: 60px;
    }

    .z97bdbhero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .z97bdbhero-text {
        max-width: 100%;
    }

    .z97bdbhero-text h2 {
        font-size: 2rem;
    }

    .z97bdbhero-text p {
        font-size: 1.1rem;
    }

    .z97bdbhero-image .z97bdbline-logo {
        max-height: 200px;
    }

    .z97bdbfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .z97bdbdownload-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .z97bdbrequirements-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .z97bdbfaq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .z97bdbguide-features {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .z97bdbmenu-toggle {
        display: flex;
    }

    .z97bdbmain-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #00B900;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .z97bdbmain-nav.z97bdbactive {
        right: 0;
    }

    .z97bdbmain-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .z97bdbmain-nav a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .z97bdbmenu-toggle.z97bdbactive span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .z97bdbmenu-toggle.z97bdbactive span:nth-child(2) {
        opacity: 0;
    }

    .z97bdbmenu-toggle.z97bdbactive span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .z97bdbheader {
        padding: 0.4rem 0;
    }

    .z97bdblogo h1 {
        font-size: 1.1rem;
    }

    .z97bdblogo-desc {
        font-size: 0.65rem;
    }

    .z97bdbmain-nav ul {
        gap: 0.8rem;
    }

    .z97bdbmain-nav a {
        font-size: 0.8rem;
    }

    main {
        margin-top: 55px;
    }

    .z97bdbhero-text h2 {
        font-size: 1.8rem;
    }

    .z97bdbhero-text p {
        font-size: 1rem;
    }

    .z97bdbhero-image .z97bdbline-logo {
        max-height: 150px;
    }

    .z97bdbfeatures-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .z97bdbfeature-card {
        padding: 1.2rem;
    }

    .z97bdbfeature-icon {
        font-size: 1.8rem;
    }

    .z97bdbfeature-card h3 {
        font-size: 1.1rem;
    }

    .z97bdbdownload-header {
        padding: 1rem;
    }

    .z97bdbdownload-content {
        padding: 1rem;
    }

    .z97bdbdownload-icon {
        font-size: 2rem;
    }

    .z97bdbdownload-header h3 {
        font-size: 1.1rem;
    }

    .z97bdbrequirements-header {
        padding: 1rem;
    }

    .z97bdbrequirements-content {
        padding: 1rem;
    }

    .z97bdbrequirements-header h3 {
        font-size: 1.1rem;
    }

    .z97bdbfaq-header {
        padding: 1rem;
    }

    .z97bdbfaq-content {
        padding: 1rem;
    }

    .z97bdbfaq-header h3 {
        font-size: 1.1rem;
    }

    .z97bdbguide-header {
        padding: 1rem;
    }

    .z97bdbguide-content {
        padding: 1rem;
    }

    .z97bdbguide-header h3 {
        font-size: 1.1rem;
    }

    .z97bdbbtn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .z97bdbsection-desc {
        font-size: 0.9rem;
    }

    .z97bdbmain-nav {
        width: 100%;
        max-width: none;
    }
}

/* 添加平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 优化导航栏在移动端的显示 */
@media (max-width: 768px) {
    .z97bdbmain-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .z97bdbmain-nav ul {
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .z97bdbmain-nav::-webkit-scrollbar {
        height: 3px;
    }

    .z97bdbmain-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
}

/* 优化图片加载 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 优化按钮在移动端的触摸区域 */
@media (max-width: 480px) {
    .z97bdbbtn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* 版本信息区域 */
.z97bdbversions {
    padding: 4rem 0;
    background-color: #fff;
}

.z97bdbversions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.z97bdbversion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.z97bdbversion-card, .z97bdbupdate-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.z97bdbversion-header, .z97bdbupdate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.z97bdbversion-header h3, .z97bdbupdate-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.z97bdbversion-date, .z97bdbupdate-date {
    color: #666;
    font-size: 0.9rem;
}

.z97bdbversion-content, .z97bdbupdate-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.z97bdbversion-platform {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.z97bdbversion-platform:hover {
    transform: translateX(5px);
}

.z97bdbplatform-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 10px;
}

.z97bdbplatform-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.z97bdbversion-number {
    color: #00B900;
    font-weight: bold;
    margin: 0;
    font-size: 0.9rem;
}

.z97bdbversion-size {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.z97bdbupdate-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.z97bdbupdate-item:hover {
    transform: translateX(5px);
}

.z97bdbupdate-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
}

.z97bdbupdate-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.z97bdbupdate-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 版本信息响应式设计 */
@media (max-width: 1200px) {
    .z97bdbversion-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .z97bdbversion-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .z97bdbversion-card, .z97bdbupdate-card {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .z97bdbversions {
        padding: 3rem 0;
    }

    .z97bdbversions h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .z97bdbversion-card, .z97bdbupdate-card {
        padding: 1.5rem;
    }

    .z97bdbversion-header, .z97bdbupdate-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .z97bdbversion-header h3, .z97bdbupdate-header h3 {
        font-size: 1.3rem;
    }

    .z97bdbversion-platform, .z97bdbupdate-item {
        padding: 0.8rem;
    }

    .z97bdbplatform-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }

    .z97bdbupdate-icon {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }

    .z97bdbplatform-info h4, .z97bdbupdate-info h4 {
        font-size: 1rem;
    }

    .z97bdbversion-number, .z97bdbversion-size, .z97bdbupdate-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .z97bdbversions {
        padding: 2rem 0;
    }

    .z97bdbversions h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .z97bdbversion-wrapper {
        gap: 1.5rem;
    }

    .z97bdbversion-card, .z97bdbupdate-card {
        padding: 1.2rem;
    }

    .z97bdbversion-header h3, .z97bdbupdate-header h3 {
        font-size: 1.2rem;
    }

    .z97bdbversion-date, .z97bdbupdate-date {
        font-size: 0.8rem;
    }

    .z97bdbversion-platform, .z97bdbupdate-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .z97bdbplatform-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .z97bdbupdate-icon {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }

    .z97bdbplatform-info h4, .z97bdbupdate-info h4 {
        font-size: 0.95rem;
    }

    .z97bdbversion-number, .z97bdbversion-size, .z97bdbupdate-info p {
        font-size: 0.8rem;
    }
}

/* 下载中心区域 */
.z97bdbdownload-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.z97bdbdownload-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.z97bdbdownload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.z97bdbdownload-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.z97bdbdownload-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z97bdbdownload-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.z97bdbdownload-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
}

.z97bdbdownload-badge {
    background: white;
    color: #00B900;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.z97bdbdownload-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.z97bdbdownload-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.z97bdbdownload-info {
    text-align: center;
}

.z97bdbdownload-info p {
    margin: 0.5rem 0;
    color: #666;
}

.z97bdbversion-info {
    color: #00B900;
    font-weight: 500;
}

.z97bdbdownload-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z97bdbdownload-features li {
    position: relative;
    padding-left: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.z97bdbdownload-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00B900;
}

.z97bdbbtn-download {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #00B900;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.z97bdbbtn-download:hover {
    background: #00A000;
}

/* 系统要求区域 */
.z97bdbrequirements {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.z97bdbrequirements h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.z97bdbrequirements-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.z97bdbrequirements-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.z97bdbrequirements-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z97bdbrequirements-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.z97bdbrequirements-header .z97bdbplatform-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.z97bdbrequirements-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.z97bdbrequirements-content {
    padding: 1.5rem;
}

.z97bdbrequirement-group {
    margin-bottom: 2rem;
}

.z97bdbrequirement-group:last-child {
    margin-bottom: 0;
}

.z97bdbrequirement-group h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.z97bdbrequirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z97bdbrequirement-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.z97bdbrequirement-list li:last-child {
    border-bottom: none;
}

.z97bdbrequirement-label {
    color: #666;
    font-size: 0.95rem;
}

.z97bdbrequirement-value {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

/* 常见问题区域 */
.z97bdbfaq {
    padding: 4rem 0;
    background-color: #fff;
}

.z97bdbfaq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.z97bdbfaq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.z97bdbfaq-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.z97bdbfaq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z97bdbfaq-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.z97bdbfaq-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.z97bdbfaq-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.z97bdbfaq-content {
    padding: 1.5rem;
}

.z97bdbfaq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.z97bdbfaq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.z97bdbfaq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.z97bdbquestion-icon {
    width: 24px;
    height: 24px;
    background: #00B900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.z97bdbfaq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
}

.z97bdbfaq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 2.5rem;
}

.z97bdbanswer-icon {
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.z97bdbfaq-answer p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 使用指南区域 */
.z97bdbguide {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.z97bdbguide h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.z97bdbguide-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.z97bdbguide-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.z97bdbguide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z97bdbguide-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.z97bdbguide-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.z97bdbguide-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.z97bdbguide-content {
    padding: 1.5rem;
}

.z97bdbguide-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.z97bdbguide-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.z97bdbstep-number {
    width: 32px;
    height: 32px;
    background: #00B900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.z97bdbstep-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.z97bdbstep-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.z97bdbguide-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.z97bdbfeature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.z97bdbfeature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.z97bdbfeature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
    flex-shrink: 0;
}

.z97bdbfeature-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.z97bdbfeature-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 使用指南响应式设计 */
@media (max-width: 1024px) {
    .z97bdbguide-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .z97bdbguide-main .z97bdbguide-card {
        max-width: 800px;
        margin: 0 auto;
    }

    .z97bdbguide-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .z97bdbguide {
        padding: 3rem 0;
    }

    .z97bdbguide h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .z97bdbguide-features {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .z97bdbguide-header {
        padding: 1.2rem;
    }

    .z97bdbguide-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }

    .z97bdbguide-header h3 {
        font-size: 1.3rem;
    }

    .z97bdbguide-content {
        padding: 1.2rem;
    }

    .z97bdbguide-step, .z97bdbfeature-item {
        gap: 0.8rem;
    }

    .z97bdbstep-number {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .z97bdbstep-info h4, .z97bdbfeature-info h4 {
        font-size: 1rem;
    }

    .z97bdbstep-info p, .z97bdbfeature-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .z97bdbguide {
        padding: 2rem 0;
    }

    .z97bdbguide h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .z97bdbguide-header {
        padding: 1rem;
    }

    .z97bdbguide-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .z97bdbguide-header h3 {
        font-size: 1.2rem;
    }

    .z97bdbguide-content {
        padding: 1rem;
    }

    .z97bdbguide-step, .z97bdbfeature-item {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .z97bdbstep-number {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .z97bdbfeature-icon {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }

    .z97bdbstep-info h4, .z97bdbfeature-info h4 {
        font-size: 0.95rem;
    }

    .z97bdbstep-info p, .z97bdbfeature-info p {
        font-size: 0.85rem;
    }
}

/* 页脚样式 */
.z97bdbfooter {
    background-color: #f5f5f5;
    padding: 3rem 0;
    margin-top: 4rem;
}

.z97bdbfooter .z97bdbcontainer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.z97bdbfooter-links {
    text-align: center;
}

.z97bdbfooter-links h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.z97bdbfooter-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.z97bdbfooter-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.z97bdbfooter-links a:hover {
    color: #00B900;
}

.z97bdbfooter-info {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.z97bdbfooter-info a {
    color: #00B900;
    text-decoration: none;
}

.z97bdbfooter-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .z97bdbfooter {
        padding: 2rem 0;
    }

    .z97bdbfooter-links ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .z97bdbfooter-info {
        font-size: 0.85rem;
    }
}