@charset "utf-8";

:root {
	--primary-color: #00CB64;
	--secondary-color: #fff;
	--light-color: #121212;
	--dark-color: #1F2937;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	--radius: 6px;
	--spacing: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', 'Microsoft Yahei', sans-serif;
}

body {
	background-color: #121212;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

ul,
ol {
	list-style: none;
}

.img {
	height: auto;
	display: block;
	object-fit: cover;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--spacing);
}

.pop-top {
	background: #262626;
	box-shadow: var(--shadow);
	padding: 12px 0;
	width: 100%;
}

.tag-row-zone {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.col-box-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.img-tab-flex {
	font-size: 26px;
	font-weight: 700;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
	gap: 8px;
}

.pill-box-body {
	display: none;
	font-size: 20px;
	color: var(--secondary-color);
	cursor: pointer;
}

.pill-box-body i {
	font-size: 22px;
}

.col-list-tip {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.end-row-drop {
	display: flex;
	gap: 25px;
	align-items: center;width:50%;
}

.end-row-drop li {
	list-style: none;width:8%;white-space: nowrap;margin-right:20px;
}

.end-row-drop li a {
	font-size: 15px;
	color: var(--secondary-color);
	font-weight: 500;
}

.end-row-drop li a:hover,
.end-row-drop li a.active {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.btn-unit-wrap {
	position: relative;
	width: 320px;
}

.btn-unit-wrap>.text-box {
	position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
	cursor: pointer;
}

.bar-grid-link {
	width: 100%;
	padding: 10px 40px 10px 15px;
	border: 1px solid #E5E7EB;
	border-radius: 25px;
	outline: none;
	font-size: 14px;
	transition: border-color 0.3s ease;
	background-color: #2A2A2A;
	color: #fff;
}

.bar-grid-link:focus {
	border-color: var(--primary-color);
}

.search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--secondary-color);
}

.row-panel-page {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	width: 100%;
	background: #262626;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 15px;
	display: none;
	z-index: 1000;
}

.pop-group {
	font-size: 14px;
	color: var(--secondary-color);
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.mast-link-chunk {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.left-body-chip {
	padding: 6px 12px;
	background: #373737;
	border-radius: 16px;
	font-size: 13px;
	color: var(--secondary-color);
}

.left-body-chip:hover {
	background: var(--primary-color);
	color: #fff;
}

.head-pop {
	padding: 40px 0;
	background: var(--light-color);
}

.show-nav-thumb {
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.thumb-nav-inner {
	font-size: 26px;
	color: var(--secondary-color);
	margin-bottom: 12px;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 16px;
	color: var(--secondary-color);
	max-width: 600px;
	margin: 0 auto;
}

.block-img-mast {
	display: inline-block;
	width: 100%;
	padding-bottom: 25px;
}

.input-menu {
	float: left;
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-menu:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tab-item-bottom {
	aspect-ratio: 16 / 9;
	width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
}

.tag-thumb-wrap {
	padding: 10px 8px;
}

.stack-tip-block {
	font-size: 16px;
	color: var(--primary-color);
	margin-bottom: 8px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.side-badge {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: var(--dark-color);
}

.group-tab {
	display: flex;
	align-items: center;
	gap: 4px;
}

.pagination-area {
	margin-top: 30px;
	text-align: center;
}

.pagination {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
}

.page-btn {
    padding: 6px 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius);
	background: #fff;
	color: var(--dark-color);
	cursor: pointer;
	transition: all 0.3s ease;
}

.page-btn:hover {
	background: #565656;
	color: #fff;
}

.thumb-card-chip {
	background: #262626;
	color: #fff;
	padding: 30px 0 20px;
}

.box-tag-panel {
	gap: 30px;
	margin-bottom: 40px;
}

.bg-group h3 {
	font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.bg-group h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--primary-color);
}

.img-badge-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.body-list {
	color: #D1D5DB;
	font-size: 14px;
	padding: 6px 0;
}

.body-list:hover {
	color: var(--primary-color);
}

.grid-list {
	padding-top: 20px;
	border-top: 1px solid #374151;
	text-align: center;
	font-size: 14px;
	color: #9CA3AF;
}

.flex-grid-pill {
    padding: 15px;
    font-size: 14px;
    color: #fff;
    box-shadow: 0px 2px 6px #000000;
    border-radius: 0 0 6px 6px;
    margin-bottom: 20px;
}

.flex-grid-pill h2 {
	padding-bottom: 18px;
	font-size: 22px;
}

.tag-item-border {
    display: flex;
    font-size: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap	
}

.tag-item-border li {
	margin-right: 12px;
	list-style: none;
}

.tag-item-border li a {
	color: #fff;
}

.tag-item-border li i {
	color: #7a7a7a;
	margin-right: 6px
}

.tag-item-border li em {
	font-style: normal;
}

.ribbon-bar a {
	margin-right: 12px;
	background: #1E1E1E;
	border: 1px solid #1E1E1E;
	color: #fff;
	padding: 4px 8px;
	display: inline-block;
    border-radius: 6px;
    margin-bottom: 9px;
}

.ribbon-bar a:hover{
	border-color: #00CB64;
}

.juqing {
	margin-bottom: 16px;
}

.list-text-top {
	margin-bottom: 25px;
}

.list-bottom-panel {
    background: #323232;
    color: #fff;
    padding: 6px 8px;
    margin-bottom: 10px;	
	word-wrap: break-word;
	word-break: normal;
	width: 100%;
}

.bar-block-ribbon {
	padding: 9px 8px;
    background: #00CB64;
    color: #001a0d;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
}

.bar-block-ribbon:hover {
	background: #148f50;
}

.item-start h3 {
	margin-bottom: 20px;
}

.item-start ul {
	display: flex;
	flex-wrap: wrap;
}

.item-start li {
    background: #323232;
    color: #fff;
    margin-right: 16px;
    border-radius: 8px;
    padding: 6px 17px;
    cursor: pointer;
	margin-bottom: 12px;
}

.item-start li:hover {
	background: #00CB64;
}

.shortcuts {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999999;
	width: 100%;
	height: 100%;
}

.shortcuts-info {
	position: absolute;
	width: 280px;
	height: auto;
	padding: 25px;
	top: 50%;
	left: 50%;
	margin: -50px 0 0 -140px;
	text-align: center;
	color: #fff;
	background-color: rgba(7, 7, 10, .7);
	border-radius: 10px;
}

@media (min-width: 993px) {
	.input-menu {
		width: calc(25% - 15px);
		margin: 0 20px 20px 0;
	}
	
	.input-menu:nth-of-type(4n) {
		margin-right: 0;
	}
	
	.end-row-drop li a {
		font-size: 17px;
	}
	
	.body-list {
		font-size: 16px;
	}
	
	.end-row-drop li a:hover, .end-row-drop li a.active {
		font-size: 20px;
	}
}


@media (max-width: 992px) {
	.col-list-tip {
		flex-direction: column;
		gap: 15px;
	}

	.end-row-drop {
		width: 100%;
		justify-content: center;
		gap: 20px;
	}

	.btn-unit-wrap {
		width: 100%;
		max-width: 400px;
	}
	
	.img-tab-flex {
		font-size: 24px;
	}

	.thumb-nav-inner {
		font-size: 24px;
	}
	
	.input-menu {
		width: calc(33.3% - 15px);
		margin: 0 20px 20px 0;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	.input-menu:nth-of-type(3n) {
		margin-right: 0;
	}
	.end-row-drop li a {
		font-size: 16px;
	}
	
	.left-body-chip {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.pill-box-body {
		display: block;
	}

	.col-list-tip {
		display: none;
		flex-direction: column;
		gap: 15px;
		padding-top: 15px;
	}

	.col-list-tip.active {
		display: flex;
	}

	.end-row-drop {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.thumb-nav-inner {
		font-size: 22px;
	}
	
	.input-menu{
		width: calc(50% - 5px);
		margin: 0 10px 20px 0;
	}
	
	.input-menu:nth-of-type(2n) {
		margin-right: 0;
	}

	.box-tag-panel {
		gap: 20px;
	}
}

@media (max-width: 576px) {
	.img-tab-flex {
		font-size: 22px;
	}

	.thumb-nav-inner {
		font-size: 20px;
	}

	.tab-item-bottom {
		/* height: 180px; */
	}

	.bg-group h3 {
		font-size: 16px;
	}
	
	.input-menu {
		width: calc(50% - 5px);
		margin: 0 10px 20px 0;
	}
	
	.input-menu:nth-of-type(2n) {
		margin-right: 0;
	}
}


/* 广告 */
/* 确保内容不被悬浮广告遮挡 */
.top-ad-active {
	padding-top: 65px;
}

.top-floating-icons {
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-around;
	padding: 0 10px;
	padding-top: 5px;
	border-radius: 10px;
	z-index: 999999;
}

.top-icon {
	flex: 1;
	margin: 0 5px;
	display: flex;
	justify-content: center;
}

.top-icon img {
	width: 65px;
	height: 65px;
	border-radius: 10px;
	border: solid 2px red;
}

.bottom-floating-icons {
	position: fixed;
	bottom: 5px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-around;
	padding: 0 10px;
	z-index: 999999;
	border-radius: 10px;
}

.bottom-icon {
	flex: 1;
	max-width: 65px;
	text-align: center;
}

.bottom-icon img {
	width: 65px;
	height: 65px;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

#topad {
	max-width: 1110px;
	text-align: center;
	margin-left: auto;
	margin-right: auto
}

#topad img {
	height: 100px;
	width: 100%;
	margin-bottom: 1px
}

#topad img:hover {
	transition-duration: 0.3s;
	transition-property: box-shadow;
	box-shadow: 0 0 10px #0370e5;
	cursor: pointer;
	filter: alpha(Opacity=80);
	-moz-opacity: 0.9;
	opacity: 0.9
}

@media screen and (max-width:768px) {
	#topad {}

	#topad img {
		width: 100%;
		height: 75px
	}
}

#tags {
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 10px
}

#tags a {
	display: inline-block;
	border-radius: 2px;
	padding: 0.8rem;
	line-height: 0.5rem;
	margin-bottom: 5px;
	padding-left: 0.4rem;
	padding-right: 0.4rem;
	font-weight: 500;
	font-size: 14px;
	margin-right: 0.2rem;
	border: 1px solid;
	color: #999
}

#tags a:hover {
	color: #ddd;
	background-color: #00b9ec
}

@media(max-width:450px) {
	#tags {
		margin: 15px
	}

	#tags h5 {
		font-weight: 800;
		font-size: 15px
	}

	#tags a {
		display: inline-block;
		border-radius: 2px;
		padding: 0.8rem;
		line-height: 0.1rem;
		padding-left: 0.4rem;
		padding-right: 0.4rem;
		font-weight: 500;
		margin-bottom: 0.3rem;
		font-size: 14px;
		margin-right: 0.5rem;
		border: 1px solid;
		border-radius: 4px;
		color: #999
	}

	#tags a:hover {
		color: #ddd;
		background-color: #00b9ec
	}
}

