/* ============================================
   EDITORIAL BRUTALISM - 野兽派设计系统 v2.0
   完整版 · 从 index.html 内联样式提取
   ============================================ */

/* ============================================
   第一部分：CSS变量系统（原Style #1）
   ============================================ */
:root {
	/* 主色调 - 野兽派红 */
	--primary-color: #FF3366;
	--primary-dark: #D9264A;
	--primary-light: #FF5C7F;

	/* 辅助色 - 琥珀色 */
	--secondary-color: #0A0A0A;
	--accent-color: #F59E0B;
	--success-color: #22C55E;
	--warning-color: #F59E0B;
	--danger-color: #FF3366;

	/* 中性色 - 野兽派黑白灰 */
	--text-primary: #0A0A0A;
	--text-secondary: #1A1A1A;
	--text-muted: #5C5C5C;
	--text-light: #9CA3AF;
	--bg-primary: #FAFAF8;
	--bg-secondary: #FFFFFF;
	--bg-tertiary: #F5F5F3;
	--border-color: #0A0A0A;
	--border-light: rgba(10, 10, 10, 0.12);

	/* 阴影 - 固体偏移阴影(无模糊) */
	--shadow-sm: 4px 4px 0 #0A0A0A;
	--shadow-md: 6px 6px 0 #0A0A0A;
	--shadow-lg: 8px 8px 0 #0A0A0A;

	/* 渐变色 - 纯色或黑色渐变 */
	--gradient-primary: linear-gradient(135deg, #0A0A0A, #2A2A2A);
	--gradient-accent: linear-gradient(135deg, #FF3366, #F59E0B);
	--gradient-bg: linear-gradient(135deg, #FAFAF8, #FFFFFF);

	/* 字体 - 野兽派字体栈 */
	--font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
	--font-display: 'Fraunces', "Noto Serif SC", Georgia, serif;

	/* 字体大小 */
	--text-xs: 12px;
	--text-sm: 13px;
	--text-base: 14px;
	--text-md: 15px;
	--text-lg: 16px;
	--text-xl: 18px;
	--text-2xl: 24px;
	--text-3xl: 32px;
	--text-4xl: 38px;

	/* 行高 */
	--leading-tight: 1.25;
	--leading-normal: 1.5;
	--leading-relaxed: 1.7;

	/* 间距 */
	--spacing-xs: 4px;
	--spacing-sm: 8px;
	--spacing-md: 16px;
	--spacing-lg: 24px;
	--spacing-xl: 32px;
	--spacing-2xl: 48px;

	/* 圆角 - 野兽派无圆角或极小圆角 */
	--border-radius-sm: 0;
	--border-radius-md: 0;
	--border-radius-lg: 0;
	--border-radius-xl: 0;

	/* 过渡 - 弹性缓出函数 */
	--transition-fast: 0.2s cubic-bezier(0.22, 1, 0.36, 1);
	--transition-normal: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	--transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);

	/* 野兽派特有变量 */
	--brutal-bg-primary: #FAFAF8;
	--brutal-bg-secondary: #FFFFFF;
	--brutal-accent-red: #FF3366;
	--brutal-accent-amber: #F59E0B;
	--brutal-text-black: #0A0A0A;
	--brutal-border-bold: rgba(10, 10, 10, 0.25);
	--brutal-shadow-md: 6px 6px 0 rgba(10, 10, 10, 0.15);
	--brutal-font-serif: 'Fraunces', 'Noto Serif SC', serif;
	--brutal-font-sans: 'DM Sans', 'Noto Sans SC', sans-serif;

	/* 背景色系 */
	--brutal-bg-primary: #FAFAF8;
	--brutal-bg-secondary: #FFFFFF;
	--brutal-bg-surface: #F5F5F3;
	--brutal-bg-elevated: #EDEDEC;

	/* 强调色 */
	--brutal-accent-red-dark: #D9264A;

	/* 文字色 */
	--brutal-text-primary: #1A1A1A;

	/* 边框色 */
	--brutal-border-light: rgba(10, 10, 10, 0.12);
	--brutal-border-black: #0A0A0A;

	/* 字体系统 */
	--brutal-font-mono: 'Space Mono', 'JetBrains Mono', Consolas, monospace;

	/* 阴影 - 实心偏移阴影（无模糊） */
	--brutal-shadow-sm: 4px 4px 0 var(--brutal-bg-elevated);
	--brutal-shadow-md: 6px 6px 0 var(--brutal-bg-elevated);
	--brutal-shadow-lg: 8px 8px 0 var(--brutal-bg-elevated);
	--brutal-shadow-xl: 12px 12px 0 var(--brutal-bg-elevated);
	--brutal-shadow-black: 6px 6px 0 #000000;

	/* 过渡动画 */
	--brutal-transition-fast: 200ms cubic-bezier(0.22, 1, 0.36, 1);
	--brutal-transition-normal: 350ms cubic-bezier(0.22, 1, 0.36, 1);
	--brutal-transition-slow: 650ms cubic-bezier(0.22, 1, 0.36, 1);

	/* 切角效果 */
	--brutal-clip-card: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
	--brutal-clip-button: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

/* ============================================
   第二部分：粒子加载器（原Style #2）
   ============================================ */
.particle-loader {
	position: fixed;
	inset: 0;
	background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 50%, #FAFAF8 100%);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.particle-loader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
#particle-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

/* ============================================
   第三部分：导航栏样式系统（原Style #3）
   ============================================ */

/* 导航栏容器 */
.brutal-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: #FFFFFF;
	border-bottom: 3px solid #0A0A0A; /* 粗黑边框 */
	box-shadow: 0 2px 0 rgba(10, 10, 10, 0.05);
}

.brutal-navbar {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
}

.brutal-nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	gap: 32px;
}

/* Logo区域 - 大号粗体文字+图标 */
.brutal-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	font-family: var(--font-display); /* 衬线字体 */
	font-weight: 900;
	font-size: 24px;
	color: #0A0A0A;
	letter-spacing: -0.02em;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.brutal-logo:hover {
	color: #FF3366; /* 红色悬停 */
	transform: translateX(4px);
}

.logo-mark {
	font-size: 28px;
	color: #FF3366; /* 品牌红色图标 */
	transition: transform 0.3s ease;
}

.brutal-logo:hover .logo-mark {
	transform: rotate(15deg) scale(1.1);
}

.logo-text {
	position: relative;
}

/* 导航菜单链接 */
.brutal-menu {
	display: flex;
	list-style: none;
	gap: 4px;
	margin: 0;
	padding: 0;
	flex: 1;
	justify-content: center;
}

.brutal-menu > li {
	position: relative;
}

.brutal-menu > li > a,
.nav-brutal-link {
	display: block;
	padding: 10px 18px;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 700; /* 粗体 */
	color: #0A0A0A;
	text-decoration: none;
	text-transform: uppercase; /* 大写 */
	letter-spacing: 0.08em; /* 字间距 */
	position: relative;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	border: 2px solid transparent;
}

/* 悬停效果:红色下划线动画 + 背景高亮 */
.brutal-menu > li > a::after,
.nav-brutal-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: #FF3366; /* 红色下划线 */
	transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.brutal-menu > li > a:hover,
.nav-brutal-link:hover {
	color: #FF3366; /* 红色文字 */
	background: rgba(255, 51, 102, 0.05); /* 浅红背景高亮 */
	border-color: transparent;
}

.brutal-menu > li > a:hover::after,
.nav-brutal-link:hover::after {
	width: 80%; /* 下划线展开 */
}

/* CTA按钮组 */
.brutal-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

/* 按钮基础样式 */
.btn-brutal {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: var(--font-primary);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0; /* 无圆角 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
}

/* 主按钮 - 黑底白字 + 切角效果 */
.btn-brutal-primary {
	background: #0A0A0A; /* 黑色背景 */
	color: white;
	box-shadow: 4px 4px 0 #FF3366; /* 红色偏移阴影 */
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); /* 切角效果 */
}

.btn-brutal-primary:hover {
	background: #FF3366; /* 悬停变红 */
	transform: translate(-2px, -2px); /* 偏移效果 */
	box-shadow: 6px 6px 0 #0A0A0A; /* 黑色阴影 */
	border-color: #FF3366;
	color: white;
}

/* 次要按钮 - 白底黑字 */
.btn-brutal-outline {
	background: white;
	color: #0A0A0A;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12);
}

.btn-brutal-outline:hover {
	background: #0A0A0A; /* 悬停黑底 */
	color: white;
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 #FF3366; /* 红色阴影 */
}

/* 强调按钮 - 红底白字 */
.btn-brutal-accent {
	background: #FF3366; /* 红色背景 */
	color: white;
	border-color: #FF3366;
	box-shadow: 4px 4px 0 #0A0A0A; /* 黑色偏移阴影 */
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.btn-brutal-accent:hover {
	background: #D9264A; /* 深红悬停 */
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 rgba(255, 51, 102, 0.3);
}

/* 移动端汉堡菜单按钮 */
.brutal-hamburger {
	display: none; /* 默认隐藏 */
	flex-direction: column;
	justify-content: space-around;
	width: 44px;
	height: 44px;
	background: white;
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	border-radius: 0; /* 方形 */
	cursor: pointer;
	padding: 10px;
	gap: 5px;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.brutal-hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #0A0A0A; /* 黑色线条 */
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	transform-origin: center;
}

/* 汉堡菜单悬停效果 */
.brutal-hamburger:hover {
	border-color: #FF3366;
	box-shadow: 4px 4px 0 #FF3366;
}

.brutal-hamburger:hover span {
	background: #FF3366;
}

/* 汉堡菜单激活状态 - X形变体 */
.brutal-hamburger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg); /* 第一条线旋转 */
}

.brutal-hamburger.active span:nth-child(2) {
	opacity: 0; /* 中间线消失 */
}

.brutal-hamburger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg); /* 第三条线旋转 */
}

