* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: #fbf9fe;
	max-width: 900px;
	margin: 0 auto;
	font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
	color: #333;
	line-height: 1.6;
	padding-bottom: 60px;
}

a {
	text-decoration: none;
	color: #ff6600;
}

/* 内容区域 */
.article-container {
	margin: 15px;
	padding: 15px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
 
/* 响应式调整 */
@media (max-width: 768px) {
    .article-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .article-content img {
        max-height: 50vh;
		max-width: 100%;
    }
}

/* 文章图片 */
.article-image {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 15px;
	display: block;
	max-height: 50vh;
	object-fit: cover;
}

@media (min-width: 768px) {
	.article-image {
		max-width: 60%;
		margin: 0 auto 20px;
	}
	
    .article-content img {
		max-width: 100%;
    }
}

/* 文章内容 */
.article-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.article-content p {
	margin-bottom: 15px;
}

/* 更多文章按钮 */
.more-articles-btn {
	display: block;
	width: 100%;
	padding: 12px 0;
	background: #ff6600;
	color: white;
	text-align: center;
	border-radius: 8px;
	margin: 20px 0;
	font-size: 16px;
	font-weight: 500;
	transition: background 0.3s;
}

.more-articles-btn:hover {
	background: #0d30e3;
}

/* 页脚 */
.footer {
	text-align: center;
	margin: 15px;
	padding: 5px;
	background: white;
	border-radius: 12px;
	font-size: 12px;
	color: #666;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.footer a {
	color: #666;
	margin: 0 5px;
}

.footer a:hover {
	color: #ff6600;
}

/* 底部导航 */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	max-width: 900px;
	margin: 0 auto;
	z-index: 100;
	padding: 5px 0;
}

.nav-list {
	display: flex;
	justify-content: space-around;
	list-style: none;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #666;
}

.nav-icon {
	width: 24px;
	height: 24px;
	margin-bottom: 4px;
}

.nav-text {
	font-size: 12px;
}

.nav-item.active  {
	color: #f37b1d;
}

/* 微信分享样式 */
.wx-share-tip {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	z-index: 999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

.wx-share-tip img {
	width: 200px;
	height: 200px;
	margin-bottom: 20px;
}