#text-ad-container {
	max-width: 1185px;
	text-align: center;
	margin: auto;
}

.text-ad {
	width: 47%;
	display: inline-block;
	background-color: #F2B727;
	line-height: 35px;
	height: 35px;
	border-radius: 3px;
	font-size: 14px;
	margin: .25rem !important
}

.text-ad:hover {
	background-color: #FFB90F
}

@media (max-width:600px) {
	#text-ad-container {
		text-align: center;
		margin: auto;
	}

	.text-ad {
		width: 47%;
		display: inline-block;
		background-color: #bdbdbd;
		line-height: 35px;
		height: 35px;
		border-radius: 3px;
		font-size: 14px;
		margin: .25rem !important
	}
}

#app-ad-ico {
	margin: 0 auto
}

.bba-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(66px, 1fr));
	gap: 4px;
	max-width: 1135px;
	margin: 2px auto;
	padding: 5px;
	background-color: #282f28;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)
}

@media screen and (max-width: 750px) {
	.bba-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(67px, 67px));
		gap: 6px;
		max-width: 85%;
		margin: 2px 0;
		padding: 5px;
		background-color: #282f28;
		border-radius: 8px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0)
	}
}

.bba-item {
	margin: 2px;
	text-align: center;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease
}

.bba-item img {
	width: 80%;
	object-fit: contain;
	border-radius: 10px;
	max-width: 80px
}

