.luobo-forum-index {
	width: min(1180px, calc(100% - 36px));
	margin: 24px auto 80px;
	color: var(--text-color);
}

.luobo-fi-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 18px;
	align-items: stretch;
	margin-bottom: 18px;
}

.luobo-fi-hero-main,
.luobo-fi-image-slider,
.luobo-fi-panel,
.luobo-fi-section {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.luobo-fi-hero-main {
	padding: 30px 32px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.luobo-fi-hero-main:after {
	content: "";
	position: absolute;
	right: -60px;
	top: -70px;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: rgba(247, 98, 52, .08);
	pointer-events: none;
}

.luobo-fi-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--primary-light);
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 14px;
}

.luobo-fi-hero h1 {
	font-size: 28px;
	line-height: 1.35;
	font-weight: 750;
	margin: 0 0 10px;
	color: #222;
}

.luobo-fi-hero p {
	max-width: 680px;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-secondary);
}

.luobo-fi-team-diy {
	margin-top: 22px;
	position: relative;
	z-index: 1;
}

.luobo-fi-team {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.luobo-fi-team-card {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	min-height: 58px;
	padding: 10px 12px;
	border: 1px solid #edf0f3;
	border-radius: 10px;
	background: #fff;
	color: inherit;
	transition: var(--transition);
}

.luobo-fi-team-card:hover {
	border-color: rgba(247, 98, 52, .32);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
	transform: translateY(-2px);
}

.luobo-fi-team-card img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	background: #f6f7f9;
	flex: 0 0 auto;
}

.luobo-fi-team-card span {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.luobo-fi-team-card strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #1f2937;
	font-size: 13px;
	line-height: 1.3;
}

.luobo-fi-team-card em {
	align-self: flex-start;
	height: 20px;
	line-height: 20px;
	padding: 0 8px;
	border-radius: 999px;
	background: var(--primary-light);
	color: var(--primary-color);
	font-style: normal;
	font-size: 11px;
	font-weight: 700;
}

.luobo-fi-image-slider {
	position: relative;
	height: 458px;
	min-height: 458px;
	overflow: hidden;
}

.luobo-fi-slider-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform .45s ease;
}

.luobo-fi-slide {
	position: relative;
	display: block;
	flex: 0 0 100%;
	min-width: 100%;
	height: 100%;
	color: #fff !important;
	background: #f5f7fa;
	overflow: hidden;
}

.luobo-fi-slide img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 458px;
	object-fit: cover;
	transition: transform .45s ease;
}

.luobo-fi-slide:hover img {
	transform: scale(1.04);
}

.luobo-fi-slide-mask {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, .08) 0%, rgba(15, 23, 42, .62) 100%);
}

.luobo-fi-slide-text {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
}

.luobo-fi-slide-text em {
	align-self: flex-start;
	height: 24px;
	line-height: 24px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(247, 98, 52, .92);
	color: #fff;
	font-style: normal;
	font-size: 12px;
	font-weight: 750;
}

.luobo-fi-slide-text strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #fff;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 750;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.luobo-fi-slide-text small {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: rgba(255, 255, 255, .84);
	font-size: 12px;
}

.luobo-fi-slider-dots {
	position: absolute;
	right: 16px;
	top: 16px;
	z-index: 2;
	display: flex;
	gap: 6px;
}

.luobo-fi-slider-dot {
	width: 7px;
	height: 7px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .58);
	padding: 0;
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.luobo-fi-slider-dot.is-active {
	width: 18px;
	background: #fff;
}

.luobo-fi-announcement {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	margin-bottom: 18px;
	padding: 0 16px;
	border: 1px solid #ffd7c9;
	border-radius: 10px;
	background: #fff8f5;
	color: #9a4b2f;
}

.luobo-fi-announcement i {
	color: var(--primary-color);
}

.luobo-fi-announcement ul,
.luobo-fi-announcement li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.luobo-fi-section {
	padding: 20px;
	margin-bottom: 18px;
}

.luobo-fi-section-head,
.luobo-fi-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.luobo-fi-section-head h2,
.luobo-fi-panel-head h2 {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	color: #222;
	font-weight: 750;
}

.luobo-fi-panel-head h2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.luobo-fi-section-head p {
	margin: 5px 0 0;
	color: var(--text-muted);
	font-size: 13px;
}

.luobo-fi-section-head > a,
.luobo-fi-panel-head > a {
	font-size: 13px;
	color: var(--primary-color);
	font-weight: 700;
}

.luobo-fi-entry-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.luobo-fi-entry-grid-hero {
	margin-top: 24px;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.luobo-fi-entry {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	column-gap: 10px;
	min-height: 76px;
	padding: 12px;
	border: 1px solid #edf0f3;
	border-radius: 10px;
	background: #fff;
	transition: var(--transition);
}

.luobo-fi-entry:hover {
	border-color: rgba(247, 98, 52, .32);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
	transform: translateY(-2px);
}

.luobo-fi-entry-icon {
	grid-row: 1 / 3;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-light);
	color: var(--primary-color);
	font-size: 15px;
}

.luobo-fi-entry strong,
.luobo-fi-forum-info strong,
.luobo-fi-thread-body strong,
.luobo-fi-mini-list strong,
.luobo-fi-update-list strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.luobo-fi-entry strong {
	color: #1f2937;
	font-size: 14px;
	line-height: 1.35;
}

