/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 通用容器 */
.zf6262container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.zf6262header {
    background: linear-gradient(135deg, #00c73c, #00a854);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zf6262header .zf6262container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zf6262logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.zf6262nav_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1rem 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

.zf6262header .zf6262container {
    position: relative;
}

.zf6262logo_link {
    color: inherit;
    text-decoration: none;
}

.zf6262logo_link:hover {
    color: #e8f5e8;
}

.zf6262nav_list li.zf6262this > .zf6262nav_link,
.zf6262nav_list li.zf6262this .zf6262nav_link {
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
}

.zf6262nav_link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.zf6262nav_link:hover {
    color: #e8f5e8;
}

.zf6262mobile_menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.zf6262mobile_menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* 主要内容区域 */
.zf6262main {
    margin-top: 80px;
}

/* 英雄区域 */
.zf6262hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.zf6262hero .zf6262container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zf6262hero_title {
    font-size: 3rem;
    font-weight: bold;
    color: #00c73c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.zf6262hero_subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.zf6262hero_features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.zf6262feature_tag {
    background: rgba(0, 199, 60, 0.1);
    color: #00c73c;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 199, 60, 0.3);
}

.zf6262hero_buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.zf6262btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.zf6262btn_primary {
    background: #00c73c;
    color: white;
}

.zf6262btn_primary:hover {
    background: #00a854;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,199,60,0.3);
}

.zf6262btn_secondary {
    background: transparent;
    color: #00c73c;
    border: 2px solid #00c73c;
}

.zf6262btn_secondary:hover {
    background: #00c73c;
    color: white;
}

.zf6262btn_download {
    background: #007bff;
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.zf6262btn_download:hover {
    background: #0056b3;
}

.zf6262btn_large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.zf6262hero_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zf6262hero_main_image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zf6262hero_main_image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* 删除原来的手机模拟器样式 */
.zf6262phone_mockup {
    display: none;
}

.zf6262screen {
    display: none;
}

/* 下载区域 */
.zf6262download {
    padding: 4rem 0;
    background: white;
}

.zf6262section_title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.zf6262section_subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.zf6262section_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #00c73c;
    border-radius: 2px;
}

.zf6262download_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zf6262download_card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zf6262download_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.zf6262download_card h3 {
    color: #333;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.zf6262download_card p {
    color: #666;
    margin-bottom: 1rem;
}

.zf6262version_info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #888;
}

.zf6262download_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00c73c;
}

.zf6262download_note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}



/* LINE贴图区域 */
.zf6262stickers {
    padding: 4rem 0;
    background: white;
}

.zf6262stickers_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zf6262stickers_info h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.zf6262sticker_series {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.zf6262sticker_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
}

.zf6262sticker_emoji {
    font-size: 1.5rem;
}

