/* 全局样式重置 */
* {
    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;
}

.zefb6dcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 响应式容器 */
@media (max-width: 768px) {
    .zefb6dcontainer {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .zefb6dcontainer {
        padding: 0 12px;
    }
}

/* 头部导航样式 */
.zefb6dheader {
    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;
}

.zefb6dnavbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.zefb6dlogo-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.zefb6dnav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.zefb6dnav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.zefb6dnav-link:hover {
    opacity: 0.8;
}

.zefb6dmobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.zefb6dmenu-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* 主横幅区域 */
.zefb6dhero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.zefb6dhero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.zefb6dhero-content {
    text-align: left;
    z-index: 2;
}

.zefb6dhero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

.zefb6dhero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.zefb6dhero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.zefb6dhero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.zefb6dhero-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);
    }
}

/* 按钮样式 */
.zefb6dbtn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.zefb6dbtn-primary {
    background-color: #fff;
    color: #667eea;
}

.zefb6dbtn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.zefb6dbtn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.zefb6dbtn-secondary:hover {
    background-color: #fff;
    color: #667eea;
}

.zefb6dbtn-download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-top: 1rem;
}

.zefb6dbtn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 区域标题样式 */
.zefb6dsection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.zefb6dsection-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.zefb6dsection-description {
    font-size: 1.1rem;
    color: #666;
}

/* oe下载区域 */
.zefb6ddownload-section {
    padding: 80px 0;
    background-color: #fff;
}

.zefb6ddownload-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zefb6ddownload-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);
}

.zefb6ddownload-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.zefb6ddownload-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.zefb6ddownload-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.zefb6ddownload-text {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.zefb6ddownload-info {
    margin: 1rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.zefb6ddownload-detail {
    font-size: 0.9rem;
    color: #555;
    margin: 0.3rem 0;
}

.zefb6ddownload-steps {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: #fff;
}

.zefb6dsteps-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

.zefb6dsteps-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zefb6dstep-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.zefb6dstep-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;
}

.zefb6dstep-text {
    flex: 1;
}

.zefb6dstep-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.zefb6dstep-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* 交易指南区域 */
.zefb6dguide-section {
    padding: 80px 0;
    background-color: #fff;
}

.zefb6dguide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.zefb6dguide-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.zefb6dguide-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;
}

.zefb6dguide-tab:hover {
    background-color: #e0e0e0;
}

.zefb6dguide-tab.zefb6dtab-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.zefb6dguide-panels {
    position: relative;
    min-height: 300px;
}

.zefb6dguide-panel {
    display: none;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.zefb6dguide-panel.zefb6dpanel-active {
    display: block;
}

.zefb6dguide-panel-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.zefb6dguide-list {
    list-style: none;
    counter-reset: step-counter;
}

.zefb6dguide-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #666;
    line-height: 1.8;
    border-bottom: 1px solid #e0e0e0;
}

.zefb6dguide-list li:last-child {
    border-bottom: none;
}

.zefb6dguide-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;
}

/* 常见问题区域 */
.zefb6dfaq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.zefb6dfaq-content {
    max-width: 900px;
    margin: 0 auto;
}

.zefb6dfaq-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;
}

.zefb6dfaq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.zefb6dfaq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.zefb6dfaq-title {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.zefb6dfaq-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;
}

.zefb6dfaq-item.zefb6dfaq-active .zefb6dfaq-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.zefb6dfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.zefb6dfaq-item.zefb6dfaq-active .zefb6dfaq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.zefb6dfaq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 功能特色区域 */
.zefb6dfeatures-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.zefb6dfeatures-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* 主要特色 - 大卡片布局 */
.zefb6dfeatures-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.zefb6dfeature-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);
}

.zefb6dfeature-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;
}

.zefb6dfeature-card:hover::before {
    transform: scaleX(1);
}

.zefb6dfeature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.zefb6dfeature-card-large {
    text-align: left;
}

.zefb6dfeature-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.zefb6dfeature-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;
}

.zefb6dicon-large {
    font-size: 3rem;
    width: 70px;
    height: 70px;
}

.zefb6dfeature-title {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: bold;
    line-height: 1.3;
}

.zefb6dfeature-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.zefb6dfeature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.zefb6dfeature-list li {
    color: #555;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.zefb6dfeature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

/* 次要特色 - 小卡片网格 */
.zefb6dfeatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1200px) {
    .zefb6dfeatures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zefb6dfeature-card-small {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zefb6dfeature-card-small .zefb6dfeature-icon {
    margin-bottom: 1rem;
    width: 55px;
    height: 55px;
    font-size: 2rem;
}

.zefb6dfeature-card-small .zefb6dfeature-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.zefb6dfeature-card-small .zefb6dfeature-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    flex-grow: 1;
}

.zefb6dfeature-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;
}

