.production-section-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 100px;
	.section-box {
		display: flex;
		flex-direction: column;
		width: 85%;
		margin: 30px auto;
		gap: 30px;
		z-index: 2;
		flex: 1;
		.cpzx {
			width: 100%;
			position: relative;
			display: flex;
			justify-content: center;
			align-items: center;
			margin: 20px 0;
			img {
				width: 100%;
				height: auto;
				display: block;
			}
		}
		.main {
			display: flex;
			flex-wrap: wrap;
			.box:hover {
				background: #F9F9F9;
				border-radius: 10px;
			}
			.box {
				cursor: pointer;
				padding: 60px 20px 20px;
				width: 24%;
				margin-right: 1%;
				margin-bottom: 20px;
				.box_t {
					display: flex;
					align-items: center;
					margin-right: 58px;
					.box_t_l {
						font-family: Arial;
						font-weight: bold;
						font-size: 80px;
						color: #333333;
						opacity: 0.1;
						margin-right: 28px;
					}
					.box_t_r {
						div:nth-child(1) {
							font-weight: bold;
							font-size: 18px;
							color: #333333;
							margin-right: 14px;
						}
						div:nth-child(2) {
							font-weight: 400;
							font-size: 14px;
							color: #275DBF;
						}
					}
				}
				.box_content {
					font-weight: 400;
					font-size: 14px;
					color: #999999;
					height: 66px;
					margin-bottom: 20px;
					overflow: hidden;
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 3;
					text-overflow: ellipsis;
				}
				.box_b {
					display: flex;
					justify-content: space-between;
					.box_b_l {
						display: flex;
						align-items: flex-end;
						font-weight: bold;
						font-size: 14px;
						color: #333333;
						span {
							margin-left: 6px;
							color: #999999;
						}
					}
					.box_b_r {
						display: flex;
						align-items: center;
						justify-content: center;
						font-weight: 400;
						font-size: 16px;
						color: #FFFFFF;
						width: 140px;
						height: 46px;
						background: #275DBF;
						border-radius: 10px;
						.icon-tuxing {
							margin-left: 18px;
							color: #FFFFFF;
							font-size: 32px;
						}
					}
				}
			}
		}
	}
}





