/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.z8b3fccontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.z8b3fcheader {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.z8b3fcheader .z8b3fccontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.z8b3fclogo {
    display: flex;
    align-items: center;
}

.z8b3fclogo h1 {
    font-size: 24px;
    color: #1a73e8;
}

/* 移动端菜单按钮 */
.z8b3fcmobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.z8b3fcmobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.z8b3fcmain-nav ul {
    display: flex;
    list-style: none;
}

.z8b3fcmain-nav li {
    margin-left: 24px;
}

.z8b3fcmain-nav li:first-child {
    margin-left: 0;
}

.z8b3fcmain-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.z8b3fcmain-nav a:hover {
    color: #1a73e8;
}

/* 英雄区域样式 */
.z8b3fchero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 130px 0 70px;
    position: relative;
    overflow: hidden;
}

.z8b3fchero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.z8b3fchero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.z8b3fchero .z8b3fccontainer {
    position: relative;
    z-index: 1;
}

.z8b3fchero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.z8b3fchero-text {
    text-align: left;
}

.z8b3fchero-text h2 {
    font-size: clamp(1.6em, 4vw, 2.2em);
    margin-bottom: 16px;
    line-height: 1.3;
}

.z8b3fchero-text p {
    font-size: clamp(0.95em, 2vw, 1.1em);
    margin-bottom: 14px;
    line-height: 1.7;
}

.z8b3fchero-sub {
    font-size: 0.95em !important;
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: 24px !important;
}

.z8b3fcsection-desc {
    max-width: 800px;
    margin: -30px auto 40px;
    text-align: center;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.z8b3fchero-image {
    text-align: center;
}

.z8b3fchero-showcase {
    max-width: 100%;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.z8b3fchero-showcase:hover {
    transform: scale(1.02);
}

.z8b3fchero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin: 40px 0;
}

.z8b3fcstat-item {
    text-align: center;
}

.z8b3fcstat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.z8b3fcstat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* 按钮样式 */
.z8b3fcbtn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin: 0 10px;
}

.z8b3fchero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.z8b3fchero-buttons .z8b3fcbtn {
    display: inline-block;
    padding: 11px 20px;
    margin: 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

.z8b3fcbtn-android {
    background-color: #3DDC84;
    color: #000000;
}

.z8b3fcbtn-ios {
    background-color: #007AFF;
    color: #FFFFFF;
}

.z8b3fcbtn-register {
    background-color: #FF6B00;
    color: #FFFFFF;
}

.z8b3fchero-buttons .z8b3fcbtn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.z8b3fcbtn-primary {
    background-color: #fff;
    color: #1a73e8;
}

.z8b3fcbtn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.z8b3fcbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 板块通用标题 */
.z8b3fcsection-title {
    font-size: clamp(1.5em, 3vw, 1.85em);
    margin-bottom: 10px;
    color: #333;
}

.z8b3fcsection-title-left {
    text-align: left;
}

.z8b3fcsection-head {
    margin-bottom: 40px;
}

.z8b3fcsection-head-center {
    text-align: center;
}

.z8b3fcsection-head-left {
    text-align: left;
    border-left: 4px solid #1a73e8;
    padding-left: 20px;
}

.z8b3fcsection-head-light .z8b3fcsection-title,
.z8b3fcsection-head-light .z8b3fcsection-subtitle {
    color: #fff;
}

.z8b3fcsection-subtitle {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

.z8b3fcsection-subtitle-left {
    text-align: left;
}

.z8b3fcsection-desc-left {
    max-width: none;
    margin: 0 0 20px;
    text-align: left;
    color: #666;
}

/* 平台优势 - Bento 不规则网格 */
.z8b3fcfeatures {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.z8b3fcfeatures-bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    align-items: stretch;
}

.z8b3fcfeature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.z8b3fcfeature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26,115,232,0.12);
}

.z8b3fcfeature-main {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #fff 0%, #e8f0fe 100%);
    border: 1px solid #dbeafe;
}

.z8b3fcfeature-side:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.z8b3fcfeature-side:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.z8b3fcfeature-wide {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border-left: 4px solid #1a73e8;
}

.z8b3fcfeature-icon {
    font-size: 2.2em;
    flex-shrink: 0;
}

.z8b3fcfeature-main .z8b3fcfeature-icon {
    font-size: 3em;
    margin-bottom: 16px;
}

.z8b3fcfeature-card h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #222;
}