/* 页脚样式 */
.zefb6dfooter {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 50px 0 20px;
}

.zefb6dfooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.zefb6dfooter-section {
    margin-bottom: 1rem;
}

.zefb6dfooter-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.zefb6dfooter-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.zefb6dfooter-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.zefb6dfooter-links {
    list-style: none;
}

.zefb6dfooter-links li {
    margin-bottom: 0.5rem;
}

.zefb6dfooter-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.zefb6dfooter-link:hover {
    color: #fff;
}

.zefb6dfooter-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zefb6dfooter-copyright {
    color: #ccc;
    font-size: 0.9rem;
}

/* 响应式设计 */

/* 大屏幕优化 (1200px+) */
@media (min-width: 1200px) {
    .zefb6dcontainer {
        max-width: 1200px;
        padding: 0 30px;
    }

    .zefb6dhero-title {
        font-size: 3.5rem;
    }

    .zefb6dhero-subtitle {
        font-size: 1.4rem;
    }
}

/* 中等屏幕 (平板横屏 1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .zefb6dcontainer {
        padding: 0 25px;
    }

    .zefb6dhero-title {
        font-size: 2.8rem;
    }

    .zefb6dfeatures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 平板设备 (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .zefb6dhero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .zefb6dhero-content {
        text-align: center;
        order: 1;
    }

    .zefb6dhero-buttons {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .zefb6dhero-image {
        order: 2;
    }

    .zefb6dhero-title {
        font-size: 2.5rem;
    }

    .zefb6dhero-subtitle {
        font-size: 1.1rem;
    }

    .zefb6dfeatures-main {
        grid-template-columns: 1fr;
    }

    .zefb6dfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .zefb6ddownload-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .zefb6dsection-title {
        font-size: 2.2rem;
    }
}

/* 小屏幕平板 (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .zefb6dhero-wrapper {
        gap: 2rem;
    }

    .zefb6dhero-title {
        font-size: 2rem;
    }

    .zefb6dhero-subtitle {
        font-size: 1rem;
    }

    .zefb6dhero-img {
        max-width: 75%;
    }

    .zefb6dhero-buttons {
        justify-content: center;
        align-items: center;
    }

    .zefb6dfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .zefb6ddownload-content {
        grid-template-columns: 1fr;
    }
}

/* 移动设备 (≤768px) */
@media (max-width: 768px) {
    .zefb6dnav {
        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;
    }

    .zefb6dnav-active {
        left: 0;
    }

    .zefb6dnav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .zefb6dnav-link {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .zefb6dmobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .zefb6dlogo-text {
        font-size: 1.5rem;
    }

    .zefb6dhero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .zefb6dhero-content {
        text-align: center;
        order: 1;
    }

    .zefb6dhero-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .zefb6dbtn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .zefb6dhero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .zefb6dhero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .zefb6dhero-image {
        order: 2;
    }

    .zefb6dhero-img {
        max-width: 80%;
        height: auto;
    }

    .zefb6dhero {
        padding: 50px 0;
    }

    .zefb6dsection-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .zefb6dsection-description {
        font-size: 1rem;
    }

    .zefb6ddownload-section,
    .zefb6dfeatures-section,
    .zefb6dguide-section,
    .zefb6dfaq-section {
        padding: 50px 0;
    }

    .zefb6ddownload-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .zefb6dfeatures-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .zefb6dfeatures-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .zefb6dfeature-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .zefb6dsteps-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .zefb6dguide-tabs {
        flex-direction: column;
        gap: 0.8rem;
    }

    .zefb6dguide-tab {
        width: 100%;
        text-align: center;
    }

    .zefb6ddownload-steps {
        padding: 2rem 1.5rem;
    }

    .zefb6dfooter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zefb6dcoins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* 小屏幕手机 (≤480px) */
@media (max-width: 480px) {
    .zefb6dhero-wrapper {
        gap: 1.5rem;
    }

    .zefb6dhero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .zefb6dhero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .zefb6dhero-img {
        max-width: 70%;
    }

    .zefb6dhero {
        padding: 40px 0;
    }

    .zefb6dsection-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .zefb6dsection-description {
        font-size: 0.9rem;
    }

    .zefb6dbtn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px; /* 触摸友好 */
        margin: 0 auto;
    }

    .zefb6dhero-buttons {
        justify-content: center;
        align-items: center;
    }

    .zefb6ddownload-card {
        padding: 1.5rem 1.2rem;
    }

    .zefb6ddownload-icon {
        font-size: 3rem;
    }

    .zefb6ddownload-title {
        font-size: 1.3rem;
    }

    .zefb6dfeature-card {
        padding: 1.8rem 1.2rem;
    }

    .zefb6dfeature-card-large {
        padding: 1.8rem 1.2rem;
    }

    .zefb6dfeature-card-small {
        padding: 1.5rem 1rem;
    }

    .zefb6dfeature-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .zefb6dfeature-card-large {
        text-align: center;
    }

    .zefb6dfeature-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .zefb6dicon-large {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .zefb6dguide-panel {
        padding: 1.5rem 1.2rem;
    }

    .zefb6dguide-list li {
        padding: 0.8rem 0 0.8rem 2.5rem;
        font-size: 0.9rem;
    }

    .zefb6dfaq-question {
        padding: 1.2rem;
    }

    .zefb6dfaq-title {
        font-size: 1rem;
    }

    .zefb6ddownload-steps {
        padding: 1.5rem 1.2rem;
    }

    .zefb6dsteps-title {
        font-size: 1.5rem;
    }

    .zefb6dcoins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .zefb6dcoin-item {
        padding: 1.2rem 0.8rem;
    }

    .zefb6dnavbar {
        padding: 0.8rem 0;
    }

    .zefb6dlogo-text {
        font-size: 1.3rem;
    }
}

/* 横屏模式优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .zefb6dhero {
        padding: 40px 0;
    }

    .zefb6dhero-wrapper {
        gap: 1.5rem;
    }

    .zefb6dhero-title {
        font-size: 1.8rem;
    }

    .zefb6dhero-subtitle {
        font-size: 0.95rem;
    }

    .zefb6dhero-img {
        max-width: 60%;
    }
}

/* 超小屏幕 (≤360px) */
@media (max-width: 360px) {
    .zefb6dhero-title {
        font-size: 1.4rem;
    }

    .zefb6dhero-subtitle {
        font-size: 0.85rem;
    }

    .zefb6dsection-title {
        font-size: 1.4rem;
    }

    .zefb6dbtn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .zefb6dcontainer {
        padding: 0 10px;
    }
}

/* 触摸优化 */
@media (hover: none) and (pointer: coarse) {
    .zefb6dbtn,
    .zefb6dnav-link,
    .zefb6dguide-tab,
    .zefb6dfaq-question {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }

    .zefb6dbtn: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) {
    .zefb6dbtn,
    .zefb6dnav-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;
    }
}

/* ========== 内页 / 列表 / 内容 / 侧栏 / 首页文章板块 ========== */
.zefb6dlogo-link {
    color: inherit;
    text-decoration: none;
}

.zefb6dlogo-link:hover {
    opacity: 0.9;
}

.zefb6dnav-item.zefb6dthis > .zefb6dnav-link,
.zefb6dnav-item.zefb6dthis .zefb6dnav-link {
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
}

.zefb6dbody-inner {
    background-color: #f5f5f5;
}

.zefb6dinner-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2.5rem 0 2rem;
}

