/* Reset & Common Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #333;
	line-height: 1.6;
}

/* Banner Section */
.banner-section {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	height: 600px;
	overflow: hidden;
	position: relative;
}

.banner-swiper-container {
	width: 100%;
	height: 100%;
}

.banner-swiper {
	width: 100%;
	height: 100%;
}

.banner-swiper .swiper-slide {
	width: 100%;
	height: 100%;
}

.banner-swiper .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
}

.banner-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Banner Pagination - 长条样式 */
.banner-pagination {
	bottom: 30px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.banner-pagination .swiper-pagination-bullet {
	width: 40px !important;
	height: 4px !important;
	border-radius: 2px !important;
	background: rgba(255, 255, 255, 0.5) !important;
	opacity: 1 !important;
	transition: all 0.3s ease;
}

.banner-pagination .swiper-pagination-bullet-active {
	width: 60px !important;
	background: #ffffff !important;
}

.container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Section Header */
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}

.section-header .title-group {
	display: flex;
	flex-direction: column;
	position: relative;
}

.section-header h2 {
	font-size: 28px;
	font-weight: 600;
	color: #1a1a1a;
	display: block;
	position: relative;
	padding-bottom: 16px;
	margin: 0;
    display: flex;
    align-items: center;
}

.section-header h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 110px;
	height: 3px;
	background: #c9a961;
}

.section-header h2 .subtitle {
	font-size: 14px;
	color: #c9a961;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: normal;
	margin-left: 16px;
}

.section-header .more-link {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
	align-self: flex-start;
}

.section-header .more-link:hover {
	color: #c9a961;
}

/* Professional Areas Section */
.professional-section {
	padding: 80px 0;
	background: #fff;
}

.professional-description {
	color: #999;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 40px;
	max-width: 100%;
}

.professional-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.content-item {
    width: 100%;
	height: 130px;
	border-radius: 6px;
	text-align: center;
	transition: all 0.3s;
	cursor: pointer;
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.content-item:hover {
	background: #1a2c4a;
	border-color: #1a2c4a;
	box-shadow: 0 8px 30px rgba(26, 44, 74, 0.3);
}

.content-item:hover h3 {
	color: #fff;
}

.content-item:hover h3::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #ffffff;
	margin: 5px auto 0;
}

.content-item h3 {
	font-size: 18px;
	color: #333;
	transition: color 0.3s;
}

/* About Section */
.about-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.about-content {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 60px;
}
.about-text > div {
	margin-bottom: 30px;
}
.about-text p {
	color: #666;
	line-height: 2;
	text-align: justify;
}

.consult-btn {
	padding: 14px 40px;
	background: #c9a961;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	transition: all 0.3s;
}

.consult-btn:hover {
	background: #b8964e;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 20px;
	transform: translateY(-90px);
}

.stat-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 110px;
}

.stat-item {
	padding: 20px;
}

.stat-label {
	font-size: 16px;
	font-weight: 500;
	color: #1a2c4a;
	margin-bottom: 8px;
}

.stat-desc {
	font-size: 12px;
	color: #666;
	margin-bottom: 12px;
	line-height: 1.4;
}

.stat-divider {
	width: 100%;
	height: 2px;
	background-color: #1a2c4a;
	margin-bottom: 10px;
}

.stat-value {
	font-size: 36px;
	font-weight: 600;
	color: #1a2c4a;
}

/* Honor Section */
.honor-section {
    height: 465px;
	padding: 80px 0;
    background: url('/zh/images/honnor-bg.jpg') no-repeat center;
}

.honor-section .section-header h2 {
	color: #fff;
}

.honor-section .section-header h2 .subtitle {
	color: #ffffff;
}

.honor-section .section-header h2::after {
	background: #fff;
}

.honor-section .more-link {
	color: #fff;
}

.honor-swiper-container {
	position: relative;
	padding: 0;
}

.honor-swiper {
	overflow: hidden;
}

.honor-swiper .swiper-slide {
	height: auto;
}

.logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 6px;
	transition: all 0.3s;
	background: #fff;
	aspect-ratio: 232 / 158;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.logo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.honor-swiper-container .swiper-button-prev,
.honor-swiper-container .swiper-button-next {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 40px;
	cursor: pointer;
	transition: all 0.3s;
	z-index: 10;
	background: transparent;
}

.honor-swiper-container .swiper-button-prev::after,
.honor-swiper-container .swiper-button-next::after {
	content: '';
	position: absolute;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
}

.honor-swiper-container .swiper-button-prev {
	left: -50px;
}

