@charset 'UTF-8';

/**
 * @author yangye
 * @design xurui;
 */

/**
 * @author yangye
 * @design xurui;
 */

/**
 * @author yangye
 * @design xurui;
 */

/* 居中容器 */

/*边框*/

/*下边距 默认mb就是10px*/

/* 不折行截字 */

/* 折行截字 */

/* 字号22的标题 - 调整行高 */

/* 嵌套小三角 */

/* 实体小三角 */

/* 过渡动画 默认0.3秒 */

/* 平面书封hover放大到1.1倍 */

/* 父容器清浮动 */

/* 标题下边框线 */

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/

/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/

/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/

.g_site_hongxiu .wrap-body {
  position: relative;
  z-index: 1;
}

.g_site_hongxiu .wrap-body .flower {
  position: absolute;
  z-index: 1;
  top: -16px;
  background-repeat: no-repeat;
}

.g_site_hongxiu .wrap-body .flower.left {
  left: 0;
  width: 384px;
  height: 269px;
  background-image: url("/pro/xs_pc/_prelease/images/book_details/flower_left.0bed9.png");
}

.g_site_hongxiu .wrap-body .flower.right {
  right: 0;
  width: 499px;
  height: 243px;
  background-image: url("/pro/xs_pc/_prelease/images/book_details/flower_right.593cb.png");
}

.book-content-wrap {
  margin-bottom: 50px;
}

.chapter-wrap {
  padding: 20px 20px 10px 20px;
  background: var(--sheet-background-bw-white);
}

/* 通用样式 */

/* 此页面无响应点，居中容器990 */

.center1020 {
  width: 1020px;
  margin: 0 auto;
}

/* 顶部背景 */

.top-bg-box {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  height: 255px;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.top-bg-box.rec-book {
  height: 338px;
}

.top-bg-box .back-to-op {
  font-size: 14px;
  line-height: 24px;
  position: absolute;
  z-index: 5;
  top: 0;
  right: 17px;
  height: 24px;
  padding: 0 8px;
  cursor: pointer;
  color: white;
  background: #666;
  background: rgba(0, 0, 0, .3);
}

/* 顶部广告*/

.top-bg-op-box {
  position: absolute;
  top: 42px;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 255px;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.top-bg-op-box a {
  position: absolute;
}

.top-bg-op-box .jumpWrap {
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 338px;
}

.top-bg-op-box .jumpWrap .op-tag {
  right: 27px;
}

.top-bg-op-box .close-game-op {
  font-size: 14px;
  line-height: 24px;
  z-index: 5;
  top: 0;
  right: 17px;
  height: 24px;
  padding: 0 8px;
  color: white;
  background: #666;
  background: rgba(0, 0, 0, .3);
}

.top-bg-op-box .box-center {
  position: relative;
  z-index: 1;
}

.top-bg-op-box .box-center .petal {
  position: absolute;
  z-index: 1;
  top: -40px;
}

.top-bg-op-box .box-center .petal.p1 {
  right: 0;
  width: 60px;
  height: 29px;
  animation: petal 6s 1s infinite ease-out;
  background: url("/pro/xs_pc/_prelease/images/book_details/petal_1.png") no-repeat;
}

.top-bg-op-box .box-center .petal.p2 {
  right: 300px;
  width: 44px;
  height: 29px;
  animation: petal 5.5s 2s infinite ease-out;
  background: url("/pro/xs_pc/_prelease/images/book_details/petal_2.png") no-repeat;
}

.top-bg-op-box .box-center .petal.p3 {
  right: 500px;
  width: 32px;
  height: 20px;
  animation: petal 4.5s 1.5s infinite ease-out;
  background: url("/pro/xs_pc/_prelease/images/book_details/petal_3.png") no-repeat;
}

.top-bg-op-box .box-center .btn {
  position: absolute;
  z-index: 1;
  top: 96px;
  left: 820px;
  width: 222px;
  height: 76px;
  animation: pulse 1.5s infinite;
  background: url("/pro/xs_pc/_prelease/images/book_details/btn.png") no-repeat;
}

/* 花瓣动效 */

@keyframes petal {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  100% {
    transform: translate3d(-800px, 250px, 0);
    opacity: .5;
  }
}

@-webkit-keyframes petal {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(-800px, 250px, 0);
    opacity: .5;
  }
}

@keyframes petal2 {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  100% {
    transform: translate3d(-800px, 520px, 0);
    opacity: .5;
  }
}

@-webkit-keyframes petal {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(-800px, 520px, 0);
    opacity: .5;
  }
}

