/*开关的大小*/
.switch-container {
  height: var(--zhuluan-switch-size);
  width: var(--zhuluan-switch-box);
}
/*设置checkbox不显示*/
/* .switch {
  display: none;
} */
.switch-container label,
.switch-container label:before,
.switch-container label:after {
  display: block;
}
.switch-container label {
  position: relative;
  background-color: var(--zhuluan-custom-e8-color);
  height: 100%;
  width: 100%;
  cursor: pointer;
  border-radius: 25px;
}
.switch-container label:before,
.switch-container label:after {
  content: '';
}
/*在label标签内容之前添加如下样式，形成一个未选中状态*/
.switch-container label:before {
  border-radius: 25px;
  height: 100%;
  width: var(--zhuluan-switch-size);
  background-color: var(--zhuluan-white-color);
  opacity: 1;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
/*在label标签内容之后添加如下样式，形成一个选中状态*/
.switch-container label:after {
  position: absolute;
  top: 0;
  right: 0;
  left: var(--zhuluan-switch-size);
  border-radius: 25px;
  height: 100%;
  width: var(--zhuluan-switch-size);
  background-color: white;
  opacity: 0;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08);
  transition: opacity 0.2s ease;
}
/* ~ 兄弟选择符。
 p~ul ：位于 p 元素之后的所有 ul 元素
*/
/*选中后，选中样式显示*/
.switch:checked ~ label:after {
  opacity: 1;
}
/*选中后，未选中样式消失*/
.switch:checked ~ label:before {
  opacity: 0;
}
/*选中后label的背景色改变*/
.switch:checked ~ label {
  background-color: var(--zhuluan-primary-color);
}
#tooltip {
  /* ... */
  display: none;
}
#tooltip[data-show] {
  display: block;
}
.toast {
  top: 50%;
  left: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  padding: 10px 14px;
  z-index: 999999;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.toast.in {
  -webkit-animation-name: contentZoomIn;
  animation-name: contentZoomIn;
}
.toast .iconfont-old {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  display: block;
}
.toast .iconfont.icon-loading:before {
  display: block;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  animation: rotation 2.7s linear infinite;
}
.toast .text {
  text-align: center;
  max-width: 300px;
  color: #fff;
  font-size: 14px;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes contentZoomIn {
  0% {
    transform: translate(-50%, -70%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes contentZoomIn {
  0% {
    -webkit-transform: translate(-50%, -70%);
    transform: translate(-50%, -70%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes contentZoomIn {
  0% {
    /* -webkit-transform: translate(-50%, -70%);
    transform: translate(-50%, -70%); */
    opacity: 0;
  }
  100% {
    /* -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
    opacity: 1;
  }
}
@-webkit-keyframes contentZoomOut {
  0% {
    /* -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
    opacity: 1;
  }
  100% {
    /* -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%); */
    opacity: 0;
  }
}
@keyframes contentZoomOut {
  0% {
    /* -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
    opacity: 1;
  }
  100% {
    /* -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%); */
    opacity: 0;
  }
}
/* 设置滚动条的样式 */
.scrollbar::-webkit-scrollbar,
.w-e-content-mantle::-webkit-scrollbar,
.w-e-text::-webkit-scrollbar {
  width: 4px;
  /* 设置滚动条的宽度 */
}
/* 滚动槽 */
.scrollbar::-webkit-scrollbar-track,
.w-e-content-mantle::-webkit-scrollbar-track,
.w-e-text::-webkit-scrollbar-track {
  border-radius: 5px;
  /* 设置滚动槽的圆角 */
  background-color: #fcfcfc;
  /* 设置滚动槽的背景颜色 */
}
/* 滚动条滑块 */
.scrollbar::-webkit-scrollbar-thumb,
.w-e-content-mantle::-webkit-scrollbar-thumb,
.w-e-text::-webkit-scrollbar-thumb {
  width: 4px;
  /* 设置滚动条滑块的宽度 */
  border-radius: 5px;
  /* 设置滚动条滑块的圆角 */
  background: rgba(0, 0, 0, 0.08);
  /* 设置滚动条滑块的背景颜色 */
  cursor: pointer;
  /* 设置滚动条滑块的鼠标指针样式 */
}
/* 暗色模式下的滚动条样式 */
.dark-mode .scrollbar::-webkit-scrollbar,
.dark-mode .w-e-content-mantle::-webkit-scrollbar,
.dark-mode .w-e-text::-webkit-scrollbar {
  width: 4px;
  /* 保持滚动条宽度一致 */
}
/* 暗色模式下的滚动槽 */
.dark-mode .scrollbar::-webkit-scrollbar-track,
.dark-mode .w-e-content-mantle::-webkit-scrollbar-track,
.dark-mode .w-e-text::-webkit-scrollbar-track {
  border-radius: 5px;
  /* 保持滚动槽的圆角一致 */
  background-color: #1d2125;
  /* 设置暗色模式下的滚动槽背景颜色 */
}
/* 暗色模式下的滚动条滑块 */
.dark-mode .scrollbar::-webkit-scrollbar-thumb,
.dark-mode .w-e-content-mantle::-webkit-scrollbar-thumb,
.dark-mode .w-e-text::-webkit-scrollbar-thumb {
  width: 4px;
  /* 保持滚动条滑块的宽度一致 */
  border-radius: 5px;
  /* 保持滚动条滑块的圆角一致 */
  background: #333 !important;
  /* 设置暗色模式下的滚动条滑块背景颜色 */
  cursor: pointer;
  /* 保持滚动条滑块的鼠标指针样式一致 */
}
a.unlinks-deco {
  color: var(--zhuluan-primary-color);
  text-decoration: none;
}
.layout-header {
  height: 70px;
  background-color: var(--zhuluan-white-color);
}
.layout-header .logo,
.layout-header .logo .links {
  width: 180px;
  height: 70px;
}
.layout-header .logo .links {
  cursor: pointer;
  display: block;
  /* text-indent: -9999px; */
  /* background: url('https://fanyi.qq.com/images/logo.c149f2b6.png') no-repeat;
  background-size: contain; */
}
.layout-header .logo .links img {
  height: 100%;
}
.layout-header .icon-menu {
  display: none;
}
.layout-header .nav .list {
  font-size: 16px;
  font-weight: 600;
  margin-left: 32px;
}
.layout-header .nav .list .links {
  color: var(--zhuluan-black-6-color);
  transition: all 0.4s;
}
.layout-header .nav .list.active .links,
.layout-header .nav .list:hover .links {
  color: var(--zhuluan-primary-color);
}
.layout-header .nav .nav-btn {
  padding-left: 35px;
}
.layout-header .nav .btn {
  padding: 6px 12px;
  margin: 0 0 0 14px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: var(--zhuluan-primary-border-radius);
  color: var(--zhuluan-black-3-color);
  background-color: var(--zhuluan-white-f2-color);
  transition: all 0.4s;
}
.layout-header .nav .btn.sign {
  color: var(--zhuluan-white-color);
  background-color: var(--zhuluan-primary-color);
  background: linear-gradient(90deg, var(--zhuluan-primary-color), var(--zhuluan-primary-color-hover));
  box-shadow: 0 4px 8px 0 rgb(var(--zhuluan-shadow-color) / 12%);
}
.layout-header .nav .btn:hover {
  opacity: 0.8;
  box-shadow: none;
}
.layout-content {
  padding: 22px 0 70px;
}
.layout-bar {
  /* margin-bottom: 22px; */
  position: relative;
}
.layout-bar .num span {
  margin: 0 6px;
  font-size: 24px;
  font-weight: 300;
}
.article .layout-bar-left .btn {
  display: none;
}
.article:not(.is-loading):not(.loaded) .layout-bar-left .ai-btn,
.article.loaded .back-btn,
.article.loaded .copy-btn,
.article.loaded .clear-btn {
  display: flex;
}
.layout-bar .bright-btn {
  /* min-width: 110px; */
  color: var(--zhuluan-white-color);
  background-color: var(--zhuluan-primary-color);
  background: linear-gradient(90deg, var(--zhuluan-primary-color), var(--zhuluan-primary-color-hover));
  box-shadow: 0 4px 8px 0 var(--zhuluan-shadow-color);
}
#kw-tags {
  margin-bottom: 22px;
}
#kw-tags #tags-clear-all {
  margin-left: 10px;
}
#kw-box {
  margin-bottom: -14px;
}
#kw-list {
  font-weight: 500;
  font-size: 12px;
  color: var(--zhuluan-black-80-color);
}
.kw-tags .tag {
  display: inline-block;
  padding: 0 14px;
  border-radius: 22px;
  margin-left: 14px;
  font-size: 14px;
  /* font-weight: bold; */
  line-height: 24px;
  height: 26px;
  position: relative;
  color: var(--zhuluan-primary-color);
  background-color: var(--zhuluan-primary-rgba-10);
  box-sizing: border-box;
  transition: all 0.4s;
}
.score .cross,
.kw-tags .tag.cross,
.cross .strings,
.zhuluan-icon .iconfont-old {
  color: #f00;
}
.kw-tags .tag.cross,
.strbg.cross {
  background-color: #ffe9e9;
}
.score .warning,
.kw-tags .tag.warning,
.warning .strings {
  color: #b67418;
}
.kw-tags .tag.warning,
.strbg.warning {
  background-color: #fef9f3;
}
.kw-tags .tag.check,
.strbg.check {
  background-color: #eefaef;
}
.score .check,
.kw-tags .tag.check,
.check .strings {
  color: #529c4f;
}
.sentence {
  height: 100%;
  margin: 0;
  padding: 0;
  padding-right: 6px;
}
.sentence ul {
  margin: 0;
}
.sentence .item {
  display: grid;
  grid-template-columns: 4fr 1fr;
  border-top: 1px solid #f0f0f0 !important;
  border-left: 1px solid #f0f0f0;
  grid-gap: 0px !important;
  column-count: 2;
  line-height: 2;
  padding: 0;
  margin: 0;
}
.sentence .item p {
  color: #333;
  border-right: 1px solid #f0f0f0;
  display: block;
  padding: 0;
  margin: 0;
}
.sentence .item p:hover {
  color: #333;
}
.sentence .item p:first-child {
  color: #999;
}
.sentence .item p .tag {
  text-overflow: unset !important;
  display: block;
}
.sentence .item-b {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr;
  border-top: 1px solid #f0f0f0 !important;
  border-left: 1px solid #f0f0f0;
  grid-gap: 0px !important;
  column-count: 3;
  line-height: 2;
  padding: 0;
  margin: 0;
}
.sentence .item-b p {
  color: #333;
  border-right: 1px solid #f0f0f0;
  display: block;
  padding: 0;
  margin: 0;
}
.sentence .item-b p:hover {
  color: #333;
}
.sentence .item-b p:first-child {
  color: #999;
}
.sentence .item-b p .tag {
  text-overflow: unset !important;
  display: block;
}
.sentence .result-title p {
  text-overflow: unset !important;
  color: #333 !important;
}
@media screen and (max-width: 768px) {
  .sentence .item-b {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .score{
    font-size: 12px;
  }
}
.sentence.list .tag:hover {
  color: var(--zhuluan-white-color);
}
.dark-mode .sentence .item-b {
  border-top: 1px solid #333 !important;
  border-left: 1px solid #333;
}
.dark-mode .sentence .item-b p {
  color: #fff;
  border-right: 1px solid #333;
}
.dark-mode .sentence .item-b p:hover {
  background-color: transparent !important;
  color: #fff;
}
.dark-mode .sentence .item-b p:first-child {
  color: #999;
}
.dark-mode .sentence .item {
  border-top: 1px solid #333 !important;
  border-left: 1px solid #333;
}
.dark-mode .sentence .item p {
  color: #fff;
  border-right: 1px solid #333;
}
.dark-mode .sentence .item p:hover {
  background-color: transparent !important;
  color: #fff;
}
.dark-mode .sentence .item p:first-child {
  color: #999;
}
.dark-mode .sentence .result-title p {
  text-overflow: unset;
  color: #fff !important;
}
.sentence.list .tag.cross:hover {
  background-color: #f00;
}
.sentence.list .tag.warning:hover {
  background-color: #b67418;
}
.sentence.list .tag.check:hover {
  background-color: #529c4f;
}
.sentence {
  height: 100%;
  overflow-y: auto;
}
.dark-mode .sentence.list .tag.cross {
  background-color: rgba(183, 28, 28, 0.1);
}
.dark-mode .sentence.list .tag.warning {
  background-color: rgba(230, 81, 0, 0.1);
}
.dark-mode .sentence.list .tag.check {
  background-color: rgba(27, 94, 32, 0.1);
}
.dark-mode .sentence.list .tag.cross:hover {
  background-color: #b71c1c;
}
.dark-mode .sentence.list .tag.warning:hover {
  background-color: #e65100;
}
.dark-mode .sentence.list .tag.check:hover {
  background-color: #1b5e20;
}
.kw-tags .tag .iconfont-old {
  font-size: 14px;
  position: relative;
  top: 1px;
}
.kw-tags .tag .iconfont-old span {
  font-size: 13px;
  margin: 0 3px;
}
.kw-tags .tag em {
  font-style: normal;
  font-weight: 600;
}
.sentence {
  list-style: none;
}
/* .sentence:not(.head) { */
.sentence {
  overflow: auto;
}
.sentence .item {
  border-top: 1px solid var(--zhuluan-border-rgba-4);
  height: 42px;
}
/* .sentence.head .item { */
.sentence .item:first-child {
  background-color: var(--zhuluan-white-fa-color);
}
/* .sentence:not(.head) .item:last-child { */
.sentence .item:last-child {
  border-bottom: 1px solid var(--zhuluan-border-rgba-4);
}
p.title {
  color: var(--zhuluan-black-80-color);
}
.sentence .item p {
  text-align: center;
  padding: 8px 12px;
  line-height: 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sentence .item-b p {
  text-align: center;
  padding: 8px 12px;
  line-height: 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
p.title {
  transition: all 0.3s;
}
.item:not(.cross):not(.warning):not(.check) p.title:hover {
  cursor: pointer;
  color: var(--zhuluan-black-3-color);
  background-color: #fdfdfd;
}
.sentence .item .tag {
  padding: 0 12px;
  margin: 0;
}
.sentence .item .tag .icon-baidu:before {
  opacity: 0.6;
}
.sentence .item .tag:hover .icon-baidu:before {
  opacity: 0.98;
}
.item-b:not(.cross):not(.warning):not(.check) p.title:hover {
  cursor: pointer;
  color: var(--zhuluan-black-3-color);
  background-color: #fdfdfd;
}
.sentence .item-b .tag {
  padding: 0 12px;
  margin: 0;
}
.sentence .item-b .tag .icon-baidu:before {
  opacity: 0.6;
}
.sentence .item-b .tag:hover .icon-baidu:before {
  opacity: 0.98;
}
#kw-list .kw .icon-close,
.locked-kw-tags .tag .icon-close {
  cursor: pointer;
}
#kw-list .kw:hover,
.locked-kw-tags .tag:hover {
  background-color: var(--zhuluan-primary-rgba-20);
}
#kw-list .kw .iconfont,
.locked-kw-tags .tag .iconfont-old {
  font-size: 12px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.layout-bar .text-btn {
  color: var(--zhuluan-primary-color);
  text-decoration: none;
}
.layout-bar .text-btn:hover {
  text-decoration: underline;
}
.layout-bar .line-btn {
  color: var(--zhuluan-primary-color);
  border: solid 1px var(--zhuluan-primary-color);
}
.layout-bar .line-btn:hover {
  box-shadow: 0 4px 8px -2px rgba(51, 51, 51, 0.08);
}
.layout-bar .bright-btn:hover {
  background-color: var(--zhuluan-neighbor-color);
  box-shadow: none;
  opacity: 0.8;
}
.magnitude #word-count {
  margin-right: 4px;
}
.magnitude #word-count .warning {
  color: var(--zhuluan-warning-color);
}
.article {
  width: 100%;
  position: relative;
}
.article .creating-loading {
  display: none;
  position: absolute;
  z-index: 10008;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.article.is-loading .creating-loading {
  display: flex;
}
.article .creating-loading .tips {
  margin-top: 10px;
  color: var(--zhuluan-black-80-color);
}
.article .layout-article {
  /* width: calc(50% - 7px); */
  /* border-radius: var(--zhuluan-primary-border-radius); */
  position: relative;
}
.article .article-box {
  position: relative;
  z-index: 8;
  transition: all 0.35s;
}
/* .article #article-right {
  overflow: auto;
} */
.article .wang-editor .article-box {
  border-right: 1px solid var(--zhuluan-border-rgba-4);
}
.article .wang-editor .article-box:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  border-left: 1px solid var(--zhuluan-border-rgba-4);
}
.baidu-icon {
  color: var(--zhuluan-black-80-color);
}
.baidu-icon .iconfont-old {
  font-size: 12px;
  /* font-weight: 600; */
  display: inline-block;
  border-radius: 3px;
  line-height: 120%;
  padding: 0 3px;
  border: 1px solid #f00;
  color: #f00;
}
.article-right .baidu-icon .iconfont-old {
  position: relative;
  top: -1px;
  margin-right: 6px;
}
/* .article .article-box:hover {
  z-index: 19;
  border-color: var(--zhuluan-primary-rgba-60)
} */
.layout-article .w-e-toolbar,
.layout-article .w-e-text-container {
  border: none !important;
}
.article-footer-bar {
  padding: 0 12px 6px;
  height: 32px;
  color: var(--zhuluan-black-80-color);
}
.article-footer-bar .switch-container {
  margin-right: 8px;
}
.article-footer-bar .magnitude {
  text-align: right;
  font-size: 15px;
}
.w-e-toolbar .w-e-menu.lan-w-hide {
  display: none;
}
.w-e-toolbar .w-e-menu:not(.lan-w-hide) {
  display: flex;
}
.w-e-toolbar .w-e-menu.lan-w-active .iconfont-old {
  color: var(--zhuluan-primary-color);
}
.article-head {
  position: relative;
  z-index: 9;
  height: 50px;
  padding: 13px 15px 11px;
  /* border-bottom: 1px solid var(--zhuluan-border-rgba-4) */
}
.article-head h3 {
  color: var(--zhuluan-black-3-color);
  font-weight: normal;
}
.article-head .tips {
  color: var(--zhuluan-black-80-color);
}
.result-box {
  max-height: calc(100% - 50px - 66px);
  overflow: hidden;
}
.result-default-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--zhuluan-custom-d8-color);
}
.result-default-info .iconfont-old {
  font-size: 40px;
}
.is-loading .result-default-info,
.loaded .result-default-info,
.article:not(.loaded) .layout-bar-right,
.article:not(.loaded) .result-content {
  display: none;
}
.layout-bar-right .text-btn {
  margin: 0;
  padding-left: 0;
}
.result-content .score {
  height: 40px;
  padding: 7px 15px 12px;
  text-align: center;
  color: var(--zhuluan-black-80-color);
}
.result-content #score {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  margin: 0 4px;
}
.result-content .score .num {
  margin: 0 3px;
}
.article.loaded .w-e-content-preview,
.article.loaded .w-e-toolbar {
  background-color: rgba(0, 0, 0, 0) !important;
}
.article.loaded .unlinks {
  text-decoration: none;
}
#think-kw {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-top: 1px solid var(--zhuluan-border-color);
  background-color: var(--zhuluan-white-color);
  box-shadow: 0 3px 5px rgba(30, 30, 30, 0.02);
}
#think-kw .list {
  padding: 12px 10px;
  line-height: 100%;
  border-bottom: 1px solid var(--zhuluan-border-rgba-4);
  transition: all 0.4s;
  cursor: pointer;
}
#think-kw .list:hover,
#think-kw .list.pitch {
  background-color: var(--zhuluan-warning-rgba-10);
}
#think-kw .list:last-child {
  border: none;
}
#think-kw .list .text span {
  color: var(--zhuluan-warning-color);
}
#think-kw .list .num {
  color: var(--zhuluan-black-80-color);
}
.bar-fast-tool .iconfont-old {
  font-size: 20px;
  margin-left: 5px;
}
.bar-fast-tool .magnitude {
  margin-left: 20px;
}
/* .icon-copy{
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjI1cHgiIGhlaWdodD0iMjVweCIgdmlld0JveD0iMCAwIDI1IDI1IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDwhLS0gR2VuZXJhdG9yOiBTa2V0Y2ggNDYuMiAoNDQ0OTYpIC0gaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoIC0tPg0KICAgIDx0aXRsZT40LjEgY29weSA0MDwvdGl0bGU+DQogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+DQogICAgPGRlZnM+PC9kZWZzPg0KICAgIDxnIGlkPSItIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4NCiAgICAgICAgPGcgaWQ9IjQuMS1jb3B5LTMyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNzc4LjAwMDAwMCwgLTU3NC4wMDAwMDApIiBmaWxsPSIjQ0RDRENEIj4NCiAgICAgICAgICAgIDxnIGlkPSLlpI3liLYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDc4Mi4wMDAwMDAsIDU3Ni4wMDAwMDApIj4NCiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTUuNTY2MzMwNyw2IEwxMSwxLjQzMzY2OTI4IEwxMSw2IEwxNS41NjYzMzA3LDYgWiBNMTYsNi43MTY4MzQ2NCBMMTYsNyBMMTAuNSw3IEwxMCw3IEwxMCwxIEwxMC4yODMxNjU0LDEgTDMsMSBMMywwIEwxMSwwIEwxMSwwLjAxOTQ1NTcxODggTDE2Ljk4MDU0NDMsNiBMMTcsNiBMMTcsMTYgTDE2LDE2IEwxNiw2LjcxNjgzNDY0IFogTTAuNSwzIEwyLDMgTDIsNCBMMSw0IEwxLDE5IEwwLDE5IEwwLDMgTDAuNSwzIFogTTEzLDE4IEwxNCwxOCBMMTQsMjAgTDEzLDIwIEwxMywxOCBaIE0wLDE5IEwxMywxOSBMMTMsMjAgTDAsMjAgTDAsMTkgWiBNMywxIEw0LDEgTDQsMTcgTDMsMTcgTDMsMSBaIE00LDE2IEwxNywxNiBMMTcsMTcgTDQsMTcgTDQsMTYgWiIgaWQ9IkNvbWJpbmVkLVNoYXBlIj48L3BhdGg+DQogICAgICAgICAgICA8L2c+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4=) no-repeat;
  background-size: contain
} */
.layout-site-details {
  padding-top: 70px;
  font-size: 14px;
  color: var(--zhuluan-black-6-color);
}
.layout-site-details h2 {
  font-size: 28px;
  line-height: 120%;
  padding: 0 20px;
  margin: 0 0 60px;
  font-weight: 500;
  text-align: center;
}
.layout-site-details p {
  line-height: 200%;
}
.sentence .goto-top {
  border-left: 0 !important;
}
.sentence .goto-top a {
  color: var(--zhuluan-custom-d8-color);
  cursor: pointer;
  color: #999;
  font-size: 14px;
}
.locked-kw {
  margin-top: 14px;
  position: relative;
}
.locked-kw .locked-kw-tags {
  display: block;
  width: 100%;
  padding: 12px 10px;
  margin-bottom: -14px;
  min-height: 54px !important;
  border-color: var(--zhuluan-white-color);
  border-radius: var(--zhuluan-primary-border-radius);
  background-color: var(--zhuluan-white-color);
  overflow: hidden;
}
.locked-kw-tags .tag {
  margin: 0 14px 14px 0;
  font-size: 12px;
  /* color: var(--zhuluan-warning-color);
  background-color: var(--zhuluan-warning-rgba-10); */
}
/* .locked-kw-tags .tag:hover {
  background-color: var(--zhuluan-warning-rgba-20);
} */
.locked-kw .locked-kw-tags #locked-kw_addTag {
  padding-left: 15px;
  padding-bottom: 15px;
  /* display: block;
  width: 100%; */
}
.locked-kw .locked-kw-tags #clear-all,
#kw-tags #tags-clear-all {
  color: var(--zhuluan-black-80-color);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.4s;
}
.locked-kw .locked-kw-tags #clear-all:hover,
#kw-tags #tags-clear-all:hover {
  color: var(--zhuluan-black-3-color);
}
.locked-kw .locked-kw-tags .tags_clear {
  display: block;
  margin-bottom: -12px;
}
.locked-kw #locked-kw_tag {
  font-size: 12px;
  font-weight: normal;
  padding: 8px 0;
}
.footer {
  padding-bottom: 15px;
}
.footer p {
  text-align: center;
  margin-bottom: 8px;
}
.footer p,
.footer .links {
  color: var(--zhuluan-black-80-color);
}
.footer .foot-menu {
  font-size: 16px;
}
.footer .links {
  margin: 0 6px;
  word-break: keep-all;
  transition: all 0.4s;
}
.footer .links:hover {
  color: var(--zhuluan-black-3-color);
}
.anchor-box {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}
.anchor-box .anchor-content {
  position: absolute;
  width: 420px;
  height: 220px;
  left: 50%;
  top: 50%;
  padding: 35px 25px;
  transform: translate(-50%, -50%);
  background-color: var(--zhuluan-white-color);
  box-shadow: 3px 3px 38px rgba(0, 0, 0, 0.1), -3px -3px 38px rgba(0, 0, 0, 0.1);
}
.anchor-box .anchor-content .icon-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 14px;
  color: var(--zhuluan-black-80-color);
  cursor: pointer;
}
.anchor-box .anchor-content .h4 {
  margin-bottom: 12px;
  font-size: 15px;
}
.anchor-box .anchor-content .h4 span {
  color: var(--zhuluan-black-80-color);
  margin-left: 10px;
  font-size: 12px;
}
.anchor-box .anchor-content em {
  font-style: normal;
}
.anchor-box .anchor-content em.warning {
  color: var(--zhuluan-warning-color);
}
.anchor-content .input-list {
  margin-bottom: 10px;
}
.anchor-content .input {
  border: solid 1px var(--zhuluan-border-color);
  padding: 8px 10px;
  width: 100%;
  border-radius: 2px;
  display: block;
}
.anchor-content .input:focus {
  border-color: var(--zhuluan-primary-color);
}
.anchor-content .btn-box {
  color: var(--zhuluan-black-80-color);
}
.anchor-content .btn-box .btn {
  margin-left: 12px;
  cursor: pointer;
  transition: all 0.4s;
}
.anchor-content .btn-box .btn:hover {
  opacity: 0.6;
}
.anchor-content .btn-box .btn.add {
  color: var(--zhuluan-primary-color);
}
.switch-bar .tips {
  margin-left: 10px;
}
.anchor-box {
  position: absolute;
  z-index: 99998;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 992px) {
  .layout-header {
    position: relative;
  }
  .layout-header,
  .layout-header .logo,
  .layout-header .logo .links {
    height: 60px;
  }
  .layout-header .logo .links img {
    width: auto;
  }
  .layout-header .icon-menu {
    display: block;
  }
  .header-nav .nav,
  .article .layout-bar-left .copy-btn {
    display: none;
  }
  .header-nav.open-menu .nav {
    display: block;
    position: absolute;
    z-index: 10008;
    left: 0;
    right: 0;
    top: 60px;
    width: 100%;
    padding: 15px 0 25px;
    border-top: 1px solid var(--zhuluan-custom-d8-color);
    background-color: var(--zhuluan-white-color);
    box-shadow: 0 6px 6px rgba(30, 30, 30, 0.06);
  }
  .layout-header .nav .list {
    height: 35px;
    line-height: 35px;
  }
  .layout-header .nav .nav-btn {
    padding-left: 32px;
    padding-top: 15px;
  }
  .layout-header .nav .btn {
    margin: 0 14px 0 0;
  }
  /* .layout-bar .bright-btn {
    min-width: auto;
    width: calc((100vw / 3) - 24px)
  } */
  .layout-content {
    padding: 18px 0 32px;
  }
  .article .creating-loading {
    bottom: 50%;
  }
  .layout-content .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .article .layout-article {
    width: 100%;
    margin-bottom: 12px;
  }
  .anchor-box .anchor-content {
    width: 92vw;
  }
  .layout-bar {
    display: block;
    height: auto;
  }
  .article-footer-bar {
    display: none !important;
  }
}
.semi-circle-spin {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
}
.semi-circle-spin:after {
  content: '';
  position: absolute;
  border-width: 0px;
  border-radius: 100%;
  -webkit-animation: spin-rotate 0.6s 0s infinite linear;
  animation: spin-rotate 0.6s 0s infinite linear;
  background-image: -webkit-linear-gradient(transparent 0%, transparent 70%, var(--zhuluan-primary-color) 30%, var(--zhuluan-primary-color) 100%);
  background-image: linear-gradient(transparent 0%, transparent 70%, var(--zhuluan-primary-color) 30%, var(--zhuluan-primary-color) 100%);
  width: 100%;
  height: 100%;
}
@-webkit-keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ball-clip-rotate-multiple {
  position: relative;
}
.ball-clip-rotate-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: 0px;
  top: 0px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  -webkit-animation: rotate 1s 0s ease-in-out infinite;
  animation: rotate 1s 0s ease-in-out infinite;
}
.ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: 10px;
  left: 10px;
  width: 15px;
  height: 15px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-color: #fff transparent #fff transparent;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
