/* 神火新材官网自定义样式 - 清新活力风主题 */

/* ========== 基础变量 ========== */
:root {
	/* 清新活力风配色 */
	--primary-color: #2E86AB;
	/* 湖蓝 */
	--secondary-color: #F18F01;
	/* 活力橙 */
	--accent-color: #5AABCA;
	/* 浅湖蓝 */
	--dark-bg: #2C3E50;
	/* 深灰蓝 */
	--light-bg: #FAFBFC;
	/* 浅白灰 */
	--text-dark: #2C3E50;
	/* 深灰蓝文字 */
	--text-light: #6B7C8F;
	/* 灰蓝文字 */
	--text-white: #FFFFFF;
	/* 白色文字 */
	--nav-bg: #FFFFFF;
	/* 导航栏白色背景 */
	--nav-text: #2C3E50;
	/* 导航栏文字深色 */

	/* 渐变色 */
	--gradient-primary: linear-gradient(135deg, #2E86AB 0%, #5AABCA 100%);
	--gradient-gold: linear-gradient(135deg, #F18F01 0%, #F5A623 100%);
	--gradient-dark: linear-gradient(180deg, #2C3E50 0%, #3D5166 100%);

	/* 阴影 */
	--shadow-soft: 0 10px 40px rgba(46, 134, 171, 0.08);
	--shadow-strong: 0 20px 60px rgba(46, 134, 171, 0.12);

	/* 基础样式 */
	--border-radius: 16px;
	--transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 基础样式重置 ========== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: var(--text-dark);
	line-height: 1.7;
	overflow-x: hidden;
}

/* ========== 顶部导航 ========== */
.top-nav {
	background: var(--primary-color);
	color: white;
	padding: 0.6rem 0;
	font-size: 14px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1032;
	height: 40px;
	display: flex;
	align-items: center;
}

.top-nav a {
	color: rgba(255, 255, 255, 0.9);
}

.top-nav a:hover {
	color: white;
}

/* ========== 导航栏样式 ========== */
.navbar-custom {
	background: var(--nav-bg);
	backdrop-filter: blur(20px);
	padding: 0.8rem 0;
	transition: var(--transition-smooth);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	top: 40px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-custom.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand-custom {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--nav-text) !important;
	display: flex;
	align-items: center;
	gap: 10px;
}

.navbar-brand-custom {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--nav-text) !important;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.navbar-brand-custom .logo-icon {
	height: 40px;
	width: auto;
	display: block;
	background: var(--primary-color);
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: #fff;
	font-size: 1.1rem;
	filter: brightness(1.1);
}

.navbar-brand-custom .brand-text {
	height: 32px;
	width: auto;
	display: block;
}

.navbar-nav-custom .nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
	padding: 0.6rem 1.1rem !important;
	font-size: 0.95rem;
	position: relative;
	transition: var(--transition-smooth);
}

.navbar-nav-custom .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition-smooth);
	transform: translateX(-50%);
}

.navbar-nav-custom .nav-link:hover::after,
.navbar-nav-custom .nav-link.active::after {
	width: 60%;
}

.navbar-nav-custom .nav-link:hover,
.navbar-nav-custom .nav-link.active {
	color: var(--primary-color) !important;
}

/* 下拉菜单样式 - PC版 */
.dropdown-menu-custom {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	padding: 0.8rem;
	margin-top: 0.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	display: block;
	min-width: 160px;
}

/* 鼠标悬停时显示下拉菜单 */
.dropdown:hover>.dropdown-menu-custom {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	display: block;
}

/* 下拉菜单子链接样式 */
.dropdown-menu-custom .dropdown-item-custom,
.dropdown-menu .dropdown-item {
	color: var(--text-dark);
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: block;
}

.dropdown-menu-custom .dropdown-item-custom:hover,
.dropdown-menu .dropdown-item:hover {
	background: rgba(46, 134, 171, 0.1);
	color: var(--primary-color);
}

/* 点击后保持高亮状态 */
.dropdown-menu-custom .dropdown-item-custom.active,
.dropdown-menu .dropdown-item.active {
	background: rgba(46, 134, 171, 0.1) !important;
	color: var(--primary-color) !important;
}

