/* 幻灯片 */
	.customized-steps-banner{
		width: 100%;
	}
	
	.customized-steps-banner .swiper-slide{
		width: 100%;
	}
	
	.customized-steps-banner .swiper-slide img{
		width: 100%;
		height: 100%;
	}
	
	.customized-steps-banner .swiper-slide img.mobile-images{
		display: none;
	}
	
	.customized-steps-banner .swiper-slide img.computer-images{
		display: block;
	}

	/* 幻灯片-分页器 */
	.customized-steps-banner .swiper-pagination{
		width: 405px;
		height: 44px;
		display: flex;
		align-items: center;
		border-radius: 22px;
		justify-content: center;
		transform: translateX(-50%);
		background-color: rgba(255, 255, 255, 0.6);
		bottom: 40px;
		left: 50%;
	}
	
	.customized-steps-banner .swiper-pagination .swiper-pagination-bullet{
		opacity: 1;
		margin: 0%;
		width: 125px;
		height: 40px;
		display: flex;
		font-size: 14px;
		border-radius: 20px;
		align-items: center;
		justify-content: center;
		font-family: "SourceHanSansCN-Regular";
		background-color: rgba(255, 255, 255, 0);
	}

/* 流程图 */
	.customized-steps-diagram{
		width: 100%;
		padding: 95px 0% 65px;
		background-color: rgba(0, 0, 0, 1);
	}

	/* 流程图-内容 */
	.customized-steps-diagram .content-wrapper{
		border-radius: 5px;
		background-color: rgba(22, 22, 22, 1);
		position: relative;
	}
	
	.customized-steps-diagram .content-wrapper img{
		width: 100%;
		height: 100%;
		border-radius: inherit;
	}

