/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.z1d9e0container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.z1d9e0header .z1d9e0container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 20px;
    min-height: 72px;
    height: auto;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 12px;
}

.z1d9e0header .z1d9e0logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(280px, 46vw);
}

.z1d9e0logo h1 {
    margin: 0;
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: bold;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 导航菜单 */
.z1d9e0main-nav {
    display: flex;
    align-items: center;
}

.z1d9e0main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.z1d9e0main-nav li {
    margin: 0;
}

.z1d9e0main-nav a {
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.z1d9e0main-nav a:hover {
    background: #f0f7ff;
    color: #1a73e8;
}

/* 移动端菜单按钮 */
.z1d9e0menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.z1d9e0close-menu {
    display: none;
}

/* 英雄区域 */
.z1d9e0hero {
    padding: 80px 0;
    background: #000000;
}

.z1d9e0hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.z1d9e0hero-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z1d9e0hero-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.z1d9e0hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.z1d9e0stat-item {
    text-align: center;
}

.z1d9e0stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.z1d9e0stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.z1d9e0download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.z1d9e0btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.z1d9e0btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.z1d9e0btn-primary:hover {
    background-color: #cccccc;
}

.z1d9e0btn-secondary {
    background-color: #333333;
    color: #ffffff;
}

.z1d9e0btn-secondary:hover {
    background-color: #444444;
}

.z1d9e0hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.z1d9e0hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .z1d9e0hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .z1d9e0hero-stats {
        justify-content: center;
    }

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

    .z1d9e0hero-image {
        max-width: 100%;
        margin-top: 30px;
    }
}

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

    .z1d9e0hero-text h2 {
        font-size: 2rem;
    }

    .z1d9e0hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .z1d9e0download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .z1d9e0btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* 特性区域 */
.z1d9e0features {
    padding: 80px 0;
    background: #f8f9fa;
}

.z1d9e0section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #333;
}

.z1d9e0features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.z1d9e0feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.z1d9e0feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z1d9e0feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.z1d9e0feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.z1d9e0feature-item p {
    margin-bottom: 20px;
    color: #666;
}

.z1d9e0feature-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    width: 100%;
}

.z1d9e0feature-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #666;
}

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

/* App下载区域 */
.z1d9e0app-download {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z1d9e0app-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.z1d9e0download-option {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.z1d9e0download-option:hover {
    transform: translateY(-5px);
}

.z1d9e0platform-header {
    margin-bottom: 20px;
    text-align: center;
}

.z1d9e0platform-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

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

.z1d9e0platform-info {
    margin-bottom: 30px;
    width: 100%;
}

.z1d9e0platform-info p {
    color: #666;
    margin-bottom: 15px;
}

.z1d9e0version-info {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

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

.z1d9e0version-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a73e8;
}

.z1d9e0download-stats {
    margin: 20px 0;
    text-align: center;
}

.z1d9e0download-count {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 5px;
}

.z1d9e0download-label {
    color: #666;
    font-size: 14px;
}

.z1d9e0download-benefits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    width: 100%;
}

.z1d9e0download-benefits h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.z1d9e0download-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

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

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

.z1d9e0download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: #1a73e8;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: auto;
}

.z1d9e0download-btn:hover {
    background: #0d47a1;
    transform: translateY(-2px);
}

.z1d9e0btn-icon {
    margin-right: 8px;
}

/* 交易服务区域 */
.z1d9e0trading {
    padding: 80px 0;
    background: #fff;
}

.z1d9e0trading-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.z1d9e0trading-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.z1d9e0trading-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.z1d9e0trading-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #0d47a1);
}

.z1d9e0trading-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    color: #1a73e8;
}

.z1d9e0trading-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.z1d9e0trading-item p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.z1d9e0trading-features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-top: 20px;
}

.z1d9e0trading-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #666;
}

.z1d9e0trading-features li:before {
    content: "✓";
    color: #1a73e8;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.z1d9e0trading-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: #1a73e8;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.z1d9e0trading-btn:hover {
    background: #0d47a1;
    transform: translateY(-2px);
}