/* 移动端适配 */
@media (max-width: 991px) {
	.dropdown-menu-custom {
		position: static;
		float: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		margin-top: 0;
		padding-left: 1.5rem;
		background: #fff;
		border: none;
		box-shadow: none;
	}

	.dropdown-menu-custom .dropdown-item-custom {
		color: var(--text-dark);
		padding: 0.8rem 1rem;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.dropdown-menu-custom .dropdown-item-custom:last-child {
		border-bottom: none;
	}

	.dropdown-menu-custom .dropdown-item-custom:hover {
		background: rgba(46, 134, 171, 0.1);
		color: var(--primary-color);
	}

	.dropdown-menu-custom .dropdown-item-custom.active {
		background: rgba(46, 134, 171, 0.1);
		color: var(--primary-color);
	}

	.dropdown.show>.dropdown-menu-custom {
		display: block;
	}

	/* 点击时才在移动端显示 */
	.dropdown>.nav-link.dropdown-toggle::after {
		display: inline-block;
	}
}

@media (max-width: 576px) {
	.navbar-brand-custom {
		gap: 6px;
	}

	.navbar-brand-custom .logo-icon {
		height: 32px;
	}

	.navbar-brand-custom .brand-text {
		height: 26px;
	}
}

.dropdown-item-custom {
	color: var(--text-dark);
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	font-size: 0.9rem;
	transition: var(--transition-smooth);
}

.dropdown-item-custom:hover {
	background: rgba(46, 134, 171, 0.1);
	color: var(--primary-color);
}

/* ========== Hero 区域增强样式 ========== */

/* 浮动形状 */
.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
}

.shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
	width: 400px;
	height: 400px;
	background: var(--gradient-gold);
	top: 10%;
	right: -100px;
	animation-delay: 0s;
}

.shape-2 {
	width: 300px;
	height: 300px;
	background: var(--gradient-primary);
	bottom: 10%;
	right: 20%;
	animation-delay: -5s;
}

.shape-3 {
	width: 200px;
	height: 200px;
	background: var(--secondary-color);
	top: 30%;
	left: -50px;
	animation-delay: -10s;
}

@keyframes floatShape {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(20px, -20px) rotate(5deg);
	}

	50% {
		transform: translate(0, -40px) rotate(0deg);
	}

	75% {
		transform: translate(-20px, -20px) rotate(-5deg);
	}
}

/* 徽章动画 */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
	color: #fff;
	animation: fadeInDown 0.8s ease;
}

.badge-pulse {
	width: 8px;
	height: 8px;
	background: var(--secondary-color);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.5);
		opacity: 0.5;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 标题动画 */
.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.title-line {
	display: block;
	animation: fadeInUp 1s ease-out backwards;
}

.title-line.delay-1 {
	animation-delay: 0.2s;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2.5rem;
	max-width: 600px;
	animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 按钮组 */
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
	animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-actions .btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-actions .btn-icon {
	display: flex;
	align-items: center;
}

/* Hero 统计 */
.hero-stats {
	display: flex;
	align-items: center;
	gap: 2rem;
	animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-stats .stat-item {
	display: flex;
	flex-direction: column;
}

.hero-stats .stat-value {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary-color);
	line-height: 1.2;
}

.hero-stats .stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.hero-stats .stat-divider {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
}

/* Hero 视觉效果 */
.hero-visual {
	position: relative;
	width: 100%;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.visual-ring {
	position: absolute;
	border: 2px solid rgba(201, 162, 39, 0.2);
	border-radius: 50%;
	animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
	width: 300px;
	height: 300px;
	animation-delay: 0s;
}

.ring-2 {
	width: 220px;
	height: 220px;
	border-color: rgba(201, 162, 39, 0.4);
	animation-delay: 0.5s;
}

.ring-3 {
	width: 140px;
	height: 140px;
	border-color: rgba(201, 162, 39, 0.6);
	animation-delay: 1s;
}

@keyframes ringPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}
}

.visual-icon {
	width: 100px;
	height: 100px;
	background: var(--gradient-gold);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 800;
	color: var(--dark-bg);
	box-shadow: 0 10px 40px rgba(201, 162, 39, 0.4);
	animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* 滚动指示器 */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	animation: bounce 2s infinite;
}

.mouse {
	width: 26px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 13px;
	position: relative;
}

