/* 基础重置 - OKX深色主题 */
.z8e326body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
}

/* 全局图片优化 */
.z8e326body img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.z8e326container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Flex工具类 */
.z8e326flex {
    display: flex;
}
.z8e326justify-between {
    justify-content: space-between;
}
.z8e326align-center {
    align-items: center;
}

/* Header & Nav - OKX深色主题 */
.z8e326header {
    background: #000000;
    box-shadow: 0 2px 8px rgba(255,255,255,0.05);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.z8e326logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
}
.z8e326nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.2rem;
}
@media (max-width: 900px) {
    .z8e326nav-list {
        gap: 1rem;
    }
}
.z8e326nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.2s;
}
.z8e326nav-link:hover {
    color: #00d9ff;
}
.z8e326nav-toggle {
    display: none;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 0.35rem 0.45rem;
    cursor: pointer;
    line-height: 0;
}
.z8e326nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    margin: 4px 0;
}

/* Hero Banner - OKX深色主题 */
.z8e326hero {
    background: linear-gradient(120deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 3rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.z8e326hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.z8e326hero-line1 {
    display: block;
    font-size: 1.15em;
    font-weight: 700;
}
.z8e326hero-line2 {
    display: block;
    font-size: 1.15em;
    font-weight: 700;
}
.z8e326hero-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

/* 按钮 */
.z8e326btn {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.z8e326btn-primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}
.z8e326btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: #000000;
}
.z8e326btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.z8e326btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

/* Section 标题 - OKX深色主题 */
.z8e326section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem 0;
    text-align: center;
    color: #ffffff;
}