.z8b3fcfeature-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.z8b3fcfeature-list {
    list-style: none;
}

.z8b3fcfeature-list li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.z8b3fcfeature-list li:before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.z8b3fcfeature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.z8b3fcfeature-tags li {
    padding: 6px 14px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 20px;
    font-size: 13px;
}

/* 交易服务 - 编号列表 */
.z8b3fctrading {
    padding: 70px 0;
    background: #fff;
}

.z8b3fctrading-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.z8b3fctrading-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 16px;
    border-bottom: 1px solid #eee;
    border-radius: 12px;
    transition: background 0.3s;
}

.z8b3fctrading-row:last-child {
    border-bottom: none;
}

.z8b3fctrading-row:hover {
    background: #f8f9fa;
}

.z8b3fctrading-num {
    flex-shrink: 0;
    font-size: 2.5em;
    font-weight: 800;
    color: #e8f0fe;
    line-height: 1;
    width: 70px;
    -webkit-text-stroke: 1px #1a73e8;
    color: transparent;
}

.z8b3fctrading-content {
    flex: 1;
    min-width: 0;
}

.z8b3fctrading-content h3 {
    font-size: 1.25em;
    color: #1a73e8;
    margin-bottom: 8px;
}

.z8b3fctrading-content p {
    color: #666;
    margin-bottom: 14px;
    line-height: 1.7;
}

.z8b3fctrading-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.z8b3fctrading-tags span {
    padding: 5px 12px;
    background: #f0f4f8;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
}

/* 安全保障 - 深色横条 */
.z8b3fcsecurity {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1a73e8 100%);
}

.z8b3fcsecurity-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.z8b3fcsecurity-col {
    text-align: center;
    padding: 20px;
}

.z8b3fcsecurity-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    backdrop-filter: blur(4px);
}

.z8b3fcsecurity-col h3 {
    color: #fff;
    font-size: 1.15em;
    margin-bottom: 12px;
}

.z8b3fcsecurity-col p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.7;
}

/* 下载区域 - 左右分栏 + 横条卡片 */
.z8b3fcdownload {
    padding: 70px 0;
    background: #f8f9fa;
}

.z8b3fcdownload-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.z8b3fcdownload-intro {
    position: sticky;
    top: 100px;
}

.z8b3fcdownload-platforms {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z8b3fcdownload-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

.z8b3fcdownload-row:hover {
    box-shadow: 0 6px 24px rgba(26,115,232,0.12);
}

.z8b3fcdownload-android {
    border-left: 4px solid #3DDC84;
}

.z8b3fcdownload-ios {
    border-left: 4px solid #007AFF;
}

.z8b3fcdownload-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.z8b3fcdownload-android .z8b3fcdownload-badge {
    background: #3DDC84;
    color: #000;
}

.z8b3fcdownload-ios .z8b3fcdownload-badge {
    background: #007AFF;
}

.z8b3fcdownload-info {
    flex: 1;
    min-width: 0;
}

.z8b3fcdownload-info h3 {
    font-size: 1.1em;
    margin-bottom: 4px;
}

.z8b3fcdownload-info p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.z8b3fcversion-info {
    display: flex;
    gap: 16px;
}

.z8b3fcversion-info span {
    font-size: 12px;
    color: #aaa;
}

.z8b3fcdownload-row .z8b3fcbtn-download {
    flex-shrink: 0;
    margin: 0;
    margin-left: auto;
    padding: 10px 18px;
    font-size: 14px;
}

.z8b3fcbtn-download {
    background-color: #1a73e8;
    color: #fff;
}

/* 注册指南 - 横向时间轴 */
.z8b3fcguide {
    padding: 70px 0;
    background: #fff;
}

.z8b3fcguide-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    align-items: stretch;
}

.z8b3fcguide-timeline::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #64b5f6);
    z-index: 0;
}

.z8b3fcguide-timeline .z8b3fcstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
    height: 100%;
}

.z8b3fcstep-marker {
    margin-bottom: 20px;
}

.z8b3fcstep-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 12px rgba(26,115,232,0.35);
    border: 3px solid #fff;
}

.z8b3fcstep-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 16px;
    width: 100%;
    flex: 1;
    text-align: center;
    transition: background 0.3s, box-shadow 0.3s;
}

.z8b3fcstep-card:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.z8b3fcstep-card h3 {
    font-size: 1em;
    margin-bottom: 8px;
    color: #1a73e8;
}

.z8b3fcstep-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.z8b3fcstep-details {
    list-style: none;
    text-align: left;
}