.honor-swiper-container .swiper-button-prev::after {
	border-width: 20px 25px 20px 0;
	border-color: transparent rgba(255, 255, 255, 0.4) transparent transparent;
}

.honor-swiper-container .swiper-button-next {
	right: -50px;
}

.honor-swiper-container .swiper-button-next::after {
	border-width: 20px 0 20px 25px;
	border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
}

.honor-swiper-container .swiper-button-prev:hover::after {
	border-right-color: rgba(255, 255, 255, 0.7);
}

.honor-swiper-container .swiper-button-next:hover::after {
	border-left-color: rgba(255, 255, 255, 0.7);
}

.honor-swiper-container .swiper-button-disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Industry Section */
.industry-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.industry-section .section-header h2 .subtitle {
	color: #c9a961;
	font-size: 16px;
	margin-left: 20px;
	font-weight: normal;
}

.industry-tabs {
	display: flex;
	gap: 40px;
	margin-bottom: 36px;
}

.industry-tab-btn {
	padding: 0 0 16px 0;
	border: none;
	background: transparent;
	color: #666;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s;
	position: relative;
	white-space: nowrap;
}

.industry-tab-btn:hover {
	color: #1a2c4a;
}

.industry-tab-btn.active {
	color: #1a2c4a;
	font-weight: 500;
}

.industry-tab-btn.active::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 3px;
	background: #c9a961;
}

.industry-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.industry-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 6px;
}

.industry-info {
	display: flex;
	flex-direction: column;
    height: 100%;
}

.industry-section-item {
	margin-bottom: 16px;
}

.industry-section-item h4 {
	font-size: 16px;
	color: #c9a961;
	margin-bottom: 12px;
	font-weight: 600;
	padding-left: 10px;
	line-height: 1;
	border-left: 3px solid #c9a961;
}

.industry-section-item p {
	color: #666;
	line-height: 1.8;
	font-size: 14px;
	margin: 0;
}

.industry-section-item div {
	color: #666;
	line-height: 1.8;
	font-size: 14px;
}

.industry-section-item strong {
	color: #1a2c4a;
	font-weight: 600;
}

.industry-stats {
	display: flex;
	gap: 40px;
	margin-top: 12px;
}

.industry-stat-item {
	text-align: left;
}

.industry-stat-item .stat-value {
	font-size: 48px;
	font-weight: 600;
	color: #1a2c4a;
	margin-bottom: 8px;
	line-height: 1;
}

.industry-stat-item .stat-label {
	font-size: 14px;
	color: #999;
}

.industry-actions {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.action-btn {
	padding: 14px 40px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
	transition: all 0.3s;
	font-weight: 500;
}

.action-btn.primary {
	background: #1a2c4a;
	color: #fff;
}

.action-btn.primary:hover {
	background: #152339;
	box-shadow: 0 4px 12px rgba(26, 44, 74, 0.3);
}

.action-btn.secondary {
	background: #c9a961;
	color: #fff;
}

.action-btn.secondary:hover {
	background: #b8964e;
	box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* News Section */
.news-section {
	padding: 80px 0;
	background: #fff;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.news-card {
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	cursor: pointer;
}

.news-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.news-card:hover .news-image img {
	transform: scale(1.1);
}

.news-info {
	padding: 20px 24px 18px;
}

.news-date {
	font-size: 12px;
	color: #999;
	margin-bottom: 12px;
}

.news-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 48px;
}

.news-description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-footer {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.news-view-more {
	font-size: 14px;
	color: #999;
}

.news-card:hover .news-view-more {
	color: #c9a961;
}

/* Partners Section */
.partners-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.partner-item {
	background: #fff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	aspect-ratio: 260 / 170;
	overflow: hidden;
}

.partner-item:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.partner-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Team Section */
.team-section {
	padding: 80px 0;
	background: #1a2c4a;
	color: #fff;
}

.team-section .section-header h2 {
	color: #fff;
}

.team-section .section-header h2 .subtitle {
	color: #c9a961;
}

.team-section .more-link {
	color: #c9a961;
}

.team-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.team-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 6px;
}

.team-description h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #fff;
}

.team-description p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 2;
}

/* Guozun Thought Section */
.thought-section {
	padding: 50px 0;
	background: #1a2c4a;
	color: #fff;
}

.thought-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.thought-text {
	padding-right: 40px;
}

.thought-title {
	margin-bottom: 40px;
}

.thought-title h2 {
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 12px 0;
	position: relative;
	padding-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.thought-title h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 110px;
	height: 3px;
	background: #fff;
}

