.con {
	width: 80%;
	margin-left: 10%;
	margin-top: 100px;
}

.contitle1 {
	width: 100%;
}

.contitle1 a {
	display: inline-block;
	text-align: center;
	width: 10%;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	color: #000;
	border: 1px solid #000;
	margin-left: 20px;
	font-size: 18px;
}

.contitle2 {
	width: 100%;
	margin-top: 30px;
}

.contitle2 a {
	display: inline-block;
	text-align: center;
	width: 10%;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	color: #000;
	border: 1px solid #000;
	margin-left: 20px;
	font-size: 18px;
}

.active {
	color: #fff;
	background-color: red;
}

.active2 {
	color: #fff;
	background-color: #9a9a9a;
}

.content {
	width: 100%;
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap:22px; /* 子元素间距 */
	/* 新增 justify-content，选一个即可 */
	justify-content: flex-start;; /* 整体居中（最常用，分页栏居中显示） */
}

.vedio {
	width: 22%;
	/* 正好四等分 */
	/* 左右内边距当间距 */
	box-sizing: border-box;
}

.vedio img {
	width: 100%;
}

/* 分页核心样式（复刻截图） */
.pagination {
	font-size: 14px;
	color: #333;
	display: flex;
	align-items: center;
	gap: 8px;
}

.pagination a,
.pagination span {
	display: inline-block;
	padding: 0 8px;
	height: 28px;
	line-height: 28px;
	text-decoration: none;
	color: #333;
}

.pagination a:hover {
	color: #0066cc;
}

/* 当前页样式（红色背景/白色文字） */
.pagination .current {
	background: #e63946;
	color: #fff;
	border-radius: 2px;
}

/* 跳转输入框+GO按钮 */
.pagination .jump {
	margin-left: 8px;
}

.pagination .jump input {
	width: 40px;
	height: 28px;
	text-align: center;
	border: 1px solid #ddd;
	outline: none;
	margin: 0 4px;
}

.pagination .jump button {
	height: 28px;
	padding: 0 12px;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
}

.pagination .jump button:hover {
	border-color: #0066cc;
	color: #0066cc;
}

/* 禁用态（比如首页/上一页在第一页时） */
.pagination .disabled {
	color: #999;
	cursor: not-allowed;
}

.pagination .disabled:hover {
	color: #999;
	text-decoration: none;
}