/* 书详情容器 */

.book-detail-wrap {
  position: relative;
  z-index: 10;
  min-height: 700px;
}

/* 书详情 */

.book-information {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  border-radius: 6px;
  background: var(--sheet-background-bw-white);
}

.book-information .flag {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 65px;
  height: 65px;
  background-image: url("/pro/xs_pc/_prelease/images/book_details/sprite.0133c.png");
  background-repeat: no-repeat;
  background-position: -79px -82px;
  background-size: 335px;
}

.book-information .book-img {
  float: left;
  width: 137px;
  height: 183px;
  margin: 20px 20px 30px;
  border: none;
}

.book-information .book-img a,
.book-information .book-img img {
  display: block;
}

.book-information .book-info {
  position: relative;
  z-index: 1;
  float: left;
  width: 820px;
  margin-top: 14px;
  text-align: justify;
}

.book-information .book-info .match {
  position: absolute;
  top: 16px;
  right: 16px;
}

.book-information .book-info .match p a {
  font: 12px/22px 'PingFangSC-Regular', '-apple-system', Simsun;
  display: block;
  padding: 0 8px;
  color: #f98f2c;
  border-radius: 2px;
  background: #ffe3b8;
}

.book-information .book-info .match p a:hover {
  background: #f1cf9d;
}

.book-information .book-info .unfold {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 10px;
  width: 50px;
  height: 22px;
  text-align: right;
}

.book-information .book-info .unfold .iconfont {
  font-size: 14px;
  display: inline-block;
  margin: 3px 5px 0 0;
  vertical-align: middle;
  color: #2972cc;
}

.book-information .book-info .unfold span {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.book-information .book-info .unfold b {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sheet-background-bw-white);
}

.book-information .book-info .unfold.down .down {
  display: inline-block;
}

.book-information .book-info .unfold.down .up {
  display: none;
}

.book-information .book-info .unfold.up {
  bottom: 60px;
}

.book-information .book-info .unfold.up .down {
  display: none;
}

.book-information .book-info .unfold.up .up {
  display: inline-block;
}

.book-information .book-info .unfold cite {
  font: 14px/1 'PingFangSC-Regular', '-apple-system', Simsun;
  color: #2972cc;
}

.book-information .book-info h1 {
  font: 700 28px/38px 'PingFangSC-Regular', 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Microsoft YaHei', 'sans-serif';
  font-weight: normal;
  overflow: hidden;
  height: 38px;
  margin-top: 16px;
  margin-bottom: 10px;
}

.book-information .book-info h1 a {
  font: 14px/38px 'PingFangSC-Regular', '-apple-system', Simsun;
  margin-left: 3px;
}

.book-information .book-info h1 a:hover {
  color: #1a1a1a;
}

.book-information .book-info p.tag-box {
  margin-bottom: 1px;
  /* 圆角标签 */
}

.book-information .book-info p.tag-box .tag {
  margin: 6px 12px 0 0;
}

.book-information .book-info p.tag-box .tag a,
.book-information .book-info p.tag-box .tag i {
  font: 12px/18px 'PingFangSC-Regular', '-apple-system', Simsun;
  display: inline-block;
  height: 18px;
  margin-right: 6px;
  padding: 0 4px;
  text-align: center;
  vertical-align: top;
  color: var(--color-primary);
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-primary);
  border-radius: 2px;
}

.book-information .book-info p.tag-box .tag i.blue {
  color: #2972cc;
  border: 1px solid #4284ed;
}

.book-information .book-info p.tag-box .tag i.org {
  color: #ff7e00;
  border: 1px solid #ff7e00;
}

.book-information .book-info p.tag-box .tag i.red {
  color: #fc387e;
  border: 1px solid #fd9bbe;
}

.book-information .book-info p.tag-box .tag + .intro {
  font: 14px/20px 'PingFangSC-Regular', '-apple-system', Simsun;
  overflow: hidden;
  height: 20px;
  margin-bottom: 11px;
}

.book-information .book-info p {
  font: 14px/24px 'PingFangSC-Regular', '-apple-system', Simsun;
}

.book-information .book-info p.info-list {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(18, 18, 23, .6);
}

.book-information .book-info p.info-list .cont {
  color: #2a2a2a;
}

