@charset "utf-8";
/*
    Theme Name: 漫蛙漫画官网
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/
html {
    margin: 0;
    padding: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #f8fcf8 0%, #e9f5e8 100%);
    color: #333;
    min-height: 100vh;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
a,a:hover {
	text-decoration: none;
}
.mw_container {
    width: 100%;
    max-width: 800px;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.mw_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #40a535;
}

/* 产品头部 - 左右布局 */
.mw_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.mw_icon {
    width: 70px;
    height: 70px;
    background-color: #40a535;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.mw_icon img {
	width: 100%;
	height: 100%;
}

.mw_title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}
.mw_title a {
    color: #222;
}
.mw_tagline {
    color: #40a535;
    font-size: 16px;
    font-weight: 500;
}

/* 产品简介 */
.mw_intro {
    margin: 20px 0;
    line-height: 1.6;
    font-size: 15px;
    color: #444;
    padding: 0 8px;
    position: relative;
}

.mw_intro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #40a535;
}

.mw_intro p {
    margin-bottom: 12px;
    padding-left: 12px;
}

/* 下载按钮 */
.mw_btn_container {
    text-align: center;
    margin: 25px 0;
}

.mw_btn {
    display: block;
    background-color: #40a535;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.mw_btn:hover {
    background-color: #36882e;
}

.mw_btn i {
    margin-right: 8px;
}

/* 部分标题 */
.mw_section_title {
    font-size: 20px;
    color: #222;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #40a535;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.mw_section_title a {
    color: #222;
}
.mw_section_title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 20px;
    background: #40a535;
    margin-right: 10px;
}

/* 产品展示 */
.mw_showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.mw_showcase_item {
    flex: 1 1 calc(50% - 12px);
    min-width: 150px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.mw_showcase_item:hover {
    border-color: #c0d9bb;
}

.mw_showcase_img {
    width: 100%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mw_showcase_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mw_showcase_caption {
    color: #444;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 0;
}

/* 下载列表 */
.mw_download_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.mw_download_item {
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 18px;
    display: flex;
    align-items: center;
    background: #fafafa;
    transition: all 0.2s ease;
}

.mw_download_item:hover {
    background-color: #f0f7ef;
    border-color: #c0d9bb;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.mw_download_icon {
    width:52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #40a535;
    font-size: 18px;
}
.mw_download_icon img {
	width: 100%;
	height: 100%;
}
.mw_download_info {
    flex: 1;
}

.mw_download_info .h3 {
	font-weight: bold;
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
}
.mw_download_info .h3 a {
	font-weight: bold;
	color: #222;
}

.mw_download_link {
    color: #40a535;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.mw_download_link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mw_download_link:hover i {
    transform: translateX(3px);
}

/* 用户评论 */
.mw_reviews {
    margin-bottom: 15px;
}

.mw_review_item {
    border: 1px solid #e0e0e0;
    padding: 18px;
    margin-bottom: 15px;
    background: #fafafa;
    position: relative;
}

.mw_review_header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mw_user_avatar {
    width: 40px;
    height: 40px;
    background: #40a535;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-right: 12px;
    border-radius: 50%;
}

.mw_user_info h3 {
    color: #222;
    font-size: 16px;
    margin-bottom: 3px;
}

.mw_review_content {
    color: #444;
    line-height: 1.6;
    font-size: 14px;
}

.mw_review_date {
    color: #777;
    font-size: 13px;
}

/* 页脚 */
.mw_footer {
    text-align: center;
    color: #777;
    padding-top: 25px;
    font-size: 13px;
    border-top: 1px solid #eaeaea;
    margin-top: 15px;
}

.mw_footer_links {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.mw_footer_links a {
    color: #40a535;
    text-decoration: none;
}

.mw_footer_links a:hover {
    text-decoration: underline;
}

/* 响应式调整 - 平板和桌面 */
@media (min-width: 600px) {
    body {
        padding: 20px;
    }
    
    .mw_container {
        padding: 30px;
        border-radius: 8px;
    }
    
    .mw_header {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .mw_icon {
        width: 80px;
        height: 80px;
        margin-right: 25px;
    }
    
    .mw_icon i {
        font-size: 38px;
    }
    
    .mw_title {
        font-size: 30px;
    }
    
    .mw_tagline {
        font-size: 18px;
    }
    
    .mw_intro {
        margin: 25px 0;
        font-size: 16px;
        padding: 0 10px;
    }
    
    .mw_intro p {
        padding-left: 15px;
    }
    
    .mw_btn {
        font-size: 17px;
        padding: 15px 45px;
    }
    
    .mw_section_title {
        font-size: 22px;
        margin: 35px 0 25px;
    }
    
    .mw_showcase {
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .mw_showcase_item {
        flex: 1;
        min-width: auto;
    }
    
    .mw_showcase_img {
    }
    
    .mw_showcase_caption {
        font-size: 15px;
    }
    
    .mw_download_list {
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .mw_download_item {
        width: calc(50% - 8px);
    }
    
    .mw_reviews {
        margin-bottom: 20px;
    }
    
    .mw_review_item {
        padding: 20px;
        margin-bottom: 18px;
    }
    
    .mw_footer {
        padding-top: 30px;
        font-size: 14px;
    }
}

/* 响应式调整 - 大桌面 */
@media (min-width: 900px) {
    .mw_container {
        padding: 35px;
    }
    
    .mw_icon {
        width: 90px;
        height: 90px;
    }
    
    .mw_icon i {
        font-size: 42px;
    }
    
    .mw_title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .mw_showcase_img {
    }
}