.zf6262stickers_gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.zf6262sticker_preview {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.zf6262sticker_preview:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* LINE游戏区域 */
.zf6262games {
    padding: 4rem 0;
    background: #f8f9fa;
}

.zf6262games_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zf6262game_card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.zf6262game_card:hover {
    transform: translateY(-5px);
}

.zf6262game_card h3 {
    color: #333;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.zf6262game_card p {
    color: #666;
    margin-bottom: 1rem;
}

.zf6262game_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.zf6262game_features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.zf6262game_features span {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* LINE新闻资讯区域 */
.zf6262news {
    padding: 4rem 0;
    background: white;
}

.zf6262news_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zf6262news_item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00c73c;
    transition: transform 0.3s ease;
}

.zf6262news_item:hover {
    transform: translateY(-3px);
}

.zf6262news_date {
    color: #00c73c;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.zf6262news_item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.zf6262news_item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.zf6262news_link {
    color: #00c73c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.zf6262news_link:hover {
    color: #00a854;
}


































/* 页脚 */
.zf6262footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.zf6262footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.zf6262footer_section h3 {
    color: #00c73c;
    margin-bottom: 1rem;
}

.zf6262footer_section ul {
    list-style: none;
}

.zf6262footer_section ul li {
    margin-bottom: 0.5rem;
}

.zf6262footer_section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zf6262footer_section ul li a:hover {
    color: #00c73c;
}

.zf6262footer_bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* 响应式设计 */
/* 大屏幕设备 (1200px以上) */
@media (min-width: 1200px) {
    .zf6262container {
        max-width: 1400px;
        padding: 0 30px;
    }
    
    .zf6262hero_title {
        font-size: 3.5rem;
    }
    
    .zf6262hero_subtitle {
        font-size: 1.4rem;
    }
    
    .zf6262section_title {
        font-size: 3rem;
    }
    
    .zf6262tips_grid {
        max-width: 1000px;
        gap: 2.5rem;
    }
    

}

/* 中等屏幕设备 (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .zf6262container {
        max-width: 960px;
        padding: 0 25px;
    }
    
    .zf6262hero_title {
        font-size: 2.8rem;
    }
    
    .zf6262tips_grid {
        max-width: 800px;
    }
}

/* 平板设备 (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .zf6262container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .zf6262hero_title {
        font-size: 2.5rem;
    }
    
    .zf6262hero_subtitle {
        font-size: 1.1rem;
    }
    
    .zf6262section_title {
        font-size: 2.2rem;
    }
    
    .zf6262tips_grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 1.5rem;
    }
    

    
    .zf6262download_grid,
    .zf6262games_grid,
    .zf6262news_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .zf6262stickers_content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .zf6262sticker_series {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }
}

/* 手机设备 (768px以下) */
@media (max-width: 768px) {
    .zf6262mobile_menu {
        display: flex;
    }
    
    .zf6262nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #00a854;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .zf6262nav.zf6262active {
        display: block;
    }
    
    .zf6262nav_list {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .zf6262nav_link {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
    }
    
    .zf6262hero .zf6262container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .zf6262hero_title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .zf6262hero_subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .zf6262hero_features {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .zf6262feature_tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .zf6262hero_buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .zf6262btn {
        width: 100%;
        max-width: 280px;
    }
    
    .zf6262hero_main_image {
        max-width: 80%;
        margin: 2rem auto 0;
        border-radius: 15px;
    }
    
    .zf6262section_title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .zf6262section_subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .zf6262container {
        padding: 0 15px;
    }
    
    .zf6262download_grid,
    .zf6262features_grid,
    .zf6262games_grid,
    .zf6262news_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .zf6262download_card,
    .zf6262feature_item,
    .zf6262game_card,
    .zf6262news_item {
        padding: 1.5rem;
    }
    
    .zf6262stickers_content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .zf6262sticker_series {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }
    
    .zf6262stickers_gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .zf6262sticker_preview {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .zf6262cta_buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .zf6262tips_grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .zf6262tutorial_nav {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .zf6262tutorial_tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
    
    .zf6262tutorial_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .zf6262tutorial_step,
    .zf6262tutorial_card {
        padding: 1.5rem;
    }
    
    .zf6262tutorial_cta {
        padding: 2rem 1.5rem;
    }
    
    .zf6262tutorial_actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .zf6262footer_content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

/* 小屏手机设备 (480px以下) */
@media (max-width: 480px) {
    .zf6262container {
        padding: 0 12px;
    }
    
    .zf6262hero {
        padding: 3rem 0;
        min-height: 70vh;
    }
    
    .zf6262hero_title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .zf6262hero_subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .zf6262hero_features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .zf6262feature_tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .zf6262btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .zf6262hero_main_image {
        max-width: 90%;
        border-radius: 12px;
    }
    
    .zf6262section_title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .zf6262section_subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .zf6262download_grid,
    .zf6262features_grid,
    .zf6262games_grid,
    .zf6262news_grid,
    .zf6262tutorial_grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .zf6262download_card,
    .zf6262feature_item,
    .zf6262game_card,
    .zf6262news_item,
    .zf6262tutorial_step,
    .zf6262tutorial_card {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .zf6262download_icon,
    .zf6262feature_icon,
    .zf6262game_icon,
    .zf6262card_icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .zf6262step_number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .zf6262step_icon {
        font-size: 1.5rem;
    }
    
    .zf6262tips_grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .zf6262tip_item {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .zf6262tip_icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .zf6262tip_item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .zf6262tip_item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .zf6262stickers_gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .zf6262sticker_preview {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        border-radius: 10px;
    }
    
    .zf6262tutorial_nav {
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .zf6262tutorial_tab {
        max-width: 250px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .zf6262tutorial_cta {
        padding: 1.5rem 1.2rem;
        border-radius: 15px;
    }
    
    .zf6262tutorial_cta h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .zf6262tutorial_cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .zf6262faq_question {
        padding: 1.2rem;
    }
    
    .zf6262faq_question h4 {
        font-size: 1rem;
    }
    
    .zf6262faq_answer {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* 超小屏手机设备 (360px以下) */
@media (max-width: 360px) {
    .zf6262container {
        padding: 0 10px;
    }
    
    .zf6262hero_title {
        font-size: 1.6rem;
    }
    
    .zf6262hero_subtitle {
        font-size: 0.9rem;
    }
    
    .zf6262btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .zf6262section_title {
        font-size: 1.6rem;
    }
    
    .zf6262download_card,
    .zf6262feature_item,
    .zf6262game_card,
    .zf6262news_item,
    .zf6262tutorial_step,
    .zf6262tutorial_card,
    .zf6262tip_item {
        padding: 1rem;
    }
    
    .zf6262tutorial_tab {
        max-width: 200px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* 横屏手机设备优化 */
@media (max-height: 500px) and (orientation: landscape) {
    .zf6262hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .zf6262hero_title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .zf6262hero_subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .zf6262hero_features {
        margin-bottom: 1rem;
    }
    
    .zf6262hero_buttons {
        gap: 0.8rem;
    }
    
    .zf6262btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .zf6262btn:hover,
    .zf6262tutorial_tab:hover,
    .zf6262nav_link:hover {
        transform: none;
        box-shadow: none;
    }
    
    .zf6262download_card:hover,
    .zf6262feature_item:hover,
    .zf6262game_card:hover,
    .zf6262news_item:hover,
    .zf6262tutorial_step:hover,
    .zf6262tutorial_card:hover,
    .zf6262tip_item:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .zf6262sticker_preview:hover {
        transform: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .zf6262btn:active,
    .zf6262tutorial_tab:active {
        transform: scale(0.98);
    }
    
    .zf6262download_card:active,
    .zf6262feature_item:active,
    .zf6262game_card:active,
    .zf6262news_item:active,
    .zf6262tutorial_step:active,
    .zf6262tutorial_card:active,
    .zf6262tip_item:active {
        transform: scale(0.98);
    }
}

/* 高分辨率屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .zf6262hero_main_image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 减少动画偏好设置 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .zf6262btn:hover,
    .zf6262tutorial_tab:hover,
    .zf6262nav_link:hover {
        transform: none;
    }
    
    .zf6262download_card:hover,
    .zf6262feature_item:hover,
    .zf6262game_card:hover,
    .zf6262news_item:hover,
    .zf6262tutorial_step:hover,
    .zf6262tutorial_card:hover,
    .zf6262tip_item:hover {
        transform: none;
    }
}

/* 打印样式 */
@media print {
    .zf6262header,
    .zf6262mobile_menu,
    .zf6262hero_buttons,
    .zf6262tutorial_nav,
    .zf6262tutorial_cta,
    .zf6262footer {
        display: none !important;
    }
    
    .zf6262main {
        margin-top: 0 !important;
    }
    
    .zf6262hero {
        background: white !important;
        color: black !important;
        padding: 2rem 0 !important;
        min-height: auto !important;
    }
    
    .zf6262hero_title {
        color: black !important;
        font-size: 2rem !important;
    }
    
    .zf6262hero_subtitle {
        color: #333 !important;
    }
    
    .zf6262download_card,
    .zf6262feature_item,
    .zf6262game_card,
    .zf6262news_item,
    .zf6262tutorial_step,
    .zf6262tutorial_card,
    .zf6262tip_item {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
    
    .zf6262tutorial_content {
        display: block !important;
    }
    
    .zf6262tutorial_content:not(:first-of-type) {
        page-break-before: always;
    }
    
    body {
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .zf6262container {
        max-width: none !important;
        padding: 0 !important;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .zf6262hero {
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d) !important;
    }
    
    .zf6262hero_title {
        color: #4ade80 !important;
    }
    
    .zf6262hero_subtitle {
        color: #d1d5db !important;
    }
    
    .zf6262feature_tag {
        background: rgba(74, 222, 128, 0.1) !important;
        color: #4ade80 !important;
        border-color: rgba(74, 222, 128, 0.3) !important;
    }
    
    .zf6262download,
    .zf6262stickers,
    .zf6262news {
        background: #1a1a1a !important;
        color: #d1d5db !important;
    }
    
    .zf6262features,
    .zf6262games,
    .zf6262tutorial {
        background: #2d2d2d !important;
        color: #d1d5db !important;
    }
    
    .zf6262section_title {
        color: #f3f4f6 !important;
    }
    
    .zf6262section_subtitle {
        color: #9ca3af !important;
    }
    
    .zf6262download_card,
    .zf6262feature_item,
    .zf6262game_card,
    .zf6262news_item,
    .zf6262tutorial_step,
    .zf6262tutorial_card,
    .zf6262tip_item {
        background: #1a1a1a !important;
        color: #d1d5db !important;
        border: 1px solid #374151 !important;
    }
    
    .zf6262download_card h3,
    .zf6262feature_item h3,
    .zf6262game_card h3,
    .zf6262news_item h3,
    .zf6262tutorial_step h3,
    .zf6262tutorial_card h3,
    .zf6262tip_item h4 {
        color: #f3f4f6 !important;
    }
    
    .zf6262download_card p,
    .zf6262feature_item p,
    .zf6262game_card p,
    .zf6262news_item p,
    .zf6262tutorial_step p,
    .zf6262tutorial_card p,
    .zf6262tip_item p {
        color: #9ca3af !important;
    }
    
    .zf6262tutorial_nav {
        background: #1a1a1a !important;
    }
    
    .zf6262tutorial_tab {
        background: #2d2d2d !important;
        color: #9ca3af !important;
        border-color: #374151 !important;
    }
    
    .zf6262tutorial_tab.zf6262active {
        background: #4ade80 !important;
        color: #1a1a1a !important;
    }
    
    .zf6262tutorial_cta {
        background: #1a1a1a !important;
        color: #d1d5db !important;
    }
    
    .zf6262faq_question {
        background: #2d2d2d !important;
        color: #d1d5db !important;
    }
    
    .zf6262faq_question:hover {
        background-color: #374151 !important;
    }
    
    .zf6262faq_answer {
        color: #9ca3af !important;
    }
}

/* 焦点可见性优化 */
.zf6262btn:focus,
.zf6262tutorial_tab:focus,
.zf6262nav_link:focus {
    outline: 2px solid #00c73c;
    outline-offset: 2px;
}

/* 滚动行为优化 */
html {
    scroll-behavior: smooth;
}

/* 选择文本样式 */
::selection {
    background: rgba(0, 199, 60, 0.3);
    color: #333;
}

::-moz-selection {
    background: rgba(0, 199, 60, 0.3);
    color: #333;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zf6262download_card,
.zf6262feature_item,
.zf6262game_card,
.zf6262news_item,
.zf6262tutorial_step,
.zf6262tutorial_card,
.zf6262tip_item {
    animation: fadeInUp 0.6s ease-out;
}

/* 悬停效果增强 */
.zf6262download_card:hover .zf6262download_icon,
.zf6262feature_item:hover .zf6262feature_icon,
.zf6262game_card:hover .zf6262game_icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* 移动端菜单动画 */
.zf6262mobile_menu.zf6262active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.zf6262mobile_menu.zf6262active span:nth-child(2) {
    opacity: 0;
}

.zf6262mobile_menu.zf6262active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== 常见问题板块 ========== */
.zf6262faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.zf6262faq_list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zf6262faq_item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.zf6262faq_question {
    padding: 1.25rem 1.5rem;
    background: #fff;
}

.zf6262faq_question h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #222;
}

.zf6262faq_answer {
    padding: 0 1.5rem 1.35rem;
    color: #555;
    line-height: 1.65;
    font-size: 0.95rem;
}

.zf6262faq_answer p {
    margin: 0;
}

/* ========== 首页文章网格（5×2） ========== */
.zf6262home_articles {
    padding: 4rem 0;
    background: #fff;
}

.zf6262home_articles_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.zf6262home_article_card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zf6262home_article_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.zf6262home_article_thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9ecef;
}

.zf6262home_article_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zf6262home_article_body {
    padding: 0.85rem 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.zf6262home_article_title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zf6262home_article_title:hover {
    color: #00a854;
}

.zf6262home_article_desc {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.zf6262home_article_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: #888;
    margin-top: 0.25rem;
}

.zf6262home_article_date {
    white-space: nowrap;
}

.zf6262quick_channels {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e9ecef;
}

.zf6262quick_channels_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.zf6262quick_channels_list a {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    background: rgba(0, 199, 60, 0.1);
    color: #00a854;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    border: 1px solid rgba(0, 199, 60, 0.25);
}

.zf6262quick_channels_list a:hover {
    background: #00c73c;
    color: #fff;
    border-color: #00c73c;
}

/* ========== 内页布局 ========== */
.zf6262slide_hook:empty {
    display: none;
}

.zf6262inner {
    padding-bottom: 3rem;
}

.zf6262inner_layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
    align-items: start;
    padding-top: 1.5rem;
}

.zf6262breadcrumb {
    margin-bottom: 1rem;
}

.zf6262breadcrumb_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    font-size: 0.88rem;
    color: #666;
}

.zf6262breadcrumb_list a {
    color: #00a854;
    text-decoration: none;
}

.zf6262breadcrumb_list a:hover {
    text-decoration: underline;
}

.zf6262article_column,
.zf6262list_column {
    min-width: 0;
}

.zf6262article_header {
    margin-bottom: 1.25rem;
}

.zf6262article_h1,
.zf6262list_h1 {
    font-size: 1.85rem;
    color: #222;
    line-height: 1.3;
    margin: 0 0 0.75rem;
}

.zf6262article_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.88rem;
    color: #666;
}

.zf6262article_litpic {
    margin: 0 0 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f3f5;
}

.zf6262article_litpic img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.zf6262typography {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
}

.zf6262typography img {
    max-width: 100%;
    height: auto;
}

.zf6262article_gallery {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.zf6262article_gallery_item {
    margin: 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.zf6262article_gallery_item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.zf6262article_gallery figcaption {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: #666;
}

.zf6262diyfield {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.95rem;
}

.zf6262meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 0;
    padding: 0;
}

.zf6262tagitem a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 199, 60, 0.12);
    color: #00a854;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
}

.zf6262prenext,
.zf6262prenext_single {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem 2rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.92rem;
    line-height: 1.5;
}

.zf6262prenext_single a,
.zf6262prenext a {
    color: #00a854;
    text-decoration: none;
}

.zf6262prenext_single a:hover,
.zf6262prenext a:hover {
    text-decoration: underline;
}

.zf6262prenext_item {
    font-size: 0.92rem;
}

.zf6262prenext_next {
    text-align: right;
}

.zf6262block_title {
    font-size: 1.25rem;
    margin: 2.5rem 0 1rem;
    color: #222;
}

.zf6262related_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zf6262related_item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.zf6262related_thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.zf6262related_link {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.zf6262related_link:hover {
    color: #00a854;
}

.zf6262related_text p {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.zf6262related_compact li {
    font-size: 0.9rem;
    line-height: 1.5;
}

.zf6262excerpt {
    color: #666;
}

/* 列表页 */
.zf6262list_header {
    margin-bottom: 1.5rem;
}

.zf6262list_desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.zf6262list_cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.zf6262list_card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.zf6262list_thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.zf6262list_typename {
    font-size: 0.82rem;
    color: #888;
}

.zf6262list_typename a {
    color: #00a854;
    text-decoration: none;
}

.zf6262list_title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    margin: 0.35rem 0;
    line-height: 1.35;
}

.zf6262list_title:hover {
    color: #00a854;
}

.zf6262list_info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.82rem;
    color: #777;
}

.zf6262list_intro {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.55;
}

/* 分页左右 */
.zf6262pagebar_split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.zf6262pagebar_side {
    flex: 1 1 200px;
    min-width: 0;
}

.zf6262pagebar_side_right {
    text-align: right;
}

.zf6262pagebar_side_right .zzpages,
.zf6262pagebar_side_right .pagelist {
    justify-content: flex-end;
}

.zf6262pages .pagelist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
    align-items: center;
}

.zf6262pages .pagelist li,
.zf6262pages .pagelist a {
    display: inline-block;
}

.zf6262pages .pagelist a {
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    border: 1px solid #dee2e6;
    background: #fff;
    font-size: 0.88rem;
}

.zf6262pages .pagelist a:hover {
    border-color: #00c73c;
    color: #00a854;
}

/* 侧栏（与内容页、列表页同步） */
.zf6262sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.zf6262side_block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1rem 0.75rem;
}

.zf6262side_title {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}

.zf6262side_title a {
    color: #222;
    text-decoration: none;
}

.zf6262side_title a:hover {
    color: #00a854;
}

.zf6262side_hint {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    color: #888;
}

.zf6262side_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.zf6262side_item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.6rem;
    align-items: start;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #e9ecef;
}

.zf6262side_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.zf6262side_thumb img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.zf6262side_thumb a {
    display: block;
}

.zf6262side_link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zf6262side_link:hover {
    color: #00a854;
}

.zf6262side_sub {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-top: 0.2rem;
}

.zf6262side_nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
}

.zf6262side_nav a {
    color: #00a854;
    text-decoration: none;
}

.zf6262side_list_plain a {
    color: #333;
    text-decoration: none;
    font-size: 0.86rem;
}

.zf6262side_list_plain a:hover {
    color: #00a854;
}

.zf6262footer_city .zf6262city_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
}

.zf6262footer_city a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.88rem;
}

.zf6262footer_city a:hover {
    color: #00c73c;
}

.zf6262footer_extra {
    color: #aaa;
    font-size: 0.85rem;
}

/* 子导航下拉（getsonclass 输出） */
.zf6262nav_item dl,
.zf6262nav_item .zf6262nav-child {
    margin: 0.35rem 0 0 0.5rem;
    padding: 0;
}

.zf6262nav_item dd {
    margin: 0.15rem 0;
}

.zf6262nav_item dd a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1199px) {
    .zf6262home_articles_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .zf6262inner_layout {
        grid-template-columns: 1fr;
    }

    .zf6262sidebar {
        order: 2;
    }

    .zf6262article_column,
    .zf6262list_column {
        order: 1;
    }

    .zf6262home_articles_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zf6262list_card {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .zf6262prenext,
    .zf6262prenext_single {
        flex-direction: column;
        align-items: stretch;
    }

    .zf6262prenext_next {
        text-align: left;
    }

    .zf6262related_item {
        grid-template-columns: 100px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .zf6262home_articles_grid {
        grid-template-columns: 1fr;
    }

    .zf6262nav_item dl,
    .zf6262nav_item .zf6262nav-child {
        margin-left: 0;
    }

    .zf6262list_card {
        grid-template-columns: 1fr;
    }

    .zf6262list_thumb {
        max-width: 100%;
    }

    .zf6262pagebar_split {
        flex-direction: column;
    }

    .zf6262pagebar_side_right {
        text-align: left;
    }

    .zf6262pagebar_side_right .pagelist {
        justify-content: flex-start;
    }

    .zf6262article_h1,
    .zf6262list_h1 {
        font-size: 1.45rem;
    }
}

@media (prefers-color-scheme: dark) {
    .zf6262faq {
        background: #1a1a1a !important;
    }

    .zf6262faq_item,
    .zf6262home_article_card,
    .zf6262list_card,
    .zf6262side_block {
        background: #2d2d2d !important;
        border-color: #374151 !important;
        color: #d1d5db !important;
    }

    .zf6262home_articles {
        background: #111 !important;
    }

    .zf6262faq_question h4,
    .zf6262home_article_title,
    .zf6262article_h1,
    .zf6262list_h1,
    .zf6262list_title,
    .zf6262side_title a,
    .zf6262side_link,
    .zf6262related_link {
        color: #f3f4f6 !important;
    }

    .zf6262home_article_desc,
    .zf6262faq_answer,
    .zf6262list_intro,
    .zf6262typography {
        color: #9ca3af !important;
    }

    .zf6262pages .pagelist a {
        background: #1f2937 !important;
        border-color: #374151 !important;
        color: #e5e7eb !important;
    }
} 