@charset "utf-8";
/*
Theme Name: 漫蛙3官网
Theme URI: 
Author: 阿叶
Author URI: 
Description:
Version: 0.0.1
*/
/* 基础样式 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}
:root {
	--pm-c: #40a535
}
body {
    background-color: #f8f9fa;
    padding: 30px 0;
    color: #333;
    line-height: 1.6;
}
a,a:hover {
	color: #333;
	text-decoration: none;
}
.mw3-container {
    width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 头部LOGO和标题 */
.mw3-header {
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #e9ecef;
}

.mw3-logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #228be6;
}
.mw3-logo img {
	width: 100%;
	height: 100%;
}

.mw3-title .h1 {
    font-size: 26px;
    margin-bottom: 15px;
	font-weight: bold;
	line-height: normal;
}
.mw3-title .h1 a {
	color: #222;
}
.mw3-title .title {
	margin: 0;
    font-size: 16px;
    color: #868e96;
    font-weight: normal;
}
.mw3-intro {
    padding: 30px 40px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.mw3-intro p {
    font-size: 15px;
    line-height: 28px;
    color: #495057;
}

.mw3-intro .more {
	text-align: center;
	margin-top: 15px;
}
.mw3-intro .more a {
	display: block;
    height: 40px;
    line-height: 42px;
    text-align: center;
    background: var(--pm-c);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
}

.part-title {}
.part-title .title {
	font-weight: bold;
	color: var(--pm-c);
    margin-bottom: 25px;
    font-size: 18px;
    text-align: center;
}
.part-title .title a {
	color: var(--pm-c);
}
.mw3-screenshots {
    padding: 30px 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.mw3-screenshots h2 {
    color: #4263eb;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

.mw3-screenshot-container {
	overflow-x: scroll;
	white-space: nowrap;
}

.mw3-screenshot {
    display: inline-block;
    background: #e7f5ff;
    height: 260px;
}
.mw3-screenshot img {
	height: 100%;
	border-radius: 6px;
}



.mw3-downloads {
    padding: 30px 40px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.mw3-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mw3-download-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.mw3-download-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}
.mw3-download-icon img {
	width: 100%;
	height: 100%;
}
.mw3-download-info {
	flex: 1;
	overflow: hidden;
}
.mw3-download-info .h3 {
    margin-bottom: 5px;
    color: #495057;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mw3-download-info p {
    color: var(--pm-c);
	font-size: 12px;
}
.mw3-download-item .view {
    color: #fff;
    background: var(--pm-c);
    border-radius: 20px;
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    font-size: 12px;
    margin-left: 30px;
}

/* 用户浏览部分 */
.mw3-users {
    padding: 30px 40px;
    background: #f8f9fa;
}

.mw3-user-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mw3-user-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    border: 1px solid #e9ecef;
}

.mw3-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e6f5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--pm-c);
    font-weight: bold;
}
.mw3-time {
    font-size: 12px;
    color: #aaa;
    margin: 10px 0;
}

.mw3-user-info .name {
	font-weight: bold;
    margin-bottom: 5px;
    color: #495057;
    font-size: 16px;
}
.mw3-user-info {
    flex: 1;
    overflow: hidden;
}
.mw3-user-info p {
    color: #868e96;
    font-size: 14px;
}

/* 底部 */
.mw3-footer {
    background: #f1f3f5;
    color: #495057;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    border-top: 1px solid #e9ecef;
}

.mw3-footer p {
    margin: 5px 0;
}

/* 响应式调整 */
@media (max-width: 830px) {
    .mw3-container {
        width: 95%;
    }
    
    .mw3-screenshot-container {
        flex-wrap: wrap;
    }
    
    .mw3-screenshot {
        flex-basis: calc(50% - 15px);
        margin-bottom: 15px;
    }
    .mw3-users,
    .mw3-downloads,
    .mw3-screenshots,
    .mw3-intro,
    .mw3-header {
            padding: 20px;
    }
    .mw3-download-grid {
        display: block;
    }
    .mw3-download-item {
        margin-bottom: 12px;
    }
}


.atime{
    font-size: 12px;
    color: #aaa;
    margin: 10px 0;
}