.book-information .book-info p.info-list .cont-time {
  margin-left: 20px;
}

.book-information .book-info p.total {
  font-size: 0;
  margin-bottom: 5px;
}

.book-information .book-info p.total span,
.book-information .book-info p.total em,
.book-information .book-info p.total i {
  display: inline-block;
  vertical-align: middle;
}

.book-information .book-info p.total span {
  font: 18px/20px Arial;
  margin-top: -2px;
  margin-right: 5px;
  color: #1a1a1a;
}

.book-information .book-info p.total em {
  font: 12px/20px 'PingFangSC-Regular', '-apple-system', Simsun;
}

.book-information .book-info p.total i {
  font-size: 16px;
  margin: -3px 10px 0;
  color: #a6a6a6;
}

.book-information .book-info p.intro.show {
  overflow: auto;
  height: auto;
  padding-bottom: 30px;
}

.book-information .book-info p.intro {
  overflow: hidden;
  height: 72px;
  margin-bottom: 34px;
}

.book-information .book-info .btn {
  font-size: 0;
}

.book-information .book-info .btn a {
  font: 14px/34px 'PingFangSC-Regular', '-apple-system', Simsun;
  display: inline-block;
  width: 120px;
  height: 34px;
  margin-right: 20px;
  text-align: center;
  vertical-align: middle;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
}

.book-information .book-info .btn .iconfont {
  font-size: 14px;
  width: 14px;
  margin: -3px 6px 0 0;
}

/* 内容导航容器 */

.content-nav-wrap {
  height: 48px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
  /* 内容导航 */
}

.content-nav-wrap .nav-wrap li {
  font: 18px/48px FZZCYSK;
  float: left;
  overflow: hidden;
  height: 47px;
  text-align: center;
}

.content-nav-wrap .nav-wrap li.act {
  margin-bottom: -1px;
  border-bottom: 2px solid var(--color-primary);
}

.content-nav-wrap .nav-wrap li.act a {
  color: var(--color-primary);
}

.content-nav-wrap .nav-wrap li a {
  display: block;
  overflow: hidden;
  padding: 0 20px;
  color: #1a1a1a;
}

.content-nav-wrap .nav-wrap li a i {
  font: 14px/48px FZZCYSK;
}

.content-nav-wrap .nav-wrap li a:hover {
  color: var(--color-primary);
}

.content-nav-wrap .update {
  font: 14px/48px 'PingFangSC-Regular', '-apple-system', Simsun;
  float: left;
  padding-left: 30px;
  color: #2972cc;
}

.content-nav-wrap .update i {
  font-family: Arial;
  margin: 0 8px 0 2px;
}

/* 分页 */

.page-box {
  padding: 30px 0 5px;
}

/* ------------------------------------- 分割线 -------------------------------- */

/* 目录 */

.reading-track {
  height: 40px;
  text-align: center;
}

.reading-track a {
  line-height: 36px;
  display: inline-block;
  margin: 0 auto;
  padding: 0 20px;
  color: #6b3612;
  border: 1px solid #ffdc95;
  background: #fff7e7;
}

.reading-track span {
  font: 16px/19px FZZCYSK;
  margin-right: 10px;
  color: #e67e21;
}

.reading-track i {
  font: 14px/38px 'PingFangSC-Regular', '-apple-system', Simsun;
}

.reading-track .iconfont {
  font-size: 14px;
  min-width: 14px;
  vertical-align: -1px;
  color: #a68671;
}

.volume-wrap {
  position: relative;
}

.volume-wrap .sort-box {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 4px;
  cursor: pointer;
}