.zefb6dinner-hero-article {
    padding-bottom: 2.25rem;
}

.zefb6dbreadcrumb {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 0.75rem;
}

.zefb6dbreadcrumb a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.zefb6dbreadcrumb-sep {
    margin: 0 0.35rem;
    opacity: 0.8;
}

.zefb6dinner-title {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.zefb6dinner-desc {
    margin: 0;
    max-width: 900px;
    opacity: 0.95;
    line-height: 1.7;
}

.zefb6darticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.zefb6dlayout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 20px 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zefb6dmain {
    min-width: 0;
}

.zefb6dsidebar {
    position: sticky;
    top: 88px;
}

.zefb6dsidebar-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 1.25rem;
}

.zefb6dsidebar-title {
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eef0ff;
    color: #333;
}

.zefb6dsidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zefb6dsidebar-card {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.zefb6dsidebar-card:hover .zefb6dsidebar-item-title {
    color: #667eea;
}

.zefb6dsidebar-thumb {
    flex-shrink: 0;
    width: 88px;
    min-height: 1px;
}

.zefb6dsidebar-thumb img {
    width: 88px;
    height: 66px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.zefb6dsidebar-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.zefb6dsidebar-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zefb6dsidebar-meta {
    font-size: 0.75rem;
    color: #888;
}

.zefb6darticle-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zefb6darticle-list-card {
    display: grid;
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 1.1rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.zefb6darticle-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.zefb6darticle-list-thumb img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
}

.zefb6darticle-list-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem 1rem 0;
}

.zefb6darticle-list-cat {
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 600;
}

.zefb6darticle-list-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
}