/* 移动端下拉菜单 - 修复位置错位 */
.brutal-mobile-menu {
	position: fixed; /* 使用fixed定位，相对于视口 */
	top: 72px; /* 紧贴导航栏底部（导航栏高度72px） */
	left: 0;
	right: 0;
	width: 100%; /* 全宽显示 */
	background: #FFFFFF;
	border-top: 3px solid #0A0A0A; /* 顶部粗黑边框 */
	border-bottom: 3px solid #0A0A0A; /* 底部粗黑边框 */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* 增强阴影 */
	z-index: 998; /* 低于导航栏(1000)但高于内容 */
	max-height: 0; /* 默认高度为0（隐藏） */
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36 1), padding 0.35s cubic-bezier(0.22, 1, 0.36 1);
	padding: 0 24px;
}

/* 展开状态 */
.brutal-mobile-menu.active {
	max-height: 500px; /* 足够的高度容纳所有菜单项 */
	padding: 24px;
}

/* 菜单列表样式优化 */
.brutal-mobile-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.brutal-mobile-list li {
	border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.brutal-mobile-list li:last-child {
	border-bottom: none;
}

.brutal-mobile-list li a {
	display: block;
	padding: 14px 16px;
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 15px;
	color: #0A0A0A;
	text-decoration: none;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
}

.brutal-mobile-list li a:hover {
	background: #F5F5F3;
	color: #FF3366; /* 悬停变红 */
	border-left-color: #FF3366; /* 左侧红色指示条 */
	padding-left: 24px; /* 悬停时缩进效果 */
}

/* Hero区 CTA按钮组 - 野兽派风格 */
.brutal-cta-group {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 32px;
}

/* 通用CTA按钮样式 */
.btn-brutal-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border: 2px solid #0A0A0A;
	border-radius: 0;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12);
	cursor: pointer;
}

.btn-brutal-cta i {
	font-size: 16px;
	transition: transform 0.2s ease;
}

.btn-brutal-cta:hover i {
	transform: translateX(2px);
}

/* 主按钮 - 黑底白字 + 切角效果 */
.btn-brutal-cta-primary {
	background: #0A0A0A;
	color: white;
	clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.btn-brutal-cta-primary:hover {
	background: #FF3366;
	border-color: #FF3366;
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 white;
}

/* 次要按钮 - 白底黑框 */
.btn-brutal-cta-secondary {
	background: white;
	color: #0A0A0A;
}

.btn-brutal-cta-secondary:hover {
	background: #0A0A0A;
	color: white;
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 #FF3366;
}

/* 强调按钮 - 红底白字 + 切角效果 */
.btn-brutal-cta-accent {
	background: #FF3366;
	color: white;
	border-color: #FF3366;
	clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.btn-brutal-cta-accent:hover {
	background: #CC0040; /* 深红色悬停 */
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 #0A0A0A;
}

/* CTA按钮组响应式 */
@media (max-width: 768px) {
	.brutal-cta-group {
		flex-direction: column;
	}

	.btn-brutal-cta {
		justify-content: center;
		width: 100%;
	}
}

/* Bootstrap Icons 样式 */
.icon-brutal {
	font-size: 48px;
	color: #FF3366;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border: 2px solid #0A0A0A;
	background: #F5F5F3;
	flex-shrink: 0;
}

.solution-icon {
	font-size: 32px;
	color: #0A0A0A;
}

.logo-icon {
	font-size: 64px;
	color: rgba(10, 10, 10, 0.08);
}

.capital-icon {
	font-size: 72px;
	color: #FF3366;
	background: rgba(255, 51, 102, 0.05);
	padding: 20px;
	border: 2px solid #0A0A0A;
}

.industry-icon {
	font-size: 56px;
	color: #0A0A0A;
	background: #FAFAF8;
	padding: 16px;
	border: 2px solid #0A0A0A;
}

.news-icon {
	font-size: 28px;
	color: #FF3366;
	margin-right: 12px;
}

.industry-logo {
	font-size: 36px;
	color: #0A0A0A;
	margin-right: 16px;
}
	background-color: rgba(255, 255, 255, .95);
	border-bottom: 3px solid #0A0A0A; /* 野兽派粗黑边框 */
}

/* 风控中心按钮 - 野兽派黑底白字风格 */
.btn-risk-control {
	background: #0A0A0A; /* 黑色背景 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	color: white !important;
	font-weight: 700;
	text-shadow: none;
	box-shadow: 4px 4px 0 #FF3366; /* 红色偏移阴影 */
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	margin-right: 10px;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); /* 切角效果 */
	border-radius: 0; /* 无圆角 */
}

.btn-risk-control:hover {
	background: #FF3366; /* 悬停变红 */
	transform: translate(-2px, -2px); /* 偏移效果 */
	box-shadow: 6px 6px 0 #0A0A0A; /* 增强阴影 */
	color: white !important;
	border-color: #FF3366;
}

.btn-risk-control i {
	margin-right: 5px;
}

/* 登录按钮 - 野兽派白底黑字风格 */
.btn-nav-login {
	display: inline-block !important;
	padding: 8px 20px !important;
	background: white !important;
	color: #0A0A0A !important; /* 黑色文字 */
	border-radius: 0 !important; /* 无圆角 */
	border: 2px solid #0A0A0A !important; /* 粗黑边框 */
	text-decoration: none !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important; /* 弹性过渡 */
	line-height: normal !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12); /* 固体偏移阴影 */
}

.btn-nav-login:hover {
	background: #0A0A0A !important; /* 悬停黑底 */
	color: white !important;
	transform: translate(-2px, -2px); /* 偏移效果 */
	box-shadow: 6px 6px 0 #FF3366 !important; /* 红色阴影 */
}

/* 注册按钮 - 野兽派红底白字风格 */
.btn-nav-register {
	display: inline-block !important;
	padding: 8px 20px !important;
	background: #FF3366 !important; /* 红色背景 */
	color: white !important;
	border-radius: 0 !important; /* 无圆角 */
	border: 2px solid #FF3366 !important; /* 红色粗边框 */
	text-decoration: none !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important; /* 弹性过渡 */
	box-shadow: 4px 4px 0 #0A0A0A; /* 黑色偏移阴影 */
}

.btn-nav-register:hover {
	background: #D9264A !important; /* 深红悬停 */
	transform: translate(-2px, -2px); /* 偏移效果 */
	box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.25) !important;
}

/* Swiper轮播图样式 */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 90px;
}

.homepage .wrap-main-swiper {
	position: relative;
	padding-top: 0px;
}

.swiper-pagination-bullets {
	top: -110px;
}

.wrap-main-swiper .swiper-slide {
	height: 600px;
	background-size: cover;
	overflow: hidden;
}

