/* 公司简介页面专用样式 */

/* 子导航样式 */
.sub-nav {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 20px 0;
	background-color: #fff;
	position: relative;
	z-index: 2;
}

.sub-nav-container {
	max-width: 1200px;
	width: 100%;
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #f0f0f0;
}

.sub-nav a {
	padding: 10px 30px;
	/* margin-right: 10px; */
	color: #333;
	position: relative;
	font-size: 18px;
	transition: all 0.3s;
	font-weight: bold;
}

.sub-nav a.active,
.sub-nav a:hover {
	color: #ed7930;
}

.sub-nav a.active:after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 25%;
	width: 50%;
	height: 3px;

	background-color: #ed7930;
}

/* 公司简介内容区域样式 */
.company-profile-content {
	padding: 30px 0 50px;
	background-color: #fff;
}

.profile-main-image {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto 30px;
	overflow: hidden;
	padding: 0;
	border: none;
}

.profile-main-image img {
	width: 100%;
	height: auto;
	display: block;
}

.profile-text-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.profile-text-content p {
	line-height: 1.8;
	color: #333;
	text-indent: 0; /* 去掉首行缩进 */
}

.company-name {
	color: #ed7930;
	font-weight: bold;
}

/* 数据统计区域 */
.stats-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
	width: 100%;
	max-width: 100%;
}

.stat-box {
	width: 45%;
	position: relative;
	overflow: hidden;
	border: none;
	background-size: cover;
	background-position: center;
	color: #fff;
	border-radius: 12px;
	/* 使用padding-bottom实现1:0.6宽高比 */
	padding-bottom: 27%;
	height: 0;
}

.stat-box-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.stat-box:first-child {
	background-image: url("../../images/stat-bg-1.jpg");
}

.stat-box:last-child {
	background-image: url("../../images/stat-bg-2.jpg");
}

.stat-box:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.stat-number {
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
	position: relative;
	z-index: 2;
}

.stat-number span {
	font-size: 24px;
	position: relative;
	top: -15px;
	color: #fff;
}

.stat-label {
	font-size: 22px;
	color: #ffad7a;
	position: relative;
	z-index: 2;
	font-weight: bold;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.sub-nav {
		overflow-x: auto;
		justify-content: flex-start;
		padding: 15px 0;
	}

	.sub-nav a {
		padding: 10px 15px;
		font-size: 14px;
		white-space: nowrap;
	}

	.stats-container {
		flex-direction: column;
		align-items: center;
	}

	.stat-box {
		width: 90%;
		margin: 10px 0;
		height: 150px;
	}

	.profile-text-content p {
		font-size: 18px; /* 移动端自适应字号 */
	}
}

/* 页脚样式 */
/* footer {
	background-color: #2b3545;
	color: #ccc;
	padding: 60px 0 20px;
} */

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 1.3rem;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: #ed7930;
	display: none; /* 隐藏标题下的下划线 */
}

.footer-column p {
	line-height: 1.8;
	color: #ccc;
	font-size: 0.9rem;
	text-indent: 2em; /* 添加首行缩进，2个中文字符宽度 */
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #ccc;
	transition: color 0.3s;
	font-size: 0.9rem;
}

.footer-column ul li a:hover {
	color: #ed7930;
}

.qrcode img {
	width: 120px;
	height: 120px;
	background-color: #fff;
	padding: 5px;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
}

/* 移动端适配 */
@media (max-width: 992px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.profile-wrapper {
		flex-direction: column;
	}

	.profile-image,
	.profile-text {
		min-width: 100%;
	}
}

