/* 全局样式重置 */
* {
    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;
}

.zbfbddcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.zbfbddheader {
    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);
}

.zbfbddheader .zbfbddcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zbfbddlogo h1 {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.zbfbddlogo-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.zbfbddmain-nav {
    display: flex;
    align-items: center;
}

.zbfbddmain-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.zbfbddmain-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.zbfbddmain-nav a:hover {
    opacity: 0.8;
}

.zbfbddmenu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.zbfbddmenu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 主要内容区域 */
main {
    margin-top: 65px;
}

/* 英雄区域 */
.zbfbddhero {
    background: linear-gradient(135deg, #00B900 0%, #00A000 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.zbfbddhero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.zbfbddhero-text {
    flex: 1;
    max-width: 600px;
}

.zbfbddhero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.zbfbddhero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.zbfbddhero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zbfbddhero-image .zbfbddline-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);
    }
}

/* 按钮样式 */
.zbfbddbtn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.zbfbddbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.zbfbddbtn-primary {
    background-color: white;
    color: #00B900;
    margin-right: 1rem;
}

.zbfbddbtn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

/* 特性区域 */
.zbfbddfeatures {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.zbfbddfeatures h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zbfbddfeatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zbfbddfeature-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;
}

.zbfbddfeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.zbfbddfeature-card.zbfbddprimary {
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
}

.zbfbddfeature-card.zbfbddprimary .zbfbddfeature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.zbfbddfeature-card.zbfbddprimary h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.zbfbddfeature-card.zbfbddprimary p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.zbfbddfeature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: #00B900;
}

.zbfbddfeature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.zbfbddfeature-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.zbfbddfeature-details {
    list-style: none;
    margin-top: auto;
    padding: 0;
}

.zbfbddfeature-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.zbfbddfeature-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00B900;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zbfbddcontainer {
        padding: 0 15px;
    }

    .zbfbddfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .zbfbddversion-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zbfbddguide-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zbfbddguide-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zbfbddheader {
        padding: 0.5rem 0;
    }

    .zbfbddlogo h1 {
        font-size: 1.2rem;
    }

    .zbfbddlogo-desc {
        font-size: 0.7rem;
    }

    .zbfbddmain-nav ul {
        gap: 1rem;
    }

    .zbfbddmain-nav a {
        font-size: 0.85rem;
    }

    main {
        margin-top: 60px;
    }

    .zbfbddhero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .zbfbddhero-text {
        max-width: 100%;
    }

    .zbfbddhero-text h2 {
        font-size: 2rem;
    }

    .zbfbddhero-text p {
        font-size: 1.1rem;
    }

    .zbfbddhero-image .zbfbddline-logo {
        max-height: 200px;
    }

    .zbfbddfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .zbfbdddownload-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .zbfbddrequirements-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .zbfbddfaq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .zbfbddguide-features {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .zbfbddmenu-toggle {
        display: flex;
    }

    .zbfbddmain-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);
    }

    .zbfbddmain-nav.zbfbddactive {
        right: 0;
    }

    .zbfbddmain-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .zbfbddmain-nav a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .zbfbddmenu-toggle.zbfbddactive span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .zbfbddmenu-toggle.zbfbddactive span:nth-child(2) {
        opacity: 0;
    }

    .zbfbddmenu-toggle.zbfbddactive span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .zbfbddheader {
        padding: 0.4rem 0;
    }

    .zbfbddlogo h1 {
        font-size: 1.1rem;
    }

    .zbfbddlogo-desc {
        font-size: 0.65rem;
    }

    .zbfbddmain-nav ul {
        gap: 0.8rem;
    }

    .zbfbddmain-nav a {
        font-size: 0.8rem;
    }

    main {
        margin-top: 55px;
    }

    .zbfbddhero-text h2 {
        font-size: 1.8rem;
    }

    .zbfbddhero-text p {
        font-size: 1rem;
    }

    .zbfbddhero-image .zbfbddline-logo {
        max-height: 150px;
    }

    .zbfbddfeatures-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .zbfbddfeature-card {
        padding: 1.2rem;
    }

    .zbfbddfeature-icon {
        font-size: 1.8rem;
    }

    .zbfbddfeature-card h3 {
        font-size: 1.1rem;
    }

    .zbfbdddownload-header {
        padding: 1rem;
    }

    .zbfbdddownload-content {
        padding: 1rem;
    }

    .zbfbdddownload-icon {
        font-size: 2rem;
    }

    .zbfbdddownload-header h3 {
        font-size: 1.1rem;
    }

    .zbfbddrequirements-header {
        padding: 1rem;
    }

    .zbfbddrequirements-content {
        padding: 1rem;
    }

    .zbfbddrequirements-header h3 {
        font-size: 1.1rem;
    }

    .zbfbddfaq-header {
        padding: 1rem;
    }

    .zbfbddfaq-content {
        padding: 1rem;
    }

    .zbfbddfaq-header h3 {
        font-size: 1.1rem;
    }

    .zbfbddguide-header {
        padding: 1rem;
    }

    .zbfbddguide-content {
        padding: 1rem;
    }

    .zbfbddguide-header h3 {
        font-size: 1.1rem;
    }

    .zbfbddbtn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .zbfbddsection-desc {
        font-size: 0.9rem;
    }

    .zbfbddmain-nav {
        width: 100%;
        max-width: none;
    }
}

