@charset "UTF-8";
/* lib */
/* core */
/* base */
table {
  width: 100%;
  border-collapse: collapse;
}

tr {
  border: 1px solid #ddd;
}

thead th {
  border-bottom: 2px solid #ddd;
  text-align: left;
  padding: 1rem 1rem;
}

th:first-child,
td:first-child {
  width: 60%;
}

th:last-child,
td:last-child {
  width: 100px;
}

td a {
  padding: 1rem 1rem;
  display: block;
  text-transform: capitalize;
}

td a:hover {
  font-weight: bold;
}

.table-list {
  font-size: 0.9rem;
}
.table-list h5 {
  font-size: 1rem;
}
.table-list thead th {
  text-align: center;
  width: 35%;
}
.table-list thead th:first-child {
  width: 55%;
  text-align: left;
}
.table-list tbody {
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
}
.table-list tbody tr {
  border-top: 1px solid #ddd;
}
.table-list tbody tr.viewed {
  background-color: seashell;
}
.table-list tbody td {
  text-align: center;
  width: 35%;
}
.table-list tbody td:first-child {
  width: 55%;
  text-align: left;
}
.table-list thead, .table-list tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.table-list thead th {
  padding: 1rem 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
  border-bottom-width: 1px;
}
.table-list tr {
  border: 0;
}
.table-list tr td {
  padding: 1rem 0;
}
.table-list td a {
  padding: 0;
}

/* layout */
footer {
  font-size: 0.75rem;
  box-sizing: border-box;
}
footer .tags {
  padding: 1.5rem 0;
  opacity: 0.5;
  justify-content: center;
}

.footer-block {
  display: flex;
  width: 100%;
  padding-top: 2rem;
}
.footer-block.bg-gradient-black {
  color: #dadada;
  text-align: center;
  padding: 2rem 0;
}

footer a,
footer a:hover {
  color: #484848;
}

footer .android,
footer .ios {
  display: inline-block;
  margin: 0 0.75rem 2.5rem;
}

footer .android img,
footer .ios img {
  height: 3rem;
}

.footer-header {
  display: flex;
  justify-content: space-between;
}

.footer-header .logo,
.footer-header .icon-group {
  width: 20%;
  border-bottom: 1px solid #ffffff1a;
  padding-bottom: 0.75rem;
  margin-bottom: 2.5rem;
}

