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

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

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* 第一部分：APP介绍 */
.app-intro {
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f2680c;
    color: white;
    position: relative;
    overflow: hidden;
}
.app-intro .intro-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: .1;
}
.intro-content {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.intro-text {
    flex: 1;
    overflow: hidden;
}

.app-intro h1 {
    font-size: clamp(28px, 5vw, 32px);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 22px;
}

.app-intro p {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 25px;
    opacity: 0.9;
}

.intro-text .download-btn {
    background-color: #fff;
    color: #f2680c;
}
.intro-show {
    width: 500px;
    margin-left: 30px;
}
.intro-show .show-warp {
    overflow-x: scroll;
    white-space: nowrap;
}
.intro-show .show-warp::-webkit-scrollbar {
	width: 10px;
	height: 8px;
	cursor: pointer;
	background: #ffeadb;
}
.intro-show .show-warp::-webkit-scrollbar-thumb {
	background: #fff;
	cursor: pointer;
}
.intro-show .show-warp img {
    width: auto;
    height: 280px;
}
.download-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff2d55;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 45, 85, 0.4);
}


/* 第二部分：其他版本下载 */
.versions-section {
    padding: 30px;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #f2680c, #F8B9CE);
    margin: 15px auto 0;
    border-radius: 2px;
}

.version-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.version-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    text-align: center;
    max-width: 280px;
}

.version-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.version-name {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.version-name a {
    font-size: 20px;
    color: #2c3e50;
    text-decoration: none;
}
.version-desc {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 15px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.version-download {
    display: inline-block;
    padding: 8px 25px;
    background: #f2680c;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.version-download:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* 第三部分：用户评论 */
.reviews-section {
    padding: 30px;
    background-color: #f8f9fa;
}

.review-list {
    columns: 3 300px;
    column-gap: 30px;
}

.review-item {
    break-inside: avoid;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #eee;
}

.user-name {
    font-weight: 600;
    color: #2c3e50;
}

.user-level {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 3px;
}

.review-stars {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-date {
    color: #95a5a6;
    font-size: 12px;
}

.section-content {
    padding: 30px;
    background-color: #f8f9fa;
}
.section-content .content {
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05)
}
.section-content .content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 30px;
}
.section-content .content h3 {
    font-weight: bold;
    font-size: 17px;
    margin: 15px 0;
}
.versions-section .view-btn {
    margin-top: 20px;
    display: block;
    text-align: center;
    padding: 10px 25px;
    background: #f2680c;
        border-radius: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}
.u-time {
    margin-top: 10px;
    font-size: 13px;
    opacity: .6;
}
/* 页脚 */
footer {
    text-align: center;
    padding: 50px;
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 14px;
}

@media (max-width: 768px) {
    .intro-content {
        display: block;
    }
    .intro-text .download-btn {
        display: block;
        text-align: center;
    }
    .app-intro h1 {
        text-align: center;
    }
   .intro-show {
       display: block;
       margin-left: 0;
       width: 100%;
       overflow: hidden;
       margin-top: 20px;
   }
   .intro-show .show-warp img {
    width: auto;
    height: 180px;
    }
    .section-content .content {
        padding: 15px;
    }
   .versions-section {
       padding: 15px;
   }
   .section-title {
        font-size:18px;
        margin-bottom: 20px;
    }
    .version-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .version-card {
        background: #fff;
        border-radius: 8px;
        padding: 15px;
    }

    .reviews-section {
        padding: 15px;
        background-color: #f8f9fa;
    }
    .section-content {
        padding: 15px;
    }
    
}