@charset "utf-8";
/* ============================================
   信息详情页  info_v2.css
   2026-09-10  卡片式现代 UI（与首页/列表页 card.css 风格统一）
   配色：站点橙 #FF6C00 ~ #FF9A3C
   作用域：body.info_page（提升特异性，不污染旧 info.css）
   ============================================ */

/* ---------- 页面底色 / 容器 ---------- */
body.info_page {
	background: #f2f3f5;
}

body.info_page .wrapper {
	padding-bottom: 72px;
}

body.info_page .detail {
	padding: 10px 12px 0;
}

/* ---------- 标题卡 ---------- */
body.info_page .tit_area {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #f0f1f3;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 20px rgba(0, 0, 0, .05);
	padding: 14px 14px 12px;
	margin: 0 0 10px;
}

body.info_page .tit_area .tit {
	font-size: 18px;
	line-height: 1.45;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
	padding: 0;
}

/* ---------- meta 状态条 ---------- */
body.info_page .status_bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px 0 0;
	margin: 0;
	border-top: 1px dashed #f0f1f3;
	font-size: 12px;
	color: #9aa0a6;
}

body.info_page .status_bar .date,
body.info_page .status_bar .browse_num {
	color: #9aa0a6;
	font-size: 12px;
}

body.info_page .status_bar .browse_num {
	color: #FF6C00;
	font-weight: 600;
}

/* 收藏 / 复制 / 分享 -> 小胶囊 */
body.info_page .status_bar .favorite,
body.info_page .status_bar .copy,
body.info_page .status_bar .share {
	margin: 0 !important;
	padding: 4px 11px;
	border-radius: 999px;
	border: 1px solid #eceef0;
	background: #fafbfc;
	color: #6b7280;
	font-size: 12px;
	line-height: 1.4;
	cursor: pointer;
	transition: all .18s;
}

/* 收藏/复制/分享 统一成一组，独占第二行 */
body.info_page .status_bar .sb-acts {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	flex: 0 0 100%;
}

body.info_page .status_bar .favorite.favorited {
	background: #FFF4EA;
	border-color: #FFD9B8;
	color: #FF6C00;
	font-weight: 600;
}

body.info_page .status_bar .copy:active,
body.info_page .status_bar .share:active,
body.info_page .status_bar .favorite:active {
	transform: scale(.95);
}

/* ---------- 图片 / 视频区 ---------- */
body.info_page .image_area_w {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #f0f1f3;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 20px rgba(0, 0, 0, .05);
	overflow: hidden;
	margin: 0 0 10px;
}

body.info_page .image_area_w .swiper-container {
	background: #fff;
}

/* ---------- 属性表 ---------- */
body.info_page .attr_info {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #f0f1f3;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 20px rgba(0, 0, 0, .05);
	padding: 2px 14px;
	margin: 0 0 10px !important;
	list-style: none;
}

body.info_page .attr_info > li {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	padding: 11px 0;
	margin: 0;
	border-bottom: 1px solid #f5f6f7;
	font-size: 14px;
	line-height: 1.6;
}

body.info_page .attr_info > li:last-child {
	border-bottom: none;
}

body.info_page .attr_info .attrName,
body.info_page .attr_info .attrName2 {
	color: #8a9099;
	flex: 0 0 auto;
}

body.info_page .attr_info .attrVal {
	color: #222;
	font-weight: 600;
	flex: 1 1 auto;
}

/* ---------- 区块小标题（橙色竖条） ---------- */
body.info_page .detail-tit {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
	background: none;
	border: none;
	padding: 16px 4px 10px;
	margin: 0;
}

body.info_page .detail-tit::before {
	content: '';
	display: block;
	width: 4px;
	height: 15px;
	border-radius: 2px;
	background: linear-gradient(180deg, #FF9A3C, #FF6C00);
	margin-right: 8px;
	flex: 0 0 auto;
}

/* ---------- 正文卡 ---------- */
body.info_page .detail_txt_che {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #f0f1f3;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 20px rgba(0, 0, 0, .05);
	padding: 14px;
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.85;
	color: #333;
	word-break: break-word;
}

body.info_page .detail_txt_che img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
	margin: 10px auto;
}

/* 公众号二维码：收窄居中 */
body.info_page .detail_txt_che img.qr-mp {
	width: 148px;
	margin: 4px auto 0;
}

/* 忠告条 */
body.info_page .detail-warn {
	background: #FFF8F1;
	border: 1px solid #FFE3C7;
	border-radius: 12px;
	padding: 10px 12px;
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.6;
	color: #B26A00;
}

body.info_page .detail-warn font {
	color: #E5533D !important;
	font-weight: 600;
}

