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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
    min-height: 100vh;
}

a,a:hover {
	text-decoration: none;
}
.mw_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.mw_header {
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e2e8f0;
}

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

.mw_logo {

}
.mw_logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #4caf50;
}

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

.mw_nav-links {
    display: flex;
    gap: 32px;
}

.mw_nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mw_nav-link:hover {
    color: #4caf50;
}

.mw_nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mw_nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
   .mw_icon {
   	width: 160px;
   	height: 160px;
   	margin: 0 auto;
   	border-radius: 20px;
   	overflow: hidden;
   	margin-bottom: 30px;
   	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   }
   .mw_icon img {
   	width: 100%;
   	height: 100%;
   }
.mw_hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.mw_hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.mw_hero h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #009688;
    line-height: 1.2;
}

.mw_hero .mw_tagline {
    font-size: 18px;
    color: #64748b;
    line-height: 2;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.mw_features-badge {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.mw_feature-badge-item {
    background: #ffffff;
    color: #4caf50;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mw_download-btn {
    background: linear-gradient(135deg, #4caf50 0%, #009688 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.mw_download-btn:hover {
    transform: translateY(-3px);
}

.mw_download-btn i {
    font-size: 18px;
}

/* 通用_section样式 */
.mw_section {
    padding: 60px 0;
    position: relative;
}
.mw_section-white {
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.mw_section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mw_section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.mw_section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4caf50 0%, #009688 100%);
    border-radius: 2px;
}


/* 优势亮点 Section - Flex布局（一行3个） */
.mw_advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.mw_advantage-card {
    flex: 1 1 calc(33.333% - 16px);
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.mw_advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4caf50 0%, #009688 100%);
}

.mw_advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.mw_advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgb(113 241 99 / 10%) 0%, rgb(41 155 72 / 10%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4caf50;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mw_advantage-card:hover .mw_advantage-icon {
    background: linear-gradient(135deg, #4caf50 0%, #009688 100%);
    color: white;
}

.mw_advantage-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
}

.mw_advantage-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* 下载中心 Section - Flex布局（一行4个） */
.mw_download-section {}

.mw_download-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mw_other-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mw_other-download-card {
    flex: 1 1 calc(25% - 15px);
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    text-align: center;
    min-width: 220px;
}

.mw_other-download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #009688;
}

.mw_other-download-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    overflow: hidden;
}
.mw_other-download-icon img {
	width: 100%;
	height: 100%;
}

.mw_other-download-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
        overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mw_other-download-title a {
    font-size: 16px;
    color: #1e293b;
}

.mw_other-download-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 18px;
    line-height: 1.6;
}

.mw_other-download-btn {
    background: transparent;
    color: #4caf50;
    border: 1px solid #009688;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mw_other-download-btn:hover {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

/* 用户评论 Section - Flex布局（一行3个） */
.mw_reviews-section {
    padding-bottom: 120px;
}

.mw_reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.mw_review-card {
    flex: 1 1 calc(33.333% - 19px);
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    min-width: 280px;
}

.mw_review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    color: rgba(99, 102, 241, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.mw_review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mw_user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #009688 0%, #4caf50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.mw_user-info {
    flex: 1;
}

.mw_user-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.mw_user-meta {
    font-size: 12px;
    color: #94a3b8;
}

.mw_review-rating {
    color: #f59e0b;
    margin-bottom: 16px;
    font-size: 14px;
}

.mw_review-content {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

/* Footer */
.mw_footer {
    background: #1e293b;
    color: white;
    padding: 40px;
}

.mw_footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.mw_footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.mw_footer-links a ,
.mw_footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mw_footer-link:hover {
    color: white;
}

.mw_footer-copyright {
    font-size: 13px;
    color: #94a3b8;
}
.timee {
    margin-top: 20px;
    color: #999;
    font-size: 13px;
}

/* 仅保留PC和手机端适配（以768px为分界） */
@media (max-width: 768px) {
    /* 手机端统一1列布局 */
   	.mw_section-header {
   		margin-bottom: 30px;
   	}
   	.mw_reviews-grid,
	.mw_other-downloads,
    .mw_advantages-grid {
    	overflow-x: scroll;
    	display: block;
    	white-space: nowrap;
    }
    .mw_other-download-card,
    .mw_review-card,
	.mw_advantage-card {
		display: inline-block;
		width: 268px;
		padding: 25px;
		min-width: auto;
		margin-right: 10px;
	}
	.mw_other-download-desc,
	.mw_review-content,
	.mw_advantage-desc {
		white-space: initial;
	}
 
    .mw_hero {
        padding: 30px 10px;
    }
    .mw_icon {
    	width: 100px;
    	height: 100px;
    }

    .mw_hero h1 {
        font-size: 28px;
    }

    .mw_hero .mw_tagline {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 20px;
        line-height: 26px;
    }
	.mw_container {
		margin: 0 10px;
		padding: 0;
	}
    .mw_nav-links {
        display: none;
    }

    .mw_section {
        padding: 30px 0;
    }

    .mw_section-title {
        font-size: 26px;
    }
}