
/*  */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/*  */
/* 面包屑导航 */
.breadcrumb {margin: 20px 0;font-size: 18px;display: flex;align-items: center;}
.breadcrumb a {font-size: 20px; text-decoration: none;transition: color 0.3s;}
.breadcrumb a img {vertical-align: middle;margin-right: 8px;width: 16px; height: 16px;}
.download-num{
	text-align: center;
	font-size: 14px;
	color: #999;
	margin-right: min(15vw , 144px);
	margin-top: 4px;
}
/* 分页容器 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px auto;

}

/* 分页按钮通用样式 */
.pagination-btn {
	width: 36px;
	height: 36px;
	background-color: #fff;
	border: 1px solid #ddd;
	color: #333;
	margin: 0 5px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-align: center;
}

.pagination-btn:hover {
	background-color: #f5f5f5;
}

/* 当前页码按钮样式 */
.pagination-btn.active {
	background-color: #007bff;
	color: #fff;
	border: 1px solid #007bff;
}

/* 省略号样式 */
.pagination-ellipsis {
	padding: 0 10px;
	color: #999;
}
.pagination-btn img{
	width: 16px;
	height: 16px;
	margin-left: 8px;
}
.pagination-btn .back{
	transform: rotate(180deg);
}

/*  */