@charset "UTF-8";

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 16px;
}

a {
  color: #fff;
  text-decoration: none
}

html {
  height: 100%;
}

body {
  height: 100%;
  width: 100vw;
  /* background: linear-gradient(to top, yellow, lightGreen); */
  background-color: #3A15B5;
  position: relative;
}

.container{
  width: 100%;
}

.menu {
  font-family: Georgia, serif;
  display: grid;
  grid-template-columns: 32% 32% 32% 4%;
  grid-column-gap: 5px;
  height: 25%;
  margin: 20px;
  padding: 7px 20px;
  border: 2px solid #D9D9D9;
  border-radius: 12px;
  font-size: 1.3em;
  font-weight: 600;
  overflow: hidden;
  text-align: center;
  position: relative;

  & div {
    display: inline-block;
    line-height: calc(100% + 12px);
    cursor: pointer;
    width: 100%;
    height: 100%;
    color: #D9D9D9;
  }

  & .thisPage {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 185, 67, 1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 50%;
    width: 100px;
    height: 20px;
    top: 11px;
    margin-left: -10px;
    border-radius: 10px;
    visibility: hidden;
  }

  #setting {
    font-size: 20px;
    vertical-align: middle;
  }

}

#menuId2 {
  display: none;
}

#thisBookName {
  padding: 15px 2px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.5em;
  letter-spacing: -1.5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 20px;
  cursor: pointer;
  width: fit-content;
}

.swiper-container{
  width: 100%;
}

.swiper-slide.bookList{
  height: unset;
}

.swiper-pagination.paging{
  width: 100%;
  position: unset;
}

.swiper-pagination-bullets .swiper-pagination-bullet{
  background: #fff;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
  background: #5fff00;
}

/* .swiper-pagination.paging div{
  width: 50%;
  background-color: none;
}

.swiper-pagination-bullet span{
  color: #fff;
} */

.pdf-container canvas {
  width: 100%;
}
pre {
  background: #f1eaff !important;
}