.wheel {
	width: 4px;
	height: 8px;
	background: var(--secondary-color);
	border-radius: 2px;
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(15px);
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* 动画徽章 */
.animate-badge {
	animation: fadeInDown 0.8s ease;
}

/* 按钮样式 */
.btn-primary-custom {
	background: var(--gradient-gold);
	border: none;
	color: var(--dark-bg);
	font-weight: 600;
	padding: 0.9rem 2.2rem;
	border-radius: 50px;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-primary-custom:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
	color: var(--dark-bg);
}

.btn-outline-custom {
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 0.9rem 2.2rem;
	border-radius: 50px;
	background: transparent;
	transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

/* ========== 通用区块样式 ========== */
.section {
	padding: 100px 0;
}

.section-dark {
	background: var(--dark-bg);
	color: #fff;
}

.section-light {
	background: var(--light-bg);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-label {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--secondary-color);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 1rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.section-dark .section-title {
	color: #fff;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

.section-dark .section-subtitle {
	color: rgba(255, 255, 255, 0.7);
}

/* ========== 卡片样式 ========== */
.card-modern {
	background: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: var(--transition-smooth);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-modern:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-strong);
}

.card-modern .card-img-top {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background-color: #f8f9fa;
	transition: var(--transition-smooth);
	position: relative;
	z-index: 1;
	margin-bottom: 0;
}

.card-modern:hover .card-img-top {
	transform: scale(1.08);
}

.card-modern .card-body,
.card-modern .card-body-modern {
	position: relative;
	z-index: 2;
	padding-top: 1.25rem;
}

.card-body-modern {
	padding: 1.5rem;
}

.card-title-modern {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.card-text-modern {
	color: var(--text-light);
	font-size: 0.95rem;
}

/* ========== 轮播样式 ========== */
.carousel-custom {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
}

.carousel-item-custom {
	height: 500px;
	position: relative;
}

.carousel-item-custom img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-custom .carousel-item {
	position: relative;
}

.carousel-custom .carousel-item img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.carousel-caption-custom {
	position: absolute;
	bottom: 4rem;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 80%;
	z-index: 2;
}

.carousel-caption-custom h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	animation: fadeInUp 0.8s ease-out;
}

.carousel-caption-custom p {
	font-size: 0.95rem;
	opacity: 0.9;
	animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

#newsCarousel .carousel-inner .carousel-item .carousel-caption-custom h3,
#newsCarousel .carousel-inner .carousel-item .carousel-caption-custom p {
	color: #fff !important;
}

/* ========== 产品展示 ========== */
.product-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius);
	height: 300px;
	cursor: pointer;
}

.product-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.product-card:hover img {
	transform: scale(1.15);
}

.product-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 2rem;
	background: linear-gradient(transparent, rgba(10, 25, 41, 0.9));
	color: #fff;
	transition: all 0.5s ease;
}

.product-overlay h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0;
	transition: all 0.4s ease;
}

.product-overlay p {
	font-size: 0.9rem;
	opacity: 0;
	max-height: 0;
	margin-bottom: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
	padding: 2rem;
	transform: translateY(0);
	background: linear-gradient(transparent, rgba(10, 25, 41, 0.95));
}

.product-card:hover .product-overlay h4 {
	margin-bottom: 0.5rem;
}

.product-card:hover .product-overlay p {
	opacity: 0.8;
	max-height: 100px;
}

/* ========== 新闻列表 ========== */
.news-carousel-row {
	align-items: stretch !important;
}

.news-carousel-row [class*="col-"] {
	display: flex;
	flex-direction: column;
}

.news-carousel-left,
.news-carousel-right {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.news-carousel-left>.carousel,
.news-carousel-right>.news-list {
	flex: 1;
	min-height: 0;
}

.carousel-custom {
	height: 100%;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
}

.carousel-custom .carousel-inner {
	height: 100%;
}

.carousel-custom .carousel-item {
	height: 100%;
}

.carousel-custom .carousel-item img {
	height: 100%;
	object-fit: cover;
}

.news-list {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.news-item {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--border-radius);
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow-soft);
	transition: var(--transition-smooth);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-item:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow-strong);
}

.news-item .news-img {
	width: 200px;
	height: 140px;
	object-fit: cover;
	border-radius: 12px;
	flex-shrink: 0;
}

.news-item .news-content h4 {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
	transition: var(--transition-smooth);
}

.news-item:hover .news-content h4 {
	color: var(--accent-color);
}

.news-item .news-meta {
	font-size: 0.85rem;
	color: var(--text-light);
	margin-bottom: 0.75rem;
}

.news-item .news-excerpt {
	font-size: 0.95rem;
	color: var(--text-light);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ========== 快速入口 ========== */
.quick-entry-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius);
	padding: 2.5rem 2rem;
	text-align: center;
	transition: var(--transition-smooth);
	cursor: pointer;
}

.quick-entry-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-8px);
	border-color: var(--secondary-color);
}

.quick-entry-icon {
	width: 70px;
	height: 70px;
	background: var(--gradient-gold);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.8rem;
	color: var(--dark-bg);
}

.quick-entry-title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.quick-entry-desc {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

/* ========== 页脚样式 ========== */
.footer {
	background: var(--dark-bg);
	color: #fff;
	padding: 80px 0 0;
}

.footer-brand {
	margin-bottom: 1.5rem;
}

.footer-brand h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1.5rem;
	position: relative;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--secondary-color);
	border-radius: 2px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition-smooth);
	font-size: 0.95rem;
}

.footer-links a:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.footer-contact p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
	margin-top: 4rem;
	text-align: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
	margin: 0;
}

.footer-bottom p a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
	text-decoration: none;
	margin: 0;
}
.footer-bottom p a:hover {
	color: var(--secondary-color);
}

/* ========== 页面标题区 ========== */
.page-header {
	background: var(--gradient-dark);
	padding: 180px 0 100px;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./../images/page-header.jfif') center/cover;
	opacity: 0.1;
}

.page-header-content {
	position: relative;
	z-index: 1;
}

.page-title {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
}

.page-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
}

.page-breadcrumb a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: var(--transition-smooth);
}

.page-breadcrumb a:hover {
	color: var(--secondary-color);
}

.breadcrumb-separator {
	opacity: 0.4;
}

