* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap'); */
@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: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
	/* sourcehansans.woff */
	font-family: 'Source Han Sans', sans-serif;
}
/* 导航栏样式优化 */
.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;
}

.case-banner-carousel {
	width: 100%;
}

.carousel-container img {
	width: 100%;
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	visibility: hidden;
}

.carousel-slide.active {
	opacity: 1;
	visibility: visible;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-controls {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 2;
}

.carousel-controls button {
	background: rgba(0, 0, 0, 0.5);
	border: none;
	color: white;
	padding: 8px 16px;
	cursor: pointer;
	border-radius: 4px;
	font-size: 18px;
}

.carousel-controls button:hover {
	background: rgba(0, 0, 0, 0.7);
}

.carousel-indicators {
	display: flex;
	gap: 10px;
}

.carousel-indicators span {
	width: 40px;
	height: 6px;
	border-radius: 15px;
	background: #FFF;
	cursor: pointer;
}

.carousel-indicators span.active {
	background: #EE8935;
	width: 40px;
}

.xinshu-content {
	max-width: 1400px;
	margin: 0 auto;
	margin-bottom: 61px;
}

.item-div-img img {
	/* width: 100%; */
	/* height: auto; */
}


.section-title {
	font-size: 35px;
	color: #7D67DF;
	margin-bottom: 40px;
	text-align: center;
}

.service-items {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.service-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.title-icon {
	/* width: 5; */
	padding-left: 33px;
	padding-right: 33px;
	text-align: left;
}

.title-icon img {
	width: 5px;
	height: 100%;
}

.title-icon h2 {
	margin-left: 25px;
	font-size: 25px;
	font-weight: bold;
	color: #191919;
	line-height: 36px;
	text-shadow: 7px 6px 6px rgba(6, 0, 1, 0.36);
	/* background: linear-gradient(0deg, #EAFFFD 0%, #68FFEF 100%); */
	-webkit-background-clip: text;
}

.service-content h3 {
	font-size: 20px;
	color: #333;
	margin-bottom: 8px;
}

.service-content {
	margin-top: 25px;
}

.service-content p {

	font-size: 18px;
	color: #191919;
	line-height: 1.6;
}

.learn-more-btn {
	margin-top: 40px;
	width: 120px;
	height: 36px;
	background-color: #EE8935;
	color: white;
	border: none;
	border-radius: 20px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.learn-more-btn img {
	margin-top: 4px;
	margin-right: 4px;


}

/* 响应式设计 */
@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;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 48px;
	padding-bottom: 110px;
}

.project-grid-four {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 37px;
	padding-bottom: 95px;
}


.project-card {
	background: #F6F8FD;
	/* border-radius: 12px;   */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	min-height: 200px;
	height: 446px;
}

.card-item img {
	width: 100%;
	height: auto;
}

.project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-title {
	color: #191919;
	font-family: Source Han Sans;
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
	letter-spacing: 0em;
}

.f-title {
	font-family: Source Han Sans;
	font-size: 35px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: 0em;
	color: #7D67DF;
	text-align: center;
	margin-top: 105px;
	margin-bottom: 53px;
}

.f-card-item-title {
	font-family: Source Han Sans;
	font-size: 25px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: 0em;
	color: #7D67DF;
	margin-top: 30px;
	margin-bottom: 22px;
}

.f-content {
	font-family: Source Han Sans;
	font-size: 18px;
	font-weight: normal;
	line-height: 40px;
	letter-spacing: 0em;
	color: #191919;
	margin-bottom: 33px;
}

.item-div-title {
	font-family: Source Han Sans;
	font-size: 35px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: 0em;
	color: #191919;
	padding-top: 81px;
	padding-bottom: 40px;
	text-align: center;
}

.f-content-div {
	text-align: center;
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 81px 0px 0px 0px;
}

.f-content-div h1 {
	font-family: Source Han Sans;
	font-size: 35px;
	font-weight: bold;
	color: #191919;
	margin-bottom: 35px;
}

.f-grid-div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 68px;
	/* padding-bottom: 110px; */
}

.s-grid-div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

.bg-div {
	background: #F6F8FD;
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 81px 0px 100px 0px;
}

.f-grid-item {
	height: 517px;
	background: #FFFFFF;
	border-radius: 10px;
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 21px 59px 0px 59px;
}

.s-grid-item {
	height: 775px;
	background: #FFFFFF;
	border-radius: 10px;
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 37px 30px 0px 30px;
}

.s-s-grid-item {
	height: 627px;
	background: #FFFFFF;
	border-radius: 10px;
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 37px 30px 0px 30px;
}

.s-t-grid-item {
	height: 517px;
	border-radius: 10px;
	background: #F6F8FD;
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 57px 59px 0px 59px;
}

.title {
	font-family: Source Han Sans;
	font-size: 35px;
	font-weight: bold;
	color: #191919;
	text-align: center;
}

.content-bg-div {
	background: #F6F8FD;
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 42px 43px 57px 43px;
	border-radius: 10px;
}

.item-title {
	font-family: Source Han Sans;
	font-weight: 700;
	font-size: 25px;
	color: #191919;
}

.size18 {
	font-family: Source Han Sans;
	font-size: 18px;
	color: #191919;
}

.size25Purple {
	font-family: Source Han Sans;
	font-size: 25px;
	font-weight: bold;
	color: #7D67DF;
	text-align: center;
}

.content-bg-div h3 {
	font-family: Source Han Sans;
	font-size: 25px;
	font-weight: bold;
	color: #7D67DF;
	text-align: center;
}

.f-soft-div {
	height: 223px;
	border-radius: 10px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	padding: 32px;
	justify-content: space-between;
}


.f-soft-div p {
	font-family: Source Han Sans;
	font-size: 18px;
	color: #191919;
}

.purple {
	color: #7D67DF;
}

.bold {
	font-weight: 700;
}

.service-item-bg {
	/* 上边 | 右边 | 下边 | 左边 */
	padding: 81px 0px 93px 0px;
}

.item {
	display: flex;
	justify-content: space-between;
}

.item-content-div {
	height: 509px;
	display: block;
	align-content: center;
	width: 39%;
}

@media (min-width: 768px) {
	.project-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.project-grid-four {
		grid-template-columns: repeat(4, 1fr);
	}

	.f-grid-div {
		grid-template-columns: repeat(2, 1fr);
	}

	.s-grid-div {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.project-grid {
		grid-template-columns: 1fr;
	}

	.project-card {
		padding: 30px;
	}


	.project-grid-four {
		grid-template-columns: 2fr;
	}

	.f-grid-div {
		grid-template-columns: repeat(1, 1fr);
	}

	.s-grid-div {
		grid-template-columns: repeat(1, 1fr);
	}
}

.item-four-bg {
	height: 446px;
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-four-bg:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.item-four-title {
	height: 446px;
	width: 100%;

	opacity: 1;

	font-family: Source Han Sans;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0em;
	color: #FFFFFF;
	line-height: 446px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}




.custom-tab {
	margin: -3px auto;
	display: flex;
	justify-content: center;
	height: 50px;
	/* border-bottom: 1px solid #ccc; */
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
	align-items: center;

}

.tab-list {
	display: flex;
	height: 30px;
	/* border-bottom: 1px solid #ccc; */
	font-size: 16px;

	flex-direction: row;
	flex-wrap: wrap;
	gap: 60px
}

.tab-list div {
	/* padding: 10px 20px; */
	cursor: pointer;
	position: relative;
	/* 为底部线条的绝对定位做准备 */
	display: inline-block;
	/* 让元素宽度自适应内容 */
	text-align: center;
	/* 文字居中 */
}

.tab-list div.active::after {
	content: '';
	position: absolute;
	bottom: 2px;
	/* 确保线条紧贴 Tab 底部 */
	left: 50%;
	/* 初始位置在中间 */
	transform: translateX(-50%);
	/* 水平居中 */
	width: fit-content;
	/* 宽度自适应内容 */
	min-width: 100%;
	/* 最小宽度为元素宽度 */
	height: 2px;
	/* 设置渐变色背景 */
	background: linear-gradient(to right, #4D3DA3, #B34A43);
}

.list-bg {
	padding-bottom: 100px;
}

.list-bg:nth-child(even) {

	background: #FFFFFF;
}

/* 奇数行背景使用样式 odd等同于 2n+1 */
.list-bg:nth-child(odd) {
	background: #F6F8FD;
}


/* 模糊覆盖层 */
.blur-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* 毛玻璃效果 */
	backdrop-filter: blur(3px);
	background: rgba(0, 0, 0, 0.7);
	transition: all 0.4s ease;
	z-index: 2;
}

/* 图片悬停放大效果 */
.project-card img, 
.item-div-img img,
.f-soft-div img,
.project-grid-four .item-four-bg img,
.item > div > img,
.s-grid-item > div > img,
.s-s-grid-item > div > img,
.card-item {
    transition: all 0.4s ease;
    display: block;
    width: 100%;
    height: auto;
}

.project-card:hover img, 
.item-div-img:hover img,
.f-soft-div:hover img,
.project-grid-four .item-four-bg:hover img,
.item > div:hover > img,
.s-grid-item > div:hover > img,
.s-s-grid-item > div:hover > img,
.project-card:hover .card-item {
    transform: scale(1.1);
}

/* 图片容器需要设置overflow:hidden以避免放大溢出 */
.project-card > div, 
.item-div-img,
.f-soft-div > div,
.item-four-bg,
.item > div,
.s-grid-item > div,
.s-s-grid-item > div {
    overflow: hidden;
    position: relative;
}

/* 添加鼠标悬停时的阴影效果，增强视觉体验 */
.project-card:hover,
.item-four-bg:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 确保所有图片容器都有overflow:hidden */
.project-card .card-item,
.project-card > div:first-child {
    overflow: hidden;
    position: relative;
}

/* 确保图片放大过渡效果应用于所有目标图片 */
.service-item-bg .item img {
    transition: all 0.4s ease;
}

.service-item-bg .item:hover img {
    transform: scale(1.1);
}

/* 优化案例展示图片放大效果 */
.item-four-bg {
    transition: all 0.3s ease;
}

.item-four-bg img {
    transition: all 0.4s ease;
}

.item-four-bg:hover img {
    transform: scale(1.1);
}

.img-div{
	/* height: 509px; */
}

/* 确保移动端也有合适的悬停效果 */
@media (max-width: 767px) {
    .project-card:hover img,
    .item-div-img:hover img,
    .item-four-bg:hover img {
        transform: scale(1.05); /* 在移动端稍微减小放大效果 */
    }
}


/* 1920 */
@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;
	}
}

/* 1600 */
@media screen and (max-width:1710px) {
	.xinshu-content {
		width: 1400px;
		/* background-color: blue; */
	}

	.navbar {
		width: 1400px;
	}
}

/* 1280 */
@media screen and (max-width:1420px) {
	.xinshu-content {
		width: 1000px;
		/* background-color: yellow; */
	}

	.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;
	}
	
	.f-card-item-title {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 22px;
	}
	
	.f-title {
		font-size: 28px;
		margin-top: 10px;
		margin-bottom: 23px;
	}
	
	.f-grid-item {
		height: 527px;
		/* 上边 | 右边 | 下边 | 左边 */
		padding: 1px 29px 0px 29px;
	}
	
	.item-title {
		font-family: Source Han Sans;
		font-weight: 700;
		font-size: 20px;
	}
	
	
	.item-content-div {
		height: 429px;
		display: block;
		align-content: center;
		width: 45%;
	}
	
	.size25Purple{
		font-size: 18px;
	}
	
	.size18 {
		font-family: Source Han Sans;
		font-size: 14px;
		color: #191919;
	}
	
	.item-four-bg {
		height: 346px;
		
	}
	
	.project-card {
		height: 350px;
	}
}