/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.z3250econtainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 响应式容器 */
@media (max-width: 768px) {
    .z3250econtainer {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .z3250econtainer {
        padding: 0 12px;
    }
}

/* 头部导航样式 */
.z3250eheader {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.z3250enavbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.z3250elogo-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.z3250enav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z3250enav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.z3250enav-link:hover {
    opacity: 0.8;
}

.z3250emobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.z3250emenu-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* 主横幅区域 */
.z3250ehero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.z3250ehero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.z3250ehero-content {
    text-align: left;
    z-index: 2;
}

.z3250ehero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

.z3250ehero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.z3250ehero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.z3250ehero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.z3250ehero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 按钮样式 */
.z3250ebtn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.z3250ebtn-primary {
    background-color: #fff;
    color: #667eea;
}

.z3250ebtn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.z3250ebtn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.z3250ebtn-secondary:hover {
    background-color: #fff;
    color: #667eea;
}

.z3250ebtn-download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-top: 1rem;
}

.z3250ebtn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 区域标题样式 */
.z3250esection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.z3250esection-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.z3250esection-description {
    font-size: 1.1rem;
    color: #666;
}

/* oe下载区域 */
.z3250edownload-section {
    padding: 80px 0;
    background-color: #fff;
}

.z3250edownload-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z3250edownload-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.z3250edownload-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.z3250edownload-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.z3250edownload-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.z3250edownload-text {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.z3250edownload-info {
    margin: 1rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.z3250edownload-detail {
    font-size: 0.9rem;
    color: #555;
    margin: 0.3rem 0;
}

.z3250edownload-steps {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: #fff;
}

.z3250esteps-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

.z3250esteps-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.z3250estep-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.z3250estep-number {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.z3250estep-text {
    flex: 1;
}

.z3250estep-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.z3250estep-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* 交易指南区域 */
.z3250eguide-section {
    padding: 80px 0;
    background-color: #fff;
}

.z3250eguide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.z3250eguide-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.z3250eguide-tab {
    padding: 12px 24px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
}

.z3250eguide-tab:hover {
    background-color: #e0e0e0;
}

.z3250eguide-tab.z3250etab-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.z3250eguide-panels {
    position: relative;
    min-height: 300px;
}

.z3250eguide-panel {
    display: none;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.z3250eguide-panel.z3250epanel-active {
    display: block;
}

.z3250eguide-panel-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.z3250eguide-list {
    list-style: none;
    counter-reset: step-counter;
}

.z3250eguide-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #666;
    line-height: 1.8;
    border-bottom: 1px solid #e0e0e0;
}

.z3250eguide-list li:last-child {
    border-bottom: none;
}

.z3250eguide-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* 常见问题区域 */
.z3250efaq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.z3250efaq-content {
    max-width: 900px;
    margin: 0 auto;
}

.z3250efaq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.z3250efaq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.z3250efaq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.z3250efaq-title {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.z3250efaq-icon {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: all 0.3s;
}

.z3250efaq-item.z3250efaq-active .z3250efaq-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.z3250efaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.z3250efaq-item.z3250efaq-active .z3250efaq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.z3250efaq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 功能特色区域 */
.z3250efeatures-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.z3250efeatures-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* 主要特色 - 大卡片布局 */
.z3250efeatures-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.z3250efeature-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.z3250efeature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.z3250efeature-card:hover::before {
    transform: scaleX(1);
}

.z3250efeature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.z3250efeature-card-large {
    text-align: left;
}

.z3250efeature-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.z3250efeature-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.z3250eicon-large {
    font-size: 3rem;
    width: 70px;
    height: 70px;
}

.z3250efeature-title {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: bold;
    line-height: 1.3;
}

.z3250efeature-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.z3250efeature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.z3250efeature-list li {
    color: #555;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.z3250efeature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

/* 次要特色 - 小卡片网格 */
.z3250efeatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1200px) {
    .z3250efeatures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.z3250efeature-card-small {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.z3250efeature-card-small .z3250efeature-icon {
    margin-bottom: 1rem;
    width: 55px;
    height: 55px;
    font-size: 2rem;
}

.z3250efeature-card-small .z3250efeature-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.z3250efeature-card-small .z3250efeature-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    flex-grow: 1;
}

.z3250efeature-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
}

/* 页脚样式 */
.z3250efooter {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 50px 0 20px;
}

.z3250efooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.z3250efooter-section {
    margin-bottom: 1rem;
}

.z3250efooter-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.z3250efooter-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.z3250efooter-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.z3250efooter-links {
    list-style: none;
}

.z3250efooter-links li {
    margin-bottom: 0.5rem;
}

.z3250efooter-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.z3250efooter-link:hover {
    color: #fff;
}

.z3250efooter-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.z3250efooter-copyright {
    color: #ccc;
    font-size: 0.9rem;
}

/* 响应式设计 */

/* 大屏幕优化 (1200px+) */
@media (min-width: 1200px) {
    .z3250econtainer {
        max-width: 1200px;
        padding: 0 30px;
    }

    .z3250ehero-title {
        font-size: 3.5rem;
    }

    .z3250ehero-subtitle {
        font-size: 1.4rem;
    }
}

/* 中等屏幕 (平板横屏 1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .z3250econtainer {
        padding: 0 25px;
    }

    .z3250ehero-title {
        font-size: 2.8rem;
    }

    .z3250efeatures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 平板设备 (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .z3250ehero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .z3250ehero-content {
        text-align: center;
        order: 1;
    }

    .z3250ehero-buttons {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .z3250ehero-image {
        order: 2;
    }

    .z3250ehero-title {
        font-size: 2.5rem;
    }

    .z3250ehero-subtitle {
        font-size: 1.1rem;
    }

    .z3250efeatures-main {
        grid-template-columns: 1fr;
    }

    .z3250efeatures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .z3250edownload-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .z3250esection-title {
        font-size: 2.2rem;
    }
}

/* 小屏幕平板 (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .z3250ehero-wrapper {
        gap: 2rem;
    }

    .z3250ehero-title {
        font-size: 2rem;
    }

    .z3250ehero-subtitle {
        font-size: 1rem;
    }

    .z3250ehero-img {
        max-width: 75%;
    }

    .z3250ehero-buttons {
        justify-content: center;
        align-items: center;
    }

    .z3250efeatures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .z3250edownload-content {
        grid-template-columns: 1fr;
    }
}

/* 移动设备 (≤768px) */
@media (max-width: 768px) {
    .z3250enav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .z3250enav-active {
        left: 0;
    }

    .z3250enav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .z3250enav-link {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .z3250emobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .z3250elogo-text {
        font-size: 1.5rem;
    }

    .z3250ehero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .z3250ehero-content {
        text-align: center;
        order: 1;
    }

    .z3250ehero-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .z3250ebtn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .z3250ehero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .z3250ehero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .z3250ehero-image {
        order: 2;
    }

    .z3250ehero-img {
        max-width: 80%;
        height: auto;
    }

    .z3250ehero {
        padding: 50px 0;
    }

    .z3250esection-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .z3250esection-description {
        font-size: 1rem;
    }

    .z3250edownload-section,
    .z3250efeatures-section,
    .z3250eguide-section,
    .z3250efaq-section {
        padding: 50px 0;
    }

    .z3250edownload-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z3250efeatures-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z3250efeatures-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .z3250efeature-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .z3250esteps-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z3250eguide-tabs {
        flex-direction: column;
        gap: 0.8rem;
    }

    .z3250eguide-tab {
        width: 100%;
        text-align: center;
    }

    .z3250edownload-steps {
        padding: 2rem 1.5rem;
    }

    .z3250efooter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .z3250ecoins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* 小屏幕手机 (≤480px) */
@media (max-width: 480px) {
    .z3250ehero-wrapper {
        gap: 1.5rem;
    }

    .z3250ehero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .z3250ehero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .z3250ehero-img {
        max-width: 70%;
    }

    .z3250ehero {
        padding: 40px 0;
    }

    .z3250esection-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .z3250esection-description {
        font-size: 0.9rem;
    }

    .z3250ebtn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px; /* 触摸友好 */
        margin: 0 auto;
    }

    .z3250ehero-buttons {
        justify-content: center;
        align-items: center;
    }

    .z3250edownload-card {
        padding: 1.5rem 1.2rem;
    }

    .z3250edownload-icon {
        font-size: 3rem;
    }

    .z3250edownload-title {
        font-size: 1.3rem;
    }

    .z3250efeature-card {
        padding: 1.8rem 1.2rem;
    }

    .z3250efeature-card-large {
        padding: 1.8rem 1.2rem;
    }

    .z3250efeature-card-small {
        padding: 1.5rem 1rem;
    }

    .z3250efeature-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .z3250efeature-card-large {
        text-align: center;
    }

    .z3250efeature-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .z3250eicon-large {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .z3250eguide-panel {
        padding: 1.5rem 1.2rem;
    }

    .z3250eguide-list li {
        padding: 0.8rem 0 0.8rem 2.5rem;
        font-size: 0.9rem;
    }

    .z3250efaq-question {
        padding: 1.2rem;
    }

    .z3250efaq-title {
        font-size: 1rem;
    }

    .z3250edownload-steps {
        padding: 1.5rem 1.2rem;
    }

    .z3250esteps-title {
        font-size: 1.5rem;
    }

    .z3250ecoins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .z3250ecoin-item {
        padding: 1.2rem 0.8rem;
    }

    .z3250enavbar {
        padding: 0.8rem 0;
    }

    .z3250elogo-text {
        font-size: 1.3rem;
    }
}

/* 横屏模式优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .z3250ehero {
        padding: 40px 0;
    }

    .z3250ehero-wrapper {
        gap: 1.5rem;
    }

    .z3250ehero-title {
        font-size: 1.8rem;
    }

    .z3250ehero-subtitle {
        font-size: 0.95rem;
    }

    .z3250ehero-img {
        max-width: 60%;
    }
}

/* 超小屏幕 (≤360px) */
@media (max-width: 360px) {
    .z3250ehero-title {
        font-size: 1.4rem;
    }

    .z3250ehero-subtitle {
        font-size: 0.85rem;
    }

    .z3250esection-title {
        font-size: 1.4rem;
    }

    .z3250ebtn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .z3250econtainer {
        padding: 0 10px;
    }
}

/* 触摸优化 */
@media (hover: none) and (pointer: coarse) {
    .z3250ebtn,
    .z3250enav-link,
    .z3250eguide-tab,
    .z3250efaq-question {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }

    .z3250ebtn:active {
        transform: scale(0.98);
    }
}

/* 图片响应式优化 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 选中文本样式 */
::selection {
    background-color: #667eea;
    color: #fff;
}

/* 防止文本选择（移动端优化） */
@media (max-width: 768px) {
    .z3250ebtn,
    .z3250enav-link {
        -webkit-user-select: none;
        user-select: none;
    }
}

/* 性能优化 - 减少动画（低性能设备） */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

