/* 分页样式 */
.pagination {
  text-align: center;
  margin-top: 20px;
  padding: 20px 0;
}

.pagination_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.pagination_content button {
  padding: 8px 16px;
  height: 36px;
  border: 1px solid rgba(238, 238, 238, 1);
  color: rgba(64, 150, 255, 1);
  background-color: rgba(245, 245, 245, 1);
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pagination_content button:hover:not(:disabled) {
  color: #fff;
  background-color: rgba(64, 150, 255, 1);
  border-color: rgba(64, 150, 255, 1);
}

.pagination_content button:disabled {
  color: rgba(153, 153, 153, 1);
  background-color: rgba(245, 245, 245, 1);
  cursor: not-allowed;
  border-color: rgba(221, 221, 221, 1);
}

.pagination_info {
  color: rgba(102, 102, 102, 1);
  font-size: 14px;
  margin: 0 20px;
}

.pagination_size {
  color: rgba(102, 102, 102, 1);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination_size select {
  padding: 4px 8px;
  border: 1px solid rgba(238, 238, 238, 1);
  border-radius: 4px;
  background-color: #fff;
  color: rgba(102, 102, 102, 1);
  cursor: pointer;
}

.pagination_size select:focus {
  outline: none;
  border-color: rgba(64, 150, 255, 1);
}
/* 分页列表样式 */
.table_content {
  width: 100%;
  min-height: 390px;
  overflow: auto;
  margin: 50px 0;
  max-height: 500px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.table_content tr {
  height: 50px;
  line-height: 50px;
}

.table_content th {
  color: rgba(102, 102, 102, 1);
  background-color: rgba(245, 245, 245, 1);
  border: 1px solid rgba(238, 238, 238, 1);
}

.table_content .filename {
  width: 30%;
}

.table_content .operation {
  text-align: center;
}

.table_content .operation button {
  padding: 0 10px;
  height: 30px;
  border: 1px solid rgba(238, 238, 238, 1);
  color: rgba(64, 150, 255, 1);
  background-color: rgba(245, 245, 245, 1);
  cursor: pointer;
}

.table_content .operation button:hover {
  color: #fff;
  background-color: rgba(64, 150, 255, 1);
}

.table_content .operation button:nth-child(1) {
  margin-right: 10px;
}
.table_content tbody{

}