.wrap-main-swiper .content-slide {
	max-width: 60%;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.wrap-main-swiper .swiper-slide-active .content-slide {
	opacity: 1;
	transform: translateY(0);
}

.wrap-main-swiper .content-slide .slogan {
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -1px;
	font-family: var(--font-display); /* 衬线字体 */
	opacity: 0;
	transform: translateX(-30px);
	animation: slideInLeft 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; /* 弹性动画 */
	animation-delay: 0.2s;
}

.wrap-main-swiper .content-slide .sub-slogan {
	opacity: 0;
	transform: translateX(-30px);
	animation: slideInLeft 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; /* 弹性动画 */
	animation-delay: 0.4s;
}

.wrap-main-swiper .content-slide .btn {
	opacity: 0;
	transform: translateY(20px);
	animation: slideInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; /* 弹性动画 */
	animation-delay: 0.6s;
}

.wrap-main-swiper .swiper-slide .bg-top-Zeth {
	opacity: 0;
	transform: translateX(50px) scale(0.9);
	transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.wrap-main-swiper .swiper-slide-active .bg-top-Zeth {
	opacity: 1;
	transform: translateX(0) scale(1);
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 轮播分页器样式优化 - 野兽派方形风格 */
.swiper-pagination {
	position: relative;
	margin-top: -40px;
	z-index: 10;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(10,10,10,0.5); /* 黑色半透明 */
	opacity: 1;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	border-radius: 0; /* 方形 */
}

.swiper-pagination-bullet-active {
	width: 30px;
	border-radius: 0; /* 方形长条 */
	background: #0A0A0A; /* 黑色激活态 */
}

.bg-top-Zeth {
	display: block;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	position: absolute;
	right: 40px;
	z-index: 2;
}

.custom-img {
	max-width: 600px;
	max-height: 400px;
	border-radius: 0; /* 无圆角 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	box-shadow: 8px 8px 0 #0A0A0A; /* 固体偏移阴影 */
	object-fit: cover;
}

.main-partner-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	border: 2px solid transparent; /* 添加边框占位 */
}

.main-partner-item:hover {
	transform: translate(-4px, -4px); /* 偏移效果 */
	box-shadow: 6px 6px 0 #0A0A0A; /* 黑色阴影 */
	border-color: #0A0A0A; /* 显示边框 */
}

.main-partner-item img {
	max-width: 100px;
	max-height: 60px;
	object-fit: contain;
}

/* 视频展示区 - 野兽派风格 */
.video-section {
	padding: 80px 0;
}

.video-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

.video-card-large {
	position: relative;
	width: 100%;
	max-width: 1000px;
	border-radius: 0; /* 无圆角 */
	border: 3px solid #0A0A0A; /* 粗黑边框 */
	box-shadow: 12px 12px 0 #0A0A0A; /* 大型固体偏移阴影 */
	overflow: hidden;
	background: #000;
	opacity: 0;
	transform: translateY(60px) scale(0.95);
	transition: box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.video-card-large.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-card-large:hover {
	box-shadow: 16px 16px 0 #FF3366; /* 悬停时红色阴影 */
	transform: translate(-4px, -4px); /* 偏移效果 */
}

.video-player-large {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16/9;
}

/* 导航栏响应式 */
@media (max-width: 1024px) {
	.brutal-actions .btn-brutal span {
		display: none; /* 隐藏按钮文字,只显示图标 */
	}
}

@media (max-width: 768px) {
	.brutal-menu {
		display: none; /* 隐藏桌面端菜单 */
	}

	.brutal-hamburger {
		display: flex; /* 显示汉堡菜单 */
	}

	.brutal-actions {
		gap: 8px;
	}

	.btn-brutal {
		padding: 8px 12px;
		font-size: 12px;
	}

	.video-section {
		padding: 60px 0;
	}

	.video-card-large {
		border-radius: 0; /* 移动端也无圆角 */
	}
}

@media (max-width: 480px) {
	.brutal-nav-container {
		height: 64px;
		gap: 16px;
	}

	.brutal-logo {
		font-size: 20px;
	}

	.logo-mark {
		font-size: 24px;
	}
}

@media (min-width: 768px) {
	.bg-top-Zeth {
		bottom: 40px;
		height: calc(100% - 100px);
	}
}

@media (min-width: 1280px) {
	.bg-top-Zeth {
		right: calc(-600px + 45vw);
	}
}

/* ============================================
   第四部分：Hero区域和轮播组件（原Style #4）
   ============================================ */
.first-section {
	margin-top: -30px !important;
	padding-top: 0 !important;
}

/* 轮播图样式 - 野兽派风格 */
.home-first-right {
	flex: 1;
	position: relative;
	overflow: hidden;
	min-height: 650px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 100px;
	box-sizing: border-box;
	width: 100%;
	z-index: 1;
}



.home-first-right-scroll-test {
	overflow: hidden;
	width: 100%;
	margin-bottom: 16px;
	height: 150px;
	position: relative;
	z-index: 1;
}

.home-first-right-scroll-test ul {
	display: flex;
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
	transition: transform 0.1s linear;
}

/* 右侧滚动卡片 - 野兽派风格 */
.home-first-right-item {
	flex: 0 0 auto;
	width: 240px;
	height: 150px;
	background: white;
	border-radius: 0; /* 无圆角 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	overflow: hidden;
	box-shadow: 4px 4px 0 #0A0A0A; /* 固体偏移阴影 */
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	display: flex;
	flex-direction: column;
}

.home-first-right-item:hover {
	transform: translate(-4px, -4px); /* 偏移效果 */
	box-shadow: 8px 8px 0 #FF3366; /* 红色阴影 */
}

.home-first-right-item img {
	width: 100%;
	height: 100px;
	object-fit: cover;
}

.home-first-right-item-text {
	padding: 12px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home-first-right-item-text p {
	margin: 0;
	line-height: 1.4;
}

.home-first-right-item-text p:first-child {
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.home-first-right-item-text p:last-child {
	font-size: 12px;
	color: var(--text-muted);
}

.home_sroll_img_left,
.home_sroll_img_right {
	position: absolute;
	z-index: 1;
	opacity: 0.6;
}

.home_sroll_img_left {
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
}

.home_sroll_img_right {
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
}

.mt4 {
	margin-top: 16px;
}
.back_color {
	background: #FFFFFF;
	height: 600px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
}

.first-section {
	margin-top: 80px;
	height: 600px;
	display: flex;
	align-items: center;
	gap: 0;
	position: relative;
}

.home-first-left {
	flex: 1;
	padding-right: 0;
}

.home-first-right {
	flex: 1;
	position: relative;
	overflow: visible;
	min-height: 520px;
	background: transparent;
	margin: 0;
	padding: 0;
}

#threejs-canvas-container {
	width: 100% !important;
	height: 520px !important;
	position: relative;
	background: transparent;
	margin: 0;
	padding: 0;
}

#threejs-canvas-container canvas {
	width: 100% !important;
	height: 100% !important;
	display: block;
	background: transparent;
}

/* Three.js 加载动画 - 野兽派风格 */
.threejs-loading {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	z-index: 10;
	transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.threejs-loading.hidden {
	opacity: 0;
	pointer-events: none;
}

.threejs-loading-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(10, 10, 10, 0.2); /* 黑色边框 */
	border-top-color: #FF3366; /* 红色旋转部分 */
	border-radius: 0; /* 方形加载器 */
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* 分类标签轮播 */
.top-cards-left {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.top-cards-categories.category-marquee {
	display: block !important;
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 100vw;
}

.category-marquee::before,
.category-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	width: 60px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.category-marquee::before {
	left: 0;
	background: linear-gradient(to right, white, transparent);
}

.category-marquee::after {
	right: 0;
	background: linear-gradient(to left, white, transparent);
}

.category-marquee-content {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	width: fit-content;
	align-items: center;
	gap: 15px;
	will-change: transform;
}

.top-cards-categories.category-marquee .category-item {
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
	writing-mode: horizontal-tb !important;
	text-orientation: mixed !important;
	gap: 8px;
	padding: 8px 16px;
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	border-radius: 0; /* 无圆角 */
	background: white;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.top-cards-categories.category-marquee .category-item:hover {
	background: #0A0A0A; /* 黑底悬停 */
	color: white;
	transform: translate(-2px, -2px); /* 偏移效果 */
	box-shadow: 4px 4px 0 #FF3366; /* 红色阴影 */
}

/* 解决方案标签轮播 */
.solution-marquee-wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 100%;
}

.solution-marquee-content {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	width: fit-content;
	align-items: center;
	gap: 20px;
	will-change: transform;
	list-style: none;
	padding: 0;
	margin: 0;
}

.solution-marquee-wrapper .solution-menu-item {
	flex-shrink: 0 !important;
}

/* Hero区滑块容器 - 野兽派风格 */
.slider-container {
	position: relative;
	width: 320px;
	margin-bottom: 30px;
	background: #F5F5F3; /* 浅灰背景 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	border-radius: 0; /* 无圆角 */
	padding: 4px;
}

.slider-track {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.slider-item {
	flex: 0 0 25%;
	padding: 10px 0;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #5C5C5C; /* 灰色文字 */
	cursor: pointer;
	transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	z-index: 2;
}

.slider-item:hover {
	color: #FF3366; /* 红色悬停 */
}

.slider-item-active {
	color: white !important;
}

/* 滑块指示器 - 野兽派黑色风格 */
.slider-indicator {
	position: absolute;
	top: 4px;
	bottom: 4px;
	width: 25%;
	background: #0A0A0A; /* 纯黑色 */
	border-radius: 0; /* 方形 */
	transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	z-index: 1;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.15); /* 轻微固体阴影 */
}

/* 标题描述 - 野兽派衬线字体 */
.item-desc {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 20px;
	line-height: 1.2;
	font-family: var(--font-display); /* 使用衬线字体 */
}

/* 应用名称高亮 - 野兽派红色渐变 */
.app-name-highlight {
	background: linear-gradient(135deg, #FF3366 0%, #F59E0B 50%, #FF3366 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 2px 4px rgba(255, 51, 102, 0.3)); /* 红色阴影 */
}

.item-sub-desc {
	font-size: 16px;
	color: #5C5C5C; /* 灰色文字 */
	margin-bottom: 30px;
	line-height: 1.5;
}

/* 加入按钮 - 野兽派主按钮风格 */
.join-button {
	display: inline-block;
	padding: 12px 24px;
	background: #0A0A0A; /* 黑色背景 */
	color: white;
	border-radius: 0; /* 无圆角 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	box-shadow: 4px 4px 0 #FF3366; /* 红色偏移阴影 */
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); /* 切角效果 */
}

.join-button:hover {
	background: #FF3366; /* 红色悬停 */
	transform: translate(-2px, -2px); /* 偏移效果 */
	box-shadow: 6px 6px 0 #0A0A0A; /* 黑色阴影 */
	border-color: #FF3366;
}

/* 次要按钮(白色轮廓) - 野兽派次按钮风格 */
.join-button-outline {
	background: white !important;
	color: #0A0A0A !important;
	border: 2px solid #0A0A0A !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
}

.join-button-outline:hover {
	background: #0A0A0A !important;
	color: white !important;
	transform: translate(-2px, -2px) !important;
	box-shadow: 6px 6px 0 #FF3366 !important;
}

.home-first-right-scroll-test {
	overflow: hidden;
	width: 100%;
	margin-bottom: 16px;
	height: 180px;
}

.home-first-right-scroll-test ul {
	display: flex;
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
	will-change: transform;
}

/* 第二组右侧卡片 - 野兽派风格 */
.home-first-right-item {
	flex: 0 0 auto;
	width: 240px;
	background: white;
	border-radius: 0; /* 无圆角 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	padding: 20px;
	box-shadow: 4px 4px 0 #0A0A0A; /* 固体偏移阴影 */
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.home-first-right-item:hover {
	transform: translate(-4px, -4px); /* 偏移效果 */
	box-shadow: 8px 8px 0 #FF3366; /* 红色阴影 */
}

.home-first-right-item img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 0; /* 无圆角 */
	border: 2px solid #0A0A0A; /* 图片边框 */
	margin-bottom: 12px;
}

.home-first-right-item-text p {
	margin: 0;
	line-height: 1.4;
}

.home-first-right-item-text p:first-child {
	font-weight: 600;
	margin-bottom: 4px;
}

.home-first-right-item-text p:last-child {
	font-size: 14px;
	color: #5C5C5C; /* 灰色文字 */
}

.mt4 {
	margin-top: 16px;
}

/* Hero区响应式 */
@media (max-width: 768px) {
	.first-section {
		flex-direction: column;
		height: auto;
		padding: 40px 0;
	}

	.home-first-left {
		padding-right: 0;
		text-align: center;
		margin-bottom: 40px;
	}

	.item-desc {
		font-size: 32px;
	}

	.home-first-right-item {
		width: 180px;
	}

	.home-first-right-item img {
		height: 90px;
	}
}

/* ============================================
   第五部分：页脚样式（原Style #5）
   ============================================ */
.footer-new {
	background-color: #0A0A0A; /* 深黑背景 */
	padding: 50px 0 20px;
	border-top: 3px solid #FF3366; /* 红色顶部边框 */
	color: white; /* 白色文字 */
}

.footer-main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}

/* 左侧 Logo 区域 */
.footer-brand {
	flex-shrink: 0;
	margin-right: 60px;
}

.footer-logo-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-logo-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border: 2px solid rgba(255, 255, 255, 0.2); /* 白色半透明边框 */
}

.footer-brand-name {
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF; /* 白色文字 */
	font-family: var(--font-display); /* 衬线字体 */
}

.footer-brand-desc {
	font-size: 14px;
	color: #9CA3AF; /* 浅灰色文字 */
	line-height: 1.6;
	margin-top: 12px;
	max-width: 400px;
}

/* 右侧链接区域 */
.footer-links-wrap {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	gap: 80px;
}

.footer-links-col {
	min-width: 100px;
}

.footer-col-title {
	font-size: 15px;
	font-weight: 700;
	color: #FFFFFF; /* 白色标题 */
	margin-bottom: 20px;
	font-family: var(--font-display); /* 衬线字体 */
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links-list li {
	margin-bottom: 12px;
}

.footer-links-list a {
	color: #9CA3AF; /* 浅灰色链接 */
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	display: block;
	padding: 4px 0;
	border-left: 2px solid transparent; /* 左侧装饰条占位 */
	padding-left: 8px;
}

.footer-links-list a:hover {
	color: #FF3366; /* 红色悬停 */
	border-left-color: #FF3366; /* 显示红色左边框 */
	transform: translateX(4px); /* 轻微右移 */
}

/* 底部版权信息 */
.footer-bottom {
	border-top: 2px solid rgba(255, 255, 255, 0.15); /* 半透明白色分隔线 */
	padding-top: 20px;
	text-align: center;
}

.footer-copyright {
	color: #9CA3AF; /* 浅灰色文字 */
	font-size: 13px;
	margin: 0;
}

.footer-copyright a {
	color: #9CA3AF; /* 浅灰色链接 */
	text-decoration: none;
	margin: 0 5px;
	transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.footer-copyright a:hover {
	color: #FF3366; /* 红色悬停 */
}

/* 页脚响应式适配 */
@media (max-width: 768px) {
	.footer-main {
		flex-direction: column;
		gap: 30px;
	}

	.footer-brand {
		margin-right: 0;
	}

	.footer-links-wrap {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 30px;
	}

	.footer-links-col {
		min-width: calc(50% - 15px);
	}
}

/* ============================================
   第六部分：公众号二维码弹窗（原Style #6）
   ============================================ */
.wechat-qr-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 10, 10, 0.7); /* 深色半透明遮罩 */
	z-index: 99999;
	align-items: center;
	justify-content: center;
}

.wechat-qr-modal.active {
	display: flex;
}

.wechat-qr-modal-content {
	background: #FFFFFF; /* 白色背景 */
	border: 3px solid #0A0A0A; /* 粗黑边框 */
	border-radius: 0; /* 无圆角 */
	padding: 30px;
	width: 300px;
	text-align: center;
	box-shadow: 12px 12px 0 #0A0A0A; /* 大型固体偏移阴影 */
	position: relative;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); /* 切角效果 */
}

.wechat-qr-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	color: #5C5C5C; /* 灰色关闭按钮 */
	cursor: pointer;
	transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.wechat-qr-modal-close:hover {
	color: #FF3366; /* 红色悬停 */
}

.wechat-qr-modal-title {
	font-size: 18px;
	font-weight: 700;
	color: #0A0A0A; /* 黑色标题 */
	margin-bottom: 20px;
	font-family: var(--font-display); /* 衬线字体 */
}

.wechat-qr-modal-qr {
	margin-bottom: 20px;
	border: 2px solid #0A0A0A; /* 二维码边框 */
}

.wechat-qr-modal-text {
	font-size: 14px;
	color: #5C5C5C; /* 灰色说明文字 */
}

/* ============================================
   第七部分：悬浮窗联系方式（原Style #7）
   ============================================ */
.floating-contact {
	position: fixed;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* 确保所有链接都没有下划线 */
.floating-contact a {
	text-decoration: none !important;
}

.floating-contact a:hover {
	text-decoration: none !important;
}

.floating-contact a:visited {
	text-decoration: none !important;
}

.floating-contact a:active {
	text-decoration: none !important;
}

.fx-layer {
	filter: none;
}

/* 悬浮按钮 - 野兽派方框风格 */
.box {
	z-index: 500;
	position: relative;
	width: 100px;
	height: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 0; /* 方形 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	background: #FFFFFF; /* 白色背景 */
	box-shadow: 4px 4px 0 #0A0A0A; /* 固体偏移阴影 */
}

.box:hover {
	transform: translate(-3px, -3px); /* 偏移效果 */
	box-shadow: 6px 6px 0 #FF3366; /* 红色阴影 */
	background: #FAFAF8; /* 浅灰悬停背景 */
	border-color: #FF3366; /* 红色边框 */
}

.box i {
	font-size: 24px;
	margin-bottom: 8px;
	color: #FF3366; /* 红色图标 */
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.box span {
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
	color: #0A0A0A; /* 黑色文字 */
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.box:hover i {
	transform: scale(1.05) rotate(-5deg); /* 图标旋转缩放 */
}

.box:hover span {
	color: #FF3366; /* 红色悬停文字 */
}

.box:before,
.box:after {
	display: none;
}

/* 悬浮窗响应式 */
@media (max-width: 768px) {
	.floating-contact {
		right: 15px;
		gap: 15px;
	}

	.box {
		--w: 70px;
		--h: 70px;
	}

	.box i {
		font-size: 16px;
		margin-bottom: 6px;
	}

	.box span {
		font-size: 11px;
	}
}

/* ============================================
   第八部分：鼠标光标、PWA弹窗、组件样式（原Style #8）
   ============================================ */

/* 鼠标光标特效 - 野兽派风格 */
.cursor-wrapper {
	position: fixed;
	pointer-events: none;
	z-index: 99999;
}

.cursor-dot {
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--color);
	border-radius: 0; /* 方形光标点 */
	transform: translate(-50%, -50%) rotate(45deg); /* 菱形旋转 */
	transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.cursor-ring {
	position: absolute;
	width: var(--width);
	height: var(--height);
	transform: translate(-50%, -50%);
	transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cursor-ring::before,
.cursor-ring::after,
.cursor-ring .corner-tl,
.cursor-ring .corner-tr {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	border-color: var(--color);
	border-style: solid;
	transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.cursor-ring::before {
	top: 0;
	left: 0;
	border-width: 3px 0 0 3px;
	border-radius: 0; /* 直角 */
}

.cursor-ring::after {
	top: 0;
	right: 0;
	border-width: 3px 3px 0 0;
	border-radius: 0; /* 直角 */
}

.cursor-ring .corner-tl {
	bottom: 0;
	left: 0;
	border-width: 0 0 3px 3px;
	border-radius: 0; /* 直角 */
}

.cursor-ring .corner-tr {
	bottom: 0;
	right: 0;
	border-width: 0 3px 3px 0;
	border-radius: 0; /* 直角 */
}

body {
	cursor: none;
}

._target {
	cursor: none;
}

/* PWA安装弹窗 - 野兽派风格 */
.pwa-install-modal {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 10, 10, 0); /* 初始透明 */
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-backdrop-filter 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pwa-install-modal.active {
	opacity: 1;
	visibility: visible;
	background-color: rgba(250, 250, 248, 0.85); /* 浅色遮罩 */
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.pwa-install-modal-content {
	background: #FFFFFF; /* 白色背景 */
	border: 3px solid #0A0A0A; /* 粗黑边框 */
	border-radius: 0; /* 无圆角 */
	padding: 40px;
	width: 420px;
	max-width: 90%;
	text-align: center;
	box-shadow: 12px 12px 0 #0A0A0A; /* 大型固体偏移阴影 */
	position: relative;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); /* 切角效果 */
}

.pwa-install-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	color: #5C5C5C; /* 灰色关闭按钮 */
	cursor: pointer;
	transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
}

.pwa-install-modal-close:hover {
	color: #FF3366; /* 红色悬停 */
}

.pwa-install-modal-title {
	font-size: 20px;
	font-weight: 700;
	color: #0A0A0A; /* 黑色标题 */
	margin-bottom: 15px;
	font-family: var(--font-display); /* 衬线字体 */
}

.pwa-install-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* PWA安装按钮 - 野兽派主按钮风格 */
.pwa-install-btn {
	padding: 14px 28px;
	background: #0A0A0A; /* 黑色背景 */
	color: white;
	border-radius: 0; /* 无圆角 */
	border: 2px solid #0A0A0A; /* 粗黑边框 */
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); /* 弹性过渡 */
	box-shadow: 4px 4px 0 #FF3366; /* 红色偏移阴影 */
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); /* 切角效果 */
}

.pwa-install-btn:hover {
	background: #FF3366; /* 红色悬停 */
	transform: translate(-2px, -2px); /* 偏移效果 */
	box-shadow: 6px 6px 0 #0A0A0A; /* 黑色阴影 */
	border-color: #FF3366;
}

/* 取消按钮 - 野兽派次按钮风格 */
.pwa-install-btn-cancel {
	background: white !important;
	color: #0A0A0A !important;
	border-color: #0A0A0A !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
}

.pwa-install-btn-cancel:hover {
	background: #0A0A0A !important;
	color: white !important;
	transform: translate(-2px, -2px) !important;
	box-shadow: 6px 6px 0 #FF3366 !important;
}

/* ============================================
   野兽派风格组件样式补充
   ============================================ */

/* icon-card 样式（在线客服等4个图标卡片） */
.icon-cards-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	padding: 40px 0;
	list-style: none;
	margin: 0;
}

.icon-card {
	background: #FFFFFF;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
	position: relative;
}

.icon-card:hover {
	transform: translate(-4px, -4px) !important;
	box-shadow: 8px 8px 0 #FF3366 !important;
	border-color: #FF3366 !important;
}

.icon-card img.home_notice_img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
}

.icon-card .second_content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.icon-card .second_content span:first-child {
	font-family: var(--font-display) !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	color: #0A0A0A !important;
}

.icon-card .second_content span:last-child {
	font-family: var(--font-primary) !important;
	font-size: 13px !important;
	color: #5C5C5C !important;
	font-weight: 500 !important;
}

/* solution-card 样式（解决方案4个卡片） */
.solution-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 40px 0;
}

.solution-card {
	background: #FFFFFF;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	padding: 28px;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
	position: relative;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%) !important;
}