/* 定制流程 */
	.customized-steps-wrapper{
		width: 100%;
		padding: 80px 0% 100px;
		background-color: rgba(0, 0, 0, 1);
	}

	/* 定制流程-步骤 */
	.customized-steps-wrapper .step{
		margin: 0% auto;
		width: calc(100% - 200px);
	}

	/* 定制流程-步骤-头部 */
	.customized-steps-wrapper .step .header{
		gap: 20px;
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}
	
	.customized-steps-wrapper .step .header p{
		line-height: 1;
		font-size: 35px;
		text-align: center;
		color: rgba(255, 255, 255, 1);
	}
	
	.customized-steps-wrapper .step .header p:first-child{
		font-size: 65px;
		font-family: "SourceHanSansCN-Bold";
	}

	/* 定制流程-步骤-内容 */
	.customized-steps-wrapper .step .content-wrapper{
		gap: 1px;
		width: 100%;
		display: flex;
		margin-top: 75px;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item{
		width: 100%;
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		position: relative;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item::before{
		width: 100%;
		content: '';
		height: 1px;
		background-color: rgba(221, 221, 221, 1);
		position: absolute;
		bottom: 100%;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item:last-child::after{
		width: 100%;
		content: '';
		height: 1px;
		background-color: rgba(221, 221, 221, 1);
		position: absolute;
		top: 100%;
	}

	/* 定制流程-步骤-内容-主要的 */
	.customized-steps-wrapper .step .content-wrapper .item .main{
		display: flex;
		padding: 0% 50px;
		align-items: center;
		grid-column: span 7 / span 7;
		position: relative;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item.one .main{
		justify-content: flex-start;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item.two .main{
		justify-content: flex-end;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main::after{
		width: 1px;
		content: '';
		height: 100%;
		background-color: rgba(221, 221, 221, 1);
		position: absolute;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item.one .main::after{
		right: 0%;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item.two .main::after{
		right: calc(100% - 1px);
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content{
		gap: 25px;
		width: 450px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content .number{
		line-height: 1;
		font-size: 50px;
		color: rgba(255, 255, 255, 1);
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content .title{
		gap: 20px;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content .title p{
		line-height: 1;
		font-size: 35px;
		color: rgba(255, 255, 255, 1);
		font-family: "SourceHanSansCN-Bold";
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content .text{
		font-size: 18px;
		line-height: 24px;
		color: rgba(255, 255, 255, 1);
	}

	/* 定制流程-步骤-内容-次要的 */
	.customized-steps-wrapper .step .content-wrapper .item.one .minor{
		padding: 50px 25px 0% 125px;
		grid-column: span 5 / span 5;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item.two .minor{
		padding: 50px 125px 0% 25px;
		grid-column: span 5 / span 5;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .minor img{
		width: 100%;
		height: 100%;
	}

	/* 定制流程-介绍 */
	.customized-steps-wrapper .introduce{
		gap: 100px;
		display: flex;
		margin: 80px auto 0%;
		flex-direction: column;
		align-items: flex-start;
		width: calc(100% - 200px);
		justify-content: flex-start;
	}

	/* 定制流程-介绍-内容 */
	.customized-steps-wrapper .introduce .item{
		width: 100%;
		display: grid;
		grid-template-columns: repeat(12, 1fr);
	}

	/* 定制流程-介绍-内容-次要的 */
	.customized-steps-wrapper .introduce .item .minor{
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		grid-column: span 4 / span 4;
	}
	
	.customized-steps-wrapper .introduce .item .minor p{
		line-height: 1;
		font-size: 45px;
		color: rgba(255, 255, 255, 1);
		font-family: "SourceHanSansCN-Medium";
	}

	/* 定制流程-介绍-内容-主要的 */
	.customized-steps-wrapper .introduce .item .main{
		gap: 20px;
		display: flex;
		font-size: 18px;
		line-height: 28px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		grid-column: span 8 / span 8;
		color: rgba(255, 255, 255, 1);
	}
	
	.customized-steps-wrapper .introduce .item .main .data{
		gap: 10px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	
	.customized-steps-wrapper .introduce .item .main .data p{
		gap: 15px;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		color: rgba(85, 101, 237, 1);
	}
	
	.customized-steps-wrapper .introduce .item .main .data p samp:first-child{
		width: 25px;
		height: 25px;
		display: flex;
		font-size: 14px;
		border-radius: 50%;
		align-items: center;
		justify-content: center;
		background-color: rgba(85, 101, 237, 0.25);
	}

	/* 幻灯片-分页器-选中 */
	.customized-steps-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
		color: rgba(255, 255, 255, 1);
		background-color: rgba(0, 0, 0, 1);
	}

	.customized-steps-diagram .content-wrapper .main .item.current-item::after{
		width: 25px;
		content: '';
		height: 25px;
		border-radius: 50%;
		background-color: rgba(44, 255, 115, 0.4);
		transform: translate(50%, -50%);
		position: absolute;
		top: 50%;
		right: 50%;
	}

/* 响应 1680 */	
@media screen and (max-width: 1680px) {}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 幻灯片 */

	/* 幻灯片-分页器 */
	.customized-steps-banner .swiper-pagination{
		height: 42px;
		border-radius: 21px;
		bottom: 30px;
	}
	
	.customized-steps-banner .swiper-pagination .swiper-pagination-bullet{
		height: 38px;
		font-size: 12px;
		border-radius: 19px;
	}

/* 流程图 */
	.customized-steps-diagram{
		padding: 75px 0% 45px;
	}

	/* 流程图-内容 */

/* 定制流程 */
	.customized-steps-wrapper{
		padding: 60px 0% 80px;
	}

	/* 定制流程-步骤 */

	/* 定制流程-步骤-头部 */
	.customized-steps-wrapper .step .header{
		gap: 15px;
	}
	
	.customized-steps-wrapper .step .header p{
		font-size: 25px;
	}
	
	.customized-steps-wrapper .step .header p:first-child{
		font-size: 55px;
	}

	/* 定制流程-步骤-内容 */
	.customized-steps-wrapper .step .content-wrapper{
		margin-top: 50px;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item{
		grid-template-columns: repeat(10, 1fr);
	}

	/* 定制流程-步骤-内容-主要的 */
	.customized-steps-wrapper .step .content-wrapper .item .main{
		padding: 0% 40px;
		grid-column: span 6 / span 6;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content{
		gap: 20px;
		width: 400px;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content .number{
		font-size: 40px;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content .title{
		gap: 15px;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content .title p{
		font-size: 28px;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item .main .content .text{
		font-size: 14px;
		line-height: 20px;
	}

	/* 定制流程-步骤-内容-次要的 */
	.customized-steps-wrapper .step .content-wrapper .item.one .minor{
		padding: 40px 20px 0% 120px;
		grid-column: span 4 / span 4;
	}
	
	.customized-steps-wrapper .step .content-wrapper .item.two .minor{
		padding: 40px 120px 0% 20px;
		grid-column: span 4 / span 4;
	}

	/* 定制流程-介绍 */
	.customized-steps-wrapper .introduce{
		gap: 80px;
		margin: 180px auto 0%;
	}

	/* 定制流程-介绍-内容 */
	.customized-steps-wrapper .introduce .item{
		grid-template-columns: repeat(10, 1fr);
	}

	/* 定制流程-介绍-内容-次要的 */
	.customized-steps-wrapper .introduce .item .minor p{
		font-size: 35px;
	}

	/* 定制流程-介绍-内容-主要的 */
	.customized-steps-wrapper .introduce .item .main{
		gap: 15px;
		font-size: 14px;
		line-height: 20px;
		grid-column: span 6 / span 6;
	}
	
	.customized-steps-wrapper .introduce .item .main .data{
		gap: 5px;
	}
	
	.customized-steps-wrapper .introduce .item .main .data p{
		gap: 10px;
	}
	
	.customized-steps-wrapper .introduce .item .main .data p samp:first-child{
		width: 20px;
		height: 20px;
		font-size: 12px;
	}

	/* 幻灯片-分页器-选中 */
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {}

/* 响应 1000 */
@media screen and (max-width: 1000px) {}

/* 响应 750 */
@media screen and (max-width: 750px) {}