/* 平台优势 */
.z8e326features-list {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.z8e326feature-item {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    padding: 2rem 1.5rem;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 270px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.z8e326feature-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.z8e326feature-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

/* 下载区块 */
.z8e326download-list {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.z8e326download-item {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 270px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.z8e326download-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* 关于我们 */
.z8e326about-flex {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}
.z8e326about-imgwrap {
    flex: 1 1 320px;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.z8e326about-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.z8e326about-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0,217,255,0.2);
    border-color: rgba(0,217,255,0.3);
}
.z8e326about-content {
    flex: 2 1 400px;
    min-width: 260px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
}
.z8e326about-tags {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.z8e326about-list {
    margin: 1.2rem 0 0 0;
    padding: 0 0 0 1.2rem;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.8;
}
.z8e326about-list li {
    margin-bottom: 0.3rem;
    list-style: disc;
}

/* 联系我们表单 - OKX深色主题 */
.z8e326contact-form {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    max-width: 500px;
    margin: 0 auto;
}
.z8e326form-group {
    margin-bottom: 1.2rem;
}
.z8e326input, .z8e326textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 1rem;
    margin-top: 0.3rem;
    box-sizing: border-box;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    resize: none;
}
.z8e326input:focus, .z8e326textarea:focus {
    border-color: #00d9ff;
    outline: none;
    background: rgba(255,255,255,0.1);
}

/* Footer - OKX深色主题 */
.z8e326footer {
    background: #000000;
    color: #fff;
    text-align: center;
    padding: 0.3rem 0 0.3rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: none; /* 隐藏页脚 */
}
.z8e326footer-links {
    margin-bottom: 0.2rem;
}
.z8e326footer-links h2 {
    margin: 0 0 0.2rem 0;
    font-size: 1rem;
}
.z8e326links-list {
    gap: 0.4rem;
}
.z8e326footer-text {
    margin: 0.1rem 0 0.1rem 0;
    font-size: 0.93rem;
    line-height: 1.3;
}
.z8e326footer-text a {
    color: #00d9ff;
    text-decoration: none;
}
.z8e326footer-text a:hover {
    color: #00ff88;
}
.z8e326links-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.z8e326links-list a:hover {
    color: #00d9ff;
}
.z8e326footer-tplinfo {
    margin: 0.1rem 0 0 0;
    font-size: 0.85rem;
    line-height: 1.2;
}
.z8e326footer .z8e326container {
    padding: 0 !important;
    min-height: unset !important;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .z8e326header {
        position: static;
        top: auto;
    }
    .z8e326flex {
        flex-direction: row;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    .z8e326logo {
        flex: 1 1 auto;
    }
    .z8e326nav-toggle {
        display: inline-block;
    }
    .z8e326nav {
        display: none;
        width: 100%;
        margin-top: 0.4rem;
        overflow: visible;
    }
    .z8e326header.z8e326header-open .z8e326nav {
        display: block;
    }
    .z8e326nav-list {
        flex-direction: column;
        gap: 0.4rem;
        white-space: normal;
        overflow-x: visible;
        padding-bottom: 0;
        justify-content: flex-start;
    }
    .z8e326nav-link {
        display: block;
        padding: 0.5rem 0.6rem;
        border-radius: 8px;
    }
    .z8e326container {
        width: 98%;
        padding: 0 0.5rem;
    }
    .z8e326hero {
        padding: 2.5rem 0 1.8rem 0;
    }
    .z8e326hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    .z8e326hero-line1 {
        font-size: 1.22em;
        margin-bottom: 0.3rem;
    }
    .z8e326hero-line2 {
        font-size: 1.22em;
    }
    .z8e326hero-desc {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 0.5rem;
        color: rgba(255,255,255,0.6);
    }
    .z8e326section-title {
        font-size: 1.3rem;
    }
    .z8e326feature-item, .z8e326download-item {
        min-width: 90%;
        max-width: 100%;
        padding: 1rem 0.5rem;
    }
    .z8e326about-flex {
        flex-direction: column;
        gap: 1.2rem;
    }
    .z8e326about-content {
        padding: 1.2rem 0.7rem;
    }
    .z8e326about-img {
        max-width: 280px;
    }
    .z8e326about-imgwrap {
        padding: 0.5rem;
    }
    .z8e326about-tags {
        justify-content: center;
    }
    .z8e326about-list {
        padding: 0;
        margin: 0.5rem 0 0 0;
    }
    .z8e326about-list li {
        margin-bottom: 0.2rem;
    }
    .z8e326hero-btns {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    .z8e326hero-btns .z8e326btn-secondary {
        background: transparent;
        color: #fff;
        border: 1px solid #ffffff;
    }
    .z8e326hero-btns .z8e326btn-secondary:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }
}
@media (max-width: 600px) {
    .z8e326container {
        width: 98%;
        padding: 0 0.5rem;
    }
    .z8e326hero {
        padding: 2rem 0 1.5rem 0;
    }
    .z8e326hero-title {
        font-size: 1.5rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    .z8e326hero-line1 {
        font-size: 1.2em;
        margin-bottom: 0.4rem;
        display: block;
    }
    .z8e326hero-line2 {
        font-size: 1.2em;
        display: block;
    }
    .z8e326hero-desc {
        font-size: 0.95rem;
        line-height: 1.9;
        padding: 0 0.8rem;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.6);
    }
    .z8e326section-title {
        font-size: 1.3rem;
    }
    .z8e326feature-item, .z8e326download-item {
        min-width: 90%;
        max-width: 100%;
        padding: 1rem 0.5rem;
    }
    .z8e326about-content, .z8e326contact-form {
        padding: 1rem 0.5rem;
    }
    .z8e326about-img {
        max-width: 100%;
        width: 100%;
    }
    .z8e326about-imgwrap {
        padding: 0.5rem;
        width: 100%;
    }
    .z8e326hero-btns {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        width: 100%;
    }
    .z8e326hero-btns .z8e326btn {
        width: 100%;
        max-width: 320px;
        margin-bottom: 0.5rem;
        box-sizing: border-box;
    }
    .z8e326hero-btns .z8e326btn:last-child {
        margin-bottom: 0;
    }
    .z8e326hero-btns .z8e326btn-secondary {
        background: transparent;
        color: #fff;
        border: 1px solid #ffffff;
    }
    .z8e326hero-btns .z8e326btn-secondary:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }
} 

.z8e326features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.1rem;
}
.z8e326feature-card {
    background: #1a1a1a;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    padding: 1.3rem 1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    min-width: 0;
}
.z8e326feature-card:hover {
    box-shadow: 0 6px 24px rgba(0,217,255,0.15);
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(0,217,255,0.3);
}
.z8e326feature-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
}
.z8e326feature-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-align: center;
}
.z8e326feature-desc {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    line-height: 1.7;
}
.z8e326feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}
.z8e326tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 0.78rem;
    border-radius: 10px;
    padding: 0.13rem 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}
@media (max-width: 1200px) {
    .z8e326features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .z8e326features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .z8e326feature-card {
        padding: 0.8rem 0.4rem 0.7rem 0.4rem;
    }
} 

