.home-about {
	background-color: rgba(107, 94, 67, 0.12);
	padding: 40px 0 80px;
}
.container {
	max-width: 1680px;
	margin: 0 auto;
	background-color: transparent;
}
.main-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	min-height: 500px;
}
.left-col {
	flex: 1;
	max-width: 550px;
}
.main-title {
	font-size: 40px;
	font-weight: 500;
	color: #222222;
	margin-bottom: 0;
	letter-spacing: 1px;
	font-family: Noto Serif SC, Noto Serif SC;
}
.title-underline {
	width: 60px;
	height: 2px;
	background-color:#6B5E43;
	margin: 40px 0 40px 0;
}
.left-col p {
	font-size: 1rem;
	color:#222222;
	margin-bottom:24px;
	text-align: justify;
}
.learn-more {
	display: inline-flex;
	align-items: center;
	margin-top: 48px;
	color:#222222;
	text-decoration: none;
	font-size: 18px;
	padding-right:30px;
	background:url(../images/icon_all.svg) no-repeat right center;
	background-size:20px 20px;
	transition: opacity 0.3s;
}
.learn-more:hover {
	opacity: 0.6;
}
.learn-more span {
	margin-left: 8px;
	font-size: 18px;
}
.right-col {
	flex: 1.2;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.right-col img {
	width: 100%;
	max-width: 1170px;
	height: auto;
	display: block;
}
.stats-bar {
	margin-top: 80px;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.stat-item {
	flex: 1;
	text-align: left;
	position: relative;
}
.stat-item:first-child {
	padding-left: 0;
}
.stat-item:nth-child(2) {
	padding-left:60px;
}
.stat-item:nth-child(3) {
	padding-left:80px;
}
.stat-item::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 60%;
	background-color: rgba(107, 94, 67, 0.24);
}
.stat-item:nth-child(1)::after {
	right: 120px;
}
.stat-item:nth-child(2)::after {
	right:100px;
}
.stat-item:nth-child(3)::after {
	right:190px;
}
.stat-item:last-child::after {
	display: none;
}
.stat-item:last-child {
	text-align: center;
	flex: 0 0 auto;
	margin-left: auto;
}
.stat-number {
	font-family: Noto Serif SC, Noto Serif SC;
	font-size: 96px;
	color:#6B5E43;
	line-height: 1;
	margin-bottom: 30px;
	font-weight: 600;
	position: relative;
	display: inline-block;
}
.stat-number .suffix {
	font-size: 22px;
	position: absolute;
	bottom: 8px;
	right: -20px;
}
.stat-item:nth-child(1) .stat-number .suffix {
	right: -60px;
}
.stat-item:nth-child(2) .stat-number .suffix {
	right: -80px;
}
.stat-label {
	font-size: .8rem;
	color:#6B5E43;
}
.stat-item:nth-child(1) .stat-label {
	padding-left:50px;
}
.stat-item:nth-child(2) .stat-label {
	padding-left:80px;
}
.stat-item:nth-child(4) .stat-label {
	padding-left:30px;
}
.home-news {
	padding:160px 0;
}
.header-title {
	text-align: center;
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 48px;
	color: #222222;
	font-family: Noto Serif SC, Noto Serif SC;
}
.logo-wrapper {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
	padding: 20px 0;
	margin-bottom: 160px;
	background-color: #fff;
}
.logo-track {
	display: flex;
	width: calc(180px * 16 + 104px * 16);
	animation: scroll 30s linear infinite;
	will-change: transform;
}
.logo-item {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-right: 104px;
	transition: opacity 0.2s;
}
.logo-item:last-child {
	margin-right: 0;
}
.logo-item img {
	height: 88px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s ease, transform 0.2s ease;
	display: block;
}
.logo-item:hover img {
	filter: grayscale(0%);
	transform: scale(1.05);
}
@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-180px * 8 - 104px * 8)); }
}
.news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom:64px;
}
.news-header h2 {
	font-size: 40px;
	color:#222222;
	font-weight: 500;
	font-family: Noto Serif SC, Noto Serif SC;
}
.news-header a {
	text-decoration: none;
	color: #222222;
	font-size: 18px;
	transition: opacity 0.3s;
	padding-right:30px;
	background:url(../images/icon_all.svg) no-repeat right center;
	background-size:20px 20px;
}
.news-header a:hover {
	opacity: 0.6;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 固定3列，等宽 */
  gap: 30px;
}
.news-card {
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.news-card:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.news-img-container {
	width: 100%;
	height: 304px;
	overflow: hidden;
}
.news-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}
.news-card:hover .news-img-container img {
	transform: scale(1.08);
}
.news-content {
	padding: 24px;
}
.news-content h2 {
	font-size: 18px;
	line-height: 30px;
	color: #222222;
	margin-bottom: 24px;
	height: 60px;
	overflow: hidden;
	display: -webkit-box;
	font-weight:normal;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.news-card:hover .news-content h2 {
	color:#6B5E43;
}
.read-more {
	font-size: 18px;
	color: #222222;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: opacity 0.3s;
	padding-right:30px;
	background:url(../images/icon_all.svg) no-repeat right center;
	background-size:16px 16px;
}
.news-card:hover .read-more {
	opacity: 0.6;
}
.news-img-link {
	display: block;
	width: 100%;
	height: 100%;
}
.container2 {
	position: relative;
	width: 100vw;
	height: 100vh;
	
	background-size: cover;
	background-position: center;
	display: flex;
	transition: background-image 0.5s ease-in-out;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	transition: background-color 0.4s ease;
	z-index: 1;
	pointer-events: none;
}
.morecase {
	position: absolute;
	bottom: 5%;
	right:5%;
	font-size:1rem;
	z-index: 20;
}
.morecase a {
	color:#fff;
	background:url(../images/icon_go_w.svg) no-repeat right center;
	background-size:14px;
	padding-right:20px;
	transition: opacity 0.3s;
}
.morecase a:hover {
	opacity:0.6;
}
.container999:hover .overlay {
	background-color: rgba(0, 0, 0, 0.75);
}
.panel {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	flex: 1;
	transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: 3;
	pointer-events: none;
}
.panel:hover {
	flex: 1;
}
.content-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%;
	padding: 0 40px;
	background-color: transparent;
	transition: background-color 0.4s ease, justify-content 0.5s ease;
}
.panel:hover .content-box {
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	/*background: rgba(107,94,67,0.88);*/
}
.header-group {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.header-group:after {
	content: '';
	position: absolute;
	bottom: -48px;
	left:50%;
	width:64px;
	transform: translatex(-50%);
	height: 2px;
	background-color: #fff;
	z-index: 4;
}
.panel:hover .header-group {
	align-items: flex-start;
	text-align: left;
}
.panel:hover .header-group:after {
	left:0;
	bottom: -32px;
	transform: translatex(0);
}
.panel:hover .header-group::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -41px;
	transform: translateY(-50%);
	width: 3px;
	height: 100px;
	background-color: #fff;
	z-index: 4;
}
.loc {
	font-size:.8rem;
	color: rgba(255,255,255,0.8);
	margin-bottom: 15px;
}
.title {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 10px;
	font-family: Noto Serif SC, Noto Serif SC;
	color:#fff;
}
.title-en {
	font-size: 24px;
	color: #e0e0e0;
}
.bottom-content {
	display: flex;
	flex-direction: column;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.5s ease, margin-top 0.5s ease;
}
.panel:hover .bottom-content {
	opacity: 1;
	max-height: 500px;
	margin-top: 80px;
}
.panel:hover .loc {
	margin-bottom: 5px;
}
.panel:hover .title {
	margin-bottom: 5px;
}
.desc {
	font-size: 1rem;
	line-height: 2;
	color: #fff;
	margin-bottom: 200px;
}
.desc a,
.desc a:hover {
	color: #fff;
}
.links {
	display: flex;
	gap: 30px;
	font-size: 1rem;
}
.links a {
	color: #fff;
	background:url(../images/icon_more.svg) no-repeat right center;
	padding-bottom:5px;
	padding-right:30px;
	background-size:20px;
	text-decoration: none;
	transition: opacity 0.3s;
	display: flex;
	align-items: center;
}
.links a:hover {
	color:#fff;
	opacity:0.7;
}
@media (max-width: 1200px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 992px) {
	.main-section {
		flex-direction: column-reverse;
		gap: 40px;
		align-items: center;
	}
	.right-col {
		width: 100%;
		justify-content: center;
	}
	.left-col {
		max-width: 100%;
		padding-top: 0;
	}
	.main-title {
		font-size: 1.7rem;
	}
}