/* ========== 详情页样式 ========== */
.detail-content {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 3rem;
	box-shadow: var(--shadow-soft);
}

.detail-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	color: var(--text-light);
	font-size: 0.9rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-body {
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--text-dark);
}

.detail-body p {
	margin-bottom: 1.5rem;
}

.detail-body img {
	border-radius: 12px;
	margin: 1.5rem 0;
}

/* ========== 时间线样式 ========== */
.timeline {
	position: relative;
	padding-left: 40px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(var(--primary-color), var(--secondary-color));
}

.timeline-item {
	position: relative;
	margin-bottom: 40px;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -33px;
	top: 5px;
	width: 16px;
	height: 16px;
	background: var(--gradient-gold);
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 0.5rem;
}

.timeline-content {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
}

/* ========== 荣誉资质 ========== */
.certificate-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
}

.certificate-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 4/3;
	cursor: pointer;
}

.certificate-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.certificate-item:hover img {
	transform: scale(1.1);
}

.certificate-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: #fff;
	font-size: 0.9rem;
}

/* ========== 招聘职位 ========== */
.job-card {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 2rem;
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: var(--transition-smooth);
}

.job-card:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow-strong);
}

.job-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.job-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.job-tag {
	background: rgba(44, 123, 229, 0.1);
	color: var(--accent-color);
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.85rem;
}

.job-desc {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.job-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.job-salary {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--secondary-color);
}

/* ========== 联系表单 ========== */
.contact-form {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 2.5rem;
	box-shadow: var(--shadow-soft);
}

.form-control-custom {
	border: 2px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	padding: 0.9rem 1.2rem;
	font-size: 1rem;
	transition: var(--transition-smooth);
}

.form-control-custom:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 4px rgba(44, 123, 229, 0.1);
}

.form-label-custom {
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

/* ========== 统计数据 ========== */
.stats-section {
	background: var(--gradient-primary);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./../images/page-header.jfif') center/cover;
	opacity: 0.1;
}

.stat-item {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 1;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1rem;
	opacity: 0.9;
}

/* ========== 动画效果 ========== */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}

/* ========== 响应式调整 ========== */
@media (max-width: 991.98px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-badge {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}

	.hero-visual {
		display: none;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.hero-stats .stat-value {
		font-size: 1.4rem;
	}

	.hero-stats .stat-divider {
		display: none;
	}

	.scroll-indicator {
		display: none;
	}

	.section {
		padding: 70px 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.page-title {
		font-size: 2.2rem;
	}

	.news-item {
		flex-direction: column;
	}

	.news-item .news-img {
		width: 100%;
		height: 200px;
	}

	.floating-shapes {
		display: none;
	}
}

@media (max-width: 767.98px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.hero-stats {
		justify-content: space-around;
		width: 100%;
	}

	.section {
		padding: 50px 0;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.page-title {
		font-size: 1.8rem;
	}

	.page-header {
		padding: 140px 0 60px;
	}

	.detail-content {
		padding: 1.5rem;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.carousel-item-custom {
		height: 400px;
	}

	.carousel-caption-custom h3 {
		font-size: 1.5rem;
	}

	.carousel-caption-custom p {
		font-size: 0.9rem;
	}
}

/* ========== 加载动画 ========== */
.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #1a3a4a 0%, #2D3E50 50%, #1a3a4a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loader-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.loader-logo-wrapper {
	position: relative;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-logo-icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
	position: relative;
	z-index: 2;
}

.loader-logo-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid rgba(46, 134, 171, 0.2);
	border-top-color: var(--primary-color);
	border-right-color: var(--primary-color);
	animation: loaderRingSpin 1.5s linear infinite;
}

.loader-logo-ring::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 6px;
	right: 6px;
	bottom: 6px;
	border-radius: 50%;
	border: 2px solid rgba(166, 144, 118, 0.15);
	border-bottom-color: var(--secondary-color);
	border-left-color: var(--secondary-color);
	animation: loaderRingSpin 1s linear infinite reverse;
}

@keyframes loaderRingSpin {
	to {
		transform: rotate(360deg);
	}
}

.loader-brand {
	margin-top: -0.5rem;
}

.loader-brand-text {
	height: 32px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.loader-slogan {
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.85);
}

.loader-slogan-green {
	color: #4CAF50;
	font-weight: 700;
}

.loader-progress-wrapper {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.5rem;
	width: 220px;
}

.loader-progress-bar {
	flex: 1;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	overflow: hidden;
}

.loader-progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--primary-color), #4CAF50);
	border-radius: 3px;
	transition: width 0.3s ease;
}

.loader-progress-text {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 600;
	min-width: 30px;
	text-align: right;
}