.solution-card:hover {
	transform: translate(-6px, -6px) !important;
	box-shadow: 10px 10px 0 #FF3366 !important;
	border-color: #FF3366 !important;
}

.solution-card h4 {
	font-family: var(--font-display) !important;
	font-weight: 800 !important;
	font-size: 20px !important;
	color: #0A0A0A !important;
	margin-bottom: 12px !important;
	letter-spacing: -0.02em !important;
}

.solution-card p {
	font-family: var(--font-primary) !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
	color: #5C5C5C !important;
	margin-bottom: 16px !important;
}

.third-bottom-section-label {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.third-bottom-section-label span {
	font-family: 'Space Mono', "SF Mono", Consolas, monospace !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	padding: 6px 12px !important;
	background: #F5F5F3 !important;
	border: 1px solid rgba(10, 10, 10, 0.15) !important;
	color: #0A0A0A !important;
	border-radius: 0 !important;
}

.solution-card .logo_img {
	max-width: 80px;
	height: auto;
	opacity: 0.15;
	position: absolute;
	bottom: 16px;
	right: 16px;
}

/* capital-card 样式（资金安全保障卡片） */
.fourth-section-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	list-style: none;
	padding: 0;
	margin: 40px 0;
}

.capital-card {
	background: #FFFFFF;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	padding: 32px;
	display: flex;
	align-items: center;
	gap: 24px;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.12) !important;
	position: relative;
	overflow: hidden;
}