.thought-title .subtitle {
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: normal;
	opacity: 0.8;
}

.thought-description p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 2;
	font-size: 15px;
	margin-bottom: 20px;
}

.thought-image {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	width: 553px;
}

.thought-image img {
    width: 553px;
    height: 340px;
	object-fit: cover;
	display: block;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 44, 74, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	cursor: pointer;
}

.thought-image:hover .image-overlay {
	background: rgba(26, 44, 74, 0.4);
}

.play-button {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
}

.play-button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-left: 20px solid #1a2c4a;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

.play-button:hover {
	background: #fff;
	transform: scale(1.1);
}

/* Scroll Animation Styles - 只有启用动画模式时才生效 */
body.scroll-animation-enabled section {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.scroll-animation-enabled section.animate-in {
	opacity: 1;
	transform: translateY(0);
}

/* 不同section使用不同的动画效果 */
body.scroll-animation-enabled .professional-section {
	transform: translateY(60px) scale(0.95);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

body.scroll-animation-enabled .professional-section.animate-in {
	transform: translateY(0) scale(1);
}

body.scroll-animation-enabled .about-section {
	transform: translateX(-50px);
	transition: opacity 0.9s ease-out 0.1s, transform 0.9s ease-out 0.1s;
}

body.scroll-animation-enabled .about-section.animate-in {
	transform: translateX(0);
}

body.scroll-animation-enabled .honor-section {
	transform: translateY(40px);
	transition: opacity 0.8s ease-out 0.15s, transform 0.8s ease-out 0.15s;
}

body.scroll-animation-enabled .honor-section.animate-in {
	transform: translateY(0);
}

body.scroll-animation-enabled .industry-section {
	transform: translateX(50px);
	transition: opacity 0.9s ease-out 0.1s, transform 0.9s ease-out 0.1s;
}

body.scroll-animation-enabled .industry-section.animate-in {
	transform: translateX(0);
}

body.scroll-animation-enabled .news-section {
	transform: translateY(50px);
	transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}

body.scroll-animation-enabled .news-section.animate-in {
	transform: translateY(0);
}

body.scroll-animation-enabled .partners-section {
	transform: scale(0.9);
	transition: opacity 0.9s ease-out 0.15s, transform 0.9s ease-out 0.15s;
}

body.scroll-animation-enabled .partners-section.animate-in {
	transform: scale(1);
}

body.scroll-animation-enabled .thought-section {
	transform: translateY(40px);
	transition: opacity 1s ease-out 0.2s, transform 1s ease-out 0.2s;
}

body.scroll-animation-enabled .thought-section.animate-in {
	transform: translateY(0);
}

/* 子元素的逐个出现动画 */
body.scroll-animation-enabled .professional-content .content-item,
body.scroll-animation-enabled .news-grid .news-card,
body.scroll-animation-enabled .partners-grid .partner-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in .content-item,
.animate-in .news-card,
.animate-in .partner-item {
	opacity: 1;
	transform: translateY(0);
}

/* 为子元素添加延迟效果 */
.animate-in .content-item:nth-child(1),
.animate-in .news-card:nth-child(1),
.animate-in .partner-item:nth-child(1) {
	transition-delay: 0.1s;
}

.animate-in .content-item:nth-child(2),
.animate-in .news-card:nth-child(2),
.animate-in .partner-item:nth-child(2) {
	transition-delay: 0.2s;
}

.animate-in .content-item:nth-child(3),
.animate-in .news-card:nth-child(3),
.animate-in .partner-item:nth-child(3) {
	transition-delay: 0.3s;
}

.animate-in .content-item:nth-child(4),
.animate-in .news-card:nth-child(4),
.animate-in .partner-item:nth-child(4) {
	transition-delay: 0.4s;
}

.animate-in .content-item:nth-child(5),
.animate-in .news-card:nth-child(5),
.animate-in .partner-item:nth-child(5) {
	transition-delay: 0.5s;
}

.animate-in .content-item:nth-child(6),
.animate-in .news-card:nth-child(6),
.animate-in .partner-item:nth-child(6) {
	transition-delay: 0.6s;
}

.animate-in .partner-item:nth-child(7) {
	transition-delay: 0.7s;
}

.animate-in .partner-item:nth-child(8) {
	transition-delay: 0.8s;
}

.animate-in .partner-item:nth-child(9) {
	transition-delay: 0.9s;
}

.animate-in .partner-item:nth-child(10) {
	transition-delay: 1s;
}