/* 响应式设计优化 */
/* 大屏幕 (1200px以上) */
@media (min-width: 1200px) {
    .z1d9e0container {
        max-width: 1200px;
    }
    
    .z1d9e0features-grid,
    .z1d9e0trading-grid,
    .z1d9e0about-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 中等屏幕 (992px-1199px) */
@media (max-width: 1199px) {
    .z1d9e0container {
        max-width: 960px;
    }
    
    .z1d9e0features-grid,
    .z1d9e0trading-grid,
    .z1d9e0about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .z1d9e0hero-content h2 {
        font-size: 2.5rem;
    }
    
    .z1d9e0hero-stats {
        gap: 30px;
    }
}

/* 平板 (768px-991px) */
@media (max-width: 991px) {
    .z1d9e0container {
        max-width: 720px;
    }
    
    .z1d9e0features-grid,
    .z1d9e0trading-grid,
    .z1d9e0about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .z1d9e0hero-content h2 {
        font-size: 2rem;
    }
    
    .z1d9e0hero-stats {
        flex-wrap: wrap;
    }
    
    .z1d9e0stat-item {
        width: calc(50% - 15px);
    }
    
    .z1d9e0footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .z1d9e0footer-brand {
        text-align: center;
    }
    
    .z1d9e0social-links {
        justify-content: center;
    }
    
    .z1d9e0footer-links {
        grid-template-columns: 1fr;
    }
    
    .z1d9e0register-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .z1d9e0benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 平板及以下：抽屉导航（与桌面 992+ 断点衔接） */
@media (max-width: 991px) {
    .z1d9e0header {
        position: relative;
        z-index: 11000;
    }

    .z1d9e0header .z1d9e0container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        column-gap: 10px;
        row-gap: 0;
        padding: 10px 15px;
        min-height: 56px;
    }

    .z1d9e0header .z1d9e0logo {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }

    .z1d9e0logo h1 {
        font-size: clamp(16px, 4.2vw, 18px);
    }

    .z1d9e0menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        padding: 0;
        position: relative;
        z-index: 11020;
        -webkit-tap-highlight-color: transparent;
    }

    .z1d9e0main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(92vw, 400px);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 52px 16px 24px;
        box-shadow: -4px 0 20px rgba(15, 23, 42, 0.15);
        transform: translate3d(100%, 0, 0);
        transition: transform 0.28s ease, visibility 0.28s step-end;
        z-index: 11010;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        pointer-events: none;
    }

    .z1d9e0main-nav.active {
        transform: translate3d(0, 0, 0);
        transition: transform 0.28s ease, visibility 0s step-start;
        visibility: visible;
        pointer-events: auto;
    }

    .z1d9e0main-nav ul {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 6px;
        width: 100%;
    }

    .z1d9e0main-nav .z1d9e0nav {
        width: 100%;
    }

    .z1d9e0main-nav li,
    .z1d9e0main-nav .z1d9e0nav-item {
        width: 100%;
        max-width: 100%;
    }

    .z1d9e0main-nav .z1d9e0nav-item > a,
    .z1d9e0main-nav a {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 14px 14px;
        font-size: 16px;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: anywhere;
        border-radius: 10px;
    }

    .z1d9e0main-nav a:hover {
        background: #f8f9fa;
        color: #007bff;
    }

    .z1d9e0close-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        padding: 0;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        z-index: 11030;
        -webkit-tap-highlight-color: transparent;
    }

    .z1d9e0nav-overlay {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(15, 23, 42, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s step-end;
        z-index: 11005;
    }

    .z1d9e0nav-overlay.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.25s ease, visibility 0s step-start;
    }

    body.z1d9e0menu-open {
        overflow: hidden;
        touch-action: none;
    }
}