@media (max-width: 768px) {
	body {
		padding-top: 0;
	}

	.menu-toggle {
		display: block;
		color: white;
	}

	.nav-wrapper {
		display: none;
		width: 100%;
		position: absolute;
		top: 70px;
		left: 0;
		background-color: rgba(51, 51, 51, 0.95);
		padding: 10px;
	}

	.nav-wrapper.active {
		display: block;
	}

	.menu {
		flex-direction: column;
	}

	.menu li {
		margin-bottom: 5px;
	}

	.submenu {
		position: static;
		display: none;
		background: rgba(68, 68, 68, 0.95);
		width: 100%;
	}

	.dropdown.active .submenu {
		display: block;
	}

	.banner {
		margin-top: 0;
	}

	.banner-content h1 {
		font-size: 28px;
	}

	.banner-content p {
		font-size: 16px;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.footer-column {
		text-align: left;
	}

	.footer-column h3:after {
		left: 50%;
		transform: translateX(-50%);
		display: none; /* 在移动端也隐藏标题下的下划线 */
	}

	.qrcode {
		display: flex;
	}
}

/* 下拉菜单样式 */
.dropdown {
	position: relative;
}

.menu .dropdown {
	position: relative;
}

.menu .dropdown .submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(255, 255, 255, 0.95);
	min-width: 200px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 101;
	border-radius: 4px;
	padding: 5px 0;
}

.menu .dropdown:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu .submenu li {
	display: block;
	width: 100%;
}

.menu .submenu a {
	padding: 8px 15px;
	display: block;
	color: #333;
	border-bottom: none;
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.menu .submenu a:hover {
	background-color: #f5f5f5;
	color: #000;
	border-bottom: none;
	padding-left: 20px;
}

/* 媒体查询中添加移动端下拉菜单样式 */
@media screen and (max-width: 768px) {
	.menu .dropdown .submenu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background-color: rgba(245, 245, 245, 0.9);
		padding-left: 20px;
		display: none;
		min-width: 100%;
	}

	.menu .dropdown.active .submenu {
		display: block;
	}

	.menu .submenu a {
		padding: 8px 15px;
		color: #333;
	}
}

/* 添加动画效果样式 */
.fade-in {
	animation: fadeIn 0.8s ease-in-out forwards;
}

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

/* 全屏导航菜单样式 */
.nav-wrapper.active {
	display: block;
}

/* 导航栏在滚动后的样式 */
header.sticky {
	background-color: rgba(51, 51, 51, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 发展历程部分样式 */
.development-history {
	padding: 50px 0;
	background-color: #f9f9f9;
}

.development-history h2 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 50px;
	color: #333;
	font-weight: bold;
}

.timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.timeline::after {
	content: "";
	position: absolute;
	width: 2px;
	background-color: #e0e0e0;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -1px;
}

.timeline-item {
	padding: 10px 40px;
	position: relative;
	width: 50%;
	box-sizing: border-box;
	margin-bottom: 60px;
}

.timeline-item::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	right: -10px;
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

.timeline-left {
	left: 0;
}

.timeline-right {
	left: 50%;
}

.timeline-left::after {
	right: -10px;
}

.timeline-right::after {
	left: -10px;
}

.timeline-orange::after {
	background-color: #ed7930;
	border: 4px solid #fff;
}

.timeline-blue::after {
	background-color: #0088ff;
	border: 4px solid #fff;
}

.timeline-year {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.timeline-left .timeline-year {
	right: -88px;
}

.timeline-right .timeline-year {
	left: -88px;
}

.timeline-orange .timeline-year .year-top {
	font-size: 26px;
	font-weight: bold;
	color: #ed7930;
}

.timeline-blue .timeline-year .year-top {
	font-size: 26px;
	font-weight: bold;
	color: #0088ff;
}

.timeline-year .year-bottom {
	font-size: 26px;
	font-weight: bold;
	margin-top: -8px;
}

.timeline-orange .timeline-year .year-bottom {
	color: #ed7930;
}

.timeline-blue .timeline-year .year-bottom {
	color: #0088ff;
}

.timeline-content {
	padding: 20px;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-year-small {
	font-weight: bold;
	margin-bottom: 10px;
}

.timeline-orange .timeline-year-small {
	color: #ed7930;
}

.timeline-blue .timeline-year-small {
	color: #0088ff;
}

.timeline-text {
	line-height: 1.8;
	color: #555;
}

@media screen and (max-width: 768px) {
	.timeline::after {
		left: 31px;
	}

	.timeline-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

	.timeline-left::after,
	.timeline-right::after {
		left: 21px;
	}

	.timeline-right {
		left: 0;
	}

	.timeline-left .timeline-year,
	.timeline-right .timeline-year {
		left: -25px;
		width: 60px;
		text-align: center;
	}

	.timeline-year .year-top,
	.timeline-year .year-bottom {
		font-size: 18px;
	}
}

/* 企业文化区域 */
.company-culture {
	padding: 60px 0 80px;
	background-color: #f8f8f8;
}

.company-culture .container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.company-culture h2 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 28px;
	color: #333;
	position: relative;
}

.company-culture h2:after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: #ed7930;
}

.culture-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	width: 100%;
	margin: 0 auto;
	justify-content: center;
}

