/* fxz_top 置顶徽章 */
.fxz-top-badge {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-right: 4px;
	vertical-align: middle;
	line-height: 1;
	font-style: normal;
}
.fxz-top-badge i {
	font-size: 14px;
	line-height: 1;
	vertical-align: middle;
}

/* 圆形上箭头（截图同款） */
i.fxz-top-ico-arrow {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	min-width: 15px;
	border-radius: 50%;
	background-color: currentColor;
	font-style: normal !important;
	font-weight: normal !important;
	line-height: 1 !important;
	vertical-align: -2px;
	position: relative;
	box-sizing: border-box;
}
i.fxz-top-ico-arrow:before {
	content: "\f062";
	font-family: FontAwesome !important;
	font-size: 9px;
	font-weight: normal;
	line-height: 1;
	color: #fff !important;
	speak: none;
	-webkit-font-smoothing: antialiased;
}
.fxz-top-badge__text {
	font-size: 11px;
	font-style: normal;
	font-weight: 600;
	margin-left: 1px;
	letter-spacing: 0;
	vertical-align: middle;
}
.fxz-top-badge--site .fxz-top-badge__text {
	opacity: 0.95;
}

/* 单独置顶区域标题图标 */
.fxz-top-separate-title i {
	margin-right: 4px;
}

/* 管理页图标选择：每行 8 列，铺满整行 */
.fxz-top-icon-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
}
.fxz-top-icon-opt {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	min-height: 64px;
	padding: 8px 4px;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	cursor: pointer;
	background: #fff;
	margin: 0;
	font-size: 12px;
	color: #495057;
	user-select: none;
	box-sizing: border-box;
}
.fxz-top-icon-opt span {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}
.fxz-top-icon-opt i {
	font-size: 20px;
	margin-bottom: 4px;
	min-height: 22px;
}
.fxz-top-icon-opt i.fxz-top-ico-arrow {
	width: 22px;
	height: 22px;
	min-width: 22px;
	font-size: 22px;
	margin-bottom: 6px;
	vertical-align: middle;
}
.fxz-top-icon-opt i.fxz-top-ico-arrow:before {
	font-size: 12px;
}
/* 管理页未选中时圆箭头也给默认品红底，便于辨认 */
.fxz-top-icon-opt i.fxz-top-ico-arrow {
	color: #c2185b;
}
.fxz-top-icon-opt input {
	display: none;
}
.fxz-top-icon-opt.is-active,
.fxz-top-icon-opt:has(input:checked) {
	border-color: #3c97ff;
	background: #f0f7ff;
	color: #1f4977;
	box-shadow: 0 0 0 1px #3c97ff;
}