.luobo-fi-entry em {
	color: var(--text-secondary);
	font-style: normal;
	font-size: 12px;
	line-height: 1.45;
	margin-top: 3px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.luobo-fi-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 18px;
	align-items: start;
}

.luobo-fi-main,
.luobo-fi-side {
	min-width: 0;
}

.luobo-fi-panel {
	padding: 18px;
	margin-bottom: 18px;
}

.luobo-fi-thread-list {
	display: flex;
	flex-direction: column;
}

.luobo-fi-thread {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 58px;
	gap: 12px;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid #eef1f4;
	color: inherit;
}

.luobo-fi-thread:last-child {
	border-bottom: 0;
}

.luobo-fi-thread-mark {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f6f7f9;
	color: var(--primary-color);
	overflow: hidden;
	flex: 0 0 38px;
}

.luobo-fi-thread-mark i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-style: normal;
	line-height: 1;
}

.luobo-fi-thread-mark img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.luobo-fi-thread-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.luobo-fi-thread-body strong {
	color: #26313f;
	font-size: 15px;
	line-height: 1.4;
}

.luobo-fi-thread:hover .luobo-fi-thread-body strong,
.luobo-fi-rank a:hover,
.luobo-fi-mini-list a:hover strong,
.luobo-fi-forum-card:hover strong {
	color: var(--primary-color);
}

.luobo-fi-thread-body em {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: var(--text-muted);
	font-style: normal;
	font-size: 12px;
}

.luobo-fi-thread-data {
	text-align: right;
	color: var(--text-muted);
	font-size: 12px;
}

.luobo-fi-thread-data b {
	display: block;
	color: #334155;
	font-size: 15px;
	line-height: 1.2;
}

.luobo-fi-forum-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.luobo-fi-forum-card {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) 34px;
	gap: 12px;
	align-items: center;
	padding: 14px;
	border: 1px solid #edf0f3;
	border-radius: 10px;
	background: #fff;
	transition: var(--transition);
}

.luobo-fi-forum-card:hover {
	border-color: rgba(247, 98, 52, .3);
	background: #fffdfc;
}

.luobo-fi-forum-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f6f7f9;
	color: var(--primary-color);
}

.luobo-fi-forum-info {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.luobo-fi-forum-info strong {
	color: #26313f;
	font-size: 15px;
}

.luobo-fi-forum-info em,
.luobo-fi-forum-info small {
	font-style: normal;
	font-size: 12px;
	color: var(--text-muted);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.luobo-fi-forum-count {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-light);
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 800;
}

.luobo-fi-rank {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: luobo-rank;
}

.luobo-fi-rank li {
	counter-increment: luobo-rank;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) auto;
	gap: 9px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #eef1f4;
}

.luobo-fi-rank li:last-child {
	border-bottom: 0;
}

.luobo-fi-rank li:before {
	content: counter(luobo-rank);
	width: 24px;
	height: 24px;
	border-radius: 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f6f7f9;
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
}

.luobo-fi-rank li:nth-child(-n+3):before {
	background: var(--primary-light);
	color: var(--primary-color);
}

.luobo-fi-rank a {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #334155;
	font-size: 13px;
}

.luobo-fi-rank span {
	color: var(--text-muted);
	font-size: 12px;
}

.luobo-fi-mini-list,
.luobo-fi-update-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.luobo-fi-mini-list a,
.luobo-fi-update-list a,
.luobo-fi-update-list span {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 10px 12px;
	border-radius: 9px;
	background: #f8fafc;
	color: inherit;
}

.luobo-fi-mini-list strong {
	color: #334155;
	font-size: 13px;
}

.luobo-fi-mini-list em {
	color: var(--text-muted);
	font-style: normal;
	font-size: 12px;
}

.luobo-fi-update-list a,
.luobo-fi-update-list span {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
}

.luobo-fi-update-list em {
	font-style: normal;
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 800;
}

.luobo-fi-update-list strong {
	color: #334155;
	font-size: 13px;
	font-weight: 650;
}

body:not(.diy-mode) .luobo-forum-index .area,
body:not(.diy-mode) .luobo-forum-index .frame,
body:not(.diy-mode) .luobo-forum-index .frame-1-c {
	background: transparent;
	border: 0;
}

@media (max-width: 1100px) {
	.luobo-fi-hero,
	.luobo-fi-layout {
		grid-template-columns: 1fr;
	}

	.luobo-fi-image-slider,
	.luobo-fi-slide img {
		height: 260px;
		min-height: 260px;
	}
}

@media (max-width: 760px) {
	.luobo-forum-index {
		width: calc(100% - 20px);
		margin-top: 14px;
	}

	.luobo-fi-hero-main {
		padding: 22px 18px;
	}

	.luobo-fi-hero h1 {
		font-size: 22px;
	}

	.luobo-fi-entry-grid,
	.luobo-fi-forum-grid {
		grid-template-columns: 1fr;
	}

	.luobo-fi-image-slider,
	.luobo-fi-slide img {
		height: 210px;
		min-height: 210px;
	}

	.luobo-fi-thread {
		grid-template-columns: 34px minmax(0, 1fr);
	}

	.luobo-fi-thread-data {
		display: none;
	}

	.luobo-fi-team {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