.culture-item {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	max-width: 640px;
	width: 100%;
	height: 486px;
	padding: 80px 50px;
	margin: 0 auto;
}

.culture-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.culture-icon {
	width: 100px;
	height: 100px;
	border-radius: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
	overflow: hidden;
}

.culture-icon img {
	width: 88px;
	height: 88px;
	object-fit: contain;
}

.culture-item h3 {
	font-size: 25px;
	margin-bottom: 49px;
	margin-top: 60px;
	color: #333;
	font-weight: 600;
	text-align: left;
}

.culture-item p {
	color: #666;
	line-height: 1.6;
	margin: 0;
	text-align: left;
	font-size: 18px;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.culture-grid {
		grid-template-columns: 1fr;
		padding: 0 15px;
		justify-content: center;
	}

	.company-culture {
		padding: 40px 0 50px;
	}

	.culture-item {
		padding: 30px 20px;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.culture-icon {
		width: 80px;
		height: 80px;
	}

	.culture-icon img {
		width: 40px;
		height: 40px;
	}

	.culture-item h3 {
		font-size: 20px;
		margin-top: 30px;
		margin-bottom: 20px;
	}

	.culture-item p {
		font-size: 14px;
	}
}

/* 企业价值观部分 */
.company-values {
	padding: 70px 0;
	background-color: #fff;
}

.company-values h2 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 28px;
	color: #333;
	position: relative;
}

.company-values h2:after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: #ed7930;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
	/* padding: 0 20px; */
}

.value-item {
	position: relative;
	height: 650px; /* 恢复原来的高度 */
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: flex-start; /* 保持原有的垂直对齐 */
	align-items: center; /* 水平居中 */
	padding: 30px;
	width: 100%;
	text-align: center; /* 文本居中对齐 */
}

.value-content h3 {
	font-size: 32px; /* 恢复原来的字体大小 */
	font-weight: 600;
	color: #333 !important; /* 保持文字颜色 */
	margin-bottom: 20px;
}

.value-content p {
	font-size: 18px; /* 恢复原来的字体大小 */
	color: #333 !important; /* 保持文字颜色 */
	line-height: 1.6;
	margin: 0;
}

.value-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.value-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	opacity: 0.2; /* 保持图片底色效果 */
}

/* 移除之前的黑色渐变叠加层 */
.value-item:before {
	content: none;
}

/* 悬停效果 */
.value-item:hover {
	background-color: rgba(237, 121, 48, 0.66);
}

.value-item:hover .value-content h3,
.value-item:hover .value-content p {
	color: #fff !important;
}

/* 创新发展卡片特殊样式 */
.value-item:nth-child(4) .value-image img {
	opacity: 0.3;
}

/* 可持续发展卡片特殊样式 - 橙色底色 */
.value-item:nth-child(4) {
	background-color: rgba(255, 248, 242, 0.9);
}

.value-item:nth-child(4):hover {
	background-color: rgba(237, 121, 48, 0.66);
}

/* 响应式调整 */
@media (max-width: 768px) {
	.values-grid {
		grid-template-columns: 1fr;
		padding: 0 15px;
		gap: 20px;
		max-width: 500px;
	}

	.company-values {
		padding: 40px 0;
	}

	.value-item {
		height: 450px;
	}

	.value-content {
		padding: 20px;
	}

	.value-content h3 {
		font-size: 26px;
	}

	.value-content p {
		font-size: 16px;
	}
}

/* 内联样式确保导航栏吸顶效果*/
header {
	background-color: rgba(34, 34, 34, 0.16);
	position: sticky !important;
	top: 0 !important;
	z-index: 1000 !important;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled-past-banner {
	background-color: white !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
	border-bottom: 1px solid #eee !important;
}

header.scrolled-past-banner .menu a {
	color: #333333 !important;
}

header.scrolled-past-banner .language-switch a {
	color: #333333 !important;
}

/* 三角形装饰样式*/
.banner {
	position: relative;
}

.banner-triangle {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 50%);
	width: 30px;
	height: 30px;
	background-color: #ff6600;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	z-index: 100;
}

