
		.contentBody {
			background-color: #f0f0f0;
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 2.8125rem;
		}

		.contentBody .c_item {
			width: 100%;
			min-height: 280px;
			display: flex;
			justify-content: space-between;
			gap: 45px;
		}

		/* 左侧区域 */
		.contentBody .c_item .c_item_image {
			width: 34%;
			align-self: stretch;
			display: flex;
			justify-content: center;
			align-items: center;
		}

		/* 左侧区域-图片 */
		.contentBody .c_item .c_item_image img {
			width: 132px;
			height: 132px;
		}

		/* 右侧区域 */
		.contentBody .c_item .c_item_body {
			width: 66%;
			box-sizing: border-box;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}

		.contentBody .c_item .c_item_body>div {
			width: 100%;
			padding: 3rem 0 3rem 20%;
		}

		/* 文字标题 */
		.contentBody .c_item .c_item_body .c_item_body_t {
			font-size: 1.3125rem;
			font-weight: 600;
		}

		/* 文字描述区域 */
		.contentBody .c_item .c_item_body .c_item_body_b {
			margin-top: 0.6rem;
		}

		.contentBody .c_item .c_item_body .c_item_body_b>div {
			display: flex;
		}

		/* 文字 */
		.contentBody .c_item .c_item_body .c_item_body_b p {
			font-size: 14px;
			line-height: 2em;
		}

		/* 手机端 */
		@media screen and (max-width:1024px) {
			.contentBody {
				gap: 1.2rem;
			}

			.contentBody .c_item {
				min-height: auto;
				flex-direction: column;
				gap: 0.4rem;
			}

			.contentBody .c_item .c_item_image,
			.contentBody .c_item .c_item_body {
				width: 100%;
			}

			.contentBody .c_item .c_item_body>div {
				padding: 2rem;
			}

			/* 左侧区域-图片 */
			.contentBody .c_item .c_item_image img {
				padding: 1rem 0;
				width: 20%;
				height: auto;
			}

			/* 文字标题 */
			.contentBody .c_item .c_item_body .c_item_body_t {
				font-size: 0.75rem;
				font-weight: bolder;
			}

			/* 文字描述 */
			.contentBody .c_item .c_item_body .c_item_body_b p {
				font-size: 0.625rem;
			}
		}