/* 手机端加载动画适配 */
@media (max-width: 767px) {
	.loader-logo-wrapper {
		width: 80px;
		height: 80px;
	}

	.loader-logo-icon {
		width: 48px;
		height: 48px;
	}

	.loader-brand-text {
		height: 24px;
	}

	.loader-slogan {
		font-size: 0.95rem;
		letter-spacing: 0.1em;
	}

	.loader-progress-wrapper {
		width: 180px;
	}
}

/* ========== 滚动条样式 ========== */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
}

/* ========== 图片加载占位符 ========== */
.img-loading {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}

	100% {
		background-position: 200% 0;
	}
}

/* ========== 增强的动画效果 ========== */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ========== 职位详情页样式 ========== */
.job-detail-card {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 2rem;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-detail-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.job-meta {
	color: var(--text-light);
	font-size: 0.95rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.job-meta i {
	color: var(--accent-color);
}

.job-section-card {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 2rem;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-section-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--accent-color);
	display: inline-block;
}

.job-section-title i {
	color: var(--accent-color);
}

.job-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.job-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--text-light);
	line-height: 1.6;
}

.job-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 6px;
	height: 6px;
	background: var(--accent-color);
	border-radius: 50%;
}

/* 福利待遇 */
.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: var(--bg-light);
	border-radius: 10px;
	transition: var(--transition-smooth);
}

.benefit-item:hover {
	background: rgba(44, 123, 229, 0.08);
}

.benefit-item i {
	font-size: 1.5rem;
	color: var(--accent-color);
	flex-shrink: 0;
}

.benefit-item h6 {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.25rem;
}

.benefit-item p {
	font-size: 0.85rem;
	color: var(--text-light);
	margin: 0;
}

/* 申请卡片 */
.job-apply-card {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 2rem;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-summary {
	background: var(--bg-light);
	border-radius: 10px;
	padding: 1.25rem;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.summary-item:last-child {
	border-bottom: none;
}

.summary-label {
	color: var(--text-light);
	font-size: 0.9rem;
}

.summary-value {
	color: var(--text-dark);
	font-weight: 500;
}

.contact-info {
	color: var(--text-light);
	font-size: 0.9rem;
}

.contact-info i {
	color: var(--accent-color);
}

/* 相似职位推荐 */
.similar-jobs-card {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.similar-jobs-card h5 {
	color: var(--text-dark);
	font-weight: 600;
}

.similar-jobs-card h5 i {
	color: var(--accent-color);
}

.similar-job-item {
	padding: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: var(--transition-smooth);
}

.similar-job-item:last-child {
	border-bottom: none;
}

.similar-job-item:hover {
	background: var(--bg-light);
}

.similar-job-item h6 {
	color: var(--text-dark);
	transition: var(--transition-smooth);
}

.similar-job-item:hover h6 {
	color: var(--accent-color);
}

/* 响应式适配 */
@media (max-width: 991px) {
	.job-detail-title {
		font-size: 1.5rem;
	}

	.job-meta {
		font-size: 0.85rem;
	}

	.job-meta span {
		display: block;
		width: 100%;
		margin-bottom: 0.25rem;
	}

	.job-apply-card {
		position: relative !important;
		top: 0 !important;
		margin-top: 2rem;
	}
}

@media (max-width: 767px) {
	.job-detail-card {
		padding: 1.5rem;
	}

	.job-section-card {
		padding: 1.5rem;
	}

	.job-apply-card {
		padding: 1.5rem;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* ========== 粘性导航栏 ========== */
.navbar-fixed-top {
	transition: var(--transition-smooth);
}

.navbar-fixed-top.hidden {
	transform: translateY(-100%);
}

/* ========== 下拉菜单增强 ========== */
.dropdown-menu {
	border: none;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	padding: 0.8rem;
	margin-top: 0.5rem;
	background: #fff;
}

.dropdown-menu.show {
	animation: fadeIn 0.3s ease;
}

.dropdown-item {
	color: var(--text-dark);
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	transition: var(--transition-smooth);
}

.dropdown-item:hover,
.dropdown-item:focus {
	background: rgba(46, 134, 171, 0.1);
	color: var(--primary-color);
}

/* ========== 移动端菜单增强 ========== */
@media (max-width: 991.98px) {
	.navbar-custom {
		padding: 0.5rem 0;
	}

	.navbar-collapse {
		background: #fff;
		margin-top: 1rem;
		padding: 1rem;
		border-radius: 12px;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	}

	.navbar-nav-custom .nav-link {
		padding: 0.8rem 1rem !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		color: var(--text-dark) !important;
	}

	.navbar-nav-custom .nav-link:last-child {
		border-bottom: none;
	}

	.navbar-nav-custom .nav-link::after {
		display: none;
	}

	.dropdown-menu-custom {
		background: rgba(0, 0, 0, 0.03);
		border-radius: 8px;
		margin-top: 0.5rem;
	}

	.dropdown-menu-custom .dropdown-item-custom {
		color: var(--text-dark);
	}

	.dropdown-menu-custom .dropdown-item-custom:hover {
		background: rgba(46, 134, 171, 0.1);
		color: var(--primary-color);
	}

	.navbar-toggler {
		border: 1px solid rgba(0, 0, 0, 0.15);
		padding: 0.5rem 0.75rem;
	}

	.navbar-toggler:focus {
		box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.3);
	}

	.navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}
}

/* ========== 轮播图增强 ========== */
.carousel-custom .carousel-indicators {
	bottom: 30px;
}

.carousel-custom .carousel-indicators button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid transparent;
	transition: var(--transition-smooth);
}

.carousel-custom .carousel-indicators button.active {
	background-color: var(--secondary-color);
	transform: scale(1.2);
}

.carousel-custom .carousel-control-prev,
.carousel-custom .carousel-control-next {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 20px;
	opacity: 0;
	transition: var(--transition-smooth);
}

.carousel-custom:hover .carousel-control-prev,
.carousel-custom:hover .carousel-control-next {
	opacity: 1;
}

.carousel-custom .carousel-control-prev:hover,
.carousel-custom .carousel-control-next:hover {
	background: var(--secondary-color);
}

/* ========== 卡片悬停增强 ========== */
.card-modern {
	overflow: hidden;
}

.card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-gold);
	transform: scaleX(0);
	transition: var(--transition-smooth);
}