/* 数据统计样式 */
.stats-container {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 40px;
	width: 100%;
}

.stat-box {
	width: 90%;
	margin: 0 auto;
	padding-bottom: 50%; /* 调整宽高比*/
	position: relative;
	overflow: hidden;
	border: none;
	background-size: cover;
	background-position: center;
	color: #fff;
	border-radius: 12px;
	height: 0;
}

.stat-box:first-child {
	background-image: url("../../images/stat-bg-1.jpg");
}

.stat-box:last-child {
	background-image: url("../../images/stat-bg-2.jpg");
}

.stat-box:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.stat-box-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 2;
}

.stat-number {
	font-size: 72px;
	color: white;
	font-weight: bold;
	line-height: 1;
}

.stat-number span {
	display: inline-block;
	vertical-align: middle;
	font-size: 72px;
}

.stat-label {
	font-size: 32px;
	color: #ff8a00;
	margin-top: 10px;
}

/* 移动端响应式样式 */
@media (max-width: 768px) {
	.stats-container {
		flex-direction: column;
		gap: 20px;
		margin: 20px 0;
	}

	.stat-box {
		width: 90%;
		margin: 0 auto;
		padding-bottom: 50%; /* 调整宽高比*/
	}

	.stat-number {
		font-size: 48px;
	}

	.stat-number span {
		font-size: 48px;
	}

	.stat-label {
		font-size: 24px;
	}
}

/* 发展历程样式 */
.development-history {
	padding: 50px 0;
	background-color: #fff;
}

.timeline1 {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0;
}

.text {
	position: absolute;
	left: 50%;
	top: -30px;
	width: 100px;
	text-align: center;
	transform: translateX(-50%);
	color: rgba(237, 121, 48, 1);
	font-weight: bold;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 30px;
}

.cont {
	position: relative;
	left: 72%;
	top: -30px;
	width: 400px;
	transform: translateX(-50%);
	padding: 10px 0;
	color: #666666;
	font-size: 13px;
	.title {
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 6px;
		span {
			font-weight: normal;
			font-size: 14px;
		}
	}
	.info {
		font-size: 14px;
	}
}
.right {
	left: 28%;
	top: -30px;
	width: 400px;
	transform: translateX(-50%);
	padding: 10px 0;
	color: #666666;
	font-size: 13px;

	.title {
		text-align: right;
		margin-right: 10px;
	}
}

.year-top,
.year-bottom {
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
}

.year-bottom {
	margin-top: 2px;
}

/* 中央竖线 */
.center-line {
	position: absolute;
	left: 50%;
	top: 28px;
	height: 150px; /* 减小竖线长度 */
	width: 1px;
	background-color: rgba(237, 121, 48, 1);
	transform: translateX(-50%);
}

.cilcr {
	position: absolute;
	left: 50%;
	top: 178px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: rgba(237, 121, 48, 1);
	transform: translateX(-50%);
}

/* 移动端适配 */
@media (max-width: 768px) {
	.timeline1 {
		padding: 40px 0;
		margin-bottom: 30px;
	}

	.text {
		left: 10px;
		top: 0;
		transform: none;
		width: auto;
		align-items: flex-start;
	}

	.center-line {
		left: 20px;
		top: 45px;
		transform: none;
	}

	.cilcr {
		left: 17.5px;
		top: 160px;
		transform: none;
	}

	.cont {
		position: relative;
		left: 0;
		top: 10px;
		width: auto;
		transform: none;
		margin-left: 35px;
		padding-left: 10px;
		h3 {
			font-size: 20px;
		}
	}

	.right {
		position: relative;
		left: 0;
		top: 10px;
		width: auto;
		transform: none;
		margin-left: 35px;
		padding-left: 10px;
	}

	.right h4 {
		text-align: left;
		margin-right: 0;
	}

	.year-top,
	.year-bottom {
		font-size: 20px;
		font-weight: bold;
		line-height: 1;
	}
}
