@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: system-ui, -apple-system, sans-serif;
}

body {
    background: #f8fafc;
    line-height: 1.6;
}
a,a:hover {
	color: #333;
	text-decoration: none;
}

/* 头部样式 */
.site-header {
	background: linear-gradient(135deg, #ff309f, #ff9d30);
	color: white;
    padding: 2rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.header-content .cta-button {
    display: inline-block;
	background: #fff;
	font-size: 1rem;
	color: #ff3030 !important;
}

.header-content .main-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    flex: 1;
}

/* 主内容容器 */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* 通用模块标题 */
.section-title {
	font-weight: bold;
    color: #222;
    font-size: 1.4rem;
    margin: 3rem 0 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ff3030;
    display: inline-block;
}

/* 封面模块 */
.hero-section {
    display: flex;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.hero-text {
    flex: 1;
    overflow: hidden;
}
.hero-text .title {
	font-weight: bold;
	color: #222;
    font-size: 1.8rem;
    display: inline-block;
}
.hero-text p {
    color: #455a64;
    margin: 1.5rem 0;
    line-height: 2rem;
}
.hero-section .cta-button {
	padding: 1rem 2rem;
	font-size: 17px;
	background: #ff7800;
}

.show-image {
    width: 530px;
    margin-left: 30px;
    overflow: hidden;
}
.show-warp {
    overflow-x: scroll;
    white-space: nowrap;
}

.show-image img {
    width: 200px;
    height: 330px;
    border-radius: 8px;
    object-fit: cover;
}

/* 按钮样式 */
.cta-button {
	display: inline-block;
    background: #ff7800;
    color: #fff !important;
    padding: .6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* 作品信息 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-item {
    padding: 1.5rem;
    background: #f3f4f6;
    border-radius: 8px;
}

.info-label {
    color: #999;
    margin-bottom: 0.5rem;
    font-size: .8rem;
}

.info-value {
    color: #222;
    font-weight: 600;
}

/* 版本下载 */
.version-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.version-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.version-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.version-card p {
	margin-bottom: 10px;
	color: #999;
	font-size: 13px;
}

/* 最新动态（列式布局） */
.news-column {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    color: #999;
    font-weight: 500;
}

.news-title {
    margin-bottom: 0.5rem;
    	color: #333;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: bold;
}
.news-title a {
	color: #333;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: bold;
}
.atime {
    font-size: 13px;
    margin-top: 10px;
    opacity: .6;
}
.news-excerpt {
    color: #999;
}
.section-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.section-content p {
    line-height: 30px;
    font-size: 15px;
    margin-bottom: 15px;
}
.section-content p:last-child {
    margin-bottom: 0;
}
.section-content h3 {
    font-size: 17px;
    font-weight: bold;
    margin: 15px 0;
}
/* 用户评价 */
.review-grid {
    column-count: 3;
    column-gap: 2rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    break-inside: avoid;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.user-name {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.review-card p {
	color: #666;
}
.review-card .time {
    color: #999;
    display: block;
    margin-top: 10px;
    font-size: 13px;
}
footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding-bottom: 30px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .review-grid {
        column-count: 1;
    }

    .news-item {
        grid-template-columns: 1fr;
    }
    .show-image {
        display: none;
    }
    .site-header {
        padding: 1.5rem;
    }
    .header-content .main-title {
       font-size: 1.6rem;
    }
    .header-content .cta-button {
            padding: 0.4rem 0.8rem;
    }
    .hero-text .title {
        font-size: 1.4rem;
    }
    .hero-text p {
        color: #455a64;
        margin: 1rem 0;
        line-height: 1.8rem;
        font-size: 1rem;
    }
    .hero-section .cta-button {
        display: block;
        text-align: center;
    }
    .info-grid {
        padding: 1rem;
            grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    }
    .section-content {
        padding: 1rem;
    }
    .info-item {
        padding: 1rem;
    }
    .version-card {
        padding: 1rem;
    }
    .news-column {
        padding: 1rem;
    }
}