/* 移动设备 (576px-767px) */
@media (max-width: 767px) {
    .z1d9e0container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* 英雄区域移动端优化 */
    .z1d9e0hero {
        padding: 80px 0 40px;
    }
    
    .z1d9e0hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .z1d9e0hero-text {
        max-width: 100%;
    }
    
    .z1d9e0hero-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .z1d9e0hero-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .z1d9e0hero-stats {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .z1d9e0stat-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
    }
    
    .z1d9e0stat-number {
        font-size: 24px;
    }
    
    .z1d9e0download-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .z1d9e0btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .z1d9e0hero-image {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .z1d9e0hero-image img {
        border-radius: 8px;
    }
    
    /* 特性区域移动端优化 */
    .z1d9e0features {
        padding: 40px 0;
    }
    
    .z1d9e0section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .z1d9e0features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .z1d9e0feature-item {
        padding: 20px;
    }
    
    /* 交易服务区域移动端优化 */
    .z1d9e0trading {
        padding: 40px 0;
    }
    
    .z1d9e0trading-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .z1d9e0trading-item {
        padding: 20px;
    }
    
    .z1d9e0trading-icon {
        font-size: 36px;
    }
    
    .z1d9e0trading-item h3 {
        font-size: 20px;
    }
    
    .z1d9e0trading-features {
        margin-top: 15px;
    }
    
    .z1d9e0trading-btn {
        width: 100%;
        margin-top: 15px;
    }
    
    /* 安全保障区域移动端优化 */
    .z1d9e0security {
        padding: 40px 0;
    }
    
    .z1d9e0security-framework {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .z1d9e0security-pillar {
        margin-bottom: 20px;
    }
    
    .z1d9e0pillar-header {
        padding: 20px;
    }
    
    .z1d9e0pillar-content {
        padding: 20px;
    }
    
    .z1d9e0security-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .z1d9e0security-stats .z1d9e0stat-item {
        width: 100%;
        padding: 20px;
    }
    
    /* 注册指南区域移动端优化 */
    .z1d9e0register-guide {
        padding: 40px 0;
    }
    
    .z1d9e0register-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .z1d9e0step-item {
        padding: 20px;
    }
    
    .z1d9e0benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .z1d9e0benefit-item {
        padding: 20px;
    }
    
    /* 关于我们区域移动端优化 */
    .z1d9e0about {
        padding: 40px 0;
    }
    
    .z1d9e0about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .z1d9e0feature-card {
        padding: 20px;
    }
    
    .z1d9e0about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .z1d9e0about-stats .z1d9e0stat-item {
        width: 100%;
        padding: 20px;
    }
    
    /* 页脚移动端优化 */
    .z1d9e0footer {
        padding: 40px 0 0;
    }
    
    .z1d9e0footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .z1d9e0footer-brand {
        text-align: center;
    }
    
    .z1d9e0social-links {
        justify-content: center;
    }
    
    .z1d9e0footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .z1d9e0link-group {
        text-align: center;
    }
    
    .z1d9e0link-group h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .z1d9e0footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .z1d9e0legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* App下载区域移动端优化 */
    .z1d9e0app-download {
        padding: 40px 0;
    }

    .z1d9e0app-download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .z1d9e0download-option {
        padding: 25px 20px;
    }

    .z1d9e0platform-header {
        margin-bottom: 15px;
    }

    .z1d9e0platform-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .z1d9e0platform-header h3 {
        font-size: 20px;
    }

    .z1d9e0platform-info {
        margin-bottom: 20px;
    }

    .z1d9e0platform-info p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .z1d9e0version-info {
        padding: 12px;
    }

    .z1d9e0version-info li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .z1d9e0download-stats {
        margin: 15px 0;
    }

    .z1d9e0download-count {
        font-size: 20px;
    }

    .z1d9e0download-label {
        font-size: 13px;
    }

    .z1d9e0download-benefits {
        padding: 15px;
        margin: 15px 0;
    }

    .z1d9e0download-benefits h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .z1d9e0download-benefits li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .z1d9e0download-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        margin-top: 15px;
    }

    .z1d9e0btn-icon {
        margin-right: 6px;
    }
}

@media (max-width: 375px) {
    .z1d9e0hero-text h2 {
        font-size: 22px;
    }
    
    .z1d9e0hero-text p {
        font-size: 14px;
    }
    
    .z1d9e0stat-number {
        font-size: 20px;
    }
    
    .z1d9e0stat-label {
        font-size: 12px;
    }
    
    .z1d9e0btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .z1d9e0section-title {
        font-size: 20px;
    }
    
    .z1d9e0feature-item h3,
    .z1d9e0trading-item h3 {
        font-size: 18px;
    }
    
    .z1d9e0feature-list li,
    .z1d9e0trading-features li {
        font-size: 13px;
    }

    /* App下载区域小屏幕优化 */
    .z1d9e0download-option {
        padding: 20px 15px;
    }

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

    .z1d9e0platform-info p {
        font-size: 13px;
    }

    .z1d9e0version-info li {
        font-size: 12px;
    }

    .z1d9e0download-count {
        font-size: 18px;
    }

    .z1d9e0download-label {
        font-size: 12px;
    }

    .z1d9e0download-benefits h4 {
        font-size: 15px;
    }

    .z1d9e0download-benefits li {
        font-size: 12px;
    }

    .z1d9e0download-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* 横屏模式优化 */
@media (max-height: 600px) and (orientation: landscape) {
    .z1d9e0hero {
        padding: 60px 0;
    }
    
    .z1d9e0hero-content {
        padding: 20px 0;
    }
    
    .z1d9e0hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .z1d9e0stat-item {
        width: calc(50% - 15px);
    }
}

/* 减少动画效果 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* 触摸设备优化 */
@media (hover: none) {
    .z1d9e0btn:hover,
    .z1d9e0feature-item:hover,
    .z1d9e0trading-item:hover,
    .z1d9e0security-pillar:hover,
    .z1d9e0step-item:hover,
    .z1d9e0benefit-item:hover,
    .z1d9e0feature-card:hover {
        transform: none;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 安全保障区域 */
.z1d9e0security {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z1d9e0security-content {
    max-width: 1200px;
    margin: 0 auto;
}

.z1d9e0security-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.z1d9e0security-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.z1d9e0security-framework {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.z1d9e0security-pillar {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.z1d9e0security-pillar:hover {
    transform: translateY(-5px);
}

.z1d9e0pillar-header {
    background: #1a73e8;
    color: #fff;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.z1d9e0pillar-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.2);
}

.z1d9e0pillar-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.z1d9e0pillar-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.z1d9e0pillar-content {
    padding: 30px;
}

.z1d9e0security-feature {
    margin-bottom: 30px;
}

.z1d9e0security-feature:last-child {
    margin-bottom: 0;
}

.z1d9e0security-feature h4 {
    color: #1a73e8;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.z1d9e0feature-details p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.z1d9e0feature-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z1d9e0feature-details li {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

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

.z1d9e0security-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.z1d9e0security-stats .z1d9e0stat-item {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    transition: transform 0.3s ease;
}

.z1d9e0security-stats .z1d9e0stat-item:hover {
    transform: translateY(-5px);
}

.z1d9e0security-stats .z1d9e0stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 10px;
}

.z1d9e0security-stats .z1d9e0stat-label {
    color: #666;
    font-size: 16px;
}

@media (max-width: 992px) {
    .z1d9e0security-framework {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .z1d9e0security-stats {
        flex-wrap: wrap;
    }
    
    .z1d9e0security-stats .z1d9e0stat-item {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .z1d9e0security-framework {
        grid-template-columns: 1fr;
    }
    
    .z1d9e0security-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .z1d9e0security-stats .z1d9e0stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .z1d9e0pillar-header {
        padding: 20px;
    }
    
    .z1d9e0pillar-header h3 {
        font-size: 20px;
    }
    
    .z1d9e0pillar-content {
        padding: 20px;
    }
    
    .z1d9e0security-feature {
        margin-bottom: 20px;
    }
}

/* 注册指南区域 */
.z1d9e0register-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.z1d9e0register-content {
    max-width: 1200px;
    margin: 0 auto;
}

.z1d9e0register-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.z1d9e0register-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.z1d9e0register-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.z1d9e0step-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.z1d9e0step-item:hover {
    transform: translateY(-5px);
}

.z1d9e0step-number {
    width: 40px;
    height: 40px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.z1d9e0step-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.z1d9e0step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z1d9e0step-content li {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

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

.z1d9e0register-benefits {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.z1d9e0register-benefits h3 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 40px;
}

.z1d9e0benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.z1d9e0benefit-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.z1d9e0benefit-item:hover {
    transform: translateY(-5px);
}

.z1d9e0benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.z1d9e0benefit-item h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.z1d9e0benefit-item p {
    color: #666;
    font-size: 14px;
}

/* 关于我们区域 */
.z1d9e0about {
    padding: 80px 0;
    background: #fff;
}

.z1d9e0about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.z1d9e0about-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.z1d9e0about-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.z1d9e0about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.z1d9e0feature-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.z1d9e0feature-card:hover {
    transform: translateY(-5px);
}

.z1d9e0feature-card .z1d9e0feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.z1d9e0feature-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
}

.z1d9e0feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.z1d9e0feature-card li {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

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

.z1d9e0about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.z1d9e0about-stats .z1d9e0stat-item {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.z1d9e0about-stats .z1d9e0stat-item:hover {
    transform: translateY(-5px);
}

.z1d9e0about-stats .z1d9e0stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 10px;
}

.z1d9e0about-stats .z1d9e0stat-label {
    color: #666;
    font-size: 16px;
}

@media (max-width: 992px) {
    .z1d9e0register-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .z1d9e0benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .z1d9e0about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .z1d9e0register-steps {
        grid-template-columns: 1fr;
    }
    
    .z1d9e0benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .z1d9e0about-features {
        grid-template-columns: 1fr;
    }
    
    .z1d9e0about-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .z1d9e0about-stats .z1d9e0stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .z1d9e0step-item,
    .z1d9e0benefit-item,
    .z1d9e0feature-card {
        padding: 20px;
    }
}

/* 页脚样式 */
.z1d9e0footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
}

.z1d9e0footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.z1d9e0footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.z1d9e0footer-brand {
    max-width: 300px;
}

.z1d9e0footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.z1d9e0footer-brand p {
    color: #999;
    margin-bottom: 20px;
    line-height: 1.6;
}

.z1d9e0social-links {
    display: flex;
    gap: 15px;
}

.z1d9e0social-link {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.z1d9e0social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.z1d9e0footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.z1d9e0link-group h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.z1d9e0link-group h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #1a73e8;
}

.z1d9e0link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z1d9e0link-group li {
    margin-bottom: 12px;
}

.z1d9e0link-group a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.z1d9e0link-group a:hover {
    color: #fff;
}

.z1d9e0footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    padding-bottom: 30px;
}

.z1d9e0footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.z1d9e0legal-links {
    display: flex;
    gap: 20px;
}

.z1d9e0legal-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.z1d9e0footer-disclaimer {
    text-align: center;
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .z1d9e0footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .z1d9e0footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .z1d9e0social-links {
        justify-content: center;
    }
    
    .z1d9e0footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .z1d9e0footer {
        padding: 40px 0 0;
    }
    
    .z1d9e0footer-links {
        grid-template-columns: 1fr;
    }
    
    .z1d9e0footer-legal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .z1d9e0legal-links {
        justify-content: center;
    }
    
    .z1d9e0link-group {
        text-align: center;
    }
    
    .z1d9e0link-group h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ---------- 扩展导航与内页布局 ---------- */
.z1d9e0nav.z1d9e0this,
.z1d9e0nav-item.z1d9e0this,
.z1d9e0nav-item.z1d9e0this a {
    color: #1a73e8;
}

.z1d9e0nav-item.z1d9e0this > a {
    background: #f0f7ff;
}

.z1d9e0main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.z1d9e0main-nav .z1d9e0nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 6px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.z1d9e0nav-item {
    margin: 0;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
}

.z1d9e0nav-item > a {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.35;
    font-size: clamp(13px, 1.1vw, 15px);
}

.z1d9e0nav-item--cms {
    position: relative;
    margin-left: 4px;
    padding-left: 12px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
}

.z1d9e0nav-item--cms > a {
    max-width: min(14em, 100%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

.z1d9e0nav-child {
    margin: 0;
    padding: 8px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 140px;
    max-width: min(300px, calc(100vw - 32px));
    max-height: min(320px, 70vh);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.z1d9e0nav-child-dd {
    margin: 0;
    padding: 4px 0;
}

.z1d9e0nav-child-dd a {
    font-size: 13px;
    color: #444;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (min-width: 992px) {
    .z1d9e0header .z1d9e0container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        column-gap: 16px;
    }

    .z1d9e0header .z1d9e0logo {
        flex-shrink: 0;
    }

    .z1d9e0main-nav {
        flex: 1 1 0;
        min-width: 0;
        max-width: 100%;
    }

    .z1d9e0close-menu {
        display: none !important;
    }

    .z1d9e0main-nav .z1d9e0nav {
        justify-content: flex-end;
    }

    .z1d9e0nav-item--cms .z1d9e0nav-child {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 1100;
    }

    .z1d9e0nav-item--cms:hover .z1d9e0nav-child,
    .z1d9e0nav-item--cms:focus-within .z1d9e0nav-child {
        display: block;
    }

    .z1d9e0nav-item--cms:last-child .z1d9e0nav-child {
        left: auto;
        right: 0;
    }
}

@media (max-width: 991px) {
    .z1d9e0nav-item--cms {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
    }

    .z1d9e0nav-item--cms > a {
        max-width: 100%;
        white-space: normal;
    }

    .z1d9e0main-nav .z1d9e0nav-child {
        position: static;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 6px;
        max-width: 100%;
        max-height: none;
    }
}

.z1d9e0page-sub {
    padding-top: 0;
}

.z1d9e0inner-hero {
    background: #f3f5f9;
    padding: 16px 0;
}

.z1d9e0breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 4px 0;
}

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

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

.z1d9e0breadcrumb-sep {
    margin: 0 6px;
    color: #999;
}

.z1d9e0main-with-sidebar {
    padding-bottom: 48px;
}

.z1d9e0layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.z1d9e0list-main,
.z1d9e0article-main {
    min-width: 0;
}

.z1d9e0sidebar {
    min-width: 0;
}

.z1d9e0sidebar-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 16px 16px 12px;
    margin-bottom: 18px;
}

.z1d9e0sidebar-title {
    font-size: 16px;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1a73e8;
    color: #222;
}

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

.z1d9e0sidebar-list--media li {
    margin-bottom: 10px;
}

.z1d9e0sidebar-media {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.z1d9e0sidebar-thumb img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.z1d9e0sidebar-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.z1d9e0sidebar-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
}

.z1d9e0sidebar-item-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

.z1d9e0sidebar-list--plain li {
    margin-bottom: 8px;
    font-size: 14px;
}

.z1d9e0sidebar-list--plain a {
    color: #1a73e8;
    text-decoration: none;
}

.z1d9e0sidebar-list--plain a:hover {
    text-decoration: underline;
}

.z1d9e0sidebar-sonnav {
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.z1d9e0sidebar-sonrow {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e5e5;
}

.z1d9e0sidebar-cat {
    margin-bottom: 12px;
}

.z1d9e0sidebar-subtitle {
    margin: 0 0 8px;
    font-size: 15px;
}

.z1d9e0sidebar-subtitle a {
    color: #222;
    text-decoration: none;
}

.z1d9e0meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.z1d9e0meta-tags--sidebar {
    margin: 0;
}

.z1d9e0tagitem a {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f4ff;
    border-radius: 20px;
    font-size: 13px;
    color: #1a73e8;
    text-decoration: none;
}

.z1d9e0city-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 10px;
}

.z1d9e0list-header {
    margin-bottom: 20px;
}

.z1d9e0list-title {
    font-size: 1.75rem;
    margin: 0 0 8px;
    color: #222;
}

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

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

.z1d9e0list-row {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.z1d9e0list-thumb {
    width: 280px;
    max-width: 38%;
    flex-shrink: 0;
}

.z1d9e0list-thumb .z1d9e0thumb-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #eceff3;
    aspect-ratio: 16 / 10;
}

.z1d9e0list-thumb img,
.z1d9e0card-thumb .z1d9e0thumb-link img,
.z1d9e0thumb-link > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.z1d9e0card-thumb .z1d9e0thumb-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #eceff3;
    aspect-ratio: 16 / 10;
    max-width: 200px;
}

.z1d9e0card-list--compact .z1d9e0card-thumb .z1d9e0thumb-link {
    max-width: 160px;
}

.z1d9e0list-text {
    flex: 1;
    min-width: 0;
}

.z1d9e0list-title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: baseline;
    margin-bottom: 6px;
}

.z1d9e0list-typelink {
    font-size: 13px;
    color: #888;
}

.z1d9e0list-article-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.z1d9e0list-article-title:hover {
    color: #1a73e8;
}

.z1d9e0list-info {
    font-size: 13px;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 8px;
}

.z1d9e0list-introtext {
    font-size: 14px;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

.z1d9e0pagebar-lr {
    margin-top: 24px;
    padding: 16px 0 8px;
}

.z1d9e0pagebar-lr .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.z1d9e0pagebar-lr .pagelist > li {
    flex: 0 0 auto;
}

.z1d9e0article-header {
    margin-bottom: 16px;
}

.z1d9e0article-title {
    font-size: 1.85rem;
    line-height: 1.25;
    margin: 0 0 10px;
    color: #111;
}

.z1d9e0article-meta {
    font-size: 14px;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

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

.z1d9e0article-litpic {
    margin: 16px 0;
    text-align: center;
}

.z1d9e0litpic-thumb {
    max-width: min(100%, 420px);
    width: auto;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    border-radius: 12px;
    display: inline-block;
    vertical-align: middle;
    background: #f3f5f9;
}

.z1d9e0article-body {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    word-break: break-word;
}

.z1d9e0article-body img {
    max-width: 100%;
    height: auto;
}

.z1d9e0article-gallery {
    margin-top: 24px;
}

.z1d9e0article-figure {
    margin: 0 0 16px;
}

.z1d9e0article-figure img {
    max-width: 100%;
    border-radius: 10px;
    display: block;
}

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

.z1d9e0diyfield {
    margin-top: 20px;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    font-size: 14px;
}

.z1d9e0article-prenext {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 28px 0;
    padding: 14px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.z1d9e0prenext-item {
    flex: 1 1 200px;
    min-width: 0;
}

.z1d9e0block-title {
    font-size: 1.25rem;
    margin: 0 0 14px;
    color: #222;
}

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

.z1d9e0card-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.z1d9e0card-item--stack {
    flex-direction: column;
}

.z1d9e0card-thumb {
    flex-shrink: 0;
}

.z1d9e0card-thumb > img {
    width: 200px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.z1d9e0card-body {
    flex: 1;
    min-width: 0;
}

.z1d9e0card-title {
    font-weight: 600;
    color: #111;
    text-decoration: none;
    font-size: 16px;
}

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

.z1d9e0card-desc {
    margin: 6px 0 0;
    font-size: 14px;
    color: #555;
    line-height: 1.55;
}

.z1d9e0card-list--compact .z1d9e0card-item {
    padding: 10px 0;
}

.z1d9e0card-list--compact .z1d9e0card-thumb .z1d9e0thumb-link {
    max-width: 120px;
}

.z1d9e0channel-loop {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.z1d9e0channel-loop-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.z1d9e0channel-loop-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.z1d9e0channel-loop-son a {
    margin-right: 10px;
    color: #1a73e8;
    text-decoration: none;
}

.z1d9e0channel-loop-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.z1d9e0channel-loop-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.z1d9e0channel-loop-item h3 a {
    color: #111;
    text-decoration: none;
}

.z1d9e0sql-demo {
    margin-top: 24px;
}

.z1d9e0faq-section {
    padding: 56px 0;
    background: #fff;
}

.z1d9e0faq-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 12px;
}

.z1d9e0faq-list a {
    display: block;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #222;
    text-decoration: none;
    border: 1px solid #e9ecef;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.z1d9e0faq-list a:hover {
    background: #f0f7ff;
    border-color: #b3d4fc;
    color: #1a73e8;
}

.z1d9e0home-articles {
    padding: 56px 0 72px;
    background: #f8f9fa;
}

.z1d9e0home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.z1d9e0home-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.z1d9e0home-article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.z1d9e0home-article-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eee;
}

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

.z1d9e0home-article-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 10px 12px 14px;
    line-height: 1.4;
    flex: 1;
}

.z1d9e0home-article-title a {
    color: #222;
    text-decoration: none;
}

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

.z1d9e0friend-links {
    background: #f3f5f9;
    padding: 24px 0 32px;
    border-top: 1px solid #e5e8ec;
}

.z1d9e0friend-links h4 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #333;
}

.z1d9e0friend-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.z1d9e0friend-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.z1d9e0friend-links a:hover {
    color: #1a73e8;
}

@media (max-width: 1199px) {
    .z1d9e0home-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .z1d9e0sidebar {
        order: 2;
    }

    .z1d9e0list-main,
    .z1d9e0article-main {
        order: 1;
    }

    .z1d9e0list-row {
        flex-direction: column;
    }

    .z1d9e0list-thumb {
        width: 100%;
        max-width: 100%;
    }

    .z1d9e0list-thumb .z1d9e0thumb-link {
        max-height: 220px;
        aspect-ratio: 16 / 10;
    }

    .z1d9e0list-thumb .z1d9e0thumb-link img {
        max-height: 220px;
        object-fit: cover;
    }

    .z1d9e0card-item {
        flex-direction: column;
    }

    .z1d9e0card-thumb .z1d9e0thumb-link {
        max-width: 100%;
        max-height: 200px;
    }

    .z1d9e0card-thumb .z1d9e0thumb-link img {
        max-height: 200px;
    }
}

@media (max-width: 767px) {
    .z1d9e0home-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .z1d9e0home-article-title {
        font-size: 13px;
        padding: 8px 10px 12px;
    }

    .z1d9e0faq-section,
    .z1d9e0home-articles {
        padding: 36px 0 48px;
    }

    .z1d9e0pagebar-lr .pagelist {
        justify-content: center;
    }

    .z1d9e0article-title {
        font-size: 1.45rem;
    }
}

@media (max-width: 400px) {
    .z1d9e0home-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 首页新版视觉（body.z1d9e0pg） ========== */
body.z1d9e0pg {
    font-family: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #1a2332;
    background: #f4f6fb;
}

body.z1d9e0pg .z1d9e0pg-main {
    padding-top: 0;
}

.z1d9e0pg-hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
    overflow: hidden;
    color: #e8edf7;
}

.z1d9e0pg-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(245, 158, 11, 0.35) 0%, transparent 55%),
        radial-gradient(90% 70% at 0% 100%, rgba(56, 189, 248, 0.2) 0%, transparent 50%),
        linear-gradient(165deg, #0b1220 0%, #111b2e 42%, #0f172a 100%);
    z-index: 0;
}

.z1d9e0pg-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.z1d9e0pg-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 158, 11, 0.95);
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.z1d9e0pg-hero-title {
    font-size: clamp(1.85rem, 4.2vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    font-weight: 800;
    color: #fff;
}

.z1d9e0pg-hero-lead {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.88);
    margin: 0 0 1.25rem;
    max-width: 38rem;
}

.z1d9e0pg-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.z1d9e0pg-hero-badges li {
    font-size: 0.8rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
}

.z1d9e0pg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.z1d9e0pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.z1d9e0pg-btn--solid {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #0b1220;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.z1d9e0pg-btn--solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

.z1d9e0pg-btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.06);
}

.z1d9e0pg-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

.z1d9e0pg-btn--block {
    width: 100%;
}

.z1d9e0pg-btn--light {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.z1d9e0pg-btn--light:hover {
    transform: translateY(-1px);
}

.z1d9e0pg-btn--on-dark {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.z1d9e0pg-hero-note {
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.95);
    margin: 0;
    max-width: 36rem;
}

.z1d9e0pg-hero-visual {
    display: flex;
    justify-content: center;
}

.z1d9e0pg-hero-card {
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.z1d9e0pg-hero-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.z1d9e0pg-hero-card-foot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.z1d9e0pg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
}

.z1d9e0pg-dot--live {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.z1d9e0pg-strip {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.z1d9e0pg-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem 20px;
}

.z1d9e0pg-strip-item {
    text-align: center;
    padding: 0.5rem;
}

.z1d9e0pg-strip-item strong {
    display: block;
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.z1d9e0pg-strip-item span {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.35;
}

.z1d9e0pg-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.z1d9e0pg-section--alt {
    background: #fff;
}

.z1d9e0pg-section--download {
    background: #fff;
}

.z1d9e0pg-section--about {
    background: #0f172a;
    color: #e2e8f0;
}

.z1d9e0pg-section--about .z1d9e0pg-h2,
.z1d9e0pg-section--about .z1d9e0pg-sub {
    color: #f1f5f9;
}

.z1d9e0pg-section--about p {
    color: #cbd5e1;
}

.z1d9e0pg-section--news {
    background: #fff;
}

/* ----- 首页五大板块（差异化布局 + SEO） ----- */
.z1d9e0blk-kicker {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ea580c;
}

.z1d9e0blk-kicker--on-dark {
    color: #fbbf24;
}

.z1d9e0blk-feat {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #e2e8f0;
}

.z1d9e0blk-feat-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.z1d9e0blk-feat-head {
    position: sticky;
    top: 6.5rem;
}

.z1d9e0blk-feat-h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.z1d9e0blk-feat-intro {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
}

.z1d9e0blk-feat-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.25rem;
    border-left: 3px solid #e2e8f0;
}

.z1d9e0blk-feat-item {
    position: relative;
    padding: 1.1rem 0 1.1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.z1d9e0blk-feat-item::before {
    content: "";
    position: absolute;
    left: -1.4rem;
    top: 1.35rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #cbd5e1;
    box-shadow: 0 0 0 4px #f8fafc;
}

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

.z1d9e0blk-feat-item--accent {
    border-bottom: none;
    margin-top: 0.5rem;
    padding: 1.25rem 1rem 1.25rem 1.25rem;
    margin-left: -1.25rem;
    border-radius: 0 14px 14px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
}

.z1d9e0blk-feat-item--accent::before {
    border-color: #f59e0b;
    background: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
}

.z1d9e0blk-feat-h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.z1d9e0blk-feat-item--accent .z1d9e0blk-feat-h3 {
    color: #fff;
}

.z1d9e0blk-feat-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #64748b;
}

.z1d9e0blk-feat-item--accent p {
    color: #94a3b8;
}

.z1d9e0blk-whyband {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: linear-gradient(115deg, #1e293b 0%, #0f172a 38%, #172554 100%);
    color: #e2e8f0;
}

.z1d9e0blk-whyband-top {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 2.5rem;
}

.z1d9e0blk-whyband-h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.z1d9e0blk-whyband-lead {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #94a3b8;
}

.z1d9e0blk-whyband-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fbbf24;
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.45);
    transition: background 0.15s ease, color 0.15s ease;
}

.z1d9e0blk-whyband-more:hover {
    background: rgba(251, 191, 36, 0.12);
    color: #fde68a;
}

.z1d9e0blk-whyband-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.z1d9e0blk-whyrow {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    padding: 1.35rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.z1d9e0blk-whyrow:last-child {
    border-bottom: none;
}

.z1d9e0blk-whyrow:nth-child(even) {
    background: rgba(255, 255, 255, 0.07);
}

.z1d9e0blk-whyrow-num {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(251, 191, 36, 0.35);
    font-variant-numeric: tabular-nums;
}

.z1d9e0blk-whyrow-h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.z1d9e0blk-whyrow-body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #94a3b8;
}

.z1d9e0blk-trd {
    background: #f1f5f9;
}

.z1d9e0blk-trd-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2rem;
}

.z1d9e0blk-trd-h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.z1d9e0blk-trd-sub {
    margin: 0;
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
}

.z1d9e0blk-trd-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.z1d9e0blk-trd-node {
    background: #fff;
    border-radius: 14px;
    padding: 1.35rem 1.2rem 1.25rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.z1d9e0blk-trd-node::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
}

.z1d9e0blk-trd-node--a::before {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.z1d9e0blk-trd-node--b::before {
    background: linear-gradient(90deg, #7c3aed, #c026d3);
}

.z1d9e0blk-trd-node--c::before {
    background: linear-gradient(90deg, #059669, #34d399);
}

.z1d9e0blk-trd-node--d::before {
    background: linear-gradient(90deg, #ea580c, #fbbf24);
}

.z1d9e0blk-trd-h3 {
    margin: 0.35rem 0 0.5rem;
    font-size: 1.08rem;
    color: #0f172a;
}

.z1d9e0blk-trd-node p {
    margin: 0 0 0.65rem;
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.55;
}

.z1d9e0blk-trd-ul {
    margin: 0 0 0.85rem;
    padding-left: 1.05rem;
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.45;
}

.z1d9e0blk-trd-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1d4ed8;
    text-decoration: none;
}

.z1d9e0blk-trd-link:hover {
    text-decoration: underline;
}

.z1d9e0blk-sec {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: #e2e8f0;
}

.z1d9e0blk-sec-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 1px solid #cbd5e1;
}

.z1d9e0blk-sec-panel {
    background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 100%);
    color: #e2e8f0;
    padding: clamp(1.75rem, 4vw, 2.5rem);
}

.z1d9e0blk-sec-h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.z1d9e0blk-sec-lead {
    margin: 0 0 1.5rem;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #94a3b8;
}

.z1d9e0blk-sec-dl {
    margin: 0;
}

.z1d9e0blk-sec-dlrow {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 0.5rem 1rem;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
}

.z1d9e0blk-sec-dlrow:first-of-type {
    border-top: none;
    padding-top: 0;
}

.z1d9e0blk-sec-dlrow dt {
    margin: 0;
    color: #64748b;
    font-weight: 600;
}

.z1d9e0blk-sec-dlrow dd {
    margin: 0;
    color: #e2e8f0;
}

.z1d9e0blk-sec-board {
    background: #fff;
    padding: clamp(1.75rem, 4vw, 2.5rem);
}

.z1d9e0blk-sec-h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.z1d9e0blk-sec-outline {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    border-top: 1px solid #e2e8f0;
}

.z1d9e0blk-sec-outline li {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: grid;
    gap: 0.35rem;
}

.z1d9e0blk-sec-outline strong {
    font-size: 0.92rem;
    color: #0f172a;
}

.z1d9e0blk-sec-outline span {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.55;
}

.z1d9e0blk-sec-aside {
    font-size: 0.8rem;
    line-height: 1.55;
    color: #64748b;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: #f8fafc;
    border-left: 4px solid #f59e0b;
}

.z1d9e0blk-sec-aside p {
    margin: 0;
}

.z1d9e0blk-faqwrap {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 45%);
    border-top: 1px solid #e2e8f0;
}

.z1d9e0blk-faq-head {
    max-width: 38rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.z1d9e0blk-faq-h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.z1d9e0blk-faq-intro {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
}

.z1d9e0blk-faq {
    max-width: 44rem;
    margin: 0 auto;
}

.z1d9e0blk-faqitem {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 0.65rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.z1d9e0blk-faqsum {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.15rem 1rem 2.75rem;
    position: relative;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    line-height: 1.45;
}

.z1d9e0blk-faqsum::-webkit-details-marker {
    display: none;
}

.z1d9e0blk-faqsum::before {
    content: "＋";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.z1d9e0blk-faqitem[open] .z1d9e0blk-faqsum::before {
    content: "－";
    background: #fff7ed;
    color: #c2410c;
}

.z1d9e0blk-faqbody {
    padding: 0 1.15rem 1.1rem 2.75rem;
    border-top: 1px solid #f1f5f9;
}

.z1d9e0blk-faqbody p {
    margin: 0.65rem 0 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #475569;
}

.z1d9e0blk-faqbody p:first-child {
    margin-top: 0.75rem;
}

.z1d9e0blk-faqbody a {
    font-weight: 600;
    color: #1d4ed8;
    text-decoration: none;
}

.z1d9e0blk-faqbody a:hover {
    text-decoration: underline;
}

.z1d9e0pg-sechead {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.z1d9e0pg-sechead--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.z1d9e0pg-sechead--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    max-width: none;
    text-align: left;
}

.z1d9e0pg-h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    margin: 0 0 0.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.z1d9e0pg-sub {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.z1d9e0pg-linkarrow {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ea580c;
    text-decoration: none;
    white-space: nowrap;
}

.z1d9e0pg-linkarrow:hover {
    text-decoration: underline;
}

.z1d9e0pg-textlink {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.z1d9e0pg-textlink:hover {
    text-decoration: underline;
}

.z1d9e0pg-dlgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 0.85fr);
    gap: 1.25rem;
    align-items: stretch;
}

.z1d9e0pg-dlcard {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.z1d9e0pg-dlplat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ea580c;
    margin-bottom: 0.35rem;
}

.z1d9e0pg-dlcard h3 {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
}

.z1d9e0pg-dlmeta {
    margin: 0 0 1rem;
    padding-left: 1rem;
    font-size: 0.82rem;
    color: #64748b;
    flex: 1;
}

.z1d9e0pg-dlaside {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
}

.z1d9e0pg-dlaside h4 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: #fff;
}

.z1d9e0pg-ol {
    margin: 0 0 1.25rem;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.55;
}

.z1d9e0pg-dlqr {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.z1d9e0pg-dlqr-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.35rem;
}

.z1d9e0pg-dlqr p {
    margin: 0;
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.45;
}

.z1d9e0pg-steps {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.z1d9e0pg-steps li {
    display: flex;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem;
}

.z1d9e0pg-stepnum {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #0f172a;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z1d9e0pg-steps h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    color: #0f172a;
}

.z1d9e0pg-steps p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.45;
}

.z1d9e0pg-benefitbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.z1d9e0pg-benefitbar strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.z1d9e0pg-benefitbar span {
    font-size: 0.78rem;
    color: #94a3b8;
}

.z1d9e0pg-aboutgrid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
    align-items: start;
}

.z1d9e0pg-checklist {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.55;
}

.z1d9e0pg-aboutpanel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.z1d9e0pg-aboutstat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem 1.15rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.z1d9e0pg-aboutstat span {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.2rem;
}

.z1d9e0pg-newsgrid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.z1d9e0pg-newscard {
    background: #f8fafc;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.z1d9e0pg-newscard:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.z1d9e0pg-newsthumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

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

.z1d9e0pg-newstitle {
    margin: 0;
    padding: 0.65rem 0.75rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
}

.z1d9e0pg-newstitle a {
    color: #0f172a;
    text-decoration: none;
}

.z1d9e0pg-newstitle a:hover {
    color: #ea580c;
}

.z1d9e0pg-cta {
    background: linear-gradient(120deg, #1e293b 0%, #0f172a 50%, #172554 100%);
    color: #e2e8f0;
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.z1d9e0pg-cta-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.z1d9e0pg-cta-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: #fff;
}

.z1d9e0pg-cta-inner > div:first-child p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
    max-width: 28rem;
    line-height: 1.55;
}

.z1d9e0pg-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.z1d9e0pg-legalnote {
    padding: 1.25rem 0 2rem;
    background: #f4f6fb;
}

.z1d9e0pg-legalnote p {
    margin: 0;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 52rem;
}

@media (max-width: 991px) {
    .z1d9e0pg-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .z1d9e0pg-hero-copy {
        order: 1;
    }

    .z1d9e0pg-hero-visual {
        order: 2;
    }

    .z1d9e0pg-hero-badges,
    .z1d9e0pg-hero-actions,
    .z1d9e0pg-hero-note {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .z1d9e0pg-hero-badges {
        justify-content: center;
    }

    .z1d9e0pg-hero-actions {
        justify-content: center;
    }

    .z1d9e0pg-hero-note {
        margin-left: auto;
        margin-right: auto;
    }

    .z1d9e0pg-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .z1d9e0blk-feat-grid {
        grid-template-columns: 1fr;
    }

    .z1d9e0blk-feat-head {
        position: static;
        top: auto;
    }

    .z1d9e0blk-feat-item--accent {
        margin-left: 0;
        border-radius: 14px;
    }

    .z1d9e0blk-trd-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .z1d9e0blk-sec-inner {
        grid-template-columns: 1fr;
    }

    .z1d9e0pg-dlgrid {
        grid-template-columns: 1fr;
    }

    .z1d9e0pg-steps {
        grid-template-columns: 1fr;
    }

    .z1d9e0pg-benefitbar {
        grid-template-columns: 1fr;
    }

    .z1d9e0pg-aboutgrid {
        grid-template-columns: 1fr;
    }

    .z1d9e0pg-newsgrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .z1d9e0pg-sechead--row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .z1d9e0pg-strip-inner {
        grid-template-columns: 1fr;
    }

    .z1d9e0blk-trd-rail {
        grid-template-columns: 1fr;
    }

    .z1d9e0blk-whyrow {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        align-items: start;
    }

    .z1d9e0blk-whyrow-num {
        font-size: 1.65rem;
    }

    .z1d9e0blk-sec-dlrow {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .z1d9e0blk-faqsum {
        padding: 0.9rem 0.85rem 0.9rem 2.5rem;
        font-size: 0.9rem;
    }

    .z1d9e0blk-faqbody {
        padding: 0 0.85rem 1rem 2.5rem;
    }

    .z1d9e0pg-newsgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .z1d9e0pg-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .z1d9e0pg-newsgrid {
        grid-template-columns: 1fr;
    }

    .z1d9e0pg-btn {
        width: 100%;
    }
}
