/* banner */
.sscms-banner {
				background-size: cover;
				/* 背景图居中 */
				background-repeat: no-repeat;
				/* 禁止重复 */
				display: flex;
				align-items: center;
				justify-content: center;
				/* 文字居中 */
				color: #ffffff;
				/* 文字颜色，根据背景调整 */
				text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
				/* 文字阴影增强可读性 */
			}

			.sscms-banner h2 {
				font-size: 36px;
				/* 标题大小 */
				font-weight: bold;
				margin: 0;
				color: #ffffff;
				padding: 080px 0px 80px 0px;
			}


/* 本地外佣等123 */
			.process-comparison {
				display: flex;
				justify-content: space-between;
				gap: 20px;
				margin: 40px 0;
			}

			.process-title {
				font-size: 24px;
				color: #006666;
				/* 蓝绿色标题 */
				border-bottom: 4px solid #f7c800;
				/* 黄色下划线 */
				padding-bottom: 10px;
				margin-top: 0;
				margin-bottom: 20px;
			}

			.process-steps {
				display: flex;
				flex-direction: column;
				gap: 15px;
			}

			.step-item {
				display: flex;
				margin-bottom: 5px;
				align-items: flex-start;
				/* 确保编号和内容顶部对齐 */
			}

			.step-number {
				background-color: #006666;
				/* 蓝绿色背景 */
				color: white;
				width: 30px;
				height: 30px;
				border-radius: 15%;
				display: flex;
				align-items: center;
				justify-content: center;
				font-weight: bold;
				margin-right: 15px;
				flex-shrink: 0;
				font-size: 20px;
				/* 防止编号框被压缩 */
			}

			.step-content {
				flex: 1;
				line-height: 1.6;
				font-family: "Roboto", Sans-serif;
				font-size: 20px;
				font-weight: 400;
				/* 优化行高，提升可读性 */
			}

			/* 响应式适配（小屏幕纵向排列） */
			@media (max-width: 768px) {
				.process-comparison {
					flex-direction: column;
				}
			}