.bba-item div {
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: bold;
	color: #212121;
	background-image: -webkit-linear-gradient(92deg, #ffffff, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: hue 10s infinite linear
}

.bba-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2)
}

@media (max-width: 768px) {
	.bba-item img {
		width: 100%
	}
}

.top-floating-icons {
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-around;
	padding: 0 10px;
	padding-top: 5px;
	border-radius: 10px;
	z-index: 999999;
}

.top-icon {
	flex: 1;
	margin: 0 5px;
	display: flex;
	justify-content: center;
}

.top-icon img {
	width: 65px;
	height: 65px;
	border-radius: 10px;
	border: solid 2px red;
}

.bottom-floating-icons {
	position: fixed;
	bottom: 5px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-around;
	padding: 0 10px;
	z-index: 999999;
	border-radius: 10px;
}

.bottom-icon {
	flex: 1;
	max-width: 65px;
	text-align: center;
}

.bottom-icon img {
	width: 65px;
	height: 65px;
	display: block;
	margin: 0 auto;
	border-radius: 10px;
}

/* 广告end */
/* 播放器 */
#player {
	/* height: 14rem; */
	width: 100%;
	padding-bottom: 60%;
	position: relative;
}

#player::after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

#player iframe {
	position: absolute;
	top: 0;
	left: 0;
}

