/* 公共三大板块 */
	.communal-plate-wrapper{
		width: 100%;
		background-color: rgba(255, 255, 255, 1);
	}

	/* 公共三大板块-内容 */
	.communal-plate-wrapper .content-wrapper{
		gap: 20px;
		width: 100%;
		height: 100vh;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}

	/* 公共三大板块-内容-次要的 */
	.communal-plate-wrapper .content-wrapper .minor{
		width: 100%;
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item{
		width: 100%;
		height: auto;
		border-radius: 20px;
		padding-top: 57.972%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		position: relative;
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item .content{
		padding: 50px;
		position: absolute;
		top: 0%;
		right: 0%;
		bottom: 0%;
		left: 0%;
	}

	/* 公共三大板块-内容-次要的-最前的-文案 */
	.communal-plate-wrapper .content-wrapper .minor .item:first-child .content .title p{
		line-height: 1;
		font-size: 32px;
		margin-top: 10px;
		color: rgba(255, 255, 255, 1);
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:first-child .content .title p:first-child{
		margin-top: 0%;
		font-size: 42px;
		font-family: "SourceHanSansCN-Bold";
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:first-child .content .text{
		width: 420px;
		font-size: 14px;
		margin-top: 25px;
		line-height: 22px;
		color: rgba(255, 255, 255, 1);
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:first-child .content .button{
		width: 140px;
		height: 40px;
		display: flex;
		font-size: 14px;
		margin-top: 40px;
		border-radius: 20px;
		align-items: center;
		color: rgba(0, 0, 0, 1);
		justify-content: center;
		background-color: rgba(255, 255, 255, 1);
	}

	/* 公共三大板块-内容-次要的-最后的-文案 */
	.communal-plate-wrapper .content-wrapper .minor .item:last-child .content .title p{
		line-height: 1;
		font-size: 32px;
		margin-top: 25px;
		color: rgba(255, 255, 255, 1);
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:last-child .content .title p:first-child{
		margin-top: 0%;
		font-size: 42px;
		font-family: "SourceHanSansCN-Bold";
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:last-child .content .text{
		width: 420px;
		font-size: 14px;
		margin-top: 40px;
		line-height: 22px;
		color: rgba(255, 255, 255, 1);
	}

	/* 公共三大板块-内容-主要的 */
	.communal-plate-wrapper .content-wrapper .main{
		width: 100%;
		height: auto;
		display: block;
		border-radius: 20px;
		padding-top: 28.572%;
		background-color: rgba(0, 0, 0, 1);
		position: relative;
	}

	/* 公共三大板块-内容-主要的-文案 */
	.communal-plate-wrapper .content-wrapper .main .content{
		display: flex;
		padding: 0% 60px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		position: absolute;
		top: 0%;
		right: 0%;
		bottom: 0%;
		left: 0%;
	}
	
	.communal-plate-wrapper .content-wrapper .main .content .title p{
		line-height: 1;
		font-size: 32px;
		margin-top: 20px;
		color: rgba(255, 255, 255, 1);
	}
	
	.communal-plate-wrapper .content-wrapper .main .content .title p:first-child{
		margin-top: 0%;
		font-size: 42px;
		color: rgba(0, 101, 255, 1);
		font-family: "SourceHanSansCN-Bold";
	}
	
	.communal-plate-wrapper .content-wrapper .main .content .text{
		width: 420px;
		font-size: 14px;
		margin-top: 25px;
		line-height: 22px;
		color: rgba(255, 255, 255, 1);
	}
	
	.communal-plate-wrapper .content-wrapper .main .content .buttons{
		width: 280px;
		display: grid;
		grid-gap: 20px;
		margin-top: 40px;
		grid-template-columns: repeat(3, 1fr);
	}
	
	.communal-plate-wrapper .content-wrapper .main .content .buttons .item{
		width: 100%;
		padding-top: 100%;
		background-size: 100% 100%;
		background-position: center;
		background-repeat: no-repeat;
	}

	/* 公共三大板块-内容-主要的-图片 */
	.communal-plate-wrapper .content-wrapper .main .images{
		width: 20%;
		position: absolute;
		bottom: 0%;
		left: 58.126%;
	}
	
	.communal-plate-wrapper .content-wrapper .main .images img{
		width: 100%;
		height: 100%;
	}

/* 响应 1680 */	
@media screen and (max-width: 1680px) {}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 公共三大板块 */

	/* 公共三大板块-内容 */
	.communal-plate-wrapper .content-wrapper{
		gap: 15px;
	}

	/* 公共三大板块-内容-次要的 */
	.communal-plate-wrapper .content-wrapper .minor{
		grid-gap: 15px;
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item{
		border-radius: 15px;
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item .content{
		padding: 40px;
	}

	/* 公共三大板块-内容-次要的-最前的-文案 */
	.communal-plate-wrapper .content-wrapper .minor .item:first-child .content .title p{
		font-size: 28px;
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:first-child .content .title p:first-child{
		font-size: 38px;
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:first-child .content .text{
		width: 400px;
		font-size: 12px;
		margin-top: 20px;
		line-height: 20px;
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:first-child .content .button{
		width: 120px;
		height: 35px;
		font-size: 12px;
		margin-top: 30px;
		border-radius: 17.5px;
	}

	/* 公共三大板块-内容-次要的-最后的-文案 */
	.communal-plate-wrapper .content-wrapper .minor .item:last-child .content .title p{
		font-size: 25px;
		margin-top: 20px;
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:last-child .content .title p:first-child{
		font-size: 38px;
	}
	
	.communal-plate-wrapper .content-wrapper .minor .item:last-child .content .text{
		width: 400px;
		font-size: 12px;
		margin-top: 35px;
		line-height: 20px;
	}

	/* 公共三大板块-内容-主要的 */
	.communal-plate-wrapper .content-wrapper .main{
		border-radius: 15px;
	}

	/* 公共三大板块-内容-主要的-文案 */
	.communal-plate-wrapper .content-wrapper .main .content{
		padding: 0% 50px;
	}
	
	.communal-plate-wrapper-wrapper .content-wrapper .main .content .title p{
		font-size: 28px;
		margin-top: 15px;
	}
	
	.communal-plate-wrapper .content-wrapper .main .content .title p:first-child{
		font-size: 38px;
	}
	
	.communal-plate-wrapper .content-wrapper .main .content .text{
		width: 400px;
		font-size: 12px;
		margin-top: 20px;
		line-height: 20px;
	}
	
	.communal-plate-wrapper .content-wrapper .main .content .buttons{
		width: 240px;
		grid-gap: 15px;
		margin-top: 20px;
	}

	/* 公共三大板块-内容-主要的-图片 */
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {}

/* 响应 1000 */
@media screen and (max-width: 1000px) {}

/* 响应 750 */
@media screen and (max-width: 750px) {}