@charset "utf-8";
/* ============================================
   信息卡片列表  card.css
   2026-09-10  首页 / 列表页共用卡片式信息流
   配色统一站点橙 #FF6C00 ~ #FF9A3C
   ============================================ */

/* 首页信息流区域改用浅灰底，突出白色卡片层次 */
.newsct.home-feed {
	background-color: #f2f3f5;
	border-bottom: none;
	padding: 10px 0 0 0;
}

/* 卡片列表容器 */
.card-wrap {
	padding: 0 12px;
}

.card-list {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* ---------- 单张卡片 ---------- */
.icard {
	position: relative;
	list-style: none;
	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);
	margin-bottom: 12px;
	overflow: hidden;
}

.icard:last-child {
	margin-bottom: 0;
}

.icard > a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	padding: 12px;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	text-decoration: none;
}

/* ---------- 缩略图 ---------- */
.icard-thumb {
	position: relative;
	width: 96px;
	height: 96px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 96px;
	flex: 0 0 96px;
	margin-right: 11px;
	-webkit-border-radius: 11px;
	border-radius: 11px;
	background-color: #f4f5f7;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

/* 无图占位：沿用站内 300×300 品牌占位图 noimg.gif */
.icard-thumb.noimg {
	background-image: url(../images/noimg.gif);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

/* 视频占位（有视频但无封面图时） */
.icard-thumb.vidph {
	background-color: #f4f5f7;
	background-image: url(../../../images/shipinzhaopin.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

/* 角标：图片数 */
.icard-thumb .num {
	position: absolute;
	right: 5px;
	bottom: 5px;
	height: 16px;
	line-height: 16px;
	padding: 0 5px;
	border-radius: 8px;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 10px;
	z-index: 2;
}

/* 角标：视频 */
.icard-thumb .vid {
	position: absolute;
	left: 0;
	top: 0;
	height: 18px;
	line-height: 18px;
	padding: 0 7px;
	border-radius: 0 0 10px 0;
	background: -webkit-linear-gradient(135deg, #FF9A3C 0%, #FF6C00 100%);
	background: linear-gradient(135deg, #FF9A3C 0%, #FF6C00 100%);
	color: #fff;
	font-size: 10px;
	z-index: 2;
}

/* ---------- 文本区 ---------- */
.icard-body {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	min-width: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.icard-tit {
	margin: 0;
	font-size: 15px;
	line-height: 21px;
	color: #1a1a1a;
	font-weight: 600;
	max-height: 42px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
}

/* 标题内小标签 */
.icard-tit .tag {
	display: inline-block;
	vertical-align: 1px;
	height: 16px;
	line-height: 16px;
	padding: 0 4px;
	margin-right: 4px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 400;
	background: #FFF0E4;
	color: #FF6C00;
}

.icard-desc {
	margin: 5px 0 0 0;
	font-size: 12px;
	line-height: 17px;
	color: #9aa0a6;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* ---------- 底部信息行 ---------- */
.icard-meta {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin-top: 8px;
	font-size: 11px;
	color: #b0b3b8;
	line-height: 17px;
	overflow: hidden;
}

.icard-meta .mt {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.icard-meta .mh {
	margin-left: 8px;
	flex-shrink: 0;
}

.icard-meta .price {
	color: #FF6C00;
	font-weight: 700;
	font-size: 13px;
	margin-right: 8px;
	flex-shrink: 0;
}

/* ---------- 无图卡片：整宽文字卡 ---------- */
.icard-text > a {
	padding: 13px 14px;
}

.icard-text .icard-desc {
	white-space: normal;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	max-height: 34px;
}

/* ---------- 置顶 / 推荐卡片 ---------- */
.icard-top {
	border-color: #FFE2CE;
	background: -webkit-linear-gradient(top, #FFFBF8 0%, #FFFFFF 45%);
	background: linear-gradient(180deg, #FFFBF8 0%, #FFFFFF 45%);
}

.icard-badge {
	position: absolute;
	right: 0;
	top: 0;
	height: 20px;
	line-height: 20px;
	padding: 0 10px;
	border-radius: 0 16px 0 12px;
	background: -webkit-linear-gradient(135deg, #FF9A3C 0%, #FF6C00 100%);
	background: linear-gradient(135deg, #FF9A3C 0%, #FF6C00 100%);
	color: #fff;
	font-size: 10px;
	letter-spacing: .5px;
	z-index: 3;
}

/* ---------- 区块小标题 ---------- */
.card-sec {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding: 2px 2px 10px 2px;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
}

.card-sec i {
	display: inline-block;
	width: 3px;
	height: 13px;
	border-radius: 2px;
	margin-right: 7px;
	background: -webkit-linear-gradient(top, #FF9A3C 0%, #FF6C00 100%);
	background: linear-gradient(180deg, #FF9A3C 0%, #FF6C00 100%);
}

.card-sec em {
	font-style: normal;
	font-size: 11px;
	color: #b0b3b8;
	font-weight: 400;
	margin-left: 8px;
}

/* ---------- 底部「更多」按钮 ---------- */
.card-more {
	padding: 16px 0 4px 0;
}

.card-more a {
	display: block;
	height: 42px;
	line-height: 40px;
	text-align: center;
	-webkit-border-radius: 21px;
	border-radius: 21px;
	font-size: 14px;
	color: #FF6C00;
	background: #fff;
	border: 1px solid #FFE2CE;
}

/* ---------- 空状态 ---------- */
.card-empty {
	background: #fff;
	border-radius: 16px;
	padding: 46px 0;
	text-align: center;
	color: #b0b3b8;
	font-size: 13px;
}

/* ---------- 列表页：筛选栏与卡片之间留白 ---------- */
.list-feed {
	background-color: #f2f3f5;
	padding-top: 10px;
}

/* ---------- 底部固定导航留白（避免最后一张卡片被遮挡） ---------- */
body .wrapper {
	padding-bottom: 66px;
}

/* ---------- 列表页：现代分页 ---------- */
.pager {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 10px 2px;
	padding: 0;
	background: transparent;
	border-top: 0 none;
	color: #6b7078;
	font-size: 14px;
	text-align: center;
}

.pager a {
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	line-height: 1;
	padding: 0 10px;
	margin: 0;
	border: 1px solid #e9ebef;
	border-radius: 12px;
	background: #ffffff;
	color: #4b5057;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	text-indent: 0;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
	-webkit-transition: background-color .18s ease, color .18s ease, -webkit-transform .18s ease;
	transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.pager a:active {
	background: #f5f6f8;
	-webkit-transform: scale(.95);
	transform: scale(.95);
}

/* 页码：正方形圆角 */
.pager a.pageno {
	min-width: 36px;
	width: auto;
	padding: 0 6px;
}

/* 当前页：橙色渐变填充（提高特异性覆盖主题色描边规则） */
.pager a.pageno.pagecur,
.orange .pager a.pagecur,
.blue .pager a.pagecur,
.green .pager a.pagecur,
.red .pager a.pagecur {
	border: 0 none;
	background: #FF6C00;
	background-image: -webkit-linear-gradient(135deg, #FF9A3C 0%, #FF6C00 100%);
	background-image: linear-gradient(135deg, #FF9A3C 0%, #FF6C00 100%);
	color: #ffffff;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(255, 108, 0, .32);
}

/* 上一页 / 下一页：胶囊按钮（选择器带 a 以压过老模板的 text-indent 规则） */
.pager a.pageprev,
.pager a.pagenext {
	position: relative;
	width: auto;
	min-width: 0;
	padding: 0 13px;
	border-radius: 18px;
	text-align: center;
	text-indent: 0;
}

/* 箭头改为随文字排列（不再绝对定位） */
.pager .pageprev::before,
.pager .pagenext::after {
	position: static;
	left: auto;
	right: auto;
	top: auto;
	margin: 0;
	border-width: 4px;
}

.pager .pageprev::before {
	margin-right: 6px;
	border-right-color: #9aa0a8;
}

.pager .pagenext::after {
	margin-left: 6px;
	border-left-color: #9aa0a8;
}

/* 禁用态：不可点 */
.pager a.pagedisable,
.pager a.pagedisable:active {
	background: #f7f8fa;
	border-color: #eef0f3;
	color: #c3c7ce;
	box-shadow: none;
	-webkit-transform: none;
	transform: none;
}

.pager a.pagedisable::before {
	border-right-color: #d3d7dd;
}

.pager a.pagedisable::after {
	border-left-color: #d3d7dd;
}
