/* 社会责任页面专用样式 */

/* 页面整体样式 */
.social-responsibility-page {
	background: #fff;
	color: #333;
}


/* Hero区域样式 */
.social-responsibility-hero {
	background: linear-gradient(135deg, #0b2952 0%, #1a4a7a 50%, #0b2952 100%);
	background-image: 
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
		linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
	position: relative;
	padding: 120px 0 80px 0;
	text-align: center;
	overflow: hidden;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Header背景图样式 - 确保覆盖所有内部元素 */
.social-responsibility-hero.with-bg-image {
	background-image: linear-gradient(135deg, rgba(49, 130, 204, 0.1) 0%, rgba(63, 143, 204, 0.2) 50%, rgba(49, 130, 206, 0.2) 100%), url('./socibg1.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	min-height: 60vh;
}

.social-responsibility-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 30%, rgba(0, 150, 255, 0.1) 0%, transparent 40%),
		radial-gradient(circle at 70% 70%, rgba(0, 200, 255, 0.05) 0%, transparent 40%);
	pointer-events: none;
}

.social-responsibility-hero h1 {
	font-size: clamp(36px, 6vw, 40px);
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 2;
}

.social-responsibility-hero p {
	font-size: clamp(18px, 3vw, 24px);
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	position: relative;
	z-index: 2;
	font-weight: 300;
}

/* Header内层置顶样式 - 确保强制置顶 */
.header-inner.fixed-top {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	z-index: 9999 !important;
	
	/* backdrop-filter: blur(10px); */
	transition: all 0.3s ease;
}

/* 导航栏背景图样式 - 与header共用背景图，确保透明融合 */
.header-inner.fixed-top.with-bg-image {
	
	/* backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px); */
	
	/* padding: 14px 0; */
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* 确保header内部所有元素都显示在背景图之上 */
.social-responsibility-hero .container {
	position: relative;
	z-index: 10;
}

.social-responsibility-hero .header-inner {
	position: relative;
	z-index: 20;
}

.social-responsibility-hero .hero-content {
	position: relative;
	z-index: 15;
	margin-left: 0;
	text-align: center;
}

.social-responsibility-hero .hero-content h1 {
	font-size: clamp(36px, 6vw, 40px) !important;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 2;
}

/* 确保页面内容不被置顶导航栏遮挡 */
/* 移除重复的padding设置，已在上面统一设置 */

/* 当导航栏置顶时，调整hero内容的上边距 */
.social-responsibility-hero.with-bg-image .hero-content {
	margin-top: 20px;
}

/* 主要内容区域 */
.social-responsibility-content {
	padding: 80px 0;
	background: #fff;
	background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7)), url('./prodbg2.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	position: relative;
}

/* 内容区域顶部间距（用于固定header时） */
.social-responsibility-content.with-fixed-header {
	margin-top: 80px;
}

/* 区域标题样式 */
.section-header {
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}

.section-bg-text {
	font-size: 5rem;
	font-weight: 700;
	color: rgba(11, 41, 82, 0.08);
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	white-space: nowrap;
}
.section-bg-text p{
	font-size: 12px;
	
}

.section-bg-text-right {
	position: absolute;
	top: -30px;
	right: 0;
	font-size: clamp(60px, 12vw, 140px);
	font-weight: 300;
	color: rgba(0, 0, 0, 0.05);
	z-index: 1;
	letter-spacing: 4px;
	line-height: 1;
}

.section-title {
	position: relative;
	z-index: 2;
	font-size: clamp(32px, 3vw, 40px);
	font-weight: 600;
	color: #333;
	margin: 0;
	line-height: 1.4;
}

/* 社会责任卡片网格 - 三列紧挨布局 */
.responsibility-cards {
	display: flex;
	gap: 0;
	margin-top: 60px;
	justify-content: center;
	align-items: stretch;
	border-radius: 0;
	overflow: hidden;
}

/* 列样式 */
.responsibility-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin: 0;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.responsibility-column:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	background: linear-gradient(to right, #e8d585, #d4c070);
}

.responsibility-column:hover .card-title,
.responsibility-column:hover .card-subtitle {
	color: white;
}

.responsibility-column:active {
	background: linear-gradient(to right, #e8d585, #d4c070);
}

.responsibility-column:active .card-title,
.responsibility-column:active .card-subtitle {
	color: white;
}

.responsibility-column:last-child {
	border-right: none;
}

/* 列图片样式 */
.column-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f8f9fa;
}

.column-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	display: block;
}

.responsibility-column:hover .column-image img {
	transform: scale(1.05);
}

/* 列内容样式 */
.column-content {
	padding: 30px 20px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 卡片基础样式 */
.responsibility-card {
	position: relative;
	height: 300px;
	border-radius: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}



.responsibility-card:last-child {
	border-bottom: none;
}

/* 卡片背景 */
.card-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.card-image {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.card-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
	transition: all 0.3s ease;
}

.responsibility-card:hover .card-bg-image {
	opacity: 0.1;
	transform: scale(1.05);
}

.responsibility-card:active .card-bg-image {
	opacity: 0.1;
}

/* 卡片内容 */
.card-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 40px 20px;
}

