@charset "utf-8";
/*
    Theme Name: 漫画主题
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/
/* �榊��桁���臀� */
        :root {
            --primary-color: #4361ee; /* 新主色调：蓝紫色 */
            --secondary-color: #3a0ca3; /* 辅助色 */
            --light-color: #f8f9fa;
            --dark-color: #2b2d42;
            --text-muted: #6c757d;
            --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --btn-shadow: 0 2px 8px rgba(67, 97, 238, 0.3);
        }

        /* 全局容器样式 */
        .mw_container {
            max-width: 1200px;
            padding: 0 1.5rem;
            margin: 0 auto;
        }

        /* 头部导航样式 */
        .mw_site_header {
            background-color: var(--light-color);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
        }

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

        .mw_brand {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .mw_brand img {
            max-height: 40px;
        }

        .mw_brand_name {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-left: 0.8rem;
            font-weight: 600;
        }

        .mw_nav_links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .mw_nav_links a {
            color: var(--dark-color);
            margin: 0 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .mw_nav_links a:hover {
            color: var(--primary-color);
        }

        .mw_nav_actions {
            margin-left: 1rem;
        }

        /* 按钮通用样式 */
        .mw_btn {
            padding: 0.7rem 1.6rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .mw_btn_primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            box-shadow: var(--btn-shadow);
            color: white;
        }

        .mw_btn_primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.4);
        }

        .mw_btn_121212 {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 0.9rem 2rem;
            font-size: 1.05rem;
            box-shadow: var(--btn-shadow);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
        }

        /* Hero区域样式 */
        .mw_hero {
            padding: 4rem 0;
        }

        .mw_hero_content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }

        .mw_hero_text {
            flex: 1;
            min-width: 300px;
        }

        .mw_hero_title {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 1.2rem;
            font-weight: 700;
        }

        .mw_hero_desc {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 1.5rem;
        }

        .mw_hero_features {
            margin-bottom: 1.5rem;
        }

        .mw_tag {
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            margin-right: 0.8rem;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .mw_tag_1 { background-color: #e0f7fa; color: #00695c; }
        .mw_tag_2 { background-color: #f3e5f5; color: #7b1fa2; }
        .mw_tag_3 { background-color: #e8f5e9; color: #2e7d32; }
        .mw_tag_4 { background-color: #fff3e0; color: #e65100; }

        .mw_hero_image {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 0.5rem;
        }

        .mw_hero_image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        /* 特性区域样式 */
        .mw_features {
            padding: 5rem 0;
            background-color: var(--light-color);
        }

        .mw_section_header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .mw_section_title {
            font-size: 2rem;
            color: var(--dark-color);
            font-weight: 700;
        }

        .mw_features_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .mw_feature_card {
            padding: 2rem 1.5rem;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 1.5rem;
            background-color: white;
        }

        .mw_feature_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .mw_feature_icon {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.8rem;
            text-align: center;
        }

        .mw_feature_title {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 0.8rem;
            font-weight: 600;
            text-align: center;
        }

        .mw_text-muted {
            color: var(--text-muted);
            line-height: 1.6;
            text-align: center;
        }

        /* 下载区域样式 */
        .mw_download_section {
            padding: 5rem 0;
        }

        .mw_download_title {
            font-size: 2rem;
            color: var(--dark-color);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
        }

        .mw_download_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .mw_download_card {
            border-radius: 10px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: white;
        }

        .mw_download_card:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        .mw_download_btn {
            padding: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            text-decoration: none;
            color: inherit;
        }

        .mw_download_btn .view {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1.2rem;
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 6px;
            text-align: center;
            min-width: 80px;
            line-height: 1.2;
            transition: background-color 0.3s ease;
        }

        .mw_download_btn .view:hover {
            background-color: var(--secondary-color);
        }

        .mw_download_icon {
            width: 50px;
            height: 50px;
        }

        .mw_download_icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .mw_download_info {
            flex: 1;
            margin: 0 1rem;
        }

        .mw_download_platform {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.3rem;
        }

        .mw_download_version {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* 用户评价区域 */
        #about {
            padding: 5rem 0;
            background-color: #fafafa;
        }

        .mw_card {
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            border: none;
            margin-bottom: 1.5rem;
            background-color: white;
        }

        .mw_card_top {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            gap: 1rem;
        }

        .mw_card_top .ava {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .time {
            color: var(--text-muted);
            font-size: 0.9rem;
            display: block;
            margin-top: 1rem;
        }

        /* 页脚样式 */
        footer {
            background-color: var(--dark-color);
            color: rgba(255, 255, 255, 0.8);
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .mw_footer_bottom {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* 字体样式 */
        .mw_font_title {
            font-weight: 700;
            line-height: 1.3;
        }

        .mw_font_body {
            line-height: 1.6;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .mw_hero_title {
                font-size: 2.2rem;
            }
            
            .mw_container {
                padding: 0 1rem;
            }
            
            .mw_nav_links {
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
            }
            
            .mw_nav_actions {
                width: 100%;
                margin-left: 0;
                margin-top: 1rem;
                text-align: center;
            }
            
            .mw_download_btn .view {
                min-width: 60px;
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }
            
            .mw_btn, .mw_btn_121212 {
                padding: 0.6rem 1.2rem;
                font-size: 0.95rem;
            }

            .mw_hero_content {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .mw_download_grid {
                grid-template-columns: 1fr;
            }

            .mw_features_grid {
                grid-template-columns: 1fr;
            }

            .mw_hero_title {
                font-size: 1.8rem;
            }

            .mw_section_title, .mw_download_title {
                font-size: 1.5rem;
            }
        }