.capital-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #FF3366;
	transition: width 0.3s ease;
}

.capital-card:hover::before {
	width: 8px;
}

.capital-card:hover {
	transform: translate(-4px, -4px) !important;
	box-shadow: 10px 10px 0 #FF3366 !important;
	border-color: #FF3366 !important;
}

.capital_content {
	flex: 1;
}

.capital_content h3 {
	font-family: var(--font-display) !important;
	font-weight: 800 !important;
	font-size: 22px !important;
	color: #0A0A0A !important;
	margin-bottom: 12px !important;
	letter-spacing: -0.02em !important;
}

.capital_content .font14 {
	font-family: var(--font-primary) !important;
	font-size: 14px !important;
	line-height: 1.7 !important;
	color: #5C5C5C !important;
}

.fourth-bottom-section-label {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.fourth-bottom-section-label span {
	font-family: 'Space Mono', "SF Mono", Consolas, monospace !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	padding: 6px 14px !important;
	background: #0A0A0A !important;
	color: white !important;
	border-radius: 0 !important;
}

.capital-card img.home_capital_img {
	max-width: 180px;
	height: auto;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
}

/* main-solution 区域 - 移除背景图片，改为野兽派浅色背景 */
.main-solution {
	background: #FAFAF8 !important; /* 浅灰米色背景 */
	background-image: none !important; /* 移除所有背景图片 */
	position: relative;
	padding: 80px 0 !important;
}

/* 确保没有伪元素背景 */
.main-solution::before,
.main-solution::after {
	display: none !important;
}

/* 标题和副标题改为深色文字（原为 text-white） */
.main-solution .main-title,
.main-solution h2.main-title,
.main-solution .industry-subtitle,
.main-solution h5.industry-subtitle {
	color: #0A0A0A !important; /* 深黑文字 */
}

/* industry-card 样式（行业场景6宫格） */
.fifth-section-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 48px 0;
}