@media (max-width: 768px) {
	
	
	.home-about {
	padding: 60px 0 60px;
}
	
	.learn-more {
	font-size: .8rem;
	margin-top: 28px;
}

.left-col p {
	font-size: .8rem;
}

.left-col p span{ display:block; margin-top:0.2rem; font-size:0.9rem!important ;}

.stat-number .suffix {
	font-size: 1.2rem;
}
.stat-item:nth-child(2) .stat-number .suffix {
	right: -70px;
}

.container2{ display:block}


.panel {
	height: 50%;
	width: 50%;
	float: left;
	border-bottom:1px solid rgba(255, 255, 255, 0.3);
}
.panel:hover .header-group::before {
	left: -20px;
	width: 1px;
	height: 50px;
}

.panel:hover .bottom-content {
	margin-top:0px;
}

.panel:hover .header-group {
	display:none
}

.content-box {
	padding: 0 20px;
}
.title {
	font-size: 1rem;
	line-height:1.5;
}
.title-en {
	font-size: 1rem;
}
.header-group::after {
	bottom: -28px;
}

.desc {
	font-size:0.9rem;
	margin-bottom:30px;
}
.morecase {
	position: absolute;
	bottom: -60px;
	right:0;
	width:100%;
	text-align:center;
	font-size: 1.5rem;
}
.morecase a {
	color: #222222;
	padding-right:0;
	font-size:1.2rem;
}

.links {
	gap: 10px;
	font-size: 1rem;
	flex-direction: column;
}

	
	.stats-bar {
		flex-wrap: wrap;
		gap: 30px 10px;
		padding-top: 30px;
	}
	.stat-item {
		flex: 1 1 calc(50% - 10px);
		padding: 0 15px;
		text-align: left;
	}
	.stat-item:first-child {
		padding-left: 0;
	}
	.stat-item::after {
		display: none !important;
	}
	.stat-item:nth-child(1) {
		border-right: 1px solid #e0deda;
		padding-right: 15px;
	}
	.stat-item:nth-child(2) {
		padding-left: 15px;
	}
	.stat-item:nth-child(3) {
		border-right: 1px solid #e0deda;
		padding-right: 15px;
	}
	.stat-item:nth-child(4) {
		padding-left: 15px;
	}
	.stat-item:last-child {
		flex: 1 1 calc(50% - 10px);
		text-align: left;
		margin-left: 0;
		padding: 0 0 0 15px;
	}
	.stat-item:nth-child(2),
	.stat-item:nth-child(4) {
		border-left: none;
	}
	.news-grid {
		grid-template-columns: 1fr;
	}
	.header-title {
		font-size: 1.3rem;
	}

	.logo-track {
		width: calc(140px * 16 + 60px * 16);
	}
	@keyframes scroll {
		0% { transform: translateX(0); }
		100% { transform: translateX(calc(-140px * 8 - 60px * 8)); }
	}
	
	.news-header h2 {
	font-size: 1.7rem;
}

.news-header a {
	font-size: .9rem;
	padding-right: 20px;
	background: url(../images/icon_all.svg) no-repeat right center;
	background-size: 16px 16px;
}
	
	.news-content h2 {
	font-size: .9rem;
}

.read-more {
	font-size:.9rem;
	
	padding-right: 20px;
	background: url(../images/icon_all.svg) no-repeat right center;
	background-size: 12px 12px;
}

.news-img-container {
	height: 200px;
}

.home-news {
	padding:130px 0 80px;
}


.logo-wrapper {
	margin-bottom: 80px;
}

.logo-item img {
	height: 60px;
}


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

	
}

@media (max-width: 480px) {
	.stats-bar {
		flex-direction: column;
		gap: 0;
		padding-top: 20px;
	}
	.stat-item {
		flex: 1 1 100%;
		padding: 20px 0 !important;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-right: none !important;
		border-left: none !important;
	}
	.stat-item:not(:first-child) {
		border-top: 1px solid #e0deda !important;
	}
	.stat-item:first-child {
		padding-top: 0 !important;
	}
	.stat-item:last-child {
		flex: 1 1 100%;
		text-align: center;
		margin-left: 0;
		padding: 20px 0 !important;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.logo-track {
		width: calc(100px * 16 + 40px * 16);
	}
	@keyframes scroll {
		0% { transform: translateX(0); }
		100% { transform: translateX(calc(-100px * 8 - 40px * 8)); }
	}
}

