@charset 'UTF-8';

/**
 * @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);
*/

/* 清浮动 */

.cf {
  zoom: 1;
}

.cf:before,
.cf:after {
  display: table;
  content: '';
}

.cf:after {
  clear: both;
}

/* flex 布局 */

.df {
  display: flex;
}

/* 默认样式 */

.default {
  cursor: pointer;
}

/* 通用样式 */

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

/* 剧情引用卡片：关键词作标题 + plotSummary 作简介 */

.plot-card {
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 24px 28px;
  border-radius: 6px;
  background: var(--sheet-background-bw-white);
}

.plot-card .keyword {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
  word-break: break-all;
  color: #191919;
}

/* plotSummary 折叠区域 */

.plot-summary-wrap {
  position: relative;
  overflow: hidden;
}

.plot-summary-wrap[data-collapse='200'] {
  max-height: 200px;
}

.plot-summary-wrap.open {
  max-height: none !important;
}

.plot-summary-wrap.open .plot-summary-toggle .down {
  display: none;
}

.plot-summary-wrap .plot-summary-content {
  font-size: 14px;
  line-height: 1.8;
  word-break: break-all;
  color: #4c4c4c;
}

.plot-summary-wrap .plot-summary-content p {
  margin: 8px 0;
}

.plot-summary-wrap .plot-summary-content p:first-child {
  margin-top: 0;
}

.plot-summary-wrap .plot-summary-toggle {
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 60px;
  padding-bottom: 8px;
  cursor: pointer;
  color: var(--color-primary);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  align-items: flex-end;
  justify-content: center;
}

.plot-summary-wrap .plot-summary-toggle .iconfont {
  font-size: 12px;
  margin-left: 4px;
}

.plot-summary-wrap.open .plot-summary-toggle {
  position: static;
  height: auto;
  padding: 8px 0 0;
  background: none;
}

/* answer 区块 */

.plot-answer .plot-answer-content {
  font-size: 14px;
  line-height: 1.8;
  word-break: break-all;
  color: #333;
}

.plot-answer .plot-answer-content h3,
.plot-answer .plot-answer-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 8px;
  color: #191919;
}

.plot-answer .plot-answer-content p {
  margin: 8px 0;
}

.plot-answer .plot-answer-content ol,
.plot-answer .plot-answer-content ul {
  margin: 8px 0;
  padding-left: 20px;
}

.plot-answer .plot-answer-content ol li,
.plot-answer .plot-answer-content ul li {
  margin: 4px 0;
}

.plot-answer .plot-answer-content strong,
.plot-answer .plot-answer-content b {
  font-weight: 600;
  color: #191919;
}

/* 书详情容器 */

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

.book-information .book-img {
  width: 180px;
  height: 240px;
  margin: 20px 20px 0;
  border: none;
}

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

.book-information .book-info {
  position: relative;
  z-index: 1;
  min-height: 246px;
  margin-top: 14px;
  margin-right: 20px;
  text-align: justify;
  flex: 1;
}

.book-information .book-info .book-title {
  font: 700 20px/24px 'PingFangSC-Regular', 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Microsoft YaHei', 'sans-serif';
  margin-right: 100px;
}

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

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

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

.book-information .book-info .book-author: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 {
  font: 14px/24px 'PingFangSC-Regular', '-apple-system', Simsun;
}

.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: 14px/20px 'PingFangSC-Regular', '-apple-system', Simsun;
  margin-top: -2px;
  color: #1a1a1a;
}

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

.book-information .book-info p.intro {
  overflow: hidden;
  height: 24px;
  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;
  position: relative;
  display: inline-block;
  overflow: visible;
  height: 34px;
  margin-right: 20px;
  padding: 0 16px;
  text-align: center;
  vertical-align: middle;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
}

.book-information .book-stats {
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-primary);
}

.book-information .book-stats .book-stats-value strong {
  font-size: 20px;
}

.read-btn {
  position: relative;
  z-index: 1;
  width: 120px;
  transform: translate3d(0, 0, 0);
  text-align: center;
  color: white;
  border-color: var(--color-primary);
  border-radius: 100px !important;
  background: var(--color-primary);
}

.read-btn:hover {
  color: white;
  border-color: var(--color-primary-ligher);
  background: var(--color-primary-ligher);
}

.cont {
  cursor: pointer;
}

.section {
  margin-top: 32px;
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--sheet-background-bw-white);
}

.section .section-title {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 16px;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.link-list .link-item {
  font-size: 14px;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--surface-gray-700);
}

.js_collapse_wrap {
  position: relative;
  overflow: hidden;
}

.js_collapse_wrap[data-collapse='200'] {
  max-height: 200px;
}

.js_collapse_wrap[open] {
  height: auto !important;
  max-height: none !important;
}

.js_collapse_wrap[open] .js_open {
  display: none;
}

.js_collapse_wrap .js_open {
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 100px;
  padding-bottom: 12px;
  cursor: pointer;
  color: var(--color-primary);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  align-items: flex-end;
  justify-content: center;
}

.js_collapse_wrap .js_open .iconfont {
  font-size: 12px;
}

/* 目录 */

.volume {
  z-index: 1;
  overflow: hidden;
}

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

.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;
}

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