@media (max-width: 992px) {
	.fifth-section-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.fifth-section-content {
		grid-template-columns: 1fr;
	}
}

.industry-card {
	background: #FFFFFF;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	padding: 28px 24px;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
	position: relative;
}

.industry-card:hover {
	transform: translateY(-6px) !important;
	box-shadow: 8px 8px 0 #FF3366 !important;
	border-color: #FF3366 !important;
}

.industry-card img.fifth_img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin: 0 auto 16px;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	padding: 12px;
	background: #F5F5F3;
}

.industry-card .fifth_title {
	font-family: var(--font-display) !important;
	font-weight: 800 !important;
	font-size: 18px !important;
	color: #0A0A0A !important;
	margin-bottom: 8px !important;
	letter-spacing: -0.01em !important;
}

.industry-card .fifth_label {
	font-family: 'Space Mono', "SF Mono", Consolas, monospace !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: #FF3366 !important;
	background: rgba(255, 51, 102, 0.08) !important;
	padding: 6px 12px !important;
	display: inline-block;
	margin-bottom: 12px;
	border: 1px solid #FF3366 !important;
	border-radius: 0 !important;
}

.industry-card .font14.text_center {
	font-family: var(--font-primary) !important;
	font-size: 13px !important;
	line-height: 1.6 !important;
	color: #5C5C5C !important;
}

/* quick-guide-card 样式（快速上手指南4步骤） */
.quick-guide-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 48px 0;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.quick-guide-grid {
		flex-direction: column;
	}

	.quick-guide-arrow {
		transform: rotate(90deg);
	}
}

.quick-guide-card {
	flex: 1;
	min-width: 200px;
	max-width: 240px;
}

.quick-guide-card-inner {
	background: #FFFFFF;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	padding: 28px 24px;
	text-align: center;
	position: relative;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
}

.quick-guide-card:hover .quick-guide-card-inner {
	transform: translate(-4px, -4px) !important;
	box-shadow: 8px 8px 0 #FF3366 !important;
	border-color: #FF3366 !important;
}

.quick-guide-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0A0A0A !important;
	border-radius: 0 !important;
	border: 2px solid #0A0A0A !important;
}

.quick-guide-icon i {
	font-size: 28px;
	color: #FF3366 !important;
}

.quick-guide-card-inner h3 {
	font-family: var(--font-display) !important;
	font-weight: 800 !important;
	font-size: 18px !important;
	color: #0A0A0A !important;
	margin-bottom: 10px !important;
	letter-spacing: -0.01em !important;
}

.quick-guide-card-inner p {
	font-family: var(--font-primary) !important;
	font-size: 13px !important;
	line-height: 1.6 !important;
	color: #5C5C5C !important;
	margin-bottom: 0 !important;
}

.quick-guide-step-num {
	position: absolute;
	top: 12px;
	right: 12px;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 32px;
	color: rgba(10, 10, 10, 0.06);
	line-height: 1;
}

.quick-guide-arrow {
	color: #0A0A0A;
	font-size: 24px;
	flex-shrink: 0;
}

.quick-guide-cta {
	text-align: center;
	margin-top: 40px;
	padding: 32px;
	background: #0A0A0A !important;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
}

.quick-guide-cta p {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	color: white !important;
	margin-bottom: 20px;
}

.quick-guide-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: #FF3366 !important;
	color: white !important;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid #FF3366 !important;
	border-radius: 0 !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 white !important;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%) !important;
}

.quick-guide-btn:hover {
	background: white !important;
	color: #FF3366 !important;
	transform: translate(-2px, -2px) !important;
	box-shadow: 6px 6px 0 #FF3366 !important;
}

/* team-card 样式补充（团队成员卡片） */
.team-card-inner {
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
}

.team-card-front-info {
	background: #FAFAF8 !important;
	border-top: 2px solid #0A0A0A !important;
}

.team-member-name {
	font-family: var(--font-display) !important;
	font-weight: 800 !important;
	font-size: 20px !important;
	color: #0A0A0A !important;
}

.team-member-title {
	font-family: 'Space Mono', "SF Mono", Consolas, monospace !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	color: #FF3366 !important;
}

/* 资讯公告区块 - 野兽派风格完整版 */
.main-news-body {
	margin-top: 32px;
}

/* 区块标题 */
.main-news-body .main-header h2 {
	font-family: var(--font-display); /* 衬线字体 */
	font-weight: 900;
	font-size: 28px;
	color: #0A0A0A;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}

.main-news-body .main-header h5 {
	font-family: 'Space Mono', "SF Mono", Consolas, monospace; /* 等宽字体 */
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9CA3AF;
}

/* 资讯卡片网格布局 - 使用独立类名避免与Bootstrap .row冲突 */
.news-grid-wrapper {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important; /* 4列等宽 */
	gap: 20px !important;
	margin: 0 !important;
	padding: 0 !important;
}

@media (max-width: 992px) {
	.news-grid-wrapper {
		grid-template-columns: repeat(2, 1fr) !important; /* 平板2列 */
	}
}

@media (max-width: 576px) {
	.news-grid-wrapper {
		grid-template-columns: 1fr !important; /* 手机1列 */
	}
}

/* 单个资讯卡片 - 增强版 */
.other-system-item {
	background: #FFFFFF !important; /* 白色背景 */
	border: 2px solid #0A0A0A !important; /* 粗黑边框 */
	border-radius: 0 !important; /* 无圆角 */
	padding: 24px !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important; /* 固体阴影 */
	position: relative;
	overflow: hidden;
	height: 100%;
}

/* 左侧红色装饰条（悬停时展开）*/
.other-system-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #FF3366;
	transition: width 0.3s ease;
	z-index: 1;
}

.other-system-item:hover::before {
	width: 8px; /* 悬停展开 */
}

.other-system-item:hover {
	transform: translate(-4px, -4px) !important; /* 悬停偏移 */
	box-shadow: 8px 8px 0 #FF3366 !important; /* 红色增强阴影 */
	border-color: #FF3366 !important; /* 边框变红 */
}

/* 卡片标题 */
.other-system-item h3 {
	font-family: var(--font-display) !important; /* 衬线字体 */
	font-weight: 800 !important;
	font-size: 18px !important;
	color: #0A0A0A !important;
	margin-bottom: 20px !important;
	padding-bottom: 12px !important;
	border-bottom: 2px solid #0A0A0A !important; /* 标题分隔线 */
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	position: relative;
	z-index: 2;
}

/* 图标样式 - 使用Bootstrap Icons */
.other-system-item h3 i,
.other-system-item h3 .news-icon,
.other-system-item h3 .icon-system-item {
	font-size: 24px !important;
	color: #FF3366 !important; /* 红色图标 */
}

.main-news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-news-list li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(10, 10, 10, 0.08);
	transition: all 0.2s ease;
}

.main-news-list li:last-child {
	border-bottom: none;
}

.main-news-list li:hover {
	padding-left: 8px;
}

.main-news-list li a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.main-news-list li a:hover h5 {
	color: #FF3366 !important;
}