.z8b3fcstep-details li {
    margin: 6px 0;
    padding-left: 16px;
    position: relative;
    font-size: 12px;
    color: #777;
}

.z8b3fcstep-details li:before {
    content: "→";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-size: 11px;
}

/* FAQ - 左右分栏列表 */
.z8b3fcfaq {
    padding: 70px 0;
    background: #f8f9fa;
}

.z8b3fcfaq-layout {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: 40px;
    align-items: start;
}

.z8b3fcfaq-side {
    position: sticky;
    top: 100px;
}

.z8b3fcfaq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.z8b3fcfaq-item {
    background: #fff;
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
    border-left: 4px solid #1a73e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}

.z8b3fcfaq-item:hover {
    box-shadow: 0 4px 20px rgba(26,115,232,0.1);
}

.z8b3fcfaq-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.05em;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.z8b3fcfaq-q {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: #1a73e8;
    color: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.z8b3fcfaq-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    padding-left: 36px;
}

/* 页脚样式 */
.z8b3fcfooter {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.z8b3fcfooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.z8b3fcfooter-section h3 {
    margin-bottom: 20px;
    color: #fff;
}

.z8b3fcfriendly-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.z8b3fcfriendly-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 0.9em;
}

.z8b3fcfriendly-link:hover {
    opacity: 1;
    color: #1a73e8;
}

.z8b3fcsocial-links {
    display: flex;
    gap: 15px;
}

.z8b3fcsocial-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.z8b3fcsocial-link:hover {
    opacity: 1;
}

.z8b3fcfooter-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .z8b3fccontainer {
        max-width: 960px;
    }

    .z8b3fcmain-nav li {
        margin-left: 16px;
    }

    .z8b3fcmain-nav a {
        font-size: 14px;
    }

    .z8b3fcarticle-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .z8b3fcdownload-layout {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .z8b3fccontainer {
        max-width: 720px;
    }

    .z8b3fchero {
        padding: 110px 0 60px;
    }

    .z8b3fchero-content {
        gap: 30px;
    }

    .z8b3fcfeatures-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .z8b3fcfeature-main {
        grid-column: 1;
        grid-row: auto;
    }

    .z8b3fcfeature-side:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .z8b3fcfeature-side:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .z8b3fcfeature-wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .z8b3fcsecurity-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .z8b3fcdownload-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .z8b3fcdownload-intro {
        position: static;
    }

    .z8b3fcdownload-row .z8b3fcbtn-download {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .z8b3fcfaq-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .z8b3fcfaq-side {
        position: static;
    }

    .z8b3fcguide-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .z8b3fcguide-timeline::before {
        display: none;
    }

    .z8b3fcarticle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .z8b3fccontainer {
        max-width: 540px;
    }

    /* 头部导航响应式 */
    .z8b3fcheader .z8b3fccontainer {
        flex-direction: row;
        height: 60px;
        padding: 0 15px;
    }

    .z8b3fclogo h1 {
        font-size: 18px;
        text-align: left;
    }

    /* 英雄区域响应式 */
    .z8b3fchero {
        padding: 120px 0 60px;
    }

    .z8b3fchero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .z8b3fchero-text {
        text-align: center;
    }

    .z8b3fchero-text h2 {
        font-size: 1.8em;
    }

    .z8b3fchero-text p {
        font-size: 1.1em;
    }

    .z8b3fchero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .z8b3fcstat-item {
        flex: 0 0 45%;
    }

    .z8b3fchero-showcase {
        max-width: 85%;
        margin: 0 auto;
    }

    /* 按钮响应式 */
    .z8b3fccta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .z8b3fcbtn {
        width: 100%;
        max-width: 280px;
        margin: 0;
        text-align: center;
    }

    /* 首页板块响应式 */
    .z8b3fcfeatures-bento {
        grid-template-columns: 1fr;
    }

    .z8b3fcfeature-main,
    .z8b3fcfeature-wide,
    .z8b3fcfeature-side:nth-child(2),
    .z8b3fcfeature-side:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }

    .z8b3fcfeature-wide {
        flex-direction: column;
        text-align: center;
    }

    .z8b3fcfeature-tags {
        justify-content: center;
    }

    .z8b3fctrading-row {
        flex-direction: column;
        gap: 12px;
    }

    .z8b3fctrading-num {
        font-size: 2em;
        width: auto;
    }

    .z8b3fcsecurity-strip {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .z8b3fcsecurity-col {
        padding: 12px 0;
    }

    .z8b3fcdownload-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .z8b3fcdownload-intro {
        position: static;
    }

    .z8b3fcdownload-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 14px;
    }

    .z8b3fcdownload-badge {
        margin: 0 auto;
    }

    .z8b3fcdownload-row .z8b3fcbtn-download {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .z8b3fcguide-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .z8b3fcguide-timeline::before {
        display: none;
    }

    .z8b3fcguide-timeline .z8b3fcstep {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 0;
    }

    .z8b3fcstep-marker {
        margin-bottom: 0;
    }

    .z8b3fcstep-card {
        text-align: left;
    }

    .z8b3fcfaq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .z8b3fcfaq-side {
        position: static;
    }

    .z8b3fcfaq-item p {
        padding-left: 0;
    }

    .z8b3fcsection-head-left {
        padding-left: 15px;
    }

    .z8b3fchero-buttons {
        justify-content: center;
    }

    .z8b3fchero-buttons .z8b3fcbtn {
        flex: 1 1 auto;
        min-width: 140px;
        max-width: 280px;
        text-align: center;
    }

    /* 页脚响应式 */
    .z8b3fcfooter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .z8b3fcfriendly-links,
    .z8b3fcsocial-links {
        align-items: center;
    }

    .z8b3fcmobile-menu-btn {
        display: flex;
    }

    .z8b3fcmain-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .z8b3fcmain-nav.active {
        right: 0;
    }

    .z8b3fcmain-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .z8b3fcmain-nav li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .z8b3fcmain-nav a {
        display: block;
        padding: 10px;
        font-size: 1.1em;
    }

    /* 汉堡菜单动画 */
    .z8b3fcmobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .z8b3fcmobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .z8b3fcmobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* 遮罩层 */
    .z8b3fcnav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .z8b3fcnav-overlay.active {
        display: block;
    }
}

@media (max-width: 576px) {
    .z8b3fccontainer {
        padding: 0 15px;
    }

    .z8b3fchero-text h2 {
        font-size: 1.6em;
    }

    .z8b3fchero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .z8b3fcstat-item {
        flex: 0 0 100%;
    }

    .z8b3fcsection-title {
        font-size: 1.8em;
    }

    .z8b3fchero-showcase {
        max-width: 90%;
    }

    .z8b3fcbtn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z8b3fcfeature-card,
.z8b3fcdownload-row,
.z8b3fcstep-card,
.z8b3fctrading-row,
.z8b3fcsecurity-col,
.z8b3fcfaq-item,
.z8b3fcarticle-card {
    animation: fadeIn 0.5s ease-out forwards;
}

/* App preview styles */
.z8b3fcapp-preview {
    margin-bottom: 20px;
    text-align: center;
}

.z8b3fcapp-image {
    max-width: 200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.z8b3fcapp-image:hover {
    transform: scale(1.05);
}

/* Guide step image styles */
.z8b3fcstep-image {
    margin: 15px 0;
    text-align: center;
}

.z8b3fcguide-image {
    max-width: 150px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 下载区域新样式 */
.z8b3fcdownload-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.z8b3fcapp-showcase {
    text-align: center;
}

.z8b3fcshowcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.z8b3fcshowcase-image:hover {
    transform: scale(1.02);
}

/* 注册指南新样式 */
.z8b3fcguide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.z8b3fcguide-image-section {
    position: sticky;
    top: 100px;
    text-align: center;
}

.z8b3fcguide-showcase {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .z8b3fcdownload-showcase,
    .z8b3fcguide-content {
        grid-template-columns: 1fr;
    }

    .z8b3fcguide-image-section {
        position: static;
        margin-bottom: 30px;
    }

    .z8b3fcshowcase-image,
    .z8b3fcguide-showcase {
        max-width: 80%;
    }
}

/* 导航当前样式 */
.z8b3fcmain-nav .z8b3fcthis a,
.z8b3fcmain-nav .z8b3fcnav-item.z8b3fcthis a,
.z8b3fcmain-nav li.z8b3fcthis a {
    color: #1a73e8;
}

.z8b3fclogo h1 a {
    color: #1a73e8;
    text-decoration: none;
}

/* 内页通用布局 */
.z8b3fcbreadcrumb {
    margin-top: 80px;
    padding: 15px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.z8b3fcbreadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.z8b3fcbreadcrumb a:hover {
    color: #1a73e8;
}

.z8b3fcbreadcrumb-sep {
    margin: 0 8px;
    color: #ccc;
}

.z8b3fcbreadcrumb-current {
    display: inline;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

.z8b3fcpage-main {
    padding: 40px 0 80px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.z8b3fcpage-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* 内容页样式 */
.z8b3fcarticle-main {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 40px;
}

.z8b3fcarticle-title {
    font-size: 1.8em;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.z8b3fcarticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #888;
}

.z8b3fcarticle-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.z8b3fcarticle-litpic {
    margin: 20px 0;
    width: 280px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
}

.z8b3fcarticle-litpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.z8b3fcarticle-litpic img[src=""],
.z8b3fcarticle-litpic img:not([src]) {
    display: none;
}

.z8b3fcarticle-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 25px 0;
}

.z8b3fcarticle-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}

.z8b3fcarticle-images {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.z8b3fcarticle-body p {
    margin-bottom: 15px;
}

.z8b3fcarticle-figure {
    width: 120px;
    margin: 0;
    text-align: center;
}

.z8b3fcarticle-figure img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.z8b3fcarticle-figure figcaption {
    margin-top: 6px;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z8b3fcdiyfield {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.z8b3fcarticle-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.z8b3fctags-label {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.z8b3fcmeta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.z8b3fctagitem a {
    display: inline-block;
    padding: 4px 12px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 15px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s;
}

.z8b3fctagitem a:hover {
    background: #1a73e8;
    color: #fff;
}

.z8b3fcarticle-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.z8b3fcarticle-prenext {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.6;
}

.z8b3fcarticle-prenext-next {
    text-align: right;
}

.z8b3fcarticle-prenext a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.z8b3fcarticle-prenext a:hover {
    color: #1a73e8;
}

.z8b3fcrelated {
    margin-top: 30px;
}

.z8b3fcrelated-title {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 4px solid #1a73e8;
}

.z8b3fcrelated-list {
    list-style: none;
}

.z8b3fcrelated-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.z8b3fcrelated-item:last-child {
    border-bottom: none;
}

.z8b3fcrelated-thumb {
    flex-shrink: 0;
    display: block;
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.z8b3fcrelated-thumb img {
    width: 120px;
    height: 80px;
    object-fit: cover;
}

.z8b3fcrelated-info {
    flex: 1;
    min-width: 0;
}

.z8b3fcrelated-link {
    display: block;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.z8b3fcrelated-link:hover {
    color: #1a73e8;
}

.z8b3fcrelated-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* 列表页样式 */
.z8b3fclist-main {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
}

.z8b3fclist-title {
    font-size: 1.6em;
    color: #333;
    padding-bottom: 20px;
    border-bottom: 2px solid #1a73e8;
    margin-bottom: 25px;
}

.z8b3fclist-items {
    list-style: none;
}

.z8b3fclist-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.z8b3fclist-item:last-child {
    border-bottom: none;
}

.z8b3fclist-item:hover {
    background: #fafbfc;
}

.z8b3fclist-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 135px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}

.z8b3fclist-thumb img {
    width: 200px;
    height: 135px;
    object-fit: cover;
    transition: transform 0.3s;
}

.z8b3fclist-thumb:hover img {
    transform: scale(1.05);
}

.z8b3fclist-content {
    flex: 1;
    min-width: 0;
}

.z8b3fclist-item-title {
    font-size: 1.15em;
    margin-bottom: 10px;
    line-height: 1.4;
}

.z8b3fclist-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.z8b3fclist-item-title a:hover {
    color: #1a73e8;
}

.z8b3fclist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.z8b3fclist-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.z8b3fclist-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 分页样式 - 左右布局 */
.z8b3fcpagebar {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.z8b3fcpagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.z8b3fcpagelist > li:first-child {
    margin-right: auto;
}

.z8b3fcpagelist > li:last-child {
    margin-left: auto;
}

.z8b3fcpagelist li,
.z8b3fcpagelist a,
.z8b3fcpagelist span {
    display: inline-block;
}

.z8b3fcpagelist a,
.z8b3fcpagelist span {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.z8b3fcpagelist a:hover,
.z8b3fcpagelist .thisclass,
.z8b3fcpagelist .thisclass a {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

/* 侧栏样式 */
.z8b3fcsidebar {
    position: sticky;
    top: 100px;
}

.z8b3fcsidebar-block {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
}

.z8b3fcsidebar-block:last-child {
    margin-bottom: 0;
}

.z8b3fcsidebar-title {
    font-size: 16px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    margin: 0;
}

.z8b3fcsidebar-title a {
    color: #fff;
    text-decoration: none;
}

.z8b3fcsidebar-list {
    list-style: none;
    padding: 10px 15px;
    max-height: 600px;
    overflow-y: auto;
}

.z8b3fcsidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 5px;
    border-bottom: 1px solid #f5f5f5;
}

.z8b3fcsidebar-item:last-child {
    border-bottom: none;
}

.z8b3fcsidebar-thumb {
    flex-shrink: 0;
    display: block;
    width: 60px;
    height: 45px;
    overflow: hidden;
    border-radius: 4px;
}

.z8b3fcsidebar-thumb img {
    width: 60px;
    height: 45px;
    object-fit: cover;
}

.z8b3fcsidebar-link {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.z8b3fcsidebar-link:hover {
    color: #1a73e8;
}

/* 首页文章板块 */
.z8b3fcarticles {
    padding: 70px 0;
    background-color: #fff;
}

.z8b3fcarticle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.z8b3fcarticle-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.z8b3fcarticle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.z8b3fcarticle-thumb {
    display: block;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.z8b3fcarticle-thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.3s;
}

.z8b3fcarticle-card:hover .z8b3fcarticle-thumb img {
    transform: scale(1.05);
}

.z8b3fcarticle-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.z8b3fcarticle-info h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z8b3fcarticle-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.z8b3fcarticle-info h3 a:hover {
    color: #1a73e8;
}

.z8b3fcarticle-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z8b3fcarticle-date {
    font-size: 12px;
    color: #aaa;
}

/* 内页与文章板块响应式 */
@media (max-width: 992px) {
    .z8b3fcpage-layout {
        grid-template-columns: 1fr;
    }

    .z8b3fcsidebar {
        position: static;
    }

    .z8b3fcarticle-main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .z8b3fcbreadcrumb {
        margin-top: 60px;
        padding: 12px 0;
        font-size: 13px;
    }

    .z8b3fcpage-main {
        padding: 25px 0 60px;
    }

    .z8b3fcarticle-main,
    .z8b3fclist-main {
        padding: 20px;
    }

    .z8b3fcarticle-title {
        font-size: 1.4em;
    }

    .z8b3fcarticle-meta {
        flex-direction: column;
        gap: 8px;
    }

    .z8b3fcarticle-nav {
        flex-direction: column;
    }

    .z8b3fcarticle-prenext-next {
        text-align: left;
    }

    .z8b3fclist-item {
        flex-direction: column;
    }

    .z8b3fclist-thumb {
        width: 100%;
        height: 180px;
    }

    .z8b3fcrelated-item {
        flex-direction: column;
    }

    .z8b3fcrelated-thumb {
        width: 100%;
        height: 160px;
    }

    .z8b3fcpagelist > li:first-child,
    .z8b3fcpagelist > li:last-child {
        margin-left: 0;
        margin-right: 0;
    }

    .z8b3fcarticle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .z8b3fcarticles {
        padding: 60px 0;
    }

    .z8b3fcsidebar-list {
        max-height: none;
    }
}

@media (max-width: 576px) {
    .z8b3fcarticle-grid {
        grid-template-columns: 1fr;
    }

    .z8b3fcguide-timeline {
        grid-template-columns: 1fr;
    }

    .z8b3fcsection-title {
        font-size: 1.5em;
    }

    .z8b3fcarticle-thumb,
    .z8b3fcarticle-thumb img {
        height: 180px;
    }

    .z8b3fchero-buttons .z8b3fcbtn {
        width: 100%;
        max-width: none;
    }

    .z8b3fcfeatures,
    .z8b3fctrading,
    .z8b3fcsecurity,
    .z8b3fcdownload,
    .z8b3fcguide,
    .z8b3fcfaq,
    .z8b3fcarticles {
        padding: 50px 0;
    }

    .z8b3fcbreadcrumb-current {
        display: block;
        margin-top: 5px;
    }
}

/* 动画优化 */
@media (prefers-reduced-motion: reduce) {
    .z8b3fcfeature-card,
    .z8b3fcdownload-row,
    .z8b3fcstep-card,
    .z8b3fctrading-row,
    .z8b3fcsecurity-col,
    .z8b3fcfaq-item,
    .z8b3fchero-showcase,
    .z8b3fcarticle-card {
        animation: none;
        transition: none;
    }
} 