#changeButton {
	display: none;
	position: fixed;
	bottom: 5%;
	left: 57%;
	transform: translateX(-50%);
	padding: 0;
	/* 设置为0 */
	font-size: 12px;
	/* 调整字体大小 */
	height: 25px;
	/* 设置高度 */
	width: 60px;
	/* 设置宽度 */
	line-height: 1;
	/* 调整行高 */
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	z-index: 1002;
}

#changeButton1 {
	display: none;
	position: fixed;
	bottom: 5%;
	left: 41%;
	transform: translateX(-50%);
	padding: 0;
	font-size: 12px;
	height: 25px;
	width: 60px;
	line-height: 1;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	z-index: 1002;
}

#changeButton:hover {
	background-color: #0056b3;
}

#changeButton1:hover {
	background-color: #0056b3;
}

.fullscreen-iframe {
	border: none;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.fullscreen-iframe {
		display: none;
	}

	#changeButton {
		display: none;
	}

	#changeButton1 {
		display: none;
	}
}


/* Pagination Component Styles */
.tag-footer-header {
    margin: 20px 0;
    text-align: center;
}

.page-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
}

/* Pagination item base style */
.page-list .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    color: #8c8c8c;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}

/* Link style reset */
.page-list a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
}

/* Icon styles */
.page-list i {
    font-style: normal;
    font-size: 14px;
    font-weight: normal;
}

/* Previous icon (left arrow) */
.grid-main-col::before {
    content: "‹";
    font-size: 18px;
    font-weight: bold;
}

/* Next icon (right arrow) */
.cell-menu-left::before {
    content: "›";
    font-size: 18px;
    font-weight: bold;
}
.cell-menu-left {
    margin-left: 5px;
}
.grid-main-col {
    margin-right: 5px;
}

/* Hover effect */
.page-list .page-item:hover {
    border-color: #ff8c00;
    color: #ff8c00;
    background-color: #fff7e8;
}

.page-list a:hover .page-item {
    border-color: #ff8c00;
    color: #ff8c00;
    background-color: #fff7e8;
}

/* Active (highlighted) state */
.page-list li.active .page-item {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #ffffff;
}

.page-list li.active .page-item:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    color: #ffffff;
}

/* Ellipsis without link - not clickable */
.page-list li:not(:has(a)) .page-item {
    cursor: default;
}

.page-list li:not(:has(a)) .page-item:hover {
    background-color: #ffffff;
    border-color: #d9d9d9;
    color: #8c8c8c;
}

