ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	color: var(--primary);
}
body {
	--color: #363a49;
	color: var(--color);
	background: var(--bs-tertiary-bg);
	font-size: 14px;
	line-height: 1.5em;
	--primary: #1663ff;
	width: 100vw;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html {
	background: #eef2f8;
}
html[data-bs-theme="dark"] {
	background: #090f1a;
}
[data-bs-theme="dark"] body {
	--color: #d8dae0;
}

.btn {
	font-size: 1em;
	--bs-btn-padding-x: 1em;
	--bs-border-radius: 3px;
}

.headerLogo {
	height: 40px;
}
.footerArea li {
	padding-top: 1em;
}
.footerLogo {
	display: inline-flex;
	align-items: center;
}
.footerLogoImg {
	display: block;
	content: url("/public/img/logo.png");
}
[data-bs-theme="dark"] .footerLogoImg {
	content: url("/public/img/logoLight.png");
}
.navbar-brand {
	height: 34px;
	width: 180px;
	margin: 5px 0;
	background: url("/public/img/logo.png");
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
}
[data-bs-theme="dark"] .navbar-brand {
	background-image: url("/public/img/logoLight.png");
}
.nav-link {
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	height: 100%;
}
.nav-item {
	height: 34px;
	overflow: hidden;
	margin-right: 0.5em;
	border-radius: 3px;
	/* width: 6em; */
	padding: 0 1em;
	text-align: center;
}

.nav-item.active {
	background: var(--primary);
	font-weight: bold;
}
.nav-item.active a {
	color: #fff;
}
small {
	font-size: 13px;
	opacity: 0.7;
}
.moreLink {
	display: inline-flex;
	align-items: center;
}
.moreLink:after {
	content: "\ea73";
	font-family: "icon" !important;
	font-size: 0.8em;
	display: block;
	transition: transform 0.2s ease-in-out;
}
.moreLink:hover:after {
	transform: translateX(3px);
}

.platforms > div {
	position: relative;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e5e6e7;
	border-radius: 50%;
	cursor: pointer;
	margin-right: 10px;
	color: #333;
	/* color: var(--color); */
}
.platforms > div:before {
	display: none;
	content: "";
	background: var(--color);
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0.2;
}
.platforms > div:hover::before {
	display: block;
}
.platforms > div > img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	filter: grayscale(0.2);
}
.platforms > div:hover {
	border-color: var(--color);
}
.platforms > div:hover img {
	filter: grayscale(0);
}
.platforms > div > div {
	display: none;
	position: absolute;
	bottom: 120%;
	border: 1px solid var(--bs-border-color);
	padding: 5px;
	border-radius: 3px;
	transition: 0.3s;
	background: #fff;
}
.platforms > div:hover > div {
	display: block;
}
.platforms > div > div > img {
	width: 100%;
	height: 100%;
	height: 100px;
	width: 100px;
}
.platforms > div > div > div {
	text-align: center;
	font-size: 12px;
	color: #555;
}
.cardShadow {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
[data-bs-theme="dark"] .cardShadow {
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
/* 适配不同的 line-clamp 数量 */
.cutStr {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: break-all;
}

.cutStr_2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	text-overflow: ellipsis;
}

.cutStr_3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	text-overflow: ellipsis;
}

.cutStr_4 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	text-overflow: ellipsis;
}
/* 通用内容模块样式 */
.commonContent {
	font-size: 15px;
	line-height: 1.8em;
}
.commonContent p {
	margin-bottom: 1em;
}
.commonContent p:last-child {
	margin-bottom: 0;
}
.commonContentImages {
	margin-bottom: 14px;
}
.commonContentImages > div {
	overflow: hidden;
	position: relative;
	height: 0;
	padding-bottom: calc(var(--ratio) * 100%);
}
.commonContentImages img {
	width: 100%;
	height: 100%;
	object-fit: var(--fit);
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 5px;
	overflow: hidden;
}
.commonContentImages_col1 > div {
	height: auto !important;
	display: flex;
}
.commonContentImages_col1 img {
	all: unset;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.commonContentImages_col2 {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
}
.commonContent a {
	color: var(--primary) !important;
}

.commonContent a:hover {
	text-decoration: underline;
}
.commonContent h4,
.commonContent h5 {
	margin: 1em 0;
}
mark {
	color: inherit;
}

/* 浮动菜单 */
.floatMenu {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 140px;
	z-index: 9999;
}
.floatMenu > div {
	background: #fff;
	width: 40px;
	min-height: 40px;
	border-radius: 25px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2em;
	font-weight: bold;
	cursor: pointer;
}
[data-bs-theme="dark"] .floatMenu > div {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(4px);
}
.floatMenu > div:hover {
	background: var(--primary);
	color: #fff;
}
.floatMenu > div.goTopBtn {
	display: none;
}
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(4px);
	z-index: 99999;
	width: 100vw;
}