.main-news-list li h5 {
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 500;
	color: #0A0A0A;
	margin-bottom: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.main-news-list li time {
	font-family: 'Space Mono', "SF Mono", Consolas, monospace;
	font-size: 11px;
	color: #9CA3AF;
	font-weight: 500;
}

.btn-primary.btn-block {
	background: #0A0A0A !important;
	color: white !important;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	padding: 12px !important;
	margin-top: 24px !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
	text-align: center !important;
}

.btn-primary.btn-block:hover {
	background: #FF3366 !important;
	border-color: #FF3366 !important;
	transform: translate(-2px, -2px) !important;
	box-shadow: 6px 6px 0 #0A0A0A !important;
}

/* 导航链接悬停效果补充 */
.navbar-nav .nav-link {
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 15px;
	color: #0A0A0A !important;
	padding: 16px 20px !important;
	transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
	position: relative;
	text-decoration: none !important;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: #FF3366;
	transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-nav .nav-link:hover {
	color: #FF3366 !important;
}

.navbar-nav .nav-link:hover::after {
	width: 60%;
}

.dropdown-menu {
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.15) !important;
	padding: 8px 0 !important;
	margin-top: 8px !important;
	background: #FFFFFF !important;
}

.dropdown-item {
	padding: 10px 20px !important;
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 14px;
	color: #0A0A0A !important;
	transition: all 0.2s ease !important;
	border-left: 3px solid transparent;
}

.dropdown-item:hover {
	background: #F5F5F3 !important;
	color: #FF3366 !important;
	border-left-color: #FF3366 !important;
}

/* ============================================
   第七部分：补充未改造区域的野兽派样式覆盖
   ============================================ */

/* --- CTA Banner 横幅区域 --- */
.cta-banner-section {
	background: #0A0A0A !important; /* 纯黑背景 */
	border-top: 3px solid #FF3366 !important; /* 顶部红色装饰线 */
	border-bottom: 3px solid #FF3366 !important; /* 底部红色装饰线 */
	padding: 60px 0 !important;
	margin: 0 !important;
}

.cta-banner-content {
	text-align: center;
	margin-bottom: 40px;
}

.cta-banner-text {
	font-family: var(--font-display) !important;
	font-size: 28px !important;
	font-weight: 800 !important;
	color: #FFFFFF !important;
	letter-spacing: -0.01em !important;
	margin-bottom: 24px !important;
	line-height: 1.4 !important;
}

.cta-banner-btn {
	display: inline-block !important;
	padding: 16px 48px !important;
	background: #FF3366 !important;
	color: white !important;
	font-family: var(--font-primary) !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	border: 2px solid #FFFFFF !important;
	border-radius: 0 !important;
	text-decoration: none !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.2) !important;
}

.cta-banner-btn:hover {
	background: #FFFFFF !important;
	color: #0A0A0A !important;
	transform: translate(-4px, -4px) !important;
	box-shadow: 10px 10px 0 #FF3366 !important;
}