.z8e326download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    margin-top: 1.1rem;
}
.z8e326download-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    padding: 1.2rem 1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    min-width: 0;
}
/* 安卓按钮绿色 - OKX风格 */
.z8e326download-card:nth-child(1) .z8e326btn-primary {
    background: #00ff88;
    color: #000000;
}
.z8e326download-card:nth-child(1) .z8e326btn-primary:hover {
    background: #00cc6a;
}
/* iOS按钮白色 - OKX风格 */
.z8e326download-card:nth-child(2) .z8e326btn-primary {
    background: #ffffff;
    color: #000000;
}
.z8e326download-card:nth-child(2) .z8e326btn-primary:hover {
    background: rgba(255,255,255,0.9);
}
/* PC按钮蓝色 - OKX风格 */
.z8e326download-card:nth-child(3) .z8e326btn-primary {
    background: #00d9ff;
    color: #000000;
}
.z8e326download-card:nth-child(3) .z8e326btn-primary:hover {
    background: #00b8d4;
}
.z8e326download-icon {
    font-size: 2.3rem;
    margin-bottom: 0.7rem;
}
.z8e326download-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-align: center;
}
.z8e326download-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .z8e326download-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .z8e326download-card {
        padding: 1rem 0.7rem 0.8rem 0.7rem;
    }
} 

.z8e326section-divider {
    width: 80%;
    max-width: 700px;
    height: 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 3rem auto 3rem auto;
    background: none;
}
@media (max-width: 700px) {
    .z8e326section-divider {
        width: 96%;
        margin: 2rem auto 2rem auto;
    }
} 

.z8e326about {
    background: #000000;
    padding: 2.5rem 0;
}
@media (max-width: 900px) {
    .z8e326about {
        padding: 1.5rem 0;
    }
} 

.z8e326news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    margin-top: 1.1rem;
}
.z8e326news-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    padding: 1.2rem 1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    min-width: 0;
    position: relative;
}
.z8e326news-card:hover {
    box-shadow: 0 6px 24px rgba(0,217,255,0.15);
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(0,217,255,0.3);
}
.z8e326news-icon {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}
.z8e326news-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}
.z8e326news-title {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}
.z8e326news-time {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.08rem 0.6rem;
}
.z8e326news-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.2rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .z8e326news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .z8e326news-card {
        padding: 1rem 0.7rem 0.8rem 0.7rem;
    }
} 

.z8e326news-bg {
    background: #1a1a1a;
    border-radius: 18px;
    padding: 2.5rem 0 2.5rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}
.z8e326news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem 2.2rem;
    margin-top: 1.3rem;
}
.z8e326news-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    padding: 1.1rem 1.1rem 1.1rem 1.1rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    min-width: 0;
    position: relative;
}
.z8e326news-item:hover {
    box-shadow: 0 6px 24px rgba(0,217,255,0.15);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(0,217,255,0.3);
}
.z8e326news-iconbig {
    font-size: 2.2rem;
    margin-right: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.z8e326news-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.z8e326news-badge {
    display: inline-block;
    background: rgba(0,217,255,0.2);
    color: #00d9ff;
    font-size: 0.78rem;
    border-radius: 8px;
    padding: 0.08rem 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    border: 1px solid rgba(0,217,255,0.3);
}
.z8e326news-title {
    font-size: 1.08rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.z8e326news-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}
@media (max-width: 900px) {
    .z8e326news-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .z8e326news-bg {
        padding: 1.2rem 0 1.2rem 0;
    }
    .z8e326news-item {
        padding: 0.8rem 0.7rem 0.8rem 0.7rem;
    }
    .z8e326news-iconbig {
        font-size: 1.7rem;
        margin-right: 0.7rem;
    }
} 

/* 移除全局 .z8e326nav 样式，确保只在移动端生效 */
@media (max-width: 900px) {
    .z8e326nav {
        margin-bottom: 0.2rem;
    }
    .z8e326nav-list {
        margin-bottom: 0;
    }
    .z8e326nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem;
        background: none;
        border: none;
        text-decoration: none;
        box-shadow: none;
        margin: 0;
        color: #ffffff;
        transition: color 0.2s;
    }
    .z8e326nav-link:hover {
        color: #00d9ff;
        background: none;
    }
} 

.z8e326logo-link,
.z8e326logo-link:visited,
.z8e326logo-link:hover,
.z8e326logo-link:active {
    text-decoration: none;
} 