* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background-color: #ffffff;
	color: #333;
	line-height: 1.6;
}

.logo a {
    text-decoration: none;
    color: #168fe2;
}

/* 导航栏 */
.navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
}

.navbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
}

.logo {
	font-size: 24px;
	font-weight: bold;
	color: #168fe2;
}

.nav-links {
	display: flex;
	list-style: none;
}

/* 移动端菜单按钮 */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #ff6b81;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.nav-links li {
	margin-left: 20px;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
}

.nav-links a:hover {
	color: #ff6b81;
}

/* 头部区域 */
.header {
	background-color: #fff0f3;
	text-align: center;
	padding: 40px 20px;
	position: relative;
	overflow: hidden;
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff6b81' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
	opacity: 0.5;
	z-index: 0;
}

.header-content {
	position: relative;
	z-index: 1;
}

.header-logo {
	width: 120px;
	height: 120px;
	margin: 0 auto 20px;
	display: block;
}

.header-title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.header-subtitle {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

.stats {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 20px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 24px;
	font-weight: bold;
	color: #168fe2;
}

.stat-label {
	font-size: 14px;
	color: #666;
}

.header-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.btn {
	padding: 10px 20px;
	border: none;
	border-radius: 20px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-primary {
	background-color: #168fe2;
	color: white;
}

.btn-primary:hover {
	background-color: #ff526b;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: #fff;
	color: #168fe2;
	border: 1px solid #168fe2;
}

.btn-secondary:hover {
	background-color: #fff0f3;
	transform: translateY(-2px);
}

/* 内容区域 */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.section-title {
	font-size: 20px;
	font-weight: bold;
	margin: 30px auto 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #168fe2;
	display: inline-block;
	text-align: center;
	width: 100%;
}

/* 漫画卡片网格 */
.comic-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.comic-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

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

/* 详细信息弹窗 */
.comic-details {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 15px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	border-radius: 0 0 8px 8px;
	z-index: 10;
}

.comic-card:hover .comic-details {
	transform: translateY(0);
}

.comic-description {
	font-size: 12px;
	margin-top: 8px;
	line-height: 1.4;
}

/* 移动端点击显示详情 */
@media (max-width: 768px) {
	.comic-card:hover .comic-details {
		transform: translateY(100%);
	}

	.comic-card.active .comic-details {
		transform: translateY(0);
	}
}

.comic-cover {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.comic-info {
	padding: 10px;
}

.comic-title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.comic-author {
	font-size: 12px;
	color: #666;
	margin-bottom: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.comic-stats {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #999;
}

/* 特色区域 */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

.feature-item {
	text-align: center;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	background-color: #dbe7ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #168fe2;
	font-size: 24px;
}

.feature-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.feature-description {
	font-size: 14px;
	color: #666;
}



/* 互动中心样式 */
.interaction-section {
	display: flex;
	gap: 30px;
	margin: 40px 0;
}

.user-comments,
.comment-form {
	flex: 1;
	background-color: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comments-title,
.form-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
	border-bottom: 2px solid #168fe2;
	padding-bottom: 10px;
}

.comment-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.comment-item {
	display: flex;
	gap: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

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

.comment-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.comment-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.comment-content {
	flex: 1;
}

.comment-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.comment-author {
	font-weight: bold;
	color: #333;
}

.comment-time {
	font-size: 12px;
	color: #999;
}

.comment-text {
	color: #666;
	line-height: 1.6;
	margin-bottom: 10px;
}

.comment-actions {
	display: flex;
	gap: 15px;
}

.like-btn,
.reply-btn {
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.3s ease;
}

.like-btn:hover,
.reply-btn:hover {
	color: #ff6b81;
}

.like-btn.liked {
	color: #ff6b81;
}

/* 评论表单样式 */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #333;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ff6b81;
}

.rating {
	display: flex;
	gap: 10px;
}

.star {
	font-size: 24px;
	color: #ddd;
	cursor: pointer;
	transition: color 0.3s ease;
}

.star:hover,
.star.active {
	color: #ffcc00;
}

.submit-btn {
	background-color: #168fe2;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background-color: #ff526b;
}

/* 下载按钮样式 */
.download-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	writing-mode: vertical-rl;
	text-orientation: upright;
	background-color: #168fe2;
	color: white;
	padding: 20px 15px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(255, 107, 129, 0.4);
	transition: all 0.3s ease;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.download-btn:hover {
	background-color: #ff526b;
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(255, 107, 129, 0.6);
}

/* 页脚样式 */
.footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 20px 0;
	margin-top: 40px;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.navbar {
		padding: 10px;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #fff;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		padding: 10px 0;
		z-index: 99;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links li {
		margin: 0;
		width: 100%;
	}

	.nav-links a {
		display: block;
		padding: 12px 20px;
		width: 100%;
		text-align: center;
	}

	.menu-toggle {
		display: flex;
	}

	.header {
		padding: 30px 10px;
	}

	.header-title {
		font-size: 24px;
	}

	.stats {
		gap: 20px;
	}

	.header-buttons {
		flex-wrap: wrap;
		gap: 10px;
	}

	.btn {
		padding: 8px 15px;
		font-size: 12px;
	}

	.comic-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 15px;
	}

	.comic-cover {
		height: 200px;
	}

	.features {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.download-link {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.interaction-section {
		flex-direction: column;
	}

	.user-comments,
	.comment-form {
		width: 100%;
		margin-bottom: 30px;
	}

	.comment-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.comment-avatar {
		margin-bottom: 10px;
	}
}

/* 下载按钮容器样式 */
.download-app-container {
	text-align: center;
	margin: 40px 0;
}

/* 下载按钮样式 */
.download-app-btn {
	display: inline-block;
	width: 60%;
	max-width: 400px;
	padding: 15px 20px;
	border: 2px solid #168fe2;
	border-radius: 8px;
	font-size: 16px;
	color: #333;
	background-color: #168fe2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}