:root {
  --theme-color: #8ec165;
}

.flex-1 {
  flex: 1;
}

.drawer-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  bottom: 0;
  height: auto;
  overflow: auto;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 200ms;
}

.list-group {
  margin-top: 20px;
}
@media screen and (max-width: 48em) {
  .list-group {
    white-space: nowrap;
    overflow: auto;
    margin-top: 10px;
  }
}

.list-group-item {
  cursor: pointer;
}
@media screen and (max-width: 48em) {
  .list-group-item {
    border-radius: 9999px;
    display: inline-block;
    padding: 5px 10px;
  }
  .list-group-item:first-child {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }
  .list-group-item:last-child {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }
  .list-group-item:not(:first-child) {
    margin-left: 10px;
  }
}

.list-container {
  /*height: calc(100vh - 5.5rem - 5.6rem - 6.5rem);*/
  overflow: hidden;
  margin: 0 -15px;
}
.list-container .period-list {
  padding: 0 15px;
}

.period-view {
  display: flex;
  margin-bottom: 1.25rem;
  margin-top: 20px;
}
@media screen and (max-width: 48em) {
  .period-view {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 100;
  }
}
.period-view__item {
  width: 1.875rem;
  height: 1.875rem;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  padding: 13px;
  border: 1px solid #eee;
  border-radius: 100%;
  cursor: pointer;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAWAgMAAADcN3bXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAJUExURUdwTJqampmZmThPmwsAAAACdFJOUwC1zZiKOwAAABZJREFUCNdjCGBbBQIrGeAMagE6mgwA9FYZ5+rL+eoAAAAASUVORK5CYII=);
}
.period-view__item.horizontal {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAASUExURUdwTJubm5iYmJiYmJeXl5eXl7q9fp4AAAAFdFJOUwAc6aa2pMgIbwAAAEVJREFUKM9jYDQKDQ1VFmBggDGEQkFAkQHOMHVkYGAQCWaAM1SBqhkYgxjgjFAGEAhlgDNoIoBhLYbDMJyO4TlqgBEVYgByQDUhHeAroQAAAABJRU5ErkJggg==);
}

