.blog-box {
	background: #f2f4f9;
	padding-top: 88px;
}

.blog-banner {
	width: 100%;
	object-fit: cover;
	display: block;
}

.breadcrumb-box {
	width: calc(82% - 32px);/* 62.5% - 32px */
	margin: 16px auto 0;
}

.blog-container {
	width: 82%;/* 62.5*/
	margin: 1px auto 100px;
}

.blog-card {
	background: #ffffff;
	border-radius: 4px;
	margin: 16px;
	padding: 16px 16px 24px;
	cursor: pointer;
}

.blog-card-img {
	width: 100%;
	height: 10.6vw;
	object-fit: cover;
	margin-bottom: 10px;
}

.blog-card-title {
	font-size: 20px;
	color: #22252a;
	line-height: 32px;
	/*word-break: break-all;*/
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	height: 4.4rem;
}

.blog-card-time {
	font-size: 18px;
	color: #7f8792;
	line-height: 26px;
	margin: 8px 0;
}

.blog-card-text {
	height: 78px;
	font-size: 16px;
	color: #7f8792;
	line-height: 26px;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.blog-footer {
	position: relative;
}

.blog-footer img {
	width: 100%;
	object-fit: cover;
	display: block;
}

.blog-footer-container {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(62.5% - 32px);
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.blog-footer-inner-title {
	font-size: clamp(1.5rem, 0.327rem + 1.91vw, 2.625rem);
	color: #22252a;
	line-height: 72px;
}

.blog-footer-inner-desc {
	font-size: clamp(1rem, 0.218rem + 1.28vw, 1.75rem);
	color: #52575e;
	line-height: 48px;
}

.blog-footer-container .el-button {
	min-width: 12.5vw;
	height: 56px;
	background: #2255f4;
	border: none;
	border-radius: 4px;
	font-size: clamp(0.75rem, 0.359rem + 0.64vw, 1.125rem);
	color: #ffffff;
	font-weight: 400;
	padding-top: 0;
	padding-bottom: 0;
}

.blog-footer-container .el-button:hover {
	background: rgba(86, 125, 246, 1);
}

.blog-footer-container .el-button:active {
	background: rgba(33, 80, 223, 1);
}

.blog-pagination {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

.blog-pagination-page, .blog-pagination-pre, .blog-pagination-next {
	width: 28px;
	height: 28px;
	text-align: center;
	line-height: 28px;
	display: inline-block;
	margin: 0 5px;
	color: #22252a;
	font-size:16px;
	cursor: pointer;
}
.blog-pagination-page:hover{
	color: #2255f4;
}
.current-pagination-page{
	color: #2255f4;
}
.blog-pagination-pre:hover{
	color: #2255f4;
}
.blog-pagination-next:hover{
	color: #2255f4;
}

@media only screen and (max-width: 1366px) {
	.blog-container {
		width: 75%;
	}

	.blog-card-img {
		height: 12vw;
	}

	.breadcrumb-box {
		width: calc(75% - 32px);
	}

	.blog-footer-container {
		width: calc(75% - 32px);
	}

	.blog-footer-inner-title {
		line-height: 48px;
	}

	.blog-footer-inner-desc {
		line-height: 38px;
	}

	.blog-footer-container .el-button {
		height: 46px;
	}
}

@media only screen and (max-width: 992px) {
	.blog-banner {
		height: 150px;
		object-fit: cover;
	}

	.breadcrumb-box {
		width: 90%;
	}

	.blog-container {
		width: calc(90% + 32px);
	}

	.blog-card-img {
		height: 180px;
	}

	.blog-footer img {
		height: 150px;
	}

	.blog-footer-container {
		width: 90%;
	}

	.blog-footer-inner-title {
		line-height: 38px;
		font-size: 24px;
	}

	.blog-footer-inner-desc {
		line-height: 24px;
		font-size: 16px;
	}

	.blog-footer-container .el-button {
		min-width: 88px;
		height: 36px;
		flex-shrink: 0;
	}
	.blog-pagination{
		margin-top: 14px;
	}
	.blog-pagination-page, .blog-pagination-pre, .blog-pagination-next {
		width: 20px;
		height: 20px;
		line-height: 20px;
		margin: 0 3px;
		font-size:14px;
	}
}