.footer-header .logo {
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-header .iconfont {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.footer-body {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ffffff1a;
  padding-bottom: 1rem;
  margin-bottom: 3.5rem;
}

.footer-body ul {
  width: 20%;
  margin-bottom: 2rem;
}

.footer-body ul li {
  margin-bottom: 0.5rem;
}

.footer-body ul li a {
  text-decoration: underline;
}

.footer-body ul li a:hover {
  opacity: 0.75;
}

.footer-title h5 {
  font-weight: 600;
  color: #484848;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  color: #484848;
}

.footer-bottom p {
  opacity: 0.5;
}

/* Ipad or Tablet  << */
@media (max-width: 1023px) {
  .footer-header .logo,
.footer-header .icon-group,
.footer-body ul {
    width: 25%;
  }
}
/* Mobile << */
@media (max-width: 767px) {
  .footer-header {
    margin: 0 -2%;
  }

  .footer-header .logo,
.footer-header .icon-group,
.footer-body ul {
    width: 45%;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.flex {
  width: calc(100% + 2rem);
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.flex > [class*=flex-] {
  margin-right: 1rem;
  margin-left: 1rem;
}

.flex-2 > .flex-item {
  width: calc(100% / 2 - 2rem);
}

.flex-3 > .flex-item {
  width: calc(100% / 3 - 2rem);
}

.flex-4 > .flex-item {
  width: calc(100% / 4 - 2rem);
}

.flex-5 > .flex-item {
  width: calc(100% / 5 - 2rem);
}

.flex-6 > .flex-item {
  width: calc(100% / 6 - 2rem);
}

.flex > .flex-1 {
  width: calc(100% / 12 * 1 - 2rem);
}
.flex > .flex-2 {
  width: calc(100% / 12 * 2 - 2rem);
}
.flex > .flex-3 {
  width: calc(100% / 12 * 3 - 2rem);
}
.flex > .flex-4 {
  width: calc(100% / 12 * 4 - 2rem);
}
.flex > .flex-5 {
  width: calc(100% / 12 * 5 - 2rem);
}
.flex > .flex-6 {
  width: calc(100% / 12 * 6 - 2rem);
}
.flex > .flex-7 {
  width: calc(100% / 12 * 7 - 2rem);
}
.flex > .flex-8 {
  width: calc(100% / 12 * 8 - 2rem);
}
.flex > .flex-9 {
  width: calc(100% / 12 * 9 - 2rem);
}
.flex > .flex-10 {
  width: calc(100% / 12 * 10 - 2rem);
}
.flex > .flex-11 {
  width: calc(100% / 12 * 11 - 2rem);
}
.flex > .flex-12 {
  width: calc(100% - 2rem);
}

@media (max-width: 859px) {
  .flex {
    flex-direction: column;
  }
  .flex > [class*=flex-] {
    width: calc(100% - 2rem);
  }
}
@media (max-width: 767px) {
  .flex-revert-mb {
    flex-direction: column-reverse;
  }
}
/* components */
.box {
  margin-bottom: 2.5rem;
}

.box-head {
  margin-bottom: 1rem;
}

.box-title {
  font-size: 1.2rem;
}

.box-body {
  display: flex;
}

.box.tag {
  margin-bottom: 1rem;
}

.form-comment {
  margin: 0 0 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.form-comment .form-group {
  display: flex;
  position: relative;
}

.form-comment .form-control {
  resize: none;
  min-height: 80px;
  max-height: 80px;
  padding: 0.55rem 1rem 0.75rem 0.75rem;
  overflow-y: auto;
  max-width: calc(100% - 95px);
  min-width: calc(100% - 95px);
  border-radius: 4px 0 0 4px;
}

.form-comment .btn {
  bottom: 0.5rem;
  right: 0;
  position: absolute;
  color: #4b4b4b;
  font-size: 1.4rem;
  top: 0;
  width: 95px;
  height: 100%;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-comment .btn .iconfont {
  font-size: 1.4rem;
}
.form-comment .btn:hover {
  color: #fff;
  background-color: #0097a7;
}

@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.list-comments {
  flex-wrap: wrap;
}
.list-comments + div > .list-comments {
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.list-comments > li {
  animation: opacity 2s;
  display: flex;
  min-width: 100%;
}
.list-comments > li:last-child {
  margin-bottom: 1.5rem;
}
.list-comments > li:first-child {
  margin: 0;
}
.list-comments > li + li {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.list-comments .userinfo {
  min-width: 240px;
  width: 240px;
  padding: 1.5rem;
  background: seashell;
}
.list-comments .content {
  font-size: 0.85rem;
  padding: 1.5rem 1.5rem 3.5rem 1.5rem;
  position: relative;
  background-color: #fafafa;
  width: 100%;
}
.list-comments .content .created-at {
  font-size: 0.85rem;
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  white-space: nowrap;
}
.list-comments .info {
  margin-bottom: 1rem;
}
.list-comments .info .user-name {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.2rem;
}
.list-comments .info .muted {
  text-align: center;
}
.list-comments .avatar {
  height: auto;
  width: auto;
  max-width: 150px;
  max-height: 200px;
  overflow: hidden;
  margin: 0 auto 1rem auto;
}
.list-comments .avatar .img,
.list-comments .avatar .figure {
  border-radius: 10px;
}
.list-comments .avatar .img img,
.list-comments .avatar .figure img {
  max-width: 100%;
}
.list-comments .basic li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .list-comments .userinfo {
    min-width: 140px;
    width: 140px;
    padding: 0.75rem;
  }
  .list-comments .content {
    padding: 0.75rem 0.75rem 2.5rem 0.75rem;
  }
  .list-comments .content .created-at {
    bottom: 0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
  }
}
.ranking {
  padding: 3rem 0 1rem 0;
}
.ranking .title {
  margin: 0;
}

.list {
  display: flex;
}
.list .info {
  position: relative;
}
.list .desc,
.list .rating,
.list .readed,
.list .chapter {
  margin-top: 0.5rem;
}
.list .name {
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3rem;
}
.list .name a {
  width: 100%;
  display: inherit;
  font-size: 1rem;
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}
.list .author,
.list .desc,
.list .readed,
.list .chapter {
  color: #999;
}
.list .author {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.list .iconfont {
  margin-right: 0.5rem;
  line-height: 1;
  font-size: 1rem;
  position: relative;
  top: 2px;
}
.list .label {
  font-size: 0.8rem;
  padding: 0.1rem 0.5rem 0.15rem 0.5rem;
}
.list .label.red, .list .label-main {
  margin-right: 0.5rem;
  padding: 0.25rem 0.75rem;
}
.list .link {
  color: #0097a7;
}
.list .rank {
  font-weight: 600;
  font-size: 1.1rem;
  color: #999;
}
.list .rank + .img {
  margin-left: 0.75rem;
}
.list .rank-1 {
  color: #fa683d;
}
.list .rank-2 {
  color: #f9973a;
}
.list .rank-3 {
  color: #36b37e;
}
.list .genres.uppercase {
  margin-bottom: 0.75rem;
  white-space: normal;
  max-width: 100%;
  font-size: calc(1rem);
  line-height: calc(1rem + 0.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: calc(1rem + 1 * 0.2rem);
}
.list .info-group {
  display: flex;
  align-items: center;
}
.list .info-group li {
  border: 0;
  padding: 0;
  margin: 0.5rem 0 0 0;
  font-size: 0.85rem;
  color: #999;
}
.list .info-group .dashed {
  margin: 0.5rem 0.5rem 0 0.5rem;
}
.list .info-group .author,
.list .info-group .chapter,
.list .info-group .genres {
  width: auto;
  margin: 0;
  color: #999;
}
.list .info-group a {
  color: #999;
}
.list .info-group a:hover {
  color: #0097a7;
}
.list .dashed {
  width: 1px;
  height: 1rem;
  background-color: #999;
  display: inline-block;
}
.list .btn-group .btn {
  padding: 0.25rem 0.75rem;
}
.list .btn-group .btn + .btn {
  margin-left: 0.25rem;
}

.list-block {
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.list-block li {
  width: 100%;
}
.list-block a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #fcfcfa;
  border: 0 solid rgba(0, 0, 0, 0.125);
}
.list-block a:hover, .list-block a.active {
  color: #fff;
  background-color: #0097a7;
  border-color: #0097a7;
}
.list-block .icon {
  min-width: 1.5rem;
  text-align: center;
}
.list-block .icon-eye {
  font-size: 0.8rem;
}

.rank-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  margin-bottom: 2rem;
}
.rank-item .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.list-sort {
  flex-wrap: wrap;
}
.list-sort > li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid #ddd;
}
.list-sort .name {
  font-weight: 400;
}
.list-sort .info {
  width: 100%;
  display: flex;
  overflow: hidden;
  padding-right: 1rem;
}
.list-sort .first {
  align-items: flex-start;
}
.list-sort .first .info {
  flex-wrap: wrap;
}
.list-sort .first .name {
  font-weight: 600;
  padding-top: 0.25rem;
  margin-bottom: 0.75rem;
}
.list-sort .first .list {
  display: flex;
  flex-wrap: wrap;
  color: #999;
  font-size: 0.85rem;
}
.list-sort .first .list li {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: calc(1rem);
  line-height: calc(1rem + 0.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: calc(1rem + 1 * 0.2rem);
  font-size: 0.85rem;
}
.list-sort .img {
  width: 70px;
  min-width: 70px;
  height: 105px;
  position: relative;
  overflow: inherit;
  transform: perspective(70px) rotateY(-10deg);
  margin: 0 0.75rem 0.75rem 0;
}
.list-sort .img::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 2%;
  left: calc(100% - 1px);
  width: 10%;
  height: 96%;
  transform: perspective(70px) rotateY(30deg);
  background-color: #efefef;
  box-shadow: inset 0 0 5px #333;
}
.list-sort .img a {
  height: 100%;
  width: 100%;
  display: inherit;
}
.list-sort .img img {
  width: 100%;
  min-height: 100%;
  outline: 1px solid #999;
}

.num {
  min-width: 24px;
  height: 32px;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.num-1,
.num-2,
.num-3 {
  overflow: hidden;
  text-indent: -9999px;
}

.num-1 {
  background-image: url("../img/icons/medal-1.svg");
}

.num-2 {
  background-image: url("../img/icons/medal-2.svg");
}

.num-3 {
  background-image: url("../img/icons/medal-3.svg");
}

.ratings {
  position: relative;
  margin: 0 auto;
  height: auto;
  border-bottom: 1px solid #ada4a4;
  box-shadow: 0 1px 2px -1px #a29797;
  border-radius: 80px;
  background: #FFF;
  text-align: center;
  width: 228px;
  display: flex;
  align-items: center;
}

.icon-rating {
  position: relative;
  cursor: pointer;
  margin: 0 0.25rem;
  transition: all 0.2s;
}

.rating-label {
  position: absolute;
  color: #fff;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  padding: 5px 5px 2px 5px;
  font-size: 0.85rem;
  display: block;
  margin: 0 auto;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  opacity: 0.5;
  transform: scale(0);
  transition: all 0.2s;
}
.rating-label:before {
  content: "";
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 1px;
  margin: 0 auto;
}

.icon-rating:hover {
  margin-top: -1rem;
}
.icon-rating:hover .rating-label {
  opacity: 1;
  transform: scale(1);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -0.75rem;
}

.tags-toggle {
  /* height: 2.4rem;
  overflow: hidden; */
  position: relative;
}

.tag-item {
  min-height: 30px;
  border-radius: 4px;
  border: 1px solid #0097a7;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  margin: 0 0.75rem 0.75rem 0;
  font-size: 0.95rem;
  background-color: #fff;
}

.tag-item.xs {
  min-height: auto;
  font-size: 0.85rem;
  padding: 0.25rem 1rem 0.15rem 1rem;
}

li.tag-item {
  padding: 0;
}

li.tag-item a,
label.tag-item {
  display: inherit;
  padding: 0.7rem 1rem 0.5rem;
  line-height: 1;
}

.all-tags {
  cursor: pointer;
}

.all-tags .tag-item {
  margin: 0 0 0 5px;
  height: 31px;
  color: #4b4b4b;
}

#all {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

#all:checked + .tags-toggle {
  overflow: inherit;
  height: auto;
  padding: 0;
  justify-content: start;
}

#all:checked ~ .btn-view-all .iconfont::before {
  content: "";
}

.pagination {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.pagination .btn {
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* only page */
.page-header {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

/* Auth */
.auth .series.list a {
  color: #363d4d;
}
.auth .series.list a:hover {
  text-decoration: underline;
}

.auth .series.list a.btn {
  height: 24px;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem 0 0.75rem;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: center;
}

.auth .series.list .serie-item {
  display: flex;
  margin-bottom: 1rem;
}

.auth .series.list .serie-image {
  min-width: 20%;
  max-width: 20%;
  margin-right: 1rem;
}

.auth .series.list .serie-image .thumbnail {
  max-height: 220px;
  border: 1px solid #eee;
  display: inherit;
}

.auth .series.list .serie-image .thumbnail img {
  width: 100%;
  max-height: 100%;
  display: inherit;
}

.auth .series.list .dashed {
  margin: 0.15rem 0.5rem 0 0.5rem;
  width: 1px;
  height: 1rem;
  background-color: #999;
  display: inline-block;
}

.auth .desc {
  font-size: calc(1rem);
  line-height: calc(1rem + 0.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(2rem + 2 * 0.2rem);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.auth .info-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.auth .info-group li {
  margin-bottom: 0.5rem;
}

.auth .info-group li a {
  font-size: 0.85rem;
}

.box-auth .bg-gray {
  background: #fafafa;
  border-radius: 10px;
  padding: 2rem;
}

.box-auth .list-auth-info {
  margin-top: 2rem;
  padding-top: 2rem;
}

.auth-avatar {
  height: 90px;
  width: 90px;
  border-radius: 90px;
  overflow: hidden;
  margin: 0 auto 1.2rem auto;
}

.auth-avatar .img {
  height: 100%;
  max-width: 100%;
}

.auth-avatar .img img {
  height: 100%;
}

.author-name {
  width: 100%;
  text-align: center;
}

.auth-bottom {
  display: flex;
  justify-content: space-between;
}
.auth-bottom .txt-xs {
  font-size: 0.85rem;
}

@media (max-width: 1280px) {
  .auth-sidebar header {
    max-width: 25%;
  }

  .auth-sidebar header a {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .auth-sidebar header {
    left: 1.5rem;
    max-width: 240px;
  }
}
/* End Auth */
/* Account */
.acc {
  background-color: aliceblue;
}
.acc .acc-name,
.acc .follow-group {
  margin-bottom: 1rem;
}
.acc .badge-group {
  display: flex;
  justify-content: space-between;
}
.acc .badge-group .badge {
  min-width: 49%;
  margin-left: 2%;
}
.acc .badge-group .badge:first-child {
  margin-left: 0;
}
.acc .badge {
  background: #dceaff;
  padding: 0.75rem;
  border-radius: 4px;
  min-height: 80px;
  font-size: 0.9rem;
}
.acc .badge-name {
  font-size: calc(1rem);
  line-height: calc(1rem + 0.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: calc(1rem + 1 * 0.2rem);
  font-size: 1.2rem;
}
.acc .rank-badge {
  position: relative;
  padding-left: 70px;
}
.acc .rank-badge .badge-icon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}
.acc .rank-badge .top {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
.acc .rank-badge .since {
  text-align: right;
  font-size: 0.85rem;
  min-width: 80px;
}
.acc .rank-badge .time {
  font-size: 0.75rem;
  opacity: 0.75;
}
.acc .rank-badge .bottom {
  display: block;
  margin-bottom: 0.75rem;
}
.acc .rank-badge .tags {
  display: flex;
  font-size: calc(1rem);
  line-height: calc(1rem + 0.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: calc(1rem + 1 * 0.2rem);
  font-size: 0.75rem;
}
.acc .rank-badge .tags span {
  margin-right: 2px;
}
.acc .badge-collection .badge-name {
  margin-bottom: 0.5rem;
}
.acc .badge-collection .badge-list {
  display: flex;
  flex-wrap: wrap;
}
.acc .badge-collection .badge-list li {
  margin-right: 0.5rem;
}
.acc .badge-collection .badge-icon {
  width: 30px;
  height: 30px;
  background-size: 30px;
}

.acc-avatar {
  min-width: 200px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border: 2px solid #0768ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}
.acc-avatar img {
  height: 100%;
}

.follow-group {
  display: flex;
}
.follow-group strong {
  font-size: 1.2rem;
  position: relative;
  font-family: "Baloo 2", cursive;
}
.follow-group strong + strong {
  margin-left: 0.5rem;
  padding-left: 0.75rem;
}
.follow-group strong + strong::before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 4px;
  background: #4b4b4b;
  position: absolute;
  display: inline-block;
  left: 0;
  top: 9px;
}

.badge-icon {
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  height: 48px;
  width: 48px;
  border-radius: 48px;
  border: 2px solid #fff;
}
.badge-icon.lv-1 {
  background-image: url("/static/img/icon-60.png");
}
.badge-icon.lv-2 {
  background-image: url("/static/img/icon-60x80.png");
}

@media (max-width: 859px) {
  .acc-avatar {
    margin: 0 auto 2rem auto;
  }
}
@media (max-width: 567px) {
  .acc .badge-group {
    flex-wrap: wrap;
  }

  .acc .badge-group .badge {
    width: 100%;
    margin: 0;
    min-height: 100px;
  }
  .acc .badge-group .badge + .badge {
    margin-top: 1rem;
  }
}
/* End Account */
.panel {
  margin-bottom: 1.5rem;
}
.panel-title {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
}
.panel p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.panel-box-white {
  padding: 1rem;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.about-stat {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.about-stat strong, .about-stat i, .about-stat-img {
  margin-right: 0.25rem;
}
.about-stat strong {
  font-size: 1rem;
}
.about-stat-img {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #eee;
  overflow: hidden;
  border-radius: 3px;
}
.about-stat-img img {
  width: 100%;
}
.about-stat .one-line {
  font-size: 0.85rem;
}

.favorite-list {
  display: flex;
  flex-wrap: wrap;
}
.favorite-list li {
  width: 23.5%;
  margin: 0 0.75% 1.5% 0.75%;
  position: relative;
}
.favorite-list li a {
  overflow: hidden;
  border: 1px solid #eee;
  height: 100px;
  display: inherit;
  margin-bottom: 0.25rem;
}
.favorite-list li img {
  width: 100%;
}
.favorite-list li .name {
  font-size: calc(1rem);
  line-height: calc(1rem + 0.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: calc(1rem + 1 * 0.2rem);
  font-size: 0.85rem;
}

@media (max-width: 859px) {
  .favorite-list li {
    height: 30vw;
  }

  .box-auth .bg-gray {
    max-width: 220px;
    margin: -2rem auto 1.5rem auto;
  }

  .auth .series.list .serie-image {
    min-width: 35%;
    max-width: 35%;
  }
}
@media (max-width: 567px) {
  .box-auth .bg-gray {
    max-width: 100%;
  }

  .auth .serie-name {
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .auth .info-group li {
    margin: 0 0 0.5rem 0;
  }

  .auth .series.list .dashed {
    display: none;
  }

  .auth-bottom .txt-xs {
    font-size: 0.75rem;
  }
}
.report {
  position: relative;
}

.tooltip {
  position: absolute;
  top: -20px;
  background: mediumaquamarine;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  padding: 0.35rem 0.5rem 0.15rem 0.5rem;
  right: 0;
  opacity: 0;
  transition: all 0.25s linear;
  z-index: -1;
}
.tooltip.active {
  opacity: 1;
  top: -50px;
  z-index: initial;
}

.js-report.active {
  top: -25px;
}

.js-bookmark-notify {
  top: 0;
  right: -10px;
  color: #f07c78;
  background: #fff;
}
.js-bookmark-notify.active {
  top: -25px;
}

.btn-bookmark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #f07c78;
  background: #fff;
  border: 0;
  padding-top: 2px;
  padding-left: 8px;
  position: relative;
}

.heart-spark {
  display: block;
  width: 3em;
  height: 3em;
  flex: 0 0 auto;
  margin: -0.75em;
}

.heart {
  transition: opacity 300ms ease-in-out 0s;
}

.spark {
  stroke-dasharray: 8;
  stroke-dashoffset: 24;
}

@keyframes line-animate {
  from {
    stroke-dasharray: 8;
  }
  to {
    stroke-dasharray: 16;
  }
}
:host([added]) .heart-outline,
:host(:not([added])) .heart-filled {
  opacity: 0;
  pointer-events: none;
}

.btn-bookmark:hover .spark {
  animation: 500ms ease-in-out 0s 1 normal none running line-animate;
}

/* book */
.series-info {
  display: flex;
}

.series-base .series-name,
.series-base .other-name,
.series-base .btn-primary,
.series-base dl {
  margin-bottom: 0.75rem;
}

.series-base .btn-primary {
  min-width: 140px;
  height: 42px;
}

.series-info .series-img {
  width: 200px;
  min-width: 200px;
  height: 300px;
  margin-right: 2rem;
  background-color: #fff;
}

.series-info .series-img img {
  width: 100%;
  min-height: 100%;
}

.series-base dl dt {
  width: 100px;
  margin-bottom: -19px;
}

.series-base dl dd {
  padding-left: 100px;
  font-weight: bold;
  margin-bottom: 0.5rem;
  min-height: 19px;
}
.series-base dl dd a {
  text-decoration: underline;
}
.series-base dl dd.tags {
  margin-bottom: 0;
  padding-left: 0;
}
.series-base dl dd.tags .tag-item {
  text-decoration: none;
  color: darkcyan;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem 0.3rem 0.75rem;
}

.series-base .tabs {
  margin-bottom: 0;
}

/* .chapters .box-body {
  max-height: 300px;
  overflow-y: scroll;
} */
.btn-sort {
  top: 0;
  right: 0;
  position: absolute;
  background: #eee;
  outline: none;
  display: flex;
  align-items: center;
}

.btn-sort .iconfont {
  opacity: 0.75;
  font-size: 1.5rem;
}

.az .iconfont::before {
  content: "";
}

@media (max-width: 567px) {
  .series-info {
    flex-direction: column;
  }

  .series-info .series-img {
    margin: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 0;
    border: none;
    top: -3rem;
    z-index: 1;
    height: 64vh;
  }

  .series-info .series-img img {
    width: 100%;
  }

  .series-info .series-base {
    position: relative;
    z-index: 2;
    margin-top: 60vh;
  }
}
.genres-list {
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.genres-list li {
  width: 25%;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.genres-list li a {
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-right: 1rem;
  font-size: 0.85rem;
  border-bottom: 2px solid transparent;
}
.genres-list li a > span {
  font-size: calc(1rem);
  line-height: calc(1rem + 0.2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-height: calc(1rem + 1 * 0.2rem);
  line-height: 1rem;
  font-size: 0.85rem;
}
.genres-list li a:hover {
  color: #0097a7;
  border-bottom: 2px solid #0097a7;
}
.genres-list li.active a {
  color: #0097a7;
  border-bottom: 2px solid #0097a7;
}
@media (max-width: 768px) {
  .genres-list {
    display: none;
  }
}

.border-color {
  color: #eee;
}

.text-color {
  color: #4b4b4b;
}

.bg-primary {
  background-color: #0097a7;
}

.primary {
  color: #0097a7;
}

.red-light {
  color: #dd3333;
}

.red {
  color: #d32f2f;
}

.bg-red-light {
  background-color: #dd3333;
}

.bg-red {
  background-color: #d32f2f;
}

.bg-muted {
  background-color: #93a1a1;
}

.muted {
  color: #93a1a1;
}

.bg-seashell {
  background-color: seashell;
}

.seashell {
  color: seashell;
}

.bg-gradient-gray {
  background: linear-gradient(to top, #e7e7e7 0, #f9f9f9 75%);
}

.bg-gradient-black {
  background: linear-gradient(to bottom, #3c3a3a 0, #484848 50%);
}

.mg-bt-2 {
  margin-bottom: 2rem;
}

/*# sourceMappingURL=style.css.map */
