.banner-box .banner-img-box{
	position: relative;
}
.banner-common-text{
    position: absolute;
	top: 50%; /* 顶部定位到父容器的50% */
	left: 50%; /* 左侧定位到父容器的50% */
	transform: translate(-50%, -50%); /* 向上向左各移动自身宽高的50% */
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.banner-icon-box img{
    width: 0.64rem;
	height: 0.64rem;
}
.banner-common-text h1{
    color: #fff;
	font-size: 0.62rem;
	line-height: 0.62rem;
	font-weight: bold;
	margin-top: -1.2rem;
}
.banner-common-text p{
	font-weight: 400;
	font-size: 0.26rem;
	color: #fff;
	line-height: 0.26rem;
	margin-top: 0.32rem;
}
.banner-cq{
	width: 2rem;
	height: 2rem;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.24rem;
	margin-top: 0.4rem;
	margin-bottom: 0.32rem;
	font-weight: 400;
	font-size: 0.26rem;
	color: #313332;
	line-height: 0.48rem;
}
.banner-icon-box{
    padding: 0.12rem 0.32rem;
	background-color: #f2f5fc;
	width: fit-content;
	border-radius: 0.16rem;
	border: 1px solid #FFFFFF
}
/* SaaS系统功能 */
.SaaS-box{
    
}
.saas-title-p{
	font-weight: 400;
	font-size: 0.18rem;
	color: #737877;
	line-height: 0.3rem;
	text-align: center;
}
.saas-content{
		
}
.saas-tab{
	/* overflow: hidden; */
	background-color: #F4F7F6;
	padding-bottom: 1.76rem;
}
/* 标签栏容器 - 新增滚动容器 */
.tabs-header-container {
	position: relative;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	overflow: hidden;
}

/* 标签栏 - 可水平滚动 */
.tabs-header {
	display: flex;
	position: relative;
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
	scroll-behavior: smooth; /* 平滑滚动 */
	justify-content: center;
}

.tabs-header::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

/* 滑动指示器 */
.slider-indicator {
	position: absolute;
	bottom: 0;
	height: 0.04rem;
	background: rgba(9, 189, 129, 1);
	border-radius: 3px 3px 0 0;
	transition: all 0.3s ease;
	z-index: 10;
}

/* 标签按钮 */
.tab-btn {
	flex-shrink: 0; /* 防止按钮被压缩 */
	padding-bottom: 0.36rem;
	padding-top: 0.6rem;
	/* margin-right: 1.97rem; */
	margin: 0 1rem;
	border: none;
	background: transparent;
	font-weight: 400;
    font-size: 0.32rem;
    color: #313332;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.tab-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.tab-btn:hover::before {
	transform: translateY(0);
}

.tab-btn.active {
	color: rgba(9, 189, 129, 1);
}

.tab-btn i {
	margin-right: 8px;
	font-size: 18px;
}

/* 内容区域 */
.tabs-content {
	display: flex;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}
/* 每个内容面板 */
.tab-pane {
	flex-shrink: 0;
	width: 100%;
	overflow-y: auto;
	animation: fadeIn 0.5s ease;
	opacity: 0;	
	height: 0;
}
.active{
	opacity: 1;
	height: auto;
}
.tabs-content-box{
	display: grid;
	gap: 0.24rem;
	grid-template-columns: repeat(auto-fit, minmax(4.24rem, 1fr));
	padding-top: 0.44rem;	
}
.tabs-content-grid-3{
   grid-template-columns: repeat(3, 1fr);
}
.tabs-content-grids{
	grid-template-columns: repeat(auto-fit, minmax(2.28rem, 1fr));	
}
 .tabs-content-grid-4{
	grid-template-columns: repeat(4, 1fr);
}
.tabs-content-flex{
	display: flex;
	border-radius: 0.16rem;
    border: 1px solid #D8D8D8;
	background-color: #fff;
	padding: 0.6rem 0.4rem;
	/* margin-top: 0.44rem; */
	align-items: center;
	transition: transform 0.5s;
	cursor: pointer;
}
.tabs-content-flex:hover{
	background-color: #D2FAED;
	transform: translateY(-16px);
}
.tabs-content-column{
    flex-direction: column;
	text-align: center;
}
.tabs-content-left h1{
	font-weight: 500;
	font-size: 0.2rem;
	color: #313332;
}
.tabs-content-left p{
	font-weight: 400;
	font-size: 0.18rem;
	color: #737877;
	line-height: 0.3rem;
	margin-top: 0.26rem;
}
.tabs-content-right{
	margin-left: 0.48rem;
}
.tabs-content-column .tabs-content-right{
	margin-left: 0;
	margin-bottom: 0.32rem;
}
.tabs-content-right img{
	width: 0.88rem;
	height: 0.88rem;
	object-fit: cover;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.tabs-content-grids .tabs-content-flex{
	padding:0.32rem;
}
/* SaaS系统功能 */
/* 案例 */
.case-in-box{
	
}
.case-content-box{
	display: flex;
	background-color: #F2FCF9;
    border-radius: 0.16rem;
	overflow: hidden;
}
.case-content-left{
	display: flex;
	flex-direction: column;
	padding: 0.16rem 0 0.48rem 0;
	background-color: #E3FCF4;
	width: 23.05%;
}
.case-content-right{
	flex: 1;
}
.case-item{
	background-color: #fff;
	height: 0.64rem;
	margin-left: 0.4rem;
	border-radius: 0.1rem;
	margin-top: 0.32rem;
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-right: 0.64rem;
}
.case-item-active{
	background-image: url(../images/platmana/tab-active.png);
	background-position: left;
	background-repeat: no-repeat;
	background-size: 100%;
	background-color: rgba(255, 255, 255, 0);
	margin-right: 0.44rem;
}
.case-item img{
    width: 0.32rem;
	height: 0.32rem;
	object-fit: contain;
	margin-left: 0.24rem;
}
.case-item p{
	font-weight: 500;
	font-size: 0.18rem;
	color: #313332;
	margin-left: 0.04rem;
}
.case-right-content{
	display: none;
	height: 100%;
}
.case-right-active{
    display: block;
}
.com-content{
	padding: 0.48rem;
	height: 6.4rem;
	overflow: auto;
}
.com-content h1{
	font-weight: 500;
	font-size: 0.2rem;
	color: #313332;
}
.com-content p{
	font-weight: 400;
	font-size: 0.18rem;
	color: #737877;
	line-height: 0.3rem;
	margin-top: 0.15rem;
	margin-bottom: 0.1rem;
	min-height: 0.85rem;
}
.com-content-img{
	width: 100%;
}
.com-content-img img{
	width: 100%;
	object-fit: contain;
}
/* 案例 */
@media (max-width: 1025px) {
	.banner-common-text h1{
		font-size: 0.36rem;
		line-height: 0.36rem;
	}
	.banner-common-text p{
		font-size: 0.28rem;
		line-height: 0.28rem;
		margin-top: 0.32rem;
	}
	.advantage-item h1{
		margin-top: 0.4rem;
		margin-bottom: 0.3rem;
		font-size: 0.28rem;
		line-height: 0.28rem;
	}
	.advantage-item p{
		font-size: 0.28rem;
		line-height: 0.48rem;
	}
	.advantage-img{
		width: 1.28rem;
	}


	.saas-title-p{
		font-size: 0.28rem;
		line-height: 0.48rem;
	}
	.tab-btn{
		margin: 0.3rem;
		padding-top: 0.22rem;
		padding-bottom: 0.32rem;
		font-size: 0.32rem;
	}
	.tabs-content-box{
		gap: 0;
		grid-template-columns: repeat(1, 1fr);			
	}
	.tabs-content-grid-3{
	   grid-template-columns: repeat(1, 1fr);
	}
	.tabs-content-flex{
		margin-top: 0.4rem;
		padding: 1.4rem 0.32rem 0.92rem 0.32rem;
	}
	.tabs-content-left h1{
		font-size: 0.28rem;
	}
	.tabs-content-left p{
		font-size: 0.28rem;
		line-height: 0.48rem;
	}
	.tabs-content-right img{
		width: 1.28rem;
		height: 1.28rem;
	}
	.saas-tab{
		padding-bottom: 0.64rem;
	}
	.tabs-content-grids{
		grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
		gap: 0.3rem;	
	}
	.tabs-content-grids .tabs-content-flex{
		padding:0.4rem 0.32rem;
	}
}
@media (min-width: 768px) and (max-width: 1350px){
	.case-content-left{
		width: 28%;
	}
}
@media (max-width: 767px) {
    .case-content-box{
       flex-direction: column;
	}
	.case-content-left{
		width: 100%;
		flex-direction: row;
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		scroll-behavior: smooth;
		padding: 0.32rem 0 0.12rem 0;
	}
	.case-item{
        background-color: rgba(255, 255, 255, 0);
		background-image: url(../images/platmana/tab13.png);
		background-position: center;
		background-size: 100% 100%;
		background-repeat: no-repeat;
		height: auto;
		margin-left: 0;
		border-radius: 0.1rem;
		margin-top: 0;
		display: flex;
		align-items: center;
		cursor: pointer;
		margin-right: 0.2rem;
		padding-top: 0.12rem;
		padding-bottom: 0.24rem;
		padding-right: 0.12rem;
	}
	.case-item-active{
		background-image: url(../images/platmana/tab14.png);
		background-position: left;
		background-repeat: no-repeat;
		background-size: 100% 100%;
		background-color: rgba(255, 255, 255, 0);
		margin-right: 0.2rem;
	}
	.case-item:nth-child(1){
		margin-left: 0.32rem;
	}
	.case-item p{
		width: max-content;
		font-size: 0.28rem;
	}
	.case-item img{
		width: 0.4rem;
		height: 0.4rem;
		margin-left: 0.12rem;
	}
	.com-content h1 {
		font-size: 0.28rem;
	}
	.com-content p {
		font-size: 0.28rem;
		line-height: 0.48rem;
		margin-top: 0.2rem;
		margin-bottom: 0.2rem;
	}
	.com-content{
		height: auto;
		padding: 0.32rem 0.4rem;
	}
}