/* CTA 步骤条 */
.cta-steps-bar {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0 !important;
	max-width: 800px !important;
	margin: 0 auto !important;
	padding: 20px !important;
	background: rgba(255, 255, 255, 0.05) !important;
	border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.cta-step-item {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 12px 24px !important;
	color: #FFFFFF !important;
	font-family: var(--font-primary) !important;
	font-size: 15px !important;
	font-weight: 600 !important;
}

.cta-step-icon {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	height: 36px !important;
	background: #FF3366 !important;
	color: white !important;
	font-weight: 800 !important;
	font-size: 16px !important;
	border: 2px solid #FFFFFF !important;
	border-radius: 0 !important;
}

.cta-step-line {
	flex: 0 0 40px !important;
	height: 3px !important;
	background: rgba(255, 255, 255, 0.3) !important;
}

/* --- 文字跑马灯区域 --- */
.text-marquee-section {
	background: #F5F5F3 !important; /* 浅灰背景 */
	border-top: 2px solid #0A0A0A !important;
	border-bottom: 2px solid #0A0A0A !important;
	padding: 16px 0 !important;
	overflow: hidden !important;
}

.text-marquee-container {
	max-width: 100% !important;
	overflow: hidden !important;
}

.text-marquee-wrapper {
	display: flex !important;
	width: max-content !important;
	animation: marquee-scroll 30s linear infinite !important;
}

@keyframes marquee-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.text-marquee-item {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 0 32px !important;
	white-space: nowrap !important;
}

.marquee-icon {
	color: #FF3366 !important;
	font-size: 14px !important;
}

.marquee-text {
	font-family: 'Space Mono', "SF Mono", Consolas, monospace !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	color: #0A0A0A !important;
}

/* --- main-header 区块标题通用样式 --- */
.main-header {
	text-align: center !important;
	margin-bottom: 48px !important;
	padding: 0 !important;
}

.main-header .main-title {
	font-family: var(--font-display) !important;
	font-weight: 900 !important;
	font-size: 36px !important;
	color: #0A0A0A !important;
	letter-spacing: -0.02em !important;
	margin-bottom: 12px !important;
	line-height: 1.2 !important;
}

.main-header p,
.main-header .text-black-50,
.main-header .text-muted {
	font-family: var(--font-primary) !important;
	font-size: 16px !important;
	color: #5C5C5C !important;
	max-width: 600px !important;
	margin: 0 auto !important;
	line-height: 1.6 !important;
}

/* text-center 辅助类 */
.text-center {
	text-align: center !important;
}

/* --- main-solution industry-header 区域头部 --- */
.industry-header {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 20px !important;
	margin-bottom: 16px !important;
}

.fifth_logo {
	width: 48px !important;
	height: 48px !important;
	object-fit: contain !important;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	padding: 8px !important;
	background: #FFFFFF !important;
}

/* --- space 通用间距类 --- */
.space {
	padding: 80px 0 !important;
}

.bg-white {
	background: #FFFFFF !important;
}

/* --- 通用按钮样式增强 --- */
.btn {
	border-radius: 0 !important;
	border-width: 2px !important;
	font-weight: 600 !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.btn-primary {
	background: #0A0A0A !important;
	border-color: #0A0A0A !important;
	color: #FFFFFF !important;
}

.btn-primary:hover {
	background: #FF3366 !important;
	border-color: #FF3366 !important;
	transform: translate(-2px, -2px) !important;
	box-shadow: 4px 4px 0 #0A0A0A !important;
}

/* --- 链接通用样式 --- */
a {
	transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

a:hover {
	color: #FF3366 !important;
}

/* --- 列表通用样式重置 --- */
ul, ol {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* --- 图片通用样式 --- */
img {
	border-radius: 0 !important; /* 全局无圆角 */
}

/* --- 滚动条美化（野兽派风格）--- */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: #F5F5F3;
	border-left: 2px solid #0A0A0A;
}

::-webkit-scrollbar-thumb {
	background: #0A0A0A;
	border: 2px solid #0A0A0A;
}

::-webkit-scrollbar-thumb:hover {
	background: #FF3366;
}

/* ========================================
   资讯公告区块 - 强化版（确保生效）
   ======================================== */

/* 强制网格布局 */
.news-grid-wrapper {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 24px !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	float: none !important;
	/* 重置Bootstrap .row 的默认行为 */
	margin-right: 0 !important;
	margin-left: 0 !important;
}

/* 重置 col-sm-3 在grid中的行为 */
.news-grid-wrapper > [class*="col-"] {
	width: 100% !important;
	max-width: none !important;
	flex: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	position: relative !important;
}

/* 卡片基础样式 */
.other-system-item {
	background: #FFFFFF !important;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	padding: 28px 24px !important;
	height: 100% !important;
	min-height: 350px !important;
	display: flex !important;
	flex-direction: column !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
	position: relative !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
}

/* 左侧红色装饰条 */
.other-system-item::before {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	width: 4px !important;
	background: #FF3366 !important;
	transition: width 0.3s ease !important;
	z-index: 1 !important;
}

.other-system-item:hover::before {
	width: 8px !important;
}

.other-system-item:hover {
	transform: translate(-4px, -4px) !important;
	box-shadow: 8px 8px 0 #FF3366 !important;
	border-color: #FF3366 !important;
}

/* 标题样式 */
.other-system-item h3 {
	font-family: var(--font-display), Georgia, serif !important;
	font-weight: 800 !important;
	font-size: 18px !important;
	color: #0A0A0A !important;
	margin-bottom: 20px !important;
	padding-bottom: 16px !important;
	border-bottom: 2px solid #0A0A0A !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	flex-shrink: 0 !important;
	position: relative !important;
	z-index: 2 !important;
}

/* 图标 */
.other-system-item h3 i,
.other-system-item .news-icon {
	font-size: 26px !important;
	color: #FF3366 !important;
	flex-shrink: 0 !important;
}

/* 新闻列表 */
.main-news-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	flex-grow: 1 !important;
}

.main-news-list li {
	padding: 11px 0 !important;
	border-bottom: 1px solid rgba(10, 10, 10, 0.08) !important;
	transition: all 0.2s ease !important;
}

.main-news-list li:last-child {
	border-bottom: none !important;
}

.main-news-list li:hover {
	padding-left: 8px !important;
}

.main-news-list li a {
	text-decoration: none !important;
	color: inherit !important;
	display: block !important;
}

.main-news-list li a:hover h5 {
	color: #FF3366 !important;
}

.main-news-list li h5 {
	font-family: var(--font-primary), sans-serif !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #0A0A0A !important;
	margin-bottom: 3px !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
	transition: color 0.2s ease !important;
}

.main-news-list li time {
	font-family: 'Space Mono', 'Courier New', monospace !important;
	font-size: 10px !important;
	color: #9CA3AF !important;
	font-weight: 500 !important;
}

/* 查看全部按钮 */
.btn-primary.btn-block {
	background: #0A0A0A !important;
	color: white !important;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	padding: 14px 20px !important;
	margin-top: auto !important; /* 推到底部 */
	display: block !important;
	text-align: center !important;
	text-decoration: none !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.12) !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	flex-shrink: 0 !important;
}

.btn-primary.btn-block:hover {
	background: #FF3366 !important;
	border-color: #FF3366 !important;
	transform: translate(-2px, -2px) !important;
	box-shadow: 6px 6px 0 #0A0A0A !important;
}

/* 响应式 */
@media (max-width: 992px) {
	.news-grid-wrapper {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 576px) {
	.news-grid-wrapper {
		grid-template-columns: 1fr !important;
	}
}

/* ========================================
   第八部分：补充未改造区域的完整野兽派样式
   ======================================== */

/* --- 团队成员卡片完整覆盖 --- */
.team-section {
	background: #FAFAF8 !important;
	position: relative !important;
}

.team-section::before,
.team-section::after {
	display: none !important;
}

.team-card {
	perspective: 1000px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.team-card-inner {
	position: relative !important;
	width: 100% !important;
	height: 380px !important;
	border-radius: 0 !important;
	border: 2px solid #0A0A0A !important;
	box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.12) !important;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
	transform-style: preserve-3d !important;
	background: transparent !important;
}

.team-card:hover .team-card-inner {
	transform: rotateY(180deg) !important;
	box-shadow: 8px 8px 0 #FF3366 !important;
	border-color: #FF3366 !important;
}

.team-card-front,
.team-card-back {
	position: absolute !important;
	width: 100% !important;
	height: 100% !important;
	backface-visibility: hidden !important;
	border-radius: 0 !important;
	overflow: hidden !important;
}

.team-card-front {
	background: #FFFFFF !important;
	z-index: 2 !important;
}

.team-card-front .team-card-image {
	width: 100% !important;
	height: 240px !important;
	overflow: hidden !important;
	border-bottom: 2px solid #0A0A0A !important;
}

.team-card-front .team_member_img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.team-card:hover .team_member_img {
	transform: scale(1.05) !important;
}

.team-card-front-info {
	padding: 20px !important;
	background: #FAFAF8 !important;
	text-align: center !important;
	border-top: 2px solid #0A0A0A !important;
}

.team-member-name {
	font-family: var(--font-display), Georgia, serif !important;
	font-weight: 800 !important;
	font-size: 20px !important;
	color: #0A0A0A !important;
	margin-bottom: 6px !important;
}

.team-member-title {
	font-family: 'Space Mono', "SF Mono", Consolas, monospace !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	color: #FF3366 !important;
}

.team-card-back {
	background: #0A0A0A !important;
	transform: rotateY(180deg) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 30px !important;
	box-sizing: border-box !important;
}

.team-card-back-content {
	text-align: center !important;
	color: white !important;
}

.team-card-back-content .team-member-name {
	font-size: 24px !important;
	color: #FFFFFF !important;
	margin-bottom: 12px !important;
}

.team-card-back-content .team-member-title {
	font-size: 13px !important;
	color: #FF3366 !important;
	margin-bottom: 16px !important;
}

.team-card-back-content .team-member-desc {
	font-family: var(--font-primary), sans-serif !important;
	font-size: 14px !important;
	line-height: 1.7 !important;
	color: #E0E0E0 !important;
	margin-bottom: 20px !important;
}

.team-card-back-content .team-member-social {
	display: flex !important;
	gap: 12px !important;
	justify-content: center !important;
}

.team-card-back-content .team-member-social .social-icon {
	width: 40px !important;
	height: 40px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(255, 255, 255, 0.1) !important;
	border: 2px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 0 !important;
	color: white !important;
	font-size: 16px !important;
	text-decoration: none !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.team-card-back-content .team-member-social .social-icon:hover {
	background: #FF3366 !important;
	border-color: #FF3366 !important;
	transform: translate(-2px, -2px) !important;
	box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.3) !important;
}

/* --- 合作伙伴区域完整覆盖 --- */
.main-partner {
	background: #FFFFFF !important;
	position: relative !important;
}

.main-partner::before,
.main-partner::after {
	display: none !important;
}

.partner-content {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 32px !important;
}

.partner-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
	gap: 20px !important;
	width: 100% !important;
	max-width: 900px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.partner-item {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 20px !important;
	background: #FFFFFF !important;
	border: 2px solid #0A0A0A !important;
	border-radius: 0 !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
	box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.08) !important;
	text-decoration: none !important;
	min-height: 80px !important;
}

.partner-item:hover {
	transform: translate(-4px, -4px) !important;
	box-shadow: 8px 8px 0 #FF3366 !important;
	border-color: #FF3366 !important;
	background: #FAFAF8 !important;
}

.partner-item img {
	max-width: 120px !important;
	max-height: 50px !important;
	object-fit: contain !important;
	filter: grayscale(100%) !important;
	transition: filter 0.3s ease !important;
}

.partner-item:hover img {
	filter: grayscale(0%) !important;
}

/* --- Hero 区域完整覆盖 --- */
.home-first-section,
.first-section {
	background: #FFFFFF !important;
	position: relative !important;
}

.home-first-section::before,
.first-section::before,
.home-first-section::after,
.first-section::after {
	display: none !important;
}

.home-first-left {
	padding-right: 40px !important;
}

.item-desc-wrapper {
	margin-bottom: 32px !important;
}

.item-desc {
	font-family: var(--font-display), Georgia, serif !important;
	font-size: 42px !important;
	font-weight: 900 !important;
	color: #0A0A0A !important;
	line-height: 1.2 !important;
	margin-bottom: 16px !important;
	letter-spacing: -0.02em !important;
}

.item-sub-desc {
	font-family: var(--font-primary), sans-serif !important;
	font-size: 16px !important;
	line-height: 1.7 !important;
	color: #5C5C5C !important;
	margin-bottom: 32px !important;
	max-width: 500px !important;
}

/* --- 顶部卡片区域 --- */
.top-cards-section {
	background: #FAFAF8 !important;
	padding: 40px 0 !important;
	border-bottom: 2px solid #0A0A0A !important;
}

.top-cards-content {
	display: flex !important;
	align-items: center !important;
	gap: 40px !important;
}

.top-cards-left {
	flex: 1 !important;
}

/* --- 文字跑马灯区域增强 --- */
.text-marquee-section {
	background: #0A0A0A !important;
	border-top: 3px solid #FF3366 !important;
	border-bottom: 3px solid #FF3366 !important;
	padding: 18px 0 !important;
}

.marquee-text {
	color: #FFFFFF !important;
}

.marquee-icon {
	color: #FF3366 !important;
}

/* --- 视频展示区增强 --- */
.quick-guide-section {
	background: #FAFAF8 !important;
	position: relative !important;
}

.quick-guide-section::before,
.quick-guide-section::after {
	display: none !important;
}

.video-card-large {
	border-radius: 0 !important;
	border: 3px solid #0A0A0A !important;
	box-shadow: 12px 12px 0 #0A0A0A !important;
}

/* --- 资金安全区域增强 --- */
.fourth-section {
	background: #FFFFFF !important;
	position: relative !important;
}

.fourth-section::before,
.fourth-section::after {
	display: none !important;
}

/* --- 行业场景区域增强 --- */
.fifth-section,
.main-solution {
	background: #FAFAF8 !important;
	position: relative !important;
}

.fifth-section::before,
.fifth-section::after,
.main-solution::before,
.main-solution::after {
	display: none !important;
}

/* --- 通用响应式补充 --- */
@media (max-width: 768px) {
	.item-desc {
		font-size: 28px !important;
	}

	.item-sub-desc {
		font-size: 14px !important;
	}

	.team-card-inner {
		height: 340px !important;
	}

	.partner-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 12px !important;
	}

	.partner-item {
		padding: 14px !important;
		min-height: 60px !important;
	}

	.partner-item img {
		max-width: 80px !important;
		max-height: 35px !important;
	}
}

@media (max-width: 480px) {
	.item-desc {
		font-size: 24px !important;
	}

	.partner-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.team-card-inner {
		height: 320px !important;
	}
}
