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


/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans SC', sans-serif;
}

body {
    background-color: #ffffff;
    color: #111827;
    line-height: 1.5;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #22c55e;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #16a34a;
}

/* 渐变背景 */
.gradient-bg {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
}
a,a:hover {
    text-decoration: none;
}
/* 卡片悬停效果 */
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 按钮悬停效果 */
.btn-hover {
    transition: all 0.3s ease;
}
.btn-hover:hover {
    transform: scale(1.05);
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* 导航栏 */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    z-index: 50;
    border-bottom: 1px solid #e5e7eb;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 45px;
    width: 45px;
    border-radius: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #16a34a;
}

/* 首页区域 */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://www.manwa2.net/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 64px;
}

.home-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.85);
}

.home-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.home-content .timee {
    font-size: 13px;
    margin-bottom: 10px;
    opacity: .6;
}
.home-logo {
    width: 160px;
    height: 160px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.home-logo img {
    height: 100%;
    width: 100%;
    border-radius: 16px;
}

.home-title {
    font-size: 48px;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 8px;
}

.home-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 32px;
}

.home-desc {
    font-size: 20px;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.8;
}

.home-desc span {
    color: #16a34a;
    font-weight: 700;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: #16a34a;
    color: #ffffff;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.download-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* 特色功能区域 */
#features {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 20px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-primary {
    background-color: #dcfce7;
}

.icon-secondary {
    background-color: #fef9c3;
}

.feature-icon i {
    font-size: 28px;
}

.icon-primary i {
    color: #16a34a;
}

.icon-secondary i {
    color: #ca8a04;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 16px;
    color: #4b5563;
}

/* 下载模块样式 */
#download-modules {
    padding: 80px 0;
    background-color: #ffffff;
}

.download-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-module-card {
    background-color: #f9fafb;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.download-module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(22, 163, 74, 0.1);
    background-color: #f0fdf4;
}

.download-module-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}
.download-module-icon img {
    width: 100%;
    height: 100%;
     border-radius: 50%;
}

.download-module-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.download-module-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-module-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #16a34a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.download-module-btn:hover {
    background-color: #15803d;
    transform: scale(1.05);
}

/* 新增用户评价模块样式 */
#user-reviews {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.review-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(22, 163, 74, 0.08);
}

.review-rating {
    margin-bottom: 16px;
    color: #f59e0b;
    height: 15px;
    width: 95px;
    background-image:url(static/images/star.png)
}

.review-rating i {
    font-size: 16px;
    margin-right: 2px;
}

.review-content {
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image:url(static/images/ava.png);
    background-size: 100%;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.user-tag {
    font-size: 12px;
    color: #aaa;
}

/* 下载区域 */
#download {
    padding: 80px 0;
    background-color: #ffffff;
}

.download-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef9c3 0%, #dcfce7 100%);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
}

.download-card-logo {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 0 auto 24px;
}

.download-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.download-card-desc {
    font-size: 18px;
    color: #374151;
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.download-android {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background-color: #ffffff;
    color: #16a34a;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-size: 18px;
}

.download-android svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.download-feature-item {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 16px;
}

.download-feature-item i {
    font-size: 24px;
    color: #374151;
    margin-bottom: 8px;
}

.download-feature-text {
    font-size: 14px;
    color: #374151;
}

/* 页脚 */
footer {
    background-color: #16a34a;
    color: #ffffff;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.footer-tags {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .home-title {
        font-size: 36px;
    }
    
    .home-desc {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-desc {
        font-size: 18px;
    }
    
    .download-card {
        padding: 32px 16px;
    }
    
    .download-android {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* 下载模块响应式 */
    .download-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 评价模块响应式 */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .home-logo {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
    }
    
    .home-logo img {
        height: 96px;
        width: 96px;
    }
    
    .home-title {
        font-size: 28px;
    }
    
    .home-subtitle {
        font-size: 18px;
    }
    
    .home-desc {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .download-android {
        width: 100%;
        justify-content: center;
    }
    
    /* 下载模块响应式 */
    .download-modules-grid {
        grid-template-columns: 1fr;
    }
    
    /* 评价模块响应式 */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}