.card-modern:hover::before {
	transform: scaleX(1);
}

/* ========== 按钮点击效果 ========== */
.btn-primary-custom:active {
	transform: scale(0.98);
}

.btn-primary-custom:focus {
	box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.3);
}

/* ========== 链接下划线动画 ========== */
.animated-link {
	position: relative;
	text-decoration: none;
}

.animated-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: var(--transition-smooth);
}

.animated-link:hover::after {
	width: 100%;
}

/* ========== 标签页样式 ========== */
.nav-tabs-custom {
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.nav-tabs-custom .nav-link {
	border: none;
	color: var(--text-light);
	font-weight: 500;
	padding: 1rem 1.5rem;
	position: relative;
	transition: var(--transition-smooth);
}

.nav-tabs-custom .nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition-smooth);
}

.nav-tabs-custom .nav-link:hover {
	color: var(--primary-color);
}

.nav-tabs-custom .nav-link.active {
	color: var(--primary-color);
	background: transparent;
}

.nav-tabs-custom .nav-link.active::after {
	width: 100%;
}

/* ========== 徽章样式增强 ========== */
.badge {
	font-weight: 500;
	padding: 0.4em 0.8em;
}

.badge-glow {
	animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

	0%,
	100% {
		box-shadow: 0 0 5px rgba(201, 162, 39, 0.5);
	}

	50% {
		box-shadow: 0 0 20px rgba(201, 162, 39, 0.8);
	}
}

/* ========== 表单增强 ========== */
.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(26, 77, 143, 0.1);
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-check-input:focus {
	box-shadow: 0 0 0 4px rgba(26, 77, 143, 0.1);
}

/* ========== 表格增强 ========== */
.table-modern {
	border-collapse: separate;
	border-spacing: 0;
}

.table-modern th {
	background: var(--light-bg);
	font-weight: 600;
	border: none;
	padding: 1rem;
}

.table-modern td {
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 1rem;
	vertical-align: middle;
}

.table-modern tbody tr:hover {
	background: rgba(26, 77, 143, 0.03);
}

/* ========== 进度条 ========== */
.progress-modern {
	height: 8px;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.progress-bar-modern {
	height: 100%;
	border-radius: 4px;
	background: var(--gradient-primary);
	transition: width 1s ease;
}

/* ========== 骨架屏加载 ========== */
.skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	border-radius: 4px;
}

.skeleton-text {
	height: 1em;
	margin-bottom: 0.5em;
}

.skeleton-title {
	height: 1.5em;
	width: 60%;
	margin-bottom: 1em;
}

.skeleton-image {
	width: 100%;
	height: 200px;
}

/* ========== 空状态 ========== */
.empty-state {
	text-align: center;
	padding: 4rem 2rem;
}

.empty-state-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	opacity: 0.5;
}

.empty-state-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.empty-state-desc {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

/* ========== 打印样式 ========== */
@media print {

	.navbar-custom,
	.footer,
	.back-to-top,
	.breadcrumb,
	.no-print {
		display: none !important;
	}

	.page-header {
		padding: 2rem 0;
		background: none;
	}

	.page-title {
		color: #000;
	}

	.detail-content {
		box-shadow: none;
		border: 1px solid #ddd;
	}
}

/* ========== 回到顶部 ========== */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--gradient-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-bg);
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

/* ========== 列表页筛选 ========== */
.filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.filter-tab {
	padding: 0.6rem 1.5rem;
	border-radius: 30px;
	background: #fff;
	border: 2px solid rgba(0, 0, 0, 0.08);
	color: var(--text-dark);
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}

/* ========== 生产基地 ========== */
.base-card {
	background: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: var(--transition-smooth);
}

.base-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-strong);
}

