/* 幻灯片 */
	.customized-banner{
		width: 100%;
	}
	
	.customized-banner img{
		width: 100%;
		height: 100%;
	}

/* 内容 */	
	.customized-content{
		width: 100%;
		padding: 4.204% 0% 5.255%;
		background-color: rgba(244, 248, 251, 1);
	}
	
	.customized-content .customized-about-us{
		display: flex;
		padding: 2.069%;
		border-radius: 20px;
		align-items: center;
		margin-bottom: 3.445%;
		justify-content: space-between;
		background-color: rgba(255, 255, 255, 1);
	}
	
	.customized-content .customized-about-us .text{
		width: 43.885%;
	}
	
	.customized-content .customized-about-us .text .title{
		line-height: 1;
		font-size: 36px;
		color: rgba(43, 46, 143, 1);
	}
	
	.customized-content .customized-about-us .text .sub-title{
		line-height: 1;
		font-size: 16px;
		margin-top: 1.640%;
		color: rgba(98, 98, 98, 1);
	}
	
	.customized-content .customized-about-us .text .explain{
		font-size: 16px;
		overflow: hidden;
		line-height: 26px;
		margin-top: 4.099%;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		text-overflow: ellipsis;
		color: rgba(38, 38, 38, 1);
		-webkit-box-orient: vertical;
	}
	
	.customized-content .customized-about-us .text .button a{
		width: 23.200%;
		font-size: 14px;
		line-height: 40px;
		border-radius: 5px;
		text-align: center;
		margin-top: 4.919%;
		display: inline-block;
		color: rgba(255, 255, 255, 1);
		background-color: rgba(11, 31, 143, 1);
	}

	.customized-content .customized-about-us .image{
		width: 50.360%;
	}
	
	.customized-content .customized-about-us .image img{
		width: 100%;
		height: 100%;
	}

	.customized-content .content{
		width: 100%;
		display: grid;
		grid-gap: 35px;
		grid-template-columns: repeat(2, 1fr);
	}
	
	.customized-content .content .item{
		padding: 4.242%;
		overflow: hidden;
		border-radius: 20px;
		background-color: rgba(255, 255, 255, 0.7);
	}
	
	.customized-content .content .item .upper{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.customized-content .content .item .upper .left{
		width: 16%;
		padding: 2.324% 0%;
		border-right: 2px solid rgba(203, 203, 203, 1);
	}
	
	.customized-content .content .item .upper .left .icon{
		width: 60%;
		margin: 0% auto;
	}
	
	.customized-content .content .item .upper .left .icon img{
		width: 100%;
		height: 100%;
	}
	
	.customized-content .content .item .upper .right{
		width: 80%;
	}
	
	.customized-content .content .item .upper .right .title-chinese{
		font-size: 24px;
		overflow: hidden;
		line-height: 40px;
		white-space: nowrap;
		text-overflow: ellipsis;
		color: rgba(22, 22, 22, 1);
	}
	
	.customized-content .content .item .upper .right .title-english{
		font-size: 16px;
		overflow: hidden;
		line-height: 40px;
		white-space: nowrap;
		text-overflow: ellipsis;
		color: rgba(80, 80, 80, 1);
	}
	
	.customized-content .content .item .below{
		width: 100%;
		margin-top: 3.873%;
	}
	
	.customized-content .content .item .below .text{
		font-size: 16px;
		overflow: hidden;
		line-height: 26px;
		min-height: 130px;
		display: -webkit-box;
		-webkit-line-clamp: 5;
		text-overflow: ellipsis;
		color: rgba(22, 22, 22, 1);
		-webkit-box-orient: vertical;
	}
	
	.customized-content .content .item .below .button a{
		width: 100%;
		height: 40px;
		font-size: 16px;
		line-height: 40px;
		margin-top: 4.648%;
		text-align: center;
		display: inline-block;
		color: rgba(255, 255, 255, 1);
		background-color: rgba(29, 32, 136, 1);
	}
	
	/* 关于我们按钮悬停 */
	.customized-content .customized-about-us .text .button a.current-hover-item{
		color: rgba(11, 31, 143, 1);
		border: 1px solid rgba(11, 31, 143, 1);
		background-color: rgba(255, 255, 255, 1);
	}
	
	/* 关于我们图片悬停 */
	.customized-content .customized-about-us .image.current-hover-item img{
		transform: scale(1.05);
	}
	
	/* 列表悬停 */
	.customized-content .content .item.current-hover-item{
		box-shadow:
			5px 5px 5px rgba(0, 0, 5, 0.1),
			5px -5px 5px rgba(0, 0, 5, 0.1),
			-5px 5px 5px rgba(0, 0, 5, 0.1),
			-5px -5px 5px rgba(0, 0, 5, 0.1);
	}
	
	/* 列表按钮悬停 */
	.customized-content .content .item .below .button a.current-hover-item{
		color: rgba(11, 31, 143, 1);
		border: 1px solid rgba(11, 31, 143, 1);
		background-color: rgba(255, 255, 255, 1);
	}

/* 响应 1680 */
@media screen and (max-width: 1680px) {
/* 幻灯片 */

/* 内容 */	
	.customized-content .customized-about-us .text .title{
		font-size: 32px;
	}
	
	.customized-content .customized-about-us .text .sub-title{
		font-size: 15px;
	}
	
	.customized-content .customized-about-us .text .explain{
		font-size: 15px;
		line-height: 24px;
	}
	
	.customized-content .customized-about-us .text .button a{
		font-size: 13px;
		line-height: 35px;
	}
	
	.customized-content .content{
		grid-gap: 30px;
	}
	
	.customized-content .content .item .upper .right .title-chinese{
		font-size: 22px;
		line-height: 35px;
	}
	
	.customized-content .content .item .upper .right .title-english{
		font-size: 14px;
		line-height: 35px;
	}
	
	.customized-content .content .item .below .text{
		font-size: 15px;
		min-height: 120px;
		line-height: 24px;
	}
	
	.customized-content .content .item .below .button a{
		height: 35px;
		font-size: 15px;
		line-height: 35px;
	}
}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 幻灯片 */

/* 内容 */
	.customized-content .customized-about-us{
		border-radius: 15px;
	}

	.customized-content .customized-about-us .text .title{
		font-size: 28px;
	}
	
	.customized-content .customized-about-us .text .sub-title{
		font-size: 14px;
	}
	
	.customized-content .customized-about-us .text .explain{
		font-size: 14px;
		line-height: 22px;
	}
	
	.customized-content .customized-about-us .text .button a{
		font-size: 12px;
		line-height: 30px;
	}

	.customized-content .content{
		grid-gap: 25px;
	}

	.customized-content .content .item{
		border-radius: 15px;
	}

	.customized-content .content .item .upper .right .title-chinese{
		font-size: 20px;
		line-height: 30px;
	}
	
	.customized-content .content .item .upper .right .title-english{
		font-size: 12px;
		line-height: 30px;
	}
	
	.customized-content .content .item .below .text{
		font-size: 14px;
		line-height: 22px;
		min-height: 110px;
	}
	
	.customized-content .content .item .below .button a{
		height: 30px;
		font-size: 14px;
		line-height: 30px;
	}
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {
/* 幻灯片 */

/* 内容 */
	.customized-content .customized-about-us .text .title{
		font-size: 24px;
	}
	
	.customized-content .customized-about-us .text .sub-title{
		font-size: 13px;
	}
	
	.customized-content .customized-about-us .text .explain{
		font-size: 13px;
		line-height: 20px;
	}
	
	.customized-content .content{
		grid-gap: 20px;
	}

	.customized-content .content .item .upper .right .title-chinese{
		font-size: 18px;
		line-height: 25px;
	}
	
	.customized-content .content .item .upper .right .title-english{
		line-height: 25px;
	}
	
	.customized-content .content .item .below .text{
		font-size: 13px;
		min-height: 100px;
		line-height: 20px;
	}
	
	.customized-content .content .item .below .button a{
		font-size: 13px;
	}
}

/* 响应 1000 */
@media screen and (max-width: 1000px) {
/* 幻灯片 */

/* 内容 */
	.customized-content .content{
		grid-gap: 15px;
		grid-template-columns: repeat(1, 1fr);
	}
	
	.customized-content .content .item{
		border-radius: 10px;
	}
	
	.customized-content .customized-about-us{
		border-radius: 10px;
	}
	
	.customized-content .customized-about-us .text .button a{
		width: 34.380%;
	}
}

/* 响应 750 */
@media screen and (max-width: 750px) {
/* 幻灯片 */
	.customized-banner{
		margin-top: 61px;
	}
	
/* 内容 */
	.customized-content .customized-about-us{
		display: block;
		padding: 4.376%;
	}
	
	.customized-content .customized-about-us .text{
		width: 100%;
	}
	
	.customized-content .customized-about-us .image{
		width: 100%;
		margin-top: 5.600%;
	}
	
	.customized-content .content .item .upper .right .title-english{
		line-height: 20px;
		white-space: normal;
	}
}