.el-pagination {
	width: 100%;
	height: 36px;
	display: flex;
	list-style: none;
}

.el-pagination button,
.el-pagination span {
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #F5F5F5;
	cursor: pointer;
	border-radius: 2px;
	border: none;
	margin: 0 4px;
}

.el-pagination button:disabled {
	background-color: #F5F5F5 ;
	color: #ccc;
	cursor: not-allowed;
	font-family: Source Han Sans SC, Source Han Sans SC;
	font-weight: 400;
	font-size: 12px;
	color: #404040;
	line-height: 28px;
	text-align: center;
	font-style: normal;
	text-transform: none;
}

.el-pagination button.active {
	background-color: #3F51B5;
	font-family: Source Han Sans SC, Source Han Sans SC;
	font-weight: 400;
	font-size: 12px;
	color: #FFFFFF;
	line-height: 28px;
	text-align: center;
	font-style: normal;
	text-transform: none;
}
.el-pagination button:hover{
  background-color: #3F51B5;
  color: #FFFFFF;
}
.el-pagination button:disabled:hover{
  background-color: #F5F5F5 ;
	color: #ccc;
}