* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: 'SourceHanSans';
	src: url('fonts/sourcehansans.woff') format('woff'),
		url('fonts/sourcehansans.woff') format('woff2');
	font-weight: normal;
	font-style: normal;
}

/* 应用思源黑体到全局 */
body {
	font-family: 'Source Han Sans', sans-serif;
}

a {
	text-decoration: none;
}

/* 导航栏样式优化 */
.navbar—one {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 64px;
	background: white;
	align-items: center;
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.navbar {
	display: flex;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 36px;
	margin-right: 40px;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	/* 添加此行实现水平居中 */
	flex: 1;
}

.nav-links a {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	padding: 22px 40px;
	position: relative;
}

.nav-links a:hover {
	color: #4A90E2;
}

.nav-links a:hover::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 16px;
	right: 16px;
	height: 2px;
	background: #4A90E2;
}

.contact-wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
}

.contact-btn {
	background: white;
	border: 1px solid #000000;
	padding: 6px 24px;
	border-radius: 20px;
	cursor: pointer;
	font-size: 14px;
}

.contact-btn a {
	text-decoration: none;
	color: #000000;
}


.search-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.search-btn img {
	width: 20px;
	height: 20px;
	opacity: 0.7;
}

.search-btn:hover img {
	opacity: 1;
}

/* 为了防止导航栏遮挡内容 */
.content {
	margin-top: 64px;
}

/* 主横幅样式 */
.hero {
	height: 100vh;
	background: linear-gradient(135deg, #6c63ff 0%, #4a90e2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	padding: 0 5%;
}

.hero-content {
	max-width: 800px;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

/* Banner Carousel Styles */
.banner-carousel {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	max-height: 800px;
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	visibility: hidden;
	z-index: 1;
}

.carousel-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* 背景图层样式 - 可以左右延展 */
.slide-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform 1s ease;
	transform: scale(1.05);
}

.carousel-slide.active .slide-background {
	transform: scale(1);
}

/* 内容包装区域 - 确保内容在安全区内 */
.slide-content-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	justify-content: center;
}

/* 轮播内容样式 */
.slide-content {
	max-width: 1400px;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	display: flex;
	align-items: center;
}

/* 文本和图片样式 */
.slide-text,
.center-text {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	visibility: hidden;
}

.slide-text {
	width: 50%;
	padding-right: 40px;
}

.slide-text h2 {
	font-size: 2.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #FFF;
}

.slide-text p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 30px;
	color: #FFF;
}

.slide-image {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	visibility: hidden;
	width: 50%;
}

.slide-image img {
	max-width: 100%;
	height: auto;
}

/* 动画类 */
.slide-text.animate-text,
.center-text.animate-text {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.slide-image.animate-image {
	opacity: 1;
	transform: translateX(0);
	visibility: visible;
}

/* 居中内容样式 */
.center-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* 确保center-text类的文字正确显示 */
.center-text {
	width: 80% !important;
	text-align: center;
	padding: 0 20px;
}

.center-text h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #000 !important;
}

.center-text p {
	font-size: 16px;
	line-height: 1.6;
	color: #000 !important;
}

/* 轮播控制按钮样式 */
.carousel-controls {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	z-index: 3;
	display: flex;
	justify-content: center;
}

.carousel-indicators {
	display: flex;
	gap: 10px;
}

.indicator {
	width: 40px;
	height: 6px;
	border-radius: 10px;
	background-color: #FFF;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	opacity: 0.6;
}

.indicator.active {
	background: #EE8935;
	width: 40px;
	opacity: 1;
}

.services-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 64px;
}

.services-left {
	flex: 1;
	margin-top: 102px;
}

.platform-image {
	width: 100%;
	max-width: 710px;
	height: auto;
}

.pro-left {
	width: 657px;
}

.pro-left h2{
	margin-bottom: 20px;
}

.services-right {
	flex: 1;
}

.section-title {
	font-size: 32px;
	color: #333;
	margin-bottom: 50px;
}

