@charset "utf-8";
/*
    Theme Name: 喵趣漫画
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/

:root {
    --color_bg: #FFF8F5;
    --color_text: #2E2E2E;
    --color_muted: #6B6B6B;
    --color_primary: #FF8A65; /* 暖橙 */
    --color_primary_weak: #FFB74D; /* 提示橙 */
    --color_pink: #FFCDD2; /* 辅助粉 */
    --color_mint: #81C784; /* 辅助绿 */
    --surface: #FFFFFF;
    --shadow: 0 4px 14px rgba(0,0,0,.06);
}

/* 全局样式 */
html, body { 
    height: 100%; 
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--color_bg);
    color: var(--color_text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "YouSheBiaoTiHei","YouSheBiaoTiHei-Bold","YouSheBiaoTiHei-Regular","ZCOOL KuaiLe","ZCOOLKuaiLe-Regular","PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif;
    touch-action: pan-y;
    overscroll-behavior-x: none;
}

*, *::before, *::after { box-sizing: border-box; }
a, a:hover, a:focus, a:active { text-decoration: none; }

/* 基础工具类 */
.font_title_mq_ { font-family: "YouSheBiaoTiHei","PingFang SC","Microsoft YaHei",Arial,sans-serif; }
.font_body_mq_ { font-family: "ZCOOL KuaiLe","PingFang SC","Microsoft YaHei",Arial,sans-serif; line-height: 1.6; }
.font_bold_mq_ { font-weight: 700; }

.container_mq_ { 
    width: 100%; 
    max-width: 1140px;
    padding: 0 15px; 
    margin: 0 auto;
}

.card_mq_ { 
    background: var(--surface); 
    border-radius: 16px; 
    box-shadow: var(--shadow); 
    overflow: hidden; 
}

.section_mq_ { 
    padding: 30px 0; 
}

/* 头部样式 */
.site_header_mq_ { 
    position: sticky; 
    top: 0; 
    z-index: 999; 
    background: rgba(255,248,245,.97); 
    border-bottom: 1px solid rgba(0,0,0,.04); 
}

.nav_mq_ { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 64px;
}

.brand_mq_ { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: #232323;
}

.brand_mq_ img { 
    width: 36px; 
    height: 36px; 
    border-radius: 8px; 
}

.title_mq_ { 
    font-size: 20px; 
    letter-spacing: .5px; 
}

/* 按钮样式 */
.btn_mq_ { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    height: 44px; 
    padding: 0 18px; 
    border-radius:6px; 
    border: 0; 
    cursor: pointer; 
    font-size: 16px; 
}

.btn_primary_mq_ { 
    background: var(--color_primary); 
    color: #fff; 
    box-shadow: 0 4px 12px rgba(255,138,101,.28); 
}

.btn_outline_mq_ { 
    background: transparent; 
    color: var(--color_primary); 
    border: 2px solid var(--color_primary); 
}

/* 标签样式 */
.tag_mq_ { 
    display: inline-block; 
    padding: 4px 10px; 
    border-radius: 999px; 
    font-size: 12px; 
}

