@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: 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #fefaf7;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 更新头部样式 */
header {
    background: #326486;
    padding: 20px 0;
    position: relative;
    margin-bottom: 60px;
    box-shadow: 0 4px 15px rgb(50 100 134 / 3%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-title {
    text-align: left;
}

header .title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    font-weight: bold;
    
}

header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* 简介部分 */
.intro-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.intro-text {
    flex: 1;
}

.intro-text .title {
    font-weight: bold;
    color: #326486;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.intro-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 30px;
}

.download-btn {
    display: inline-block;
    background-color: #edb139;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.download-btn:hover {
    background-color: white;
    color: #edb139;
    border-color: #edb139;
}

.app-image {
    width: 600px;
    margin-left: 30px;
}
.app-image .image-warp {
    overflow-x: scroll;
    white-space: nowrap;
}
.app-image .image-warp::-webkit-scrollbar {
	width: 10px;
	height: 8px;
	cursor: pointer;
	background: var(--bg-c);
}
.app-image .image-warp::-webkit-scrollbar-thumb {
	background: #ddd;
	cursor: pointer;
}
.app-image img {
    width: 200px;
    border-radius: 10px;
}

.section {
    background: #f7f7f7;
    border: 2px solid #326486;
    border-radius: 12px;
    margin-bottom: 40px;
}
.section-h2 {
    background-color: #326486;
    color: white;
    padding: 15px 30px;
    margin: -2px -2px 25px -2px;
    border-radius: 10px 10px 0 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* 更新漫画信息样式 */
.info-section {

}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 30px 30px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgb(50 100 134 / 6%)
}

.info-item::before {
    content: "•";
    color: #326486;
    font-size: 2rem;
    margin-right: 15px;
}

.info-item b {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 3px;
    margin-right: 10px;
}

.info-item span {
    color: #666;
    font-size: 0.95rem;
}

/* 更新版本下载样式 */
.versions-section {
    background: linear-gradient(to right, #fff 30%, #fff9f5 100%);
}

.versions-section h2 {
    background-color: #326486;
    color: white;
    padding: 15px 30px;
    margin: 0;
    font-size: 1.6rem;
}

.version-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
}

.version-card {
    width: 30%;
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgb(50 100 134 / 3%);
    border: 1px solid #e2edf5;
}

.version-card:hover {
    transform: translateY(-5px);
}

.version-card h3 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}
.version-card h3 a {
    color: #326486;
    font-size: 1.3rem;
        text-decoration: none;
}
.version-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #326486;
}

.version-card p {
    color: #777;
    margin-bottom: 20px;
    font-size: 0.95rem;
        overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-link {
    display: inline-block;
    background: #edb139;
    color: white !important;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.download-link:hover {
    background: white;
    color: #edb139 !important;
    border-color: #edb139;
}

/* 资讯部分 */
.news-section {
    background: white;
}
.news-section .news-warp {
padding: 0 30px 30px;
}

.news-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.news-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.news-item p {
    color: #666;
    margin-bottom: 10px;
}

.news-date {
    color: #999;
    font-size: 0.8rem;
}

/* 更新用户评论样式 */
.comments-section {}

.comment {
    display: flex;
    padding: 25px;
    border-bottom: 1px solid #ffeee6;
    transition: background 0.3s;
}

.comment:hover {
    background: #fffaf7;
}

.comment:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #326486;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgb(50 100 134 / 3%);
}

.comment-content {
    flex: 1;
}

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

.comment-user {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-right: 15px;
}

.comment-date {
    color: #999;
    font-size: 0.85rem;
}

.comment-text {
    color: #555;
    line-height: 1.7;
    padding-right: 20px;
    position: relative;
}

.comment-text::before {
    content: "“";
    color: #326486;
    font-size: 2.5rem;
    position: absolute;
    left: -25px;
    top: -15px;
    opacity: 0.3;
}

.star-rating {
    color: #ffb400;
    margin-top: 10px;
    font-size: 0.9rem;
}


.content-section {}
.content-warp {
    padding: 0 30px;
    padding-bottom: 30px;
}
.content-warp p {
    line-height: 30px;
    margin-bottom: 15px;
}
.content-warp p:last-child {
    margin-bottom: 0;
}
.content-warp h3 {
    font-size: 18px;
    font-weight: bold;
    color: #326486;
    margin: 15px 0;
}

/* 底部样式 */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.footer-section h3 {
    color: #326486;
    margin-bottom: 20px;
}

.footer-section p, .footer-section a {
    color: #bbb;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}
.copyright a, 
.copyright {
    color: #999;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    header {
        margin-bottom: 20px;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }
    .intro-text .download-btn {
        display: block;
        text-align: center;
    }
    nav .download-btn {
        display: none;
    }
    .header-title {
        padding: 0;
        text-align: center;
        margin: 0;
    }
    .container {
        padding: 0 10px;
    }
    .intro-section {
        flex-direction: column;
        padding: 20px;
    }
    .intro-text .title {
        font-size: 1.3rem;
    }
    .intro-text p {
        font-size: 1rem;
    }
    .info-item {
        display: block;
    }
    .info-item::before {
        display: none;
    }
    .info-item b {
        display: block;
    }
    .cover-image {
        order: -1;
    }
    .section-h2 {
        margin-bottom: 0;
    }
    .info-grid {
            grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
        padding: 20px;
        gap: 15px;
    }

    .version-cards {
        padding: 20px;
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    .version-card {
        width: 100%;
    }
    .content-warp {
        padding: 20px;
    }

    .comment {
        padding: 20px;
    }

    .comment-avatar {
            display: none;
    }

    .comment-text::before {
        display: none;
    }
    .app-image {
        display: none;
    }
}