.dst-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}
.dst-left{
	width: 56%;
}
.dst-left-title{
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 22px;
}
.dst-left-item{
	background: white;
	box-shadow: 0px 2px 12px 0px #f3f2f4;
	border-radius: 12px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	padding: 14px 12px;
}
.dst-left-item:last-child{
	margin-bottom: 0;
}
.dst-left-item img{
	width: 50px;
	margin-right: 20px;
}
.dst-left-item-text div:nth-child(1){
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 14px;
}
.dst-left-item-text div:nth-child(2){
	font-size: 13px;
	color: #4b5563;
}
.dst-right{
	position: relative;
	background: url('../../images/domain/fabd10fd-b758-44b6-93ec-7540afabacad.png');
	background-size: cover;
	background-position: center;
	border-radius: 16px;
	width: 38%;
	height: 340px;
	overflow: hidden;
}
.dst-right-box{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.65);
	font-size: 22px;
	font-weight: bold;
	color: white;
}
.dst-right-box span{
	color: #0a5cff;
}
.line-box{
	position: relative;
	margin-bottom: 40px;
}
.line-box-line{
	position: absolute;
	height: 1px;
	width: 100%;
	background: #d2dce8;
	top: calc(50% - 1px);
}
.line-box-text{
	position: relative;
	width: fit-content;
	border: 1px solid #e5e7eb;
	border-radius: 100px;
	background: #f3f4f6;
	padding: 8px 30px;
	margin: auto;
	font-size: 13px;
	color: #4b5563;
}
.advantage-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background: #f3f4f6;
}
.advantage-item{
	width: 25%;
	padding: 30px 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.advantage-item img{
	width: 30px;
	margin-bottom: 20px;
}
.advantage-item div:nth-child(2){
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 6px;
}
.advantage-item div:nth-child(3){
	width: 28px;
	height: 2px;
	border-radius: 8px;
	background: #00b2ab;
	margin-bottom: 20px;
}
.advantage-item div:nth-child(4){
	font-size: 12px;
	color: #666;
}

/* 手机样式 */
@media (max-width: 1024px) {
	.dst-left{
		width: 100%;
		margin-bottom: 20px;
	}
	.dst-right{
		width: 100%;
	}
	.dst-left-title{
		font-size: 14px;
	}
	.dst-left-item-text div:nth-child(1){
		font-size: 14px;
	}
	.dst-box{
		margin-bottom: 30px;
	}
	.advantage-item{
		width: 50%;
	}
	.advantage-item div:nth-child(2){
		font-size: 16px;
	}
}