.books_history_search {
  display: flex;
  align-items: center;
  gap: 6px;
}
.books_history_search_year {
  width: 110px !important;
}
.books_history_search_pers {
  overflow: visible !important;
  width: 250px !important;
}
.books_history_list_page {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0,1fr));
  --cols: 4;
  gap: 10px;
}
.books_history_list_block {
  display: flex;
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background-color: #ffffff;
  gap: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.books_history_list_block img {
  max-width: 100px;
}
.books_history_list_image {
  flex-shrink: 0;
  height: 130px;
  width: 100px;
  border-radius: 6px;
  background: var(--bg-url) no-repeat center / cover;
}
.books_history_pages {
  display: flex;
  justify-content: center;
}

.books_history_record_images {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
}
.books_history_record_images:after {
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  display: block;
  width: 100px;
  background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);
  content: '';
}
.books_history_record_images .img {
  flex-shrink: 0;
  height: 100px;
  width: 100px;
  border-radius: 6px;
  background: var(--bg-url) no-repeat center / cover;
  cursor: pointer;
}
.books_history_record_perslist {
  display: grid;
  grid-template-columns: repeat(var(--cols),minmax(0,1fr));
  --cols: 5;
  gap: 10px;
}

@media (max-width: 1920px) {
  .books_history_list_page {
  	--cols: 3;
  }
}
@media (max-width: 1600px) {
  .books_history_record_perslist {
  	--cols: 4;
  }
  .books_history_list_page {
  	--cols: 2;
  }
  .books_history_search {
  	display: grid;
  	grid-template-columns: 1fr repeat(2, 110px);
  	grid-template-rows: repeat(2, 1fr);
  }
  .books_history_search > div:nth-child(1) {
  	grid-area: 1 / 1 / 2 / 2;
  }
  .books_history_search > div:nth-child(2) {
  	grid-area: 1 / 2 / 2 / 3;
  }
  .books_history_search_pers {
  	width: 100% !important;
  }
  .books_history_search > div:nth-child(3) {
  	grid-area: 1 / 3 / 2 / 4;
  }
  .books_history_search > div:nth-child(4) {
  	grid-area: 2 / 1 / 3 / 2;
  }
  .books_history_search > div:nth-child(5) {
  	grid-area: 2 / 2 / 3 / 3;
  }
  .books_history_search > div:nth-child(6) {
  	grid-area: 2 / 3 / 3 / 4;
  }
}
@media (max-width: 1280px) {
  .books_history_record_perslist {
  	--cols: 3;
  }
  .books_history_list_page {
  	--cols: 1;
  }
}
@media (max-width: 1024px) {
  .books_history_record_perslist {
  	--cols: 2;
  }
}