.base-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.base-card-body {
	padding: 1.5rem;
}

.base-card-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.base-card-text {
	color: var(--text-light);
	font-size: 0.95rem;
}

/* ========== 附件下载 ========== */
.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: rgba(44, 123, 229, 0.1);
	color: var(--accent-color);
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition-smooth);
}

.download-btn:hover {
	background: var(--accent-color);
	color: #fff;
}

/* ========== 翻页 ========== */
.pagination-custom {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.pagination-custom .page-item {
	list-style: none;
}

.pagination-custom .page-link {
	min-width: 48px;
	height: 40px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition-smooth);
	white-space: nowrap;
}

.pagination-custom .page-link:hover,
.pagination-custom .page-item.active .page-link {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}

/* ========== 侧边栏 ========== */
.sidebar {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-soft);
	position: sticky;
	top: 100px;
}

.sidebar-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-list li {
	margin-bottom: 0.5rem;
}

.sidebar-list a {
	display: block;
	padding: 0.6rem 1rem;
	color: var(--text-light);
	text-decoration: none;
	border-radius: 8px;
	transition: var(--transition-smooth);
}

.sidebar-list a:hover,
.sidebar-list a.active {
	background: rgba(44, 123, 229, 0.1);
	color: var(--accent-color);
}

/* ========== Hero 轮播样式 ========== */

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	padding-top: 100px;
	/* 避开顶部导航栏 */
}

.hero-carousel .carousel {
	height: 100%;
}

.hero-carousel .carousel-inner {
	height: 100%;
}

.hero-carousel .carousel-item {
	height: 100%;
	min-height: 600px;
}

.hero-slide {
	width: 100%;
	height: 100%;
	min-height: 600px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
}

.hero-overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-carousel .container {
	position: relative;
	z-index: 2;
}

/* 浮动形状 - 轮播版本 */
.hero-carousel .floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.hero-carousel .shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.08;
	animation: floatShape 20s ease-in-out infinite;
}

.hero-carousel .shape-1 {
	width: 500px;
	height: 500px;
	background: var(--gradient-gold);
	top: -10%;
	right: -100px;
	animation-delay: 0s;
}

.hero-carousel .shape-2 {
	width: 350px;
	height: 350px;
	background: var(--gradient-primary);
	bottom: -5%;
	right: 10%;
	animation-delay: -5s;
}

.hero-carousel .shape-3 {
	width: 300px;
	height: 300px;
	background: var(--secondary-color);
	top: 20%;
	left: -50px;
	animation-delay: -10s;
}

.hero-carousel .shape-4 {
	width: 250px;
	height: 250px;
	background: var(--gradient-primary);
	bottom: 10%;
	left: 20%;
	animation-delay: -7s;
}

.hero-carousel .shape-5 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	top: -15%;
	left: 10%;
	animation-delay: -3s;
}

.hero-carousel .shape-6 {
	width: 280px;
	height: 280px;
	background: var(--secondary-color);
	bottom: 5%;
	right: -50px;
	animation-delay: -12s;
}

.hero-carousel .shape-7 {
	width: 450px;
	height: 450px;
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	top: -20%;
	right: 5%;
	animation-delay: -8s;
}

.hero-carousel .shape-8 {
	width: 320px;
	height: 320px;
	background: var(--gradient-gold);
	bottom: -10%;
	left: -80px;
	animation-delay: -15s;
}

@keyframes floatShape {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(30px, -30px) rotate(5deg);
	}

	50% {
		transform: translate(0, -50px) rotate(0deg);
	}

	75% {
		transform: translate(-30px, -30px) rotate(-5deg);
	}
}

/* 轮播指示器 */
.hero-carousel .carousel-indicators {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding: 0;
	gap: 12px;
	z-index: 10;
}

.hero-carousel .carousel-indicators button {
	width: 40px;
	height: 4px;
	border: none;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.4s ease;
	padding: 0;
	margin: 0;
}

.hero-carousel .carousel-indicators button:hover {
	background: rgba(255, 255, 255, 0.5);
}

.hero-carousel .carousel-indicators button.active {
	width: 60px;
	background: var(--secondary-color);
	box-shadow: 0 0 15px rgba(201, 162, 39, 0.5);
}

/* 轮播控制按钮 */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: rgba(10, 25, 41, 0.5);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 10;
}

.hero-carousel .carousel-control-prev {
	left: 30px;
}