/* ---------- 联系方式按钮区 ---------- */
body.info_page .attr_info.bottom {
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0 0 10px !important;
}

body.info_page .attr_info.bottom .mfico {
	display: block;
}

body.info_page .attr_info.bottom > span > li,
body.info_page .attr_info.bottom > li {
	display: block;
	border: none;
	padding: 0;
	margin: 0;
}

body.info_page .attr_info.bottom a.btn,
body.info_page .attr_info.bottom a.fangico,
body.info_page .attr_info.bottom a.btn-tips {
	display: block;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, #FF9A3C, #FF6C00);
	border-radius: 12px;
	padding: 14px 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(255, 108, 0, .28);
	transition: transform .18s;
}

body.info_page .attr_info.bottom a.btn:active,
body.info_page .attr_info.bottom a.fangico:active,
body.info_page .attr_info.bottom a.btn-tips:active {
	transform: scale(.98);
}

/* 第二个联系方式：白底橙字 */
body.info_page .attr_info.bottom a.btn2 {
	display: block;
	text-align: center;
	color: #FF6C00;
	background: #FFF4EA;
	border: 1px solid #FFD9B8;
	border-radius: 12px;
	padding: 12px 0;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	margin-top: 8px;
}

/* 咨询提示语 */
body.info_page .attr_info.bottom li.say-tip .attrName {
	color: #9aa0a6;
	font-size: 12px;
}

/* ---------- 微信群卡 ---------- */
body.info_page .wechat_group {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #f0f1f3;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 20px rgba(0, 0, 0, .05);
	padding: 12px 14px;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	overflow: hidden;
}

body.info_page .wechat_group .wechat_group_detail {
	flex: 1 1 auto;
	min-width: 0;
}

body.info_page .wechat_group .wechat_group_detail_title {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

body.info_page .wechat_group .wechat_group_detail_slogan {
	font-size: 12px;
	color: #9aa0a6;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

body.info_page .wechat_group .wechat_group_btn {
	flex: 0 0 auto;
	color: #fff;
	background: linear-gradient(135deg, #FF9A3C, #FF6C00);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(255, 108, 0, .26);
}

/* ---------- 相关信息卡 ---------- */
body.info_page .follow {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #f0f1f3;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 20px rgba(0, 0, 0, .05);
	padding: 2px 14px;
	margin: 0 0 10px;
}

body.info_page .follow ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.info_page .follow li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 0;
	margin: 0;
	border-bottom: 1px solid #f5f6f7;
	font-size: 14px;
	line-height: 1.5;
	list-style: none;
	background: none;
}

body.info_page .follow li:last-child {
	border-bottom: none;
}

body.info_page .follow li a {
	flex: 1 1 auto;
	min-width: 0;
	color: #333;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

body.info_page .follow li.list_tj a {
	color: #FF6C00 !important;
}

body.info_page .follow li span {
	flex: 0 0 auto;
	color: #b0b5bb;
	font-size: 12px;
}

body.info_page .follow li.list_tj img {
	width: 16px;
	height: 16px;
	margin-right: 6px;
	vertical-align: middle;
}

/* 查看更多 */
body.info_page .follow .more {
	padding: 4px 0 12px;
	margin: 0 !important;
}

body.info_page .follow .more a {
	display: block;
	text-align: center;
	color: #FF6C00;
	background: #FFF4EA;
	border-radius: 10px;
	padding: 11px 0;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

body.info_page .follow .more a:active {
	background: #FFEAD7;
}

/* ---------- 404（信息过期）区 ---------- */
body.info_page .page-404 {
	padding: 24px 0 8px;
	text-align: center;
}

/* ---------- 信息过期分支：推荐信息列表（复用卡片观感） ---------- */
body.info_page ul.list-info {
	margin: 8px 0 0 !important;
	padding: 0;
	list-style: none;
}

body.info_page ul.list-info > li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: #fff;
	border-radius: 16px;
	border: 1px solid #f0f1f3;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 20px rgba(0, 0, 0, .05);
	padding: 12px;
	margin: 0 0 10px;
	list-style: none;
	overflow: hidden;
}

body.info_page ul.list-info .thumbnail {
	width: 96px;
	height: 96px;
	border-radius: 12px;
	object-fit: cover;
	flex: 0 0 auto;
	display: block;
}

body.info_page ul.list-info dl {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
}

body.info_page ul.list-info dt.tit {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
	color: #1a1a1a;
	margin: 0 0 8px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

body.info_page ul.list-info dd.attr {
	font-size: 12px;
	color: #9aa0a6;
	margin: 4px 0 0;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

body.info_page ul.list-info dd.attr .lvzi {
	color: #9aa0a6;
}