/* ========== 移动端样式：只显示 上一页、当前激活页码、下一页 ========== */
@media (max-width: 768px) {
    /* 隐藏所有列表项 */
    .page-list li {
        display: none;
    }
    
    /* 始终显示：上一页、当前激活页、下一页 */
    .page-list li:first-child,   /* 上一页容器 */
    .page-list li:last-child,    /* 下一页容器 */
    .page-list li.active {       /* 当前激活页码 */
        display: block;
    }
    
    /* 确保没有其他li显示 */
    .page-list li:first-child ~ li:not(.active):not(:last-child) {
        display: none;
    }
    
    /* 移动端尺寸微调 */
    .page-list .page-item {
        min-width: 42px;
        height: 42px;
        padding: 0 12px;
        font-size: 15px;
    }
    
    .grid-main-col::before,
    .cell-menu-left::before {
        font-size: 22px;
    }
    
    /* 为激活页码增加一个下拉箭头视觉提示（表示可点击展开） */
    .page-list li.active .page-item {
        position: relative;
        cursor: pointer;
    }
    
    .page-list li.active .page-item::after {
        content: "⌵";
        font-size: 16px;
        margin-left: 6px;
        opacity: 0.9;
        display: inline-block;
        transform: translateY(-1px);
        font-weight: normal;
    }
    
    /* 激活页码悬浮效果保持橙色风格 */
    .page-list li.active .page-item:hover {
        background-color: #ff8c00;
        border-color: #ff8c00;
        color: #ffffff;
    }
}

/* PC端：显示所有页码，并且移除激活页码的下拉箭头 */
@media (min-width: 769px) {
    .page-list li {
        display: block;
    }
    
    .page-list li .page-item.input-panel-footer {
        border: none;
        background: transparent;
        cursor: default;
    }
    
    .page-list li .page-item.input-panel-footer:hover {
        background-color: transparent;
        border-color: transparent;
        color: #8c8c8c;
    }
    
    /* PC端隐藏下拉箭头 */
    .page-list li.active .page-item::after {
        display: none;
    }
}

/* ========== 移动端竖向菜单样式（完美居中，只显示数字页码，最多10个） ========== */
/* 弹窗遮罩层 - 完全居中 */
.hero-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 10000;
    display: flex;
    align-items: center;      /* 垂直居中 */
    justify-content: center;  /* 水平居中 */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.hero-menu.show {
    visibility: visible;
    opacity: 1;
}

/* 弹窗内容容器 */
.chip-icon-tag {
    width: 85%;
    max-width: 320px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: menuFadeUp 0.25s ease-out;
    margin: 0 auto;           /* 确保水平居中 */
}

@keyframes menuFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 菜单头部 */
.ribbon-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}

.badge-card {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e44;
}

.card-right {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #999999;
    padding: 0 6px;
    transition: color 0.2s;
}

.card-right:hover {
    color: #ff8c00;
}

/* 菜单列表容器 */
.head-grid-row {
    max-height: 60vh;
    overflow-y: auto;
    padding: 8px 0;
}

.stack-img-pill {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stack-img-pill li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f5f5f5;
}

/* 每个菜单项 */
.menu-page-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e44;
    background: white;
    transition: background 0.15s;
    cursor: pointer;
    text-decoration: none;
}

.menu-page-item:active {
    background-color: #fff0e0;
}

.menu-page-item .page-num {
    font-weight: 500;
}

.menu-page-item .jump-hint {
    font-size: 12px;
    color: #ff8c00;
    background: #fff0e0;
    padding: 2px 8px;
    border-radius: 20px;
}

/* 当前页码在菜单中高亮 */
.menu-page-item.current-in-menu {
    background-color: #ff8c00;
    color: white;
}

.menu-page-item.current-in-menu .jump-hint {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* 滚动条美化 */
.head-grid-row::-webkit-scrollbar {
    width: 4px;
}

.head-grid-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.head-grid-row::-webkit-scrollbar-thumb {
    background: #ffb45e;
    border-radius: 10px;
}

/* 移动端底部安全区适配 */
@media (max-width: 768px) {
    .head-grid-row {
        padding-bottom: env(safe-area-inset-bottom, 10px);
    }
    
    /* 增强移动端居中保障 */
    .hero-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .chip-icon-tag {
        margin: 0 20px;
    }
}
.pill-sm-flex{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.cover-chip{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.img-box-active{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.card-slot-btn{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.end-cell-section{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.panel-thumb-dot{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.tip-form-title{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.box-pop-chunk{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.wrap-menu-head{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.section-tip-label{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.chip-mast-form{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.alert-active{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.slot-right-main{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.alert-thumb-end{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.group-md-inner{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
.text-sm-footer{display:contents;font-style:normal;font-family:inherit;font-size:inherit;color:inherit;line-height:inherit;text-decoration:none;background:none;unicode-bidi:normal}