.tag_hot_mq_ { background: var(--color_primary); color: #fff; }
.tag_pink_mq_ { background: var(--color_pink); color: #9C2A33; }
.tag_mint_mq_ { background: var(--color_mint); color: #0E6B3E; }

.muted_mq_ { color: var(--color_muted); }

/* 英雄区 */
.hero_mq_ { 
    padding: 20px 0; 
}

.hero_content_mq_ {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero_text_mq_ {
    flex: 1;
}
.hero_text_mq_ .mq_time {
    color: #999;
    font-size: 13px;
}

.hero_image_mq_ {
    flex: 1;
}

.slogan_mq_ { 
    font-size: 32px; 
    line-height: 1.1; 
    margin: 0 0 20px;
}

.sub_mq_ { 
    line-height: 32px;
    margin: 15px 0; 
    font-size: 16px; 
}

.hero_actions_mq_ { 
    margin: 25px 0; 
}
.hero_actions_mq_ .btn_mq_ {
    display: inline-block;
    text-align: center;
    padding: 0 60px;
    line-height: 46px;
    font-weight: bold;
}
.bullet_line_mq_ { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin-top: 20px;
}

/* 特性区块 */
.feature_image_mq_ { 
    position: relative; 
    height: 240px; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: flex-end; 
    justify-content: center; 
    padding-bottom: 20px; 
}

.feature_text_box_mq_ { 
    background: white; 
    border-radius: 16px; 
    padding: 6px 12px; 
    box-shadow: 0 4px 16px rgba(0,0,0,.12); 
}
.feature_text_box_mq_ span {
    color: #323232;
    font-size: 13px;
}
.badge_mq_ { 
    position: absolute; 
    top: 12px; 
    left: 12px; 
}

/* 功能亮点 */
.features_grid_mq_ {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature_card_mq_ {
    padding: 20px;
}

.feature_card_mq_ h3 {
    margin: 10px 0;
    font-size: 18px;
}

/* 下载中心 */
.download_section_mq_ { 
    padding: 40px 0; 
}

.download_title_mq_ { 
    font-size: 28px; 
    margin: 0 0 30px; 
    font-weight: bold;
    text-align: center;
}

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

.download_card_mq_ { 
    display: flex; 
    align-items: center; 
    padding: 20px; 
    gap: 15px; 
}
.download_card_mq_ .btn_mq_ {
    padding: 0 10px;
}

.download_info_mq_ { 
    overflow: hidden;
    display: flex; 
    align-items: center; 
    gap: 14px; 
    flex: 1; 
}

.download_icon_mq_ {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_android_mq_ { background: var(--color_primary_weak); }
.icon_huawei_mq_ { background: #FF4D4F; }
.icon_tencent_mq_ { background: #07C160; }
.icon_xiaomi_mq_ { background: #FF6700; }

.download_icon_mq_ img { 
    width: 28px; 
    height: 28px; 
    fill: #fff; 
}

.download_text_mq_ { 
    flex: 1; 
    overflow: hidden;
}

.download_text_mq_ h3 { 
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.download_text_mq_ h3 a {
    color: #333;
}

.download_text_mq_ .font_body_mq_ {
    margin: 0;
}
.font_body_mq_ li {
    margin-bottom: 5px;
    
}
.font_body_mq_ li:last-child {
    margin-bottom: 0;
}
/* 笔记提示 */
.note_mq_ { 
    background: rgba(255,183,77,.14); 
    border: 1px dashed #FFB74D; 
    color: #8B5A2B; 
    padding: 10px 12px; 
    border-radius: 12px; 
    font-size: 13px; 
    margin: 15px 0;
}

/* 新手指南和常见问题 */
.guide_grid_mq_ {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.guide_card_mq_ {
    padding: 20px;
}

.guide_card_mq_ h3 {
    margin: 0 0 15px;
    font-size: 20px;
}


/* 社区评论 */
.comments_grid_mq_ {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.comment_card_mq_ {
    padding: 20px;
}

/* 用户评论头部样式 */
.comment_header_mq_ {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user_avatar_mq_ {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.user_info_mq_ {
    display: flex;
    flex-direction: column;
}

.user_name_mq_ {
    font-weight: 600;
    font-size: 15px;
    color: var(--color_text);
}

.comment_time_mq_ {
    font-size: 12px;
    color: var(--color_muted);
    margin-top: 2px;
}

.comment_content_mq_ {
    line-height: 1.5;
}

.comment_text_mq_ {
    font-size: 15px;
    margin-bottom: 8px;
}


/* 页脚 */
footer { 
    background: #fff; 
    border-top: 1px solid rgba(0,0,0,.04); 
    margin-top: 50px; 
    padding: 20px 0;
}

.footer_inner_mq_ { 
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

/* 手机端适配 */
@media (max-width: 768px) {
    /* 基础调整 */
    body {
        padding-top: 60px;
    }
    
    .site_header_mq_ {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .nav_mq_ {
        height: 60px;
    }
    
    .brand_mq_ img {
        width: 32px;
        height: 32px;
    }
    
    .title_mq_ {
        font-size: 18px;
    }
    
    .btn_mq_ {
        height: 40px;
        padding: 0 15px;
        font-size: 14px;
    }
    
    /* 英雄区 */
    .hero_content_mq_ {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero_text_mq_, .hero_image_mq_ {
        width: 100%;
        flex: none;
    }
    
    .slogan_mq_ {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .sub_mq_ {
        font-size: 15px;
        margin: 10px 0;
    }
    
    /* 网格布局调整为单列 */
    .features_grid_mq_,
    .download_grid_mq_,
    .guide_grid_mq_,
    .comments_grid_mq_ {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 下载卡片 */
    .download_card_mq_ {
        padding: 15px;
    }
    
    .download_icon_mq_ {
        width: 48px;
        height: 48px;
    }
    
    .download_text_mq_ h3 {
        font-size: 16px;
    }
    .hero_actions_mq_ .btn_mq_ {
        display: block;
        width: 100%;
        height: 44px;
    }
    .bullet_line_mq_,
    .hero_image_mq_ {
        display: none;
    }
    .hero_actions_mq_ {
        margin-bottom: 0;
    }
    
    /* 页脚 */
    .footer_inner_mq_ {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* 间距调整 */
    .section_mq_ {
        padding: 20px 0;
    }
    
    .download_title_mq_ {
        font-size: 22px;
        margin-bottom: 20px;
    }
}