.service-items {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.service-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.service-icon {
	width: 20px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon img {
	width: 100%;
	height: auto;
}


.service-content h3 {
	font-size: 25px;
	color: #191919;
	margin-bottom: 8px;
}

.service-content p {
	font-size: 16px;
	color: #191919;
	line-height: 30px;
}

.learn-more-btn {
	/* margin-top: 60px;
	width: 130px;
	height: 36px;
	background-color: #EE8935;
	color: white;
	border: none;
	border-radius: 20px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	line-height: 36px;
	position: relative;
	overflow: hidden; */

	position: position;
	/* 添加绝对定位 */
	bottom: 10px;
	/* 距离底部10px */
	width: 130px;
	height: 36px;
	background-color: #EE8935;
	color: white;
	border: none;
	border-radius: 20px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
	display: flex;
	justify-content: center;
	line-height: 36px;
	ma
}

.learn-more-btn:hover {
	background-color: #D67828;
	/* 更深的橙色背景 */
	transform: scale(1.05);
	/* 轻微放大效果 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* 添加轻微阴影增强视觉效果 */
}

.learn-more-btn img {
	margin-top: 10px;
	margin-right: 9px;
	height: 16px;
	width: 16px;
	transition: transform 0.3s ease;
}

.learn-more-btn:hover img {
	transform: translateX(3px);
	/* 箭头右移效果，增强交互感 */
}

/* 响应式设计 */
@media (max-width: 768px) {
	.services-container {
		flex-direction: column;
		padding: 0 20px;
	}

	.services-left {
		margin-bottom: 40px;
	}
}

/* 页脚样式 */
.footer {
	background-color: #EBE9F5;
	color: #333;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	background: #F1F1F1;
	padding-right: 40px;
}

.footer-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	background: #FFF;
	height: 300px;
	padding-top: 40px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 40px;
	width: 278px;
}

.footer-logo img {
	height: 40px;
	width: 100%;
}

.footer-qr {
	text-align: center;
}

.footer-qr img {
	width: 120px;
	height: 120px;
	margin-bottom: 10px;
}

.footer-qr p {
	font-size: 14px;
	color: #666;
}

.footer-nav {
	display: flex;
	gap: 60px;
	padding-top: 50px;
	flex: 1;
	justify-content: center;
}

.footer-nav-column h4 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #333;
}

.footer-nav-column h4 a {
	text-decoration: none;
	color: #333;
}

.footer-nav-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav-column ul li {
	margin-bottom: 12px;
}

.footer-nav-column ul li a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-nav-column ul li a:hover {
	color: #333;
}

.footer-bottom {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #eee;
	background: #000000;
}

.footer-bottom p {
	font-size: 12px;
	color: #999;
}

.xinshu-content {
	/* padding: 80px 0; */
	max-width: 1400px;
	margin: 0 auto;
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 100px 0px 100px 0px;
}

.pro-div {
	display: flex;
	/* justify-content: space-between; */
}


.image-container {
	position: relative;
	/* display: flex;
	justify-content: space-between; */
}

.image1 {
	position: absolute;
	/* top: 109px;
	left: 205px;
	
	z-index: 1; */
	width: 518px;
	height: 380px;
	z-index: 100;

	/* width: 50%;
	height: 66.67%; */
}

.image2 {

	/* position: absolute; */
	/* top: 0;
	left: 0; */
	/* z-index: 2; */
	width: 484px;
	height: 356px;
	margin-top: 133px;
	margin-left: 259px;

}

.service-secion-gird {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(435px, 1fr));
	gap: 47px;
}

.service-section-grid-item {
	background-color: #EBE9F5;
	height: 600px;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	z-index: 1;
	cursor: pointer;
	transform-origin: center bottom;
	overflow: hidden;
}

/* .service-section-grid-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(to bottom, rgba(238, 137, 53, 0.2), transparent);
	transition: all 0.5s ease;
	z-index: 0;
} */

.service-section-grid-item:hover::before {
	height: 100%;
}

.service-section-grid-item:hover {
	transform: scale(1.08) translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	z-index: 2;
}

.service-section-grid-item:hover .service-section-grid-item-content h2 {
	transform: translateY(-5px);
	color: #EE8935;
}