.period-item {
  flex: 1;
  margin-bottom: 10px;
}
.period-item__link {
  display: flex;
}
.period-item__cover {
  width: 10rem;
  height: 10rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px 2px #eee;
}
.period-item__cover img {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
}
.period-item__info {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 10px;
  border-bottom: 1px solid #eee;
}
.period-item__title {
  font-size: 1.875rem;
  height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.period-item__price {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.period-list.horizontal {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 48em) {
  .period-list.horizontal {
    margin: 0;
  }
}
.period-list.horizontal .period-item {
  flex: 0 0 25%;
  padding: 0 10px;
}
@media screen and (max-width: 48em) {
  .period-list.horizontal .period-item {
    flex: 0 0 50%;
  }
}
.period-list.horizontal .period-item__link {
  display: flex;
  flex-direction: column;
}
.period-list.horizontal .period-item__cover {
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.period-list.horizontal .period-item__info {
  margin-top: 10px;
  margin-left: 0;
}
.period-list__status {
  width: 100%;
  padding: 10px 0;
  text-align: center;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  display: none;
}
.pagination-container.show-pager {
  display: flex;
}

.book-left {
  height: 300px;
  box-shadow: 0 0 10px 2px #eee;
}
@media screen and (max-width: 48em) {
  .book-left {
    margin-top: 10px;
  }
}
.book-left .swiper-container {
  width: 100%;
  height: 100%;
}
.book-left .book-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.book-left .book-img img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.book-tab {
  border: 1px solid #ddd;
}
@media screen and (max-width: 48em) {
  .book-tab {
    border: none;
  }
}

.book-nav {
  font-size: 16px;
  padding: 16px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  color: var(--theme-color);
  border-top: 1px solid var(--theme-color);
}

.book-info .h4 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 48em) {
  .book-info .h4 {
    margin-top: 20px;
  }
}

.book-info .info-label {
  display: inline-block;
  background: none;
  border: None;
  font-size: 16px;
  color: #333;
  text-align: left;
  padding: 0;
}

.book-info em.price {
  font-style: normal;
  font-size: 30px;
  font-weight: bold;
  color: #d8392f;
}

.hao_digital_header .list-inline {
  margin-bottom: 10px;
}

.hao_digital .btn, .hao_digital .book-info .buy-btn, .book-info .hao_digital .buy-btn, .hao_digital .btn-primary {
  color: #fff;
  border-radius: 5px;
  line-height: 26px;
  padding: 6px 18px;
  margin-top: 10px;
}
.hao_digital .btn-primary {
  background: var(--theme-color);
}
.hao_digital .btn-primary:hover, .hao_digital .btn-primary:active, .hao_digital .btn-primary:focus, .hao_digital .btn-primary:hover {
  background: rgba(142, 193, 101, 0.95);
  border: 1px solid rgba(142, 193, 101, 0.95);
}

.book-info .buy-btn {
  background: var(--theme-color);
}

.book-info .year-btn {
  background: var(--theme-color);
}

.book-img {
  max-height: 345px;
}

.book-img img {
  max-height: 345px;
  max-width: 300px;
}

.vertical_nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vertical_nav li {
  position: relative;
  z-index: 9;
  padding: 5px 30px;
  line-height: 28px;
  width: 100%;
  white-space: nowrap;
  overflow: Hidden;
}

.vertical_nav li a {
  color: #999;
  float: left;
}

.vertical_nav .menuThree_arrow_down {
  background: url(../../images/spot-icon.png) no-repeat left top;
  width: 12px;
  height: 16px;
  display: inline-block;
  margin: 10px 5px 0 0;
}

.vertical_nav li a.name {
  max-width: calc(100% - 80px);
  float: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vertical_nav a span.help_arrow {
  background: url(../../images/plus-icon.png) no-repeat 3px 3px;
  border: 1px dashed #e1e1e1;
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  display: inline-block;
  margin: 5px 10px 0 0;
}

.vertical_nav a.open span.help_arrow {
  background: url(../../images/reduce-icon.png) no-repeat 3px 3px;
}

.vertical_nav li a.btn-read {
  margin-left: 5px;
  padding: 0px 12px;
  width: 62px;
  text-align: center;
  border-radius: 4px;
  color: var(--theme-color);
  background: #f2f5fb;
}

.right-panel {
  min-height: 200px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}
.right-panel__title {
  font-size: 16px;
  padding: 16px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  color: var(--theme-color);
  border-top: 1px solid var(--theme-color);
}

.right-panel {
  overflow: hidden;
}
@media screen and (max-width: 48em) {
  .right-panel {
    width: 80vw;
    height: auto;
    overflow: auto;
    background-color: #fff;
    right: -100%;
    position: absolute;
    top: 0;
    transition: all 200ms;
    border: none;
    margin-bottom: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 48em) {
  .right-panel--detail {
    position: relative;
    right: 0;
  }
}
.right-panel__list.horizontal {
  padding: 10px;
  height: 400px;
  overflow: auto;
}
.right-panel__list.horizontal .period-item {
  flex: 0 0 50%;
}
.right-panel__list--rank {
  margin: 10px 20px;
}
.right-panel__list--rank .rank-item {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.right-panel__list--rank .rank-item__num {
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
  border-radius: 100%;
  /* margin-left: 10px; */
  margin-right: 10px;
  min-width: 20px;
}
.right-panel__list--rank .rank-item__num--1 {
  background-color: #df1313;
}
.right-panel__list--rank .rank-item__num--2 {
  background-color: #f58f2b;
}
.right-panel__list--rank .rank-item__num--3 {
  background-color: #f5cd2b;
}
.right-panel__list--rank .rank-item__link {
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.right-panel__placeholder {
  flex: 1;
  align-self: center;
  text-align: center;
}
.right-panel--show {
  opacity: 1;
  pointer-events: initial;
  transition: opacity 200ms;
}
.right-panel--show .right-panel.panel-show {
  transition: right 200ms;
  right: 0;
}

.period-fbtn {
  position: fixed;
  top: 100px;
  left: 0;
  writing-mode: tb;
  position: fixed;
  letter-spacing: 5px;
  padding: 10px 5px;
  z-index: 1000;
  background: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #a8c912;
  color: #fff;
}
.period-fbtn--rank {
  right: 0;
  left: auto;
  top: 160px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.period-fbtn--last {
  right: 0;
  left: auto;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.period-dir {
  width: 100%;
}
@media screen and (max-width: 48em) {
  .period-dir {
    width: 80%;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 200ms;
  }
}
@media screen and (max-width: 48em) {
  .period-dir .book-nav {
    padding: 10px;
  }
}
@media screen and (max-width: 48em) {
  .period-dir .vertical_nav li {
    padding: 5px 10px;
  }
}
.period-dir__close {
  float: right;
}
.period-dir--show {
  opacity: 1;
  pointer-events: initial;
  transition: opacity 0 200ms;
}
.period-dir--show .period-dir {
  transition: all 200ms;
  left: 0;
}

.comment textarea {
  width: 100%;
}
.comment textarea:focus {
  outline: none;
}

.ss-overflow-hidden {
  overflow: hidden !important;
}

.ss-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  visibility: hidden;
  transition: all 0.3s;
  opacity: 0;
}
.ss-overlay.action {
  visibility: visible;
  opacity: 1;
}

.ss-popup {
  background: #FFFFFF;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  transform: translateY(100%);
  transition: all 0.3s;
  overflow: auto;
}
.ss-popup.action {
  transform: translateY(0);
}
.ss-popup--left {
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  transform: translateX(-100%);
}
.ss-popup--left.action {
  transform: translateX(0);
}
.ss-popup--right {
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  transform: translateX(100%);
}
.ss-popup--right.action {
  transform: translateX(0);
}

.stick-tag {
  position: fixed;
  top: 100px;
  left: 0;
  background-color: var(--theme-color);
  color: #fff;
  writing-mode: tb;
  letter-spacing: 5px;
  padding: 11px 4px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: all 0.3s;
}
.stick-tag::after {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  border-top: calc(60px / 2) solid transparent;
  border-bottom: calc(60px / 2) solid transparent;
  border-left: 10px solid var(--theme-color);
  border-right: none;
  left: 100%;
  top: 0;
}
.stick-tag--menu.active {
  left: -40px;
}
.stick-tag--rank {
  right: 0;
  left: auto;
  top: calc(100px + 60px + 30px);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.stick-tag--rank.active {
  right: -40px;
}
.stick-tag--rank::after {
  border-right: 10px solid var(--theme-color);
  left: -10px;
  border-left: none;
}
.stick-tag--history {
  right: 0;
  left: auto;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.stick-tag--history.active {
  right: -40px;
}
.stick-tag--history::after {
  border-right: 10px solid var(--theme-color);
  left: -10px;
  border-left: none;
}

.buy-tip svg {
  height: 22px;
  vertical-align: middle;
  width: 22px;
  margin-top: -4px;
}

.commemtInfor a {
  width: 40vw;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  margin-top: -2px;
}

.periodon-item {
  text-align: center;
  border: 1px solid #ddd;
  position: relative;
  padding: 5px 15px;
  float: left;
  margin: 10px;
  cursor: pointer;
}
.periodon-item.active {
  border: 1px solid #fa8072;
  outline: 1px solid salmon;
}
.periodon-item span {
  display: inline-block;
  vertical-align: middle;
}
.periodon-item span:first-child {
  font-size: 20px;
}
.periodon-item span:last-child {
  margin-left: 10px;
  font-size: 16px;
  color: #d8392f;
}

.be-pagination .be-pagination-btn.active, .be-pagination .be-pagination-btn:active, .be-pagination .be-pagination-btn:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}

/*# sourceMappingURL=hao_digital.css.map */
