.books {
  border-bottom: 1px solid #e6e6e6;
  width: calc(100% - 100px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.books:last-child {
  border-bottom: 0;
}

.img-content {
  width: 33.33%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.books-img-size {
  width: 130px;
  height: 220px;
  padding-top: 23px;
  padding-bottom: 23px;
}

#book-name {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.books-content {
  width: 66.66%;
  text-align: left;
}
.books-content p {
  font-size: 15px;
  display: flex;
  margin-bottom: 5px;
  color: #aaa;
}
.books-content p span:first-child {
  width: 100px;
  color: #333;
}

#seeMore-btn {
  border-radius: 10px;
  position: absolute;
  right: 0;
  bottom: 30px;
}

.bd-example {
  padding: 1rem 1rem 4rem;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.page-item.active .page-link {
  border-color: #138496;
  background-color: #138496;
}
.page-link {
  color: #138496;
}
.pagination li {
  margin-bottom: 20px;
  cursor: pointer;
}

@media screen and (max-width: 990px) {
  .img-content {
    justify-content: flex-start;
  }
  #seeMore-btn {
    position: relative;
    right: unset;
    bottom: unset;
    margin-left: 0;
    height: 36px;
    margin-top: 20px;
    padding: 0 30px;
  }
  .books {
    padding: 30px 0;
  }

  .books-content p span:first-child {
    width: 80px;
  }
}

@media screen and (max-width: 768px) {
  .books-content {
    width: 60.66%;
  }
}


@media screen and (max-width: 480px) {
  .books {width: calc(100% - 50px); padding:20px 0;}
  .books-content p span:first-child {display: none;}
  .books-content p:nth-last-child(-n+3) {display: none;}
  .books-content {width:55%;}
  #book-name {font-size:1.1em;}
  .books-content p {font-size:0.9em; line-height: 1.2;}
  #seeMore-btn {font-size:0.8em;}
}