.service-section-grid-item:hover img {
	transform: scale(1.05);
}

.service-section-grid-item-content {
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 30px 33px 40px 33px;
	position: relative;
	z-index: 1;
}

.service-section-grid-item-content h2 {
	font-family: Source Han Sans;
	font-size: 25px;
	font-weight: bold;
	line-height: 43px;
	color: #191919;
	transition: all 0.5s ease;
}

.service-section-grid-item img {
	transition: all 0.5s ease;
}

.service-section-grid-item-content p {
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
	color: #191919;
	margin-top: 20px;
	transition: all 0.5s ease;
}

.service-section-grid-item:hover .service-section-grid-item-content p {
	color: #333;
}

.part-section {
	padding: 100px 0;

	/* 上边 | 右边 | 下边 | 左边 */
	/* padding: 80px 0px 69px 0px; */
	background-color: #F5F7FA;
}

.part-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 50px;
}

.news-right-item-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(253px, 1fr));
	gap: 25px;
}

.part-grid-item {
	height: 100px;
	display: grid;
	place-items: center;
	background-color: #fff;
	padding: 0 17px;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	transform-origin: center center;
	position: relative;
	overflow: hidden;
}

.part-grid-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(238, 137, 53, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.part-grid-item:hover::after {
	opacity: 1;
}

.part-grid-item:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.part-grid-item img {
	transition: all 0.5s ease;
	filter: grayscale(20%);
}

.part-grid-item:hover img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.news-div {
	display: flex;
	gap: 25px;
}

.news-left-item,
.news-right-item-grid-item {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-left-item {
	height: 574px;
	width: 566px;
	background-color: #EBE9F5;
	cursor: pointer;
	transform-origin: center bottom;
	overflow: hidden;
	position: relative;
}

.news-left-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.news-left-item:hover .news-left-item-content h2,
.news-right-item-grid-item:hover .news-left-item-content h2 {
	color: #EE8935;
	transform: translateY(-5px);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-left-item img,
.news-right-item-grid-item img {
	transition: transform 0.3s ease;
}

.news-left-item:hover img,
.news-right-item-grid-item:hover img {
	transform: scale(1.05);
}

.news-left-item:hover .news-left-item-content p,
.news-right-item-grid-item:hover .news-left-item-content p {
	color: #333;
}

.news-left-item-content h2,
.news-left-item-content p {
	transition: all 0.5s ease;
}

.new-right-item {
	flex: 1;
}

.news-left-item-content h2 {
	font-family: Source Han Sans;
	font-size: 20px;
	font-weight: bold;
	color: #191919;
	margin-top: 20px;
	margin-bottom: 6px;
	margin-left: 19px;
	transition: all 0.3s ease;
}

.news-left-item-content p {
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
	color: #191919;
	margin-top: 15px;
	margin-left: 19px;
}

.date-content {
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
	color: #848484;
	margin-left: 19px;
}


.news-right-item-grid-item {
	height: 495px;
	background: #EBE9F5;
	cursor: pointer;
	transform-origin: center bottom;
	overflow: hidden;
	position: relative;
}

.news-right-item-grid-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}


.news-right-item-grid-item:hover::before {
	left: 100%;
}

.news-right-item-grid-item:hover .news-left-item-content h2 {
	color: #EE8935;
	transform: translateY(-5px);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-right-bottom {
	background: linear-gradient(270deg, #4D3DA3 0%, #B34A43 100%);
	height: 53px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.news-right-bottom-title {
	font-family: Source Han Sans;
	font-size: 20px;
	color: #FFFFFF;
	margin-left: 30px;
	cursor: pointer;
}

.bottom-section {
	background: linear-gradient(270deg, #4D3DA3 0%, #B34A43 100%);
	height: 280px;
	text-align: center;
}

.bottom-section h1 {
	font-family: Source Han Sans;
	font-size: 35px;
	color: #FFFFFF;
	padding-top: 82px;
}

.call-btn {
	width: 150px;
	height: 45px;
	border-radius: 500px;
	opacity: 1;
	background: #FFFFFF;
	color: #000000;
	font-size: 20px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.call-btn:hover {
	transform: scale(1.05);
	/* 轻微放大效果 */
	box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
	/* 添加轻微阴影增强视觉效果 */
	background-color: #F5F5F5;
	/* 轻微加深白色 */
}

.title-white {
	font-family: Source Han Sans;
	font-size: 35px;
	font-weight: bold;
	color: #FFFFFF;
	margin-bottom: 40px;
}

.title-black {
	font-family: Source Han Sans;
	font-size: 35px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	.service-secion-gird {
		grid-template-columns: repeat(3, 1fr);
	}

	.part-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.news-right-item-grid {
		grid-template-columns: repeat(2, 1fr);
	}


}

@media (max-width: 767px) {
	.service-secion-gird {
		grid-template-columns: 1fr;
	}

	.part-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.news-right-item-grid {
		grid-template-columns: 1fr;
	}
}

/* 响应式调整 */
@media (max-width: 992px) {

	/* 轮播响应式 */
	.slide-content {
		flex-direction: column;
	}

	.slide-text,
	.slide-image {
		width: 100%;
		padding-right: 0;
	}

	.slide-text {
		margin-bottom: 30px;
	}

	.carousel-slide {
		height: auto;
		min-height: 700px;
	}
}

/* 轮播图中心布局的样式 */
.center-content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.center-text {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	visibility: hidden;
	transition-delay: 0.5s;
}

.center-text.animate-text {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.center-text h2 {
	font-size: 43px;
	margin-bottom: 30px;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.center-text p {
	font-size: 22px;
	line-height: 1.6;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.floating-social-bar {
		display: none;
	}
}

/* 轮播内容样式 */
.slide-content {
	max-width: 1400px;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	display: flex;
	align-items: center;
}

/* 左侧文字区域 */
.slide-text {
	width: 50%;
	padding-right: 40px;
}

.slide-text h2 {
	font-size: 2.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #FFF;
}

.slide-text p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 30px;
	color: #FFF;
}

/* 右侧图示区域 */
.slide-image {
	width: 50%;
}

.slide-image img {
	max-width: 100%;
	height: auto;
}

/* 居中内容样式 */
.center-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.marginTop {
	margin-top: 80px;
}

.newMarginTop {
	margin-top: 26px;
}

.service-section-grid-item-img {
	height: 259px;
}

.f-margin-top {
	margin-top: 62px;
}

.news-img-div1 {
		height: 355px;
	}

@media screen and (max-width:1998px) {
	.xinshu-content {
		width: 1400px;
		/* background-color: green; */
	}

	.navbar {
		width: 1400px;
	}
}



/* 1920 */
@media screen and (max-width:1998px) {
	.xinshu-content {
		width: 1400px;
		/* background-color: pink; */
	}

	.navbar {
		width: 1400px;
	}

	.slide-content {
		max-width: 1400px;
	}

	.center-text {
		width: 70% !important;
	}
}

/* 1600 */
@media screen and (max-width:1710px) {
	.xinshu-content {
		width: 1400px;
	}

	.navbar {
		width: 1400px;
	}
}

/* 1280 */
@media screen and (max-width:1420px) {
	.services-container {
		width: 1000px;
	}

	.xinshu-content {
		width: 1000px;
	}

	.navbar {
		width: 1000px;
	}

	.nav-links a {
		color: #333;
		text-decoration: none;
		font-size: 14px;
		padding: 22px 20px;
		position: relative;
	}

	.footer-content {
		max-width: 1000px;
	}

	.footer-left {
		gap: 10px;
		background: #FFF;
		height: 300px;
		padding-top: 40px;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 40px;
		width: 278px;
	}

	.footer-nav {
		gap: 30px;
	}

	.footer-nav-column h4 {
		font-size: 14px;
		font-weight: 500;
		margin-bottom: 20px;
		color: #333;
	}

	.footer-nav-column ul li a {
		color: #666;
		text-decoration: none;
		font-size: 14px;
		transition: color 0.3s;
	}

	.title-black {
		font-family: Source Han Sans;
		font-size: 28px;
		font-weight: bold;
		color: #000000;
		margin-bottom: 40px;
	}

	.com-content {
		font-family: Source Han Sans;
		font-weight: 400;
		font-size: 16px;
		color: #191919;
	}

	.about-f-img {
		width: 500px;
		height: 333px;
	}

	.about-left-div {
		width: 43%;
	}

	.section-title {
		font-size: 32px;
		color: #333;
		margin-bottom: 50px;
	}

	.slide-content {
		max-width: 1000px;
	}

	.slide-text h2,
	.center-text h2 {
		font-size: 28px;
	}

	.slide-text p,
	.center-text p {
		font-size: 16px;
		line-height: 1.5;
	}

	.banner-carousel {
		max-height: 700px;
	}

	.section-title {
		margin-top: 30px;
		font-size: 28px;
		color: #333;
		margin-bottom: 20px;
	}

	.service-content h3 {
		font-size: 20px;
		color: #191919;
		margin-bottom: 8px;
	}

	.service-content p {
		font-size: 16px;
		color: #191919;
		line-height: 20px;
	}


	.pro-left {
		width: 457px;
	}

	.image1 {
		position: absolute;
		width: 418px;
		height: 280px;
		z-index: 100;
	}

	.image2 {

		width: 384px;
		height: 256px;
		margin-top: 133px;
		margin-left: 189px;
	}

	.services-right {
		margin-left: 25px;
	}

	.service-section-grid-item {
		height: 500px;
	}


	.service-secion-gird {
		gap: 20px;
	}


	.service-section-grid-item-content {
		/* 上边 | 右边 | 下边 | 左边 */
		padding: 30px 23px 0px 23px;
	}

	.project-title {
		height: 145px;
	}

	.marginTop {
		margin-top: 0px;
	}

	.f-margin-top {
		margin-top: 30px;
	}

	.service-section-grid-item-content h2 {
		font-size: 22px;
		line-height: 33px;
	}



	.service-section-grid-item-content p {
		font-size: 16px;
		line-height: 20px;
		color: #191919;
		margin-top: 20px;
	}


	.news-left-item {
		height: 474px;
		width: 456px;
	}

	.news-right-item-grid-item {
		height: 395px;
	}

	.newMarginTop {
		margin-top: 25px;
	}

	.news-left-item-content h2 {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 6px;
		margin-left: 15px;
		transition: all 0.3s ease;
	}

	.news-left-item-content p {
		font-size: 14px;
		line-height: 20px;
		margin-top: 15px;
		margin-left: 15px;
	}

	.date-content {
		font-size: 14px;
		line-height: 20px;
		margin-left: 15px;
	}

	.news-img-div {
		height: 160px;
	}

	.news-img-div1 {
		height: 280px;
	}

	.service-section-grid-item-img {
		height: 209px;
	}
	
	.bottom{
		margin-bottom: 62px;
	}


}


/* 响应式设计 - 平板及以下 */
@media screen and (max-width: 992px) {
	.slide-content {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.slide-text,
	.slide-image {
		width: 90%;
		padding: 0;
		margin: 10px auto;
	}

	.slide-text {
		order: 1;
	}

	.slide-image {
		order: 0;
		margin-bottom: 20px;
	}

	.banner-carousel {
		max-height: 600px;
	}

	.center-text {
		width: 90% !important;
	}
}

/* 响应式设计 - 手机 */
@media screen and (max-width: 768px) {

	.slide-text h2,
	.center-text h2 {
		font-size: 24px;
	}

	.slide-text p,
	.center-text p {
		font-size: 14px;
		line-height: 1.4;
	}

	.banner-carousel {
		max-height: 500px;
	}

	.carousel-indicators {
		bottom: 10px;
	}

	.indicator {
		width: 8px;
		height: 8px;
		margin: 0 4px;
	}
}

/* 响应式辅助类 */
.desktop-only {
	display: inline;
}

@media screen and (max-width: 992px) {
	.desktop-only {
		display: none;
	}
}