﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
		"Microsoft YaHei", sans-serif;
	background-color: #f7f8fa;
	color: #333;
	line-height: 1.7;
	padding: 15px;
}

.article-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	max-width: 700px;
	margin: 0 auto;
	margin-bottom: 30px;
}

/* 标题居中 */
.article-title {
	font-size: 22px;
	font-weight: bold;
	color: #222;
	margin-bottom: 12px;
	line-height: 1.4;
	text-align: center;
}

/* 作者 + 日期 + 阅读量 整行居中 */
.article-meta {
	font-size: 14px;
	color: #999;
	margin-bottom: 20px;
	line-height: 1; display : flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	display: flex;
}

.article-content {
	font-size: 16px;
	color: #444;
}

.article-content p {
	margin-bottom: 18px;
}

.article-content img {
	width: 100%;
	display: block;
}

/* 按钮容器 */
.btn-container {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}
.btn-container p {
	font-size: 15px;
}

/* 通用按钮样式 */
.article_btn {
	border: none;
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s;
}

/* 点赞按钮 */
.like-btn {
	background: #f2f3f5;
	color: #666;
	font-size: 24px;
}

.like-btn.active {
	background: #ffebeb;
	color: #ff4d4f;
}

/* 分享+抽奖 行 */
.row {
	display: flex;
	gap: 12px;
	justify-content: center;
}

/* 分享按钮 */
.share-btn {
	background: #e6f7ff;
	color: #1890ff;
}

.qrcode-btn {
	background: #f0f9ff;
	color: #0ea5e9;
}

/* 抽奖按钮 */
.lucky-btn {
	background: #fff7e6;
	color: #fa8c16;
	font-size: 24px;
}

/* 数字 */
.count {
	font-size: 15px;
	color: #666;
	margin-left: 4px;
}

.soft-line {
	width: 100%;
	height: 1px;
	background-color: #eee;
	margin: 40px 0;
}

.tip-box {
	text-align: center;
	background: #fff;
	border-radius: 12px;
	padding: 40px 20px;
	width: 100%;
	max-width: 500px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.icon {
	font-size: 60px;
	color: #ccc;
	margin-bottom: 20px;
}

.title {
	font-size: 20px;
	color: #333;
	margin-bottom: 10px;
}

.desc {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 35px;
	color: #888;
}

.more-btn {
	display: inline-block;
	padding: 10px 28px;
	background-color: #1890ff;
	color: #fff;
	text-decoration: none;
	border-radius: 25px;
	font-size: 15px;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.more-btn:hover {
	background-color: #097dd6;
}

.guide-box {
	margin: 20px 0;
	padding: 16px;
	background: #fff7f0;
	border-radius: 8px;
	border-left: 4px solid #ff7d00;
}
.guide-title {
	font-size: 16px;
	font-weight: 750;
	color: #ff4c00;
	margin-bottom: 10px;
}
.guide-desc {
	font-size: 13px;
	color: #664c3c;
	line-height: 1.5;
	margin-bottom: 14px;
}
/* 点赞好友头像区域 */
.avatar-wrap {
	margin-top: 32px;
	padding-top: 16px;
	border-top: 1px solid #eee;
}

.avatar-title {
	font-size: 14px;
	color: #777;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.avatar-box {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.avatar-div {
	border-radius: 4px;
	border: 1px solid #0080c0;
}
.avatar-item {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	object-fit: cover;
	border: 1px solid #eee;
}