.volume-wrap .sort-box .icon-chapterlist-z {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0;
  vertical-align: middle;
  background-image: url("/pro/xs_pc/_prelease/images/chapterlist-dao.0e3a0.png");
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.volume-wrap .sort-box .icon-chapterlist-d {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0;
  vertical-align: middle;
  background-image: url("/pro/xs_pc/_prelease/images/chapterlist-zheng.51d66.png");
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.volume-wrap .sort-box .txt {
  font-size: 14px;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  color: #2972cc;
}

/* 目录分卷 */

.volume {
  z-index: 1;
  overflow: hidden;
  margin-bottom: 40px;
}

.volume ul {
  overflow: hidden;
  width: 1050px;
}

.volume h3 {
  font: 700 18px/24px 'PingFangSC-Regular', 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Microsoft YaHei', 'sans-serif';
  position: relative;
  overflow: hidden;
  height: 24px;
  padding-bottom: 11px;
  border-bottom: 1px solid #e6e6e6;
}

.volume h3 span {
  font: 12px/16px 'PingFangSC-Regular', '-apple-system', Simsun;
  display: inline-block;
  min-width: 24px;
  margin: -1px 8px 0;
  padding: 0 3px;
  text-align: center;
  vertical-align: middle;
  color: white;
}

.volume h3 span.free {
  background: #8ccd0a;
}

.volume h3 span.vip {
  background: #fc6c28;
}

.volume h3 i {
  font-family: Arail;
}

.volume h3 .count {
  font: 14px/19px 'PingFangSC-Regular', '-apple-system', Simsun;
  color: #666;
}

.volume h3 .count cite {
  font-family: Arial;
  margin: 0 3px;
}

.volume h3 .subscribe,
.volume h3 .subscri {
  position: relative;
  z-index: 2;
  float: right;
}

.volume h3 .subscribe .btn,
.volume h3 .subscri .btn {
  font: 14px/28px 'PingFangSC-Regular', '-apple-system', Simsun;
  position: absolute;
  z-index: 2;
  right: 0;
  display: block;
  width: 96px;
  height: 28px;
  transition: background-color .5s;
  text-align: center;
  color: white;
  background: #bf2c24;
}

.volume h3 .subscribe .btn b,
.volume h3 .subscri .btn b {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-right: 3px;
  vertical-align: 0;
}

.volume h3 .subscribe strong,
.volume h3 .subscri strong {
  font: 14px/24px 'PingFangSC-Regular', '-apple-system', Simsun;
  position: absolute;
  z-index: 1;
  top: 2px;
  right: 88px;
  transition: right ease-out .5s;
  text-align: center;
  color: #bf2c24;
}

.volume h3 .subscribe:hover strong,
.volume h3 .subscri:hover strong {
  right: 94px;
}

.volume h3 .subscribe:hover em,
.volume h3 .subscri:hover em {
  background: var(--color-primary);
}

.volume li {
  font: 14px/40px 'PingFangSC-Regular', '-apple-system', Simsun;
  float: left;
  overflow: hidden;
  width: 286px;
  height: 40px;
  padding-right: 40px;
  border-top: 1px solid #ebebeb;
}

.volume li a {
  float: left;
  overflow: hidden;
  max-width: 240px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.volume li .iconfont {
  font-size: 16px;
  float: right;
  color: #bfbfbf;
}

.catalog-content-wrap {
  border-radius: 6px;
}

.catalog-content-wrap.catalog-page {
  padding: 20px 20px 1px;
  background: var(--sheet-background-bw-white);
}

.catalog-content-wrap.subscribe-content {
  padding: 16px 0 100px;
}

.catalog-content-wrap .loading {
  padding-top: 135px;
  text-align: center;
}

.catalog-content-wrap .loading .la-ball-pulse {
  margin: 0 auto;
}

.catalog-content-wrap .no-data .null {
  width: 142px;
  height: 100px;
  margin: 0 auto 20px;
  background: url("/pro/xs_pc/_prelease/images/common/big_wu.ba1a4.png");
}

.catalog-content-wrap .no-data p {
  font: 14px/32px 'PingFangSC-Regular', '-apple-system', Simsun;
  text-align: center;
  color: #666;
}

/*----------------------------- 分隔线 ----------------------------*/

/* 订阅页 */

/* 选择全部章节，自动订阅开关 */

.chapter-select-wrap {
  padding-left: 20px;
}

.auto-switch-wrap {
  position: relative;
  z-index: 1;
}

.auto-switch {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
}

.auto-switch em,
.auto-switch span,
.auto-switch a {
  display: inline-block;
  vertical-align: middle;
}

.auto-switch span {
  font: 14px/19px 'PingFangSC-Regular', '-apple-system', Simsun;
}

.auto-switch em {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 12px;
  margin-right: 12px;
  border-radius: 14px;
  background: #bfbfbf;
}

.auto-switch em a {
  font-size: 12px;
  line-height: 24px;
  position: absolute;
  z-index: 1;
  top: -6px;
  width: 44px;
  height: 24px;
  transition: left .3s;
  text-align: center;
  color: white;
  border-radius: 100px;
}

.auto-switch em.off a {
  left: 0;
  background: #808080;
}

.auto-switch em.on {
  background: #ffaca8;
}

.auto-switch em.on a {
  left: 20px;
  background: #bf2c24;
}

.price-wrap {
  position: relative;
  z-index: 1;
  float: right;
  width: 160px;
  margin-top: 72px;
  padding: 0 32px 0 0;
  text-align: left;
}

.price-wrap .price {
  position: absolute;
  z-index: 1;
  top: -36px;
  right: 44px;
}

.price-wrap .price h6 {
  margin-bottom: 2px;
}

.price-wrap .price h6 em {
  font: 30px/1 FZZCYSK;
  display: inline-block;
  margin-right: 2px;
  color: #bf2c24;
}

.price-wrap .price h6 cite {
  font: 12px/16px 'PingFangSC-Regular', '-apple-system', Simsun;
  display: inline-block;
  vertical-align: top;
  color: #bf2c24;
}

.price-wrap .price b {
  display: block;
  margin-bottom: 2px;
  transform: rotate(-20deg);
  border-bottom: 1px solid #ccc;
}

.price-wrap .price span {
  font: 12px/16px 'PingFangSC-Regular', '-apple-system', Simsun;
  display: block;
  text-align: right;
  color: #a6a6a6;
}

.price-wrap .user-state p {
  font: 12px/16px 'PingFangSC-Regular', '-apple-system', Simsun;
  white-space: nowrap;
}

.price-wrap .user-state p i {
  font-family: Arial;
  margin: 0 3px;
}

.price-wrap .user-state p:first-child {
  height: 17px;
  margin-bottom: 11px;
  padding-bottom: 12px;
  color: #a6a6a6;
  border-bottom: 1px solid #e6e6e6;
}

label:hover b {
  color: var(--color-primary);
}

/* 订阅章节列表 */

.select-all label {
  font: 14px/1 'PingFangSC-Regular', '-apple-system', Simsun;
  display: inline-block;
}

.book-detail-wrap {
  padding-bottom: 20px;
}

.chapter-wrap {
  border-radius: 6px;
}

.chapter-wrap .chapter {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 0;
}

.chapter-wrap .chapter h3.disabled label {
  cursor: default;
  color: #a6a6a6;
}

.chapter-wrap .chapter h3.disabled label:hover b {
  color: #a6a6a6;
}

.chapter-list-wrap {
  position: relative;
  z-index: 1;
}

.chapter-list-wrap h3 {
  font-size: 0;
  margin-bottom: 10px;
  padding-top: 20px;
  white-space: nowrap;
}

.chapter-list-wrap h3 span,
.chapter-list-wrap h3 em,
.chapter-list-wrap h3 cite,
.chapter-list-wrap h3 label {
  display: inline-block;
  vertical-align: middle;
}

.chapter-list-wrap h3 span {
  width: 588px;
  margin-right: 10px;
  margin-left: 25px;
}

.chapter-list-wrap h3 span.ml0 {
  width: 280px;
  margin-left: 0;
}

.chapter-list-wrap h3 em,
.chapter-list-wrap h3 cite,
.chapter-list-wrap h3 span,
.chapter-list-wrap h3 label {
  font: 700 12px/1 'PingFangSC-Regular', '-apple-system', Simsun;
}

.chapter-list-wrap h3 em {
  width: 78px;
  text-align: left;
}

.chapter-list-wrap h3 cite {
  width: 128px;
  text-align: center;
}

.chapter-list-wrap h3 cite.mr0 {
  width: 74px;
}

.chapter-list-wrap h3 label {
  width: 150px;
  margin-right: 30px;
  text-align: center;
}

.chapter-list-wrap li {
  font: 14px/36px 'PingFangSC-Regular', '-apple-system', Simsun;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40px;
  white-space: nowrap;
  border-top: 1px solid #e6e6e6;
}

.chapter-list-wrap li:first-child {
  border-top: none;
}

.chapter-list-wrap li.disabled label {
  cursor: default;
  color: #a6a6a6;
}

.chapter-list-wrap li.disabled label:hover b {
  color: #a6a6a6;
}

.chapter-list-wrap li.disabled span {
  cursor: default;
}

.chapter-list-wrap li span,
.chapter-list-wrap li b,
.chapter-list-wrap li em,
.chapter-list-wrap li cite,
.chapter-list-wrap li strong {
  display: inline-block;
  vertical-align: middle;
}

.chapter-list-wrap li b {
  font-weight: 400;
  overflow: hidden;
  width: 588px;
  margin-right: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chapter-list-wrap li em {
  overflow: hidden;
  width: 56px;
  height: 40px;
  margin-right: 22px;
  text-align: left;
}

.chapter-list-wrap li em,
.chapter-list-wrap li cite {
  color: #666;
}

.chapter-list-wrap li em.update-time {
  width: 144px;
  margin-right: 30px;
  text-align: center;
}

.chapter-list-wrap li strong {
  font-family: Arial;
  font-size: 14px;
  overflow: hidden;
  width: 126px;
  height: 40px;
  text-align: center;
}

/* 置底订阅条 */

.subscribe-wrap {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  height: 64px;
  background-color: #f5f2e9;
}

.subscribe-wrap .left-box {
  font: 14px/1 'PingFangSC-Regular', '-apple-system', Simsun;
  margin-top: 24px;
}

.subscribe-wrap .left-box label {
  margin-right: 9px;
}

.subscribe-wrap .left-box b {
  font: 18px/1 Arial;
  margin: 0 3px;
  vertical-align: -1px;
  color: var(--color-primary);
}

.subscribe-wrap .left-box i {
  font-family: Arial;
  margin: 0 5px;
}

.subscribe-wrap .left-box cite {
  font-family: Arial;
  margin-right: 5px;
}

.subscribe-wrap .right-box {
  font: 14px/64px 'PingFangSC-Regular', '-apple-system', Simsun;
}

.subscribe-wrap .right-box .box {
  float: right;
  margin-right: 20px;
  text-align: right;
}

.subscribe-wrap .right-box .box em,
.subscribe-wrap .right-box .box span {
  font: 22px/1 Arial;
  display: inline-block;
  margin: -1px 5px 0;
  vertical-align: middle;
  color: var(--color-primary);
}

.subscribe-wrap .right-box .box .table {
  display: table;
  height: 64px;
}

.subscribe-wrap .right-box .box .table-cell {
  display: table-cell;
  vertical-align: middle;
}

.subscribe-wrap .right-box .box p:first-child + p {
  font: 12px/16px 'PingFangSC-Regular', '-apple-system', Simsun;
  color: #bf2c24;
}

.subscribe-wrap .right-box .box b {
  font-family: Arial;
  margin: 0 10px 0 5px;
}

.subscribe-wrap .right-box .box2 {
  float: right;
  margin-right: 20px;
}

.subscribe-wrap .right-box i {
  float: right;
  height: 24px;
  margin: 20px 20px 0 0;
  border-left: 1px solid #ccc;
  border-left: 1px solid rgba(0, 0, 0, .1);
}

.subscribe-wrap .right-box .confirm,
.subscribe-wrap .right-box .red-btn {
  font: 16px/64px 'PingFangSC-Regular', 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Microsoft YaHei', 'sans-serif';
  float: right;
  width: 100px;
  text-align: center;
  color: white;
  border-radius: 0 !important;
  background-color: var(--color-primary);
}

.subscribe-wrap .right-box .confirm:hover,
.subscribe-wrap .right-box .red-btn:hover {
  background-color: var(--color-primary-ligher);
}

.subscribe-wrap .right-box .confirm.disabled,
.subscribe-wrap .right-box .red-btn.disabled {
  cursor: default;
  border-color: #a6a6a6;
  background: #a6a6a6;
}

/*书籍推荐*/

.book-recommend {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 20px;
  border-radius: 6px;
  background: var(--sheet-background-bw-white);
}

.book-recommend .volume {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 0;
}

.book-recommend .volume:first-child {
  margin-top: 0;
}

.book-recommend .volume ul {
  overflow: hidden;
  width: 1050px;
}

.book-recommend .volume h3 {
  font: 700 18px/24px 'PingFangSC-Regular', 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Microsoft YaHei', 'sans-serif';
  overflow: hidden;
  height: 24px;
  padding-bottom: 11px;
  border-bottom: 1px solid #e6e6e6;
}

.book-recommend .volume h3 span {
  font: 12px/16px 'PingFangSC-Regular', '-apple-system', Simsun;
  display: inline-block;
  min-width: 24px;
  margin: -1px 8px 0;
  padding: 0 3px;
  text-align: center;
  vertical-align: middle;
  color: white;
}

.book-recommend .volume h3 span.free {
  background: #8ccd0a;
}

.book-recommend .volume h3 span.vip {
  background: #fc6c28;
}

.book-recommend .volume h3 i {
  font-family: Arail;
}

.book-recommend .volume h3 .count {
  font: 14px/19px 'PingFangSC-Regular', '-apple-system', Simsun;
  color: #666;
}

.book-recommend .volume h3 .count cite {
  font-family: Arial;
  margin: 0 3px;
}

.book-recommend .volume h3 .subscribe,
.book-recommend .volume h3 .subscri {
  position: relative;
  z-index: 2;
  float: right;
}

.book-recommend .volume h3 .subscribe .btn,
.book-recommend .volume h3 .subscri .btn {
  font: 14px/28px 'PingFangSC-Regular', '-apple-system', Simsun;
  position: absolute;
  z-index: 2;
  right: 0;
  display: block;
  width: 96px;
  height: 28px;
  transition: background-color .5s;
  text-align: center;
  color: white;
  background: #bf2c24;
}

.book-recommend .volume h3 .subscribe .btn b,
.book-recommend .volume h3 .subscri .btn b {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-right: 3px;
  vertical-align: 0;
}

.book-recommend .volume h3 .subscribe strong,
.book-recommend .volume h3 .subscri strong {
  font: 14px/24px 'PingFangSC-Regular', '-apple-system', Simsun;
  position: absolute;
  z-index: 1;
  top: 2px;
  right: 88px;
  transition: right ease-out .5s;
  text-align: center;
  color: #bf2c24;
}

.book-recommend .volume h3 .subscribe:hover strong,
.book-recommend .volume h3 .subscri:hover strong {
  right: 94px;
}

.book-recommend .volume h3 .subscribe:hover em,
.book-recommend .volume h3 .subscri:hover em {
  background: var(--color-primary);
}

.book-recommend .volume li {
  font: 14px/40px 'PingFangSC-Regular', '-apple-system', Simsun;
  float: left;
  overflow: hidden;
  width: 160px;
  height: 40px;
  padding-right: 40px;
  border: none;
}

.book-recommend .volume li:first-child {
  border-top: none;
}

.book-recommend .volume li a {
  float: left;
  overflow: hidden;
  max-width: 160px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.book-recommend .volume li .iconfont {
  font-size: 16px;
  float: right;
  color: #bfbfbf;
}

/*回顶部按钮*/

.go-top {
  position: fixed;
  z-index: 1;
  right: 0;
  bottom: 84px;
  width: 100%;
}

.go-top .go-top-wrap {
  width: 990px;
  margin: 0 auto;
  padding-left: calc(100vw - 100%);
}

.go-top .go-top-wrap .icon-go-top {
  display: block;
  width: 44px;
  height: 44px;
  margin-left: 1014px;
  text-align: center;
  border-radius: 100%;
  background: var(--sheet-background-bw-white);
  box-shadow: 0 2px 5px #ccc;
}

.go-top .go-top-wrap .icon-go-top .iconfont {
  font-size: 18px;
  line-height: 46px;
  margin-left: 1px;
  transition: color .3s;
  color: #a6a6a6;
}

.go-top .go-top-wrap .icon-go-top:hover .iconfont {
  color: var(--color-primary);
}

/* CSS3 animation */

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

/* retina屏双倍图 */

@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .g_site_hongxiu .wrap-body .flower.left {
    background-image: url("/pro/xs_pc/_prelease/images/book_details/flower_left_2x.7a49b.png");
  }

  .g_site_hongxiu .wrap-body .flower.right {
    background-image: url("/pro/xs_pc/_prelease/images/book_details/flower_right_2x.d93d2.png");
  }

  .g_site_hongxiu .wrap-body .flower {
    background-size: 100%;
  }

  .fans-interact dd.dynamic-state .fans-info .avatar span {
    background-image: url("/pro/xs_pc/_prelease/images/ico/big_user_2x.f40bc.png");
    background-size: 100%;
  }

  .fans-interact dd.dynamic-state .no-data-box span {
    width: 104px;
    height: 62px;
    background-image: url("/pro/xs_pc/_prelease/images/book_details/sprite_2x.4d782.png");
    background-repeat: no-repeat;
    background-position: -87px 0;
    background-size: 335px;
  }

  .default-avatar {
    background-image: url("/pro/xs_pc/_prelease/images/ico/account.1e031.png") !important;
    background-size: 100%;
  }
}

/*# sourceMappingURL=data/landun/workspace/.map/chapterlist.css.map */