.zefb6darticle-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #888;
}

.zefb6darticle-list-intro {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zefb6dpagebar {
    margin-top: 2rem;
}

.zefb6dpages-split .pagelist,
.zefb6dpagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.zefb6dpages-split .pagelist li,
.zefb6dpagelist li {
    flex: 0 0 auto;
}

.zefb6dpages-split .pagelist a,
.zefb6dpagelist a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.zefb6darticle {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
}

.zefb6darticle-thumb-wrap {
    margin-bottom: 1rem;
    text-align: center;
}

.zefb6darticle-litpic {
    max-width: 100%;
    border-radius: 10px;
    margin: 0 auto;
}

.zefb6darticle-toolbar {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.zefb6dprenext {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.zefb6dprenext-single > * {
    display: block;
    width: 100%;
}

.zefb6dprenext a {
    color: #667eea;
    text-decoration: none;
}

.zefb6dtypography {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    word-break: break-word;
}

.zefb6dtypography img {
    max-width: 100%;
    height: auto;
}

.zefb6dimages-gallery {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.zefb6dimages-item {
    margin: 0;
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.zefb6dimages-cap {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    color: #666;
}

.zefb6ddiyfield {
    margin-top: 1.25rem;
    padding: 1rem;
    background: #f9f9ff;
    border-radius: 10px;
    font-size: 0.95rem;
}

.zefb6dmeta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
    padding: 0;
}

.zefb6dtagitem a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #eef0ff;
    color: #5a67d8;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
}

.zefb6dlike-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.zefb6dblock-heading {
    font-size: 1.2rem;
    margin: 0 0 1rem;
    color: #333;
}

.zefb6dlike-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.zefb6dlike-link {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    align-items: start;
}

.zefb6dlike-thumb img {
    width: 100px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.zefb6dlike-title {
    font-weight: 600;
    color: #222;
    display: block;
    margin-bottom: 0.25rem;
}

.zefb6dlike-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zefb6dhome-articles-section {
    padding: 70px 0;
    background-color: #fff;
}

.zefb6dhome-articles-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
}

.zefb6dhome-article-card {
    margin: 0;
}

.zefb6dhome-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fafbff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(102, 126, 234, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.zefb6dhome-article-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(102, 126, 234, 0.18);
}

.zefb6dhome-article-thumb img {
    width: 100%;
    aspect-ratio: 220 / 140;
    object-fit: cover;
    display: block;
}

.zefb6dhome-article-title {
    padding: 0.65rem 0.75rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
    color: #333;
    text-align: center;
    min-height: 3.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zefb6dfooter-inline-link {
    color: #ccc;
    text-decoration: none;
}

.zefb6dfooter-inline-link:hover {
    color: #fff;
}

@media (max-width: 1100px) {
    .zefb6dhome-articles-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .zefb6dlayout-with-sidebar {
        grid-template-columns: 1fr;
        padding-left: 15px;
        padding-right: 15px;
    }

    .zefb6dsidebar {
        position: static;
        order: 2;
    }

    .zefb6dmain {
        order: 1;
    }
}

@media (max-width: 900px) {
    .zefb6dhome-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .zefb6darticle-list-card {
        grid-template-columns: 160px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .zefb6dnav {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .zefb6dinner-title {
        font-size: 1.55rem;
    }

    .zefb6dhome-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .zefb6darticle-list-card {
        grid-template-columns: 1fr;
    }

    .zefb6darticle-list-thumb img {
        min-height: 180px;
    }

    .zefb6darticle-list-body {
        padding: 0 1rem 1rem;
    }

    .zefb6dpages-split .pagelist,
    .zefb6dpagelist {
        justify-content: center;
    }

    .zefb6dlike-link {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .zefb6dlike-thumb img {
        width: 88px;
        height: 64px;
    }
}

@media (max-width: 520px) {
    .zefb6dhome-articles-grid {
        grid-template-columns: 1fr;
    }

    .zefb6dhome-article-title {
        min-height: auto;
    }
}