.hero-carousel .carousel-control-next {
	right: 30px;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
	opacity: 1;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
	background: rgba(201, 162, 39, 0.8);
	border-color: var(--secondary-color);
	transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

/* 轮播内容动画 */
.hero-carousel .carousel-item {
	transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel .carousel-item .hero-badge,
.hero-carousel .carousel-item .hero-title,
.hero-carousel .carousel-item .hero-subtitle,
.hero-carousel .carousel-item .hero-actions,
.hero-carousel .carousel-item .hero-stats {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel .carousel-item.active .hero-badge {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}

.hero-carousel .carousel-item.active .hero-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.hero-carousel .carousel-item.active .hero-subtitle {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}

.hero-carousel .carousel-item.active .hero-actions {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.8s;
}

.hero-carousel .carousel-item.active .hero-stats {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1s;
}

/* 轮播内文字样式强化 */
.hero-carousel .hero-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
	line-height: 1.25;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-carousel .hero-subtitle {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
	max-width: 580px;
	line-height: 1.7;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-carousel .hero-badge {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	padding: 0.6rem 1.2rem;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-carousel .badge-pulse {
	width: 10px;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 50%;
	animation: pulse 2s infinite;
	box-shadow: 0 0 10px var(--secondary-color);
}

.hero-carousel .title-line {
	display: block;
}

.hero-carousel .highlight {
	color: var(--secondary-color);
	position: relative;
}

.hero-carousel .highlight::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 8px;
	background: rgba(201, 162, 39, 0.3);
	z-index: -1;
}

/* 轮播内按钮样式 */
.hero-carousel .btn-primary-custom {
	background: linear-gradient(135deg, var(--secondary-color), #e0b82d);
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-carousel .btn-primary-custom:hover {
	background: linear-gradient(135deg, #e0b82d, var(--secondary-color));
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
	color: #fff;
}

.hero-carousel .btn-outline-custom {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.6);
	padding: 0.75rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.4s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.hero-carousel .btn-outline-custom:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
	color: #fff;
	transform: translateY(-3px);
}

/* 轮播内统计样式 */
.hero-carousel .hero-stats {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	margin-top: 2rem;
}

.hero-carousel .stat-item {
	display: flex;
	flex-direction: column;
}

.hero-carousel .stat-value {
	font-size: 2rem;
	font-weight: 800;
	color: var(--secondary-color);
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-carousel .stat-label {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
}

.hero-carousel .stat-divider {
	width: 1px;
	height: 50px;
	background: rgba(255, 255, 255, 0.25);
}

/* 轮播内滚动指示器 */
.hero-carousel .scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	z-index: 10;
	animation: bounce 2s infinite;
}

.hero-carousel .scroll-indicator .mouse {
	width: 26px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 13px;
	position: relative;
}

.hero-carousel .scroll-indicator .wheel {
	width: 4px;
	height: 8px;
	background: var(--secondary-color);
	border-radius: 2px;
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollWheel 2s infinite;
}

.hero-carousel .scroll-indicator span {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 1px;
}

@keyframes scrollWheel {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(12px);
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

/* 响应式调整 */
@media (max-width: 991px) {
	.hero-carousel {
		min-height: 480px;
	}

	.hero-carousel .hero-slide {
		min-height: 480px;
		align-items: flex-start;
		padding-top: 100px;
	}

	.hero-carousel .container {
		padding-top: 0;
	}

	.hero-carousel .hero-title {
		font-size: 2rem;
	}

	.hero-carousel .hero-subtitle {
		font-size: 1rem;
		max-width: 100%;
	}

	.hero-carousel .hero-stats {
		gap: 1.5rem;
	}

	.hero-carousel .stat-value {
		font-size: 1.3rem;
	}

	.hero-overlay-gradient {
		background: linear-gradient(to bottom,
				rgba(10, 25, 41, 0.88) 0%,
				rgba(10, 25, 41, 0.75) 50%,
				rgba(10, 25, 41, 0.85) 100%);
	}
}

@media (max-width: 767px) {
	.hero-carousel {
		min-height: 420px;
	}

	.hero-carousel .hero-slide {
		min-height: 420px;
		align-items: flex-start;
		padding-top: 80px;
	}

	.hero-carousel .container {
		padding-top: 0;
	}

	.hero-carousel .hero-title {
		font-size: 1.5rem;
	}

	.hero-carousel .hero-subtitle {
		font-size: 0.9rem;
	}

	.hero-carousel .hero-actions {
		flex-direction: column;
		gap: 0.8rem;
	}

	.hero-carousel .btn-primary-custom,
	.hero-carousel .btn-outline-custom {
		padding: 0.85rem 1.8rem;
		font-size: 0.95rem;
		width: 100%;
		justify-content: center;
	}

	.hero-carousel .hero-stats {
		flex-wrap: wrap;
		gap: 1.2rem;
	}

	.hero-carousel .stat-value {
		font-size: 1.2rem;
	}

	.hero-carousel .stat-divider {
		display: none;
	}

	.hero-carousel .carousel-indicators {
		bottom: 80px;
		gap: 8px;
	}

	.hero-carousel .carousel-control-prev,
	.hero-carousel .carousel-control-next {
		width: 45px;
		height: 45px;
	}

	.hero-carousel .carousel-control-prev {
		left: 15px;
	}

	.hero-carousel .carousel-control-next {
		right: 15px;
	}

	.hero-carousel .scroll-indicator {
		bottom: 25px;
	}
}