.card-icon {
	width: 80px;
	height: 80px;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px auto;
	transition: all 0.3s ease;
}

.card-icon img {
	border-radius: 0 !important;
}

.card-title {
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 600;
	margin: -20px 0 10px 0;
	line-height: 1.3;
}

.card-subtitle {
	font-size: clamp(14px, 2vw, 16px);
	margin: 0;
	opacity: 0.9;
	line-height: 1.4;
}

/* 卡片1: 研发能力 - 深金色背景 */
.card-1 {
	background: linear-gradient(135deg, #8b7355 0%, #6b5b47 50%, #4a3d32 100%);
}

.card-1 .card-icon {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.card-1 .card-title,
.card-1 .card-subtitle {
	color: #fff;
}

/* 卡片2: 服务理念 - 白色背景 */
.card-2 {
	background: #fff;
	border: 1px solid #e5e5e5;
}

.card-2 .card-icon {
	background: linear-gradient(135deg, #e7d280 0%, #d4c070 100%);
	color: #fff;
}

.card-2 .card-title,
.card-2 .card-subtitle {
	color: #333;
}

/* 卡片3: 生产能力 - 亮金色背景 */
.card-3 {
	background: linear-gradient(135deg, #e7d280 0%, #d4c070 50%, #c1ae58 100%);
}

.card-3 .card-icon {
	background: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.card-3 .card-title,
.card-3 .card-subtitle {
	color: #fff;
}

/* 卡片4: 生产能力 - 白色背景 */
.card-4 {
	background: #fff;
	border: 1px solid #e5e5e5;
}

.card-4 .card-icon {
	background: linear-gradient(135deg, #e7d280 0%, #d4c070 100%);
	color: #fff;
}

.card-4 .card-title,
.card-4 .card-subtitle {
	color: #333;
}

/* 悬停效果 */
.responsibility-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.social-responsibility-hero {
		padding: 100px 0 60px 0;
	}
	
	.social-responsibility-content {
		padding: 60px 0;
	}
	
	.responsibility-cards {
		flex-direction: column;
		gap: 20px;
		margin-top: 40px;
	}
	
	.responsibility-column {
		margin: 0;
	}
	
	.responsibility-card {
		height: 250px;
	}
	
	.card-content {
		padding: 30px 20px;
	}
	
	.card-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}
	
	.section-bg-text,
	.section-bg-text-right {
		font-size: 3rem;
	}
}

@media (max-width: 480px) {
	/* 修复header-inner在手机端的宽度问题 */
	.header-inner.fixed-top {
		padding: 0.9rem 15px !important;
		box-sizing: border-box;
		width: 100% !important;
		max-width: 100vw !important;
		overflow: hidden;
	}
	
	.social-responsibility-hero {
		padding: 80px 0 40px 0;
	}
	
	.social-responsibility-content {
		padding: 40px 0;
	}
	
	.responsibility-card {
		height: 200px;
	}
	
	.column-content {
		padding: 20px 15px;
	}
	
	.column-image {
		height: 150px;
	}
	
	.card-content {
		padding: 20px 15px;
	}
	
	.card-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
	}
	
	.section-bg-text,
	.section-bg-text-right {
		font-size: 2.5rem;
	}
}

/* 页脚样式 - 与core-business.html完全一致 */
.company-address {
	margin-top: 15px;
}

.address-label {
	font-size: 0.9rem;
	color: #ffffff;
	margin-bottom: 5px;
	opacity: 0.9;
}

.address-text {
	font-size: 0.85rem;
	color: #ffffff;
	line-height: 1.4;
	opacity: 0.8;
}

.contact-icons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.contact-icon {
	width: 24px;
	height: 24px;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.contact-icon:hover {
	opacity: 1;
}

/* 页脚布局样式 */
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 50px;
	margin-bottom: 40px;
	gap: 40px;
}

.footer-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 0 0 auto;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.company-address {
	margin-top: 0;
}

.footer-cols {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 30px;
}

.footer-cols .col {
	display: flex;
	flex-direction: column;
}

.footer-cols .col h4 {
	margin-bottom: 15px;
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
}

.footer-cols .col a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 5px 0;
	font-size: 0.8rem;
	transition: color 0.3s ease;
}

.footer-cols .col a:hover {
	color: var(--brand);
}

.contact-icons {
	display: flex;
	flex-direction: row;
	gap: 12px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-start;
}

/* 动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.responsibility-card {
	animation: fadeInUp 0.6s ease-out;
}

.responsibility-card:nth-child(1) { animation-delay: 0.1s; }
.responsibility-card:nth-child(2) { animation-delay: 0.2s; }
.responsibility-card:nth-child(3) { animation-delay: 0.3s; }
.responsibility-card:nth-child(4) { animation-delay: 0.4s; }

/* 背景装饰元素 */
.responsibility-card::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 100px;
	height: 100px;
	background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.responsibility-card:hover::before {
	opacity: 1;
}