/* 添加平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 优化导航栏在移动端的显示 */
@media (max-width: 768px) {
    .zbfbddmain-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .zbfbddmain-nav ul {
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .zbfbddmain-nav::-webkit-scrollbar {
        height: 3px;
    }

    .zbfbddmain-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) {
    .zbfbddbtn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* 版本信息区域 */
.zbfbddversions {
    padding: 4rem 0;
    background-color: #fff;
}

.zbfbddversions h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zbfbddversion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zbfbddversion-card, .zbfbddupdate-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.zbfbddversion-header, .zbfbddupdate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.zbfbddversion-header h3, .zbfbddupdate-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.zbfbddversion-date, .zbfbddupdate-date {
    color: #666;
    font-size: 0.9rem;
}

.zbfbddversion-content, .zbfbddupdate-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zbfbddversion-platform {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.zbfbddversion-platform:hover {
    transform: translateX(5px);
}

.zbfbddplatform-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 10px;
}

.zbfbddplatform-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.zbfbddversion-number {
    color: #00B900;
    font-weight: bold;
    margin: 0;
    font-size: 0.9rem;
}

.zbfbddversion-size {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.zbfbddupdate-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.zbfbddupdate-item:hover {
    transform: translateX(5px);
}

.zbfbddupdate-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
}

.zbfbddupdate-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.zbfbddupdate-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 版本信息响应式设计 */
@media (max-width: 1200px) {
    .zbfbddversion-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .zbfbddversion-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zbfbddversion-card, .zbfbddupdate-card {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .zbfbddversions {
        padding: 3rem 0;
    }

    .zbfbddversions h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .zbfbddversion-card, .zbfbddupdate-card {
        padding: 1.5rem;
    }

    .zbfbddversion-header, .zbfbddupdate-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .zbfbddversion-header h3, .zbfbddupdate-header h3 {
        font-size: 1.3rem;
    }

    .zbfbddversion-platform, .zbfbddupdate-item {
        padding: 0.8rem;
    }

    .zbfbddplatform-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }

    .zbfbddupdate-icon {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }

    .zbfbddplatform-info h4, .zbfbddupdate-info h4 {
        font-size: 1rem;
    }

    .zbfbddversion-number, .zbfbddversion-size, .zbfbddupdate-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .zbfbddversions {
        padding: 2rem 0;
    }

    .zbfbddversions h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .zbfbddversion-wrapper {
        gap: 1.5rem;
    }

    .zbfbddversion-card, .zbfbddupdate-card {
        padding: 1.2rem;
    }

    .zbfbddversion-header h3, .zbfbddupdate-header h3 {
        font-size: 1.2rem;
    }

    .zbfbddversion-date, .zbfbddupdate-date {
        font-size: 0.8rem;
    }

    .zbfbddversion-platform, .zbfbddupdate-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .zbfbddplatform-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .zbfbddupdate-icon {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }

    .zbfbddplatform-info h4, .zbfbddupdate-info h4 {
        font-size: 0.95rem;
    }

    .zbfbddversion-number, .zbfbddversion-size, .zbfbddupdate-info p {
        font-size: 0.8rem;
    }
}

/* 下载中心区域 */
.zbfbdddownload-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.zbfbdddownload-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zbfbdddownload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zbfbdddownload-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;
}

.zbfbdddownload-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.zbfbdddownload-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;
}

.zbfbdddownload-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
}

.zbfbdddownload-badge {
    background: white;
    color: #00B900;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.zbfbdddownload-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zbfbdddownload-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.zbfbdddownload-info {
    text-align: center;
}

.zbfbdddownload-info p {
    margin: 0.5rem 0;
    color: #666;
}

.zbfbddversion-info {
    color: #00B900;
    font-weight: 500;
}

.zbfbdddownload-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zbfbdddownload-features li {
    position: relative;
    padding-left: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.zbfbdddownload-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00B900;
}