[data-bs-theme="dark"] .navbar {
	background: rgba(0, 0, 0, 0.8);
}

.navPlace {
	height: 60px;
}
.headerRight {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-right: 30px;
}
.themeToggle {
	position: relative;
}
.themeTrigger {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(22, 99, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(13, 41, 97, 0.08);
	transition: transform 0.2s ease, border-color 0.2s ease;
}
.themeTrigger:hover {
	transform: translateY(-1px);
	border-color: rgba(22, 99, 255, 0.26);
}
.themeTrigger img {
	width: 18px;
	height: 18px;
}
.themeMenu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 144px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(22, 99, 255, 0.12);
	border-radius: 16px;
	padding: 8px;
	box-shadow: 0 18px 40px rgba(12, 32, 77, 0.14);
	display: none;
}
.themeToggle.open .themeMenu {
	display: block;
}
.themeBtn {
	width: 100%;
	border: 0;
	background: transparent;
	color: var(--color);
	font-size: 13px;
	text-align: left;
	line-height: 1;
	padding: 12px 14px;
	border-radius: 12px;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.themeBtn.active {
	background: rgba(22, 99, 255, 0.12);
	color: var(--primary);
}
.themeBtn:hover {
	background: rgba(22, 99, 255, 0.08);
}
[data-bs-theme="dark"] .themeTrigger {
	background: rgba(10, 18, 33, 0.92);
	border-color: rgba(141, 167, 255, 0.18);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
[data-bs-theme="dark"] .themeMenu {
	background: rgba(10, 18, 33, 0.98);
	border-color: rgba(141, 167, 255, 0.16);
}
[data-bs-theme="dark"] .themeBtn.active {
	background: rgba(128, 167, 255, 0.16);
	color: #dce8ff;
}
[data-bs-theme="dark"] .themeBtn:hover {
	background: rgba(128, 167, 255, 0.1);
}
.headerSearch {
	position: relative;
	margin-right: 10px;
	display: flex;
	align-items: center;
}
.headerSearch > input {
	border: 1px solid rgba(22, 99, 255, 0.12);
	background: #fff;
	height: 36px;
	padding-right: 20px;
	padding-left: 50px;
	border-radius: 4px;
	width: 200px;
	color: #22304a;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.headerSearch > input::placeholder {
	color: #7d899c;
}
.headerSearch > input:focus {
	border-color: rgba(22, 99, 255, 0.45);
	box-shadow: 0 0 0 3px rgba(22, 99, 255, 0.12);
}
[data-bs-theme="dark"] .headerSearch > input {
	background: rgba(18, 27, 43, 0.92);
	border-color: rgba(143, 169, 255, 0.22);
	color: #eef3ff;
}
[data-bs-theme="dark"] .headerSearch > input::placeholder {
	color: #9fb0d1;
}
.headerSearch > button {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerSearch > .icon {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	opacity: 0.7;
	pointer-events: none;
}
.headerHotLine {
	line-height: 1em;
}
.headerHotLine .numbersTel {
	font-weight: bold;
	color: var(--primary);
	font-size: 1.2em;
}
.headerRight .i-Customerservice {
	font-size: 2.2em;
	margin-right: 10px;
}
.seoPagination .page-link {
	color: var(--color);
	border-color: var(--bs-border-color);
	background: var(--bs-body-bg);
}
.seoPagination .page-item.active .page-link {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}
.seoPagination .page-item.disabled .page-link {
	background: var(--bs-secondary-bg);
	color: #8b93a6;
}
.searchPageForm .form-control,
.searchPageForm .form-select {
	min-height: 44px;
}
@media (max-width: 991px) {
	.headerRight {
		flex-wrap: wrap;
		padding-right: 0;
		padding-top: 12px;
	}
	.themeToggle {
		order: 2;
	}
	.headerSearch > input {
		width: min(100%, 100vw - 56px);
	}
	.themeToggle {
		width: auto;
	}
}