.zbfbddbtn-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;
}

.zbfbddbtn-download:hover {
    background: #00A000;
}

/* 系统要求区域 */
.zbfbddrequirements {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.zbfbddrequirements h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zbfbddrequirements-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zbfbddrequirements-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;
}

.zbfbddrequirements-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.zbfbddrequirements-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.zbfbddrequirements-header .zbfbddplatform-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;
}

.zbfbddrequirements-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.zbfbddrequirements-content {
    padding: 1.5rem;
}

.zbfbddrequirement-group {
    margin-bottom: 2rem;
}

.zbfbddrequirement-group:last-child {
    margin-bottom: 0;
}

.zbfbddrequirement-group h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.zbfbddrequirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zbfbddrequirement-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.zbfbddrequirement-list li:last-child {
    border-bottom: none;
}

.zbfbddrequirement-label {
    color: #666;
    font-size: 0.95rem;
}

.zbfbddrequirement-value {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

/* 常见问题区域 */
.zbfbddfaq {
    padding: 4rem 0;
    background-color: #fff;
}

.zbfbddfaq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zbfbddfaq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zbfbddfaq-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;
}

.zbfbddfaq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.zbfbddfaq-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.zbfbddfaq-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;
}

.zbfbddfaq-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.zbfbddfaq-content {
    padding: 1.5rem;
}

.zbfbddfaq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.zbfbddfaq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zbfbddfaq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.zbfbddquestion-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;
}

.zbfbddfaq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
}

.zbfbddfaq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 2.5rem;
}

.zbfbddanswer-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;
}

.zbfbddfaq-answer p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 使用指南区域 */
.zbfbddguide {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.zbfbddguide h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.zbfbddguide-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zbfbddguide-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;
}

.zbfbddguide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.zbfbddguide-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.zbfbddguide-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;
}

.zbfbddguide-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.zbfbddguide-content {
    padding: 1.5rem;
}

.zbfbddguide-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.zbfbddguide-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zbfbddstep-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;
}

.zbfbddstep-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.zbfbddstep-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.zbfbddguide-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.zbfbddfeature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.zbfbddfeature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zbfbddfeature-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;
}

.zbfbddfeature-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.zbfbddfeature-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 使用指南响应式设计 */
@media (max-width: 1024px) {
    .zbfbddguide-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zbfbddguide-main .zbfbddguide-card {
        max-width: 800px;
        margin: 0 auto;
    }

    .zbfbddguide-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zbfbddguide {
        padding: 3rem 0;
    }

    .zbfbddguide h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .zbfbddguide-features {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .zbfbddguide-header {
        padding: 1.2rem;
    }

    .zbfbddguide-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }

    .zbfbddguide-header h3 {
        font-size: 1.3rem;
    }

    .zbfbddguide-content {
        padding: 1.2rem;
    }

    .zbfbddguide-step, .zbfbddfeature-item {
        gap: 0.8rem;
    }

    .zbfbddstep-number {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .zbfbddstep-info h4, .zbfbddfeature-info h4 {
        font-size: 1rem;
    }

    .zbfbddstep-info p, .zbfbddfeature-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .zbfbddguide {
        padding: 2rem 0;
    }

    .zbfbddguide h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .zbfbddguide-header {
        padding: 1rem;
    }

    .zbfbddguide-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .zbfbddguide-header h3 {
        font-size: 1.2rem;
    }

    .zbfbddguide-content {
        padding: 1rem;
    }

    .zbfbddguide-step, .zbfbddfeature-item {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .zbfbddstep-number {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .zbfbddfeature-icon {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }

    .zbfbddstep-info h4, .zbfbddfeature-info h4 {
        font-size: 0.95rem;
    }

    .zbfbddstep-info p, .zbfbddfeature-info p {
        font-size: 0.85rem;
    }
}

/* 页脚样式 */
.zbfbddfooter {
    background-color: #f5f5f5;
    padding: 3rem 0;
    margin-top: 4rem;
}

.zbfbddfooter .zbfbddcontainer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.zbfbddfooter-links {
    text-align: center;
}

.zbfbddfooter-links h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.zbfbddfooter-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.zbfbddfooter-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.zbfbddfooter-links a:hover {
    color: #00B900;
}

.zbfbddfooter-info {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.zbfbddfooter-info a {
    color: #00B900;
    text-decoration: none;
}

.zbfbddfooter-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .zbfbddfooter {
        padding: 2rem 0;
    }

    .zbfbddfooter-links ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .zbfbddfooter-info {
        font-size: 0.85rem;
    }
}