.cxdialog {
  position: fixed;
  top: -100%;
  left: 50%;
  overflow: hidden;
  min-width: 240px;
  max-width: 90%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  color: #333;
  font-family: Arial, "\5fae\8f6f\96c5\9ed1", sans-serif;
  z-index: 20002;
  border: 1px solid #ddd;
  _position: absolute;
  _width: 360px;
  _height: 140px;
}
.cxdialog.in {
  top: 40%;
}
.cxdialog > a[rev="close"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  color: #e9573f;
  font: bold 18px/30px Tahoma;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
}
.cxdialog > a[rev="close"]:before {
  content: "×";
}
.cxdialog > a[rev="close"]:hover {
  color: #fc6e51;
}

.cxdialog_title {
  position: relative;
  background: #ddd;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
  text-indent: 10px;
}
.cxdialog_info {
  overflow: hidden;
  position: relative;
  min-height: 40px;
  font-size: 14px;
  line-height: 1.6;
}
.cxdialog_btns {
  overflow: hidden;
  position: relative;
  padding: 10px;
  border-top: 1px solid #ddd;
  font-weight: bold;
  font-size: 14px;
  line-height: 28px;
  text-align: right;
}
.cxdialog_btns a {
  display: inline-block;
  position: relative;
  padding: 0 1em;
  border: none;
  border-radius: 3px;
  background: #aaa;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.cxdialog_btns a:hover {
  background: #999;
}
.cxdialog_btns a + a {
  margin-left: 10px;
}

.cxdialog_overlay {
  overflow: hidden;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  opacity: 0.4;
  filter: alpha(opacity=40);
  _position: absolute;
}
.cxdialog.in + .cxdialog_overlay {
  top: 0;
}

.cxdialog_lock {
  overflow: hidden !important;
  width: auto;
}

/* iOS Theme */
@-webkit-keyframes cxDialogIosIn {
  0% {
    top: 35%;
    opacity: 0;
    -webkit-transform: scale(1.1);
  }
  100% {
    top: 35%;
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes cxDialogIosIn {
  0% {
    top: 35%;
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    top: 35%;
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes cxDialogIosOut {
  0% {
    top: 35%;
    opacity: 1;
    -webkit-transform: scale(1);
  }
  99% {
    top: 35%;
    opacity: 0;
    -webkit-transform: scale(0.9);
  }
  100% {
    top: -100%;
    opacity: 0;
  }
}
@keyframes cxDialogIosOut {
  0% {
    top: 35%;
    opacity: 1;
    transform: scale(1);
  }
  99% {
    top: 35%;
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    top: -100%;
    opacity: 0;
  }
}

.cxdialog.ios {
  min-width: 270px;
  border-radius: 6px;
  background: #f9f9f9;
  box-shadow: none;
}
.cxdialog.ios > a[rev="close"] {
  display: none;
}
.cxdialog.ios .cxdialog_title {
  padding: 16px 10px 0 10px;
  background: none;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.cxdialog.ios .cxdialog_info {
  min-height: inherit;
  margin: 0 0 0 0;
  font-size: 14px;
  text-align: center;
}
.cxdialog.ios .cxdialog_title + .cxdialog_info {
  margin-top: 2px;
  padding-top: 0;
}
.cxdialog.ios .cxdialog_btns {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ddd;
  font-size: 16px;
  line-height: 44px;
  text-align: center;
}
.cxdialog.ios .cxdialog_btns a {
  clear: both;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: #007aff;
  cursor: pointer;
}
.cxdialog.ios .cxdialog_btns a:hover {
  background: #e9e9e9;
}
.cxdialog.ios .cxdialog_btns a.btn_ok,
.cxdialog.ios .cxdialog_btns a.btn_no {
  clear: none;
  float: left;
  width: 50%;
  border: none;
}
.cxdialog.ios .cxdialog_btns a.btn_ok {
  float: right;
}
.cxdialog.ios .cxdialog_btns a.btn_ok:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #d4d4d4;
}
.cxdialog.ios .cxdialog_btns a.btn_ok:only-child,
.cxdialog.ios .cxdialog_btns a.btn_no:only-child {
  float: none;
  width: 100%;
}
.cxdialog.ios .cxdialog_btns a + a {
  border-top: 1px solid #d4d4d4;
}
.cxdialog.ios + .cxdialog_overlay {
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: top 0s, opacity 0.2s;
}
.cxdialog.ios.in {
  -webkit-animation: cxDialogIosIn 0.2s both;
  animation: cxDialogIosIn 0.2s both;
}
.cxdialog.ios.out {
  -webkit-animation: cxDialogIosOut 0.2s both;
  animation: cxDialogIosOut 0.2s both;
}
.cxdialog.ios.in + .cxdialog_overlay {
  top: 0;
  opacity: 1;
}
.cxdialog.ios.out + .cxdialog_overlay {
  transition: top 0s 0.2s, opacity 0.2s;
}

.mpsharebar {
  height: 28px;
  z-index: 996;
  position: absolute;
  left: 15px;
  top: 0px;
}
.mpsharebar a {
  color: #fff;
  text-decoration: none;
}
.mpsharebar .sbtn {
  padding-left: 29px;
  height: 24px;
  line-height: 24px;
  float: left;
  margin-left: 3px;
  margin-right: 2px;
  margin-top: 12px;
  font-size: 12px;
  color: #fff;
}
.mpsharebar .hits {
  background: url(img/hits_btn.svg) left center no-repeat;
}
.mpsharebar .diggs {
  background: url(img/diggs_btn.svg) left center no-repeat;
  cursor: pointer;
}
.mpsharebar .diggsed {
  background: url(img/diggsed_btn.svg) left center no-repeat;
  cursor: pointer;
}
.mpsharebar .reviews {
  background: url(img/reviews_btn.svg) left center no-repeat;
}
.casebtn {
  float: right;
  margin-right: 15px;
  padding-right: 32px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  margin-top: 13px;
  background: url(img/case_btn.svg) right center no-repeat;
}
.casebtn a {
  color: #ffffff;
}
.mpcasebtn {
  float: right;
  margin-right: 50px;
  height: 20px;
  width: 20px;
  margin-top: 12px;
  background: url(img/case_btn.svg) left center no-repeat;
}
.markerbtn {
  position: absolute;
  right: 15px;
  padding-right: 28px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  background: url(img/marker_btn.svg) right center no-repeat;
  cursor: pointer;
}
.mpmarkerbtn {
  float: right;
  margin-right: 50px;
  height: 20px;
  width: 20px;
  margin-top: 12px;
  background: url(img/marker_btn.svg) left center no-repeat;
}
#cover {
  position: absolute;
  z-index: 10003;
}
#cover a {
  text-decoration: none;
}
.style0 {
  display: none;
}
.style1 {
  background: #f5f2ec;
}
.style2 {
  background: url("img/mbg2_L.jpg") no-repeat center center;
  position: relative;
  background-size: cover;
}
.style3 {
  background: url("img/mbg3_L.jpg") no-repeat center center;
  position: relative;
  background-size: cover;
}
.style4 {
  background: url("img/mbg4_L.jpg") no-repeat center center;
  position: relative;
  background-size: cover;
}
.style5 {
  background: url("img/mbg5_L.jpg") no-repeat center center;
  position: relative;
  background-size: cover;
}
#logo {
  position: fixed;
  right: 1rem;
  top: 1rem;
}
#logo img {
  width: 3.5rem;
  height: auto;
}
.contents {
  text-align: center;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
}
/*.contents .content {padding: 0 1rem;}*/
.content .logo {
  display: inline-block;
  width: 4rem;
  height: auto;
  margin-bottom: 2rem;
}
.content .logo img {
  width: 100%;
  height: auto;
}
.content h1 {
  margin: 0 0.5rem 1rem 0.5rem;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: normal;
}
.content h5 {
  margin: 20px;
  font-size: 0.9rem;
  font-weight: normal;
}
.content h5 a {
  color: #333;
}
.content p {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}
.content .inbtn {
  display: inline-block;
  padding: 0.4rem 2rem;
  background-color: #ffffff;
  border-radius: 2rem;
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
  text-decoration: none;
  cursor: default;
}
.thn img {
  max-width: 200px;
  max-height: 200px;
  box-shadow: 0px 0px 6px #666;
  padding: 3px;
  background: #fff;
  cursor: pointer;
}

.style2 .content h1,
.style2 .content h5,
.style2 .content p {
  color: #333333;
}
.style2 .inbtn {
  background-color: #d2a9a6;
  color: #ffffff;
}
.style2 .content h5 a {
  color: #333;
}

.style3 .content h1,
.style3 .content h5,
.style3 .content p {
  color: #333333;
}
.style3 .inbtn {
  background-color: #ff9900;
  color: #ffffff;
}
.style3 .content h5 a {
  color: #333;
}

.style4 .content h1,
.style4 .content h5,
.style4 .content p {
  color: #fff;
}
.style4 .inbtn {
  background-color: #fff;
  color: #2e045a;
}
.style4 .content h5 a {
  color: #fff;
}

.style5 .inbtn {
  background-color: #fff;
  color: #004d2a;
}
.style5 .content h1,
.style5 .content h5,
.style5 .content p {
  color: #fff;
}
.style5 .content h5 a {
  color: #fff;
}
#bg {
  position: absolute;
  z-index: -1;
}
.backcover {
  background-color: rgb(0, 0, 0, 0.75);
  position: absolute;
  z-index: 998;
}
.backcover a {
  color: #fff;
  text-decoration: none;
}
.Powered{position: fixed;bottom: 30px;text-align: center;color:rgb(255, 255, 255, 0.35);width: 100%;font-size: 12px;}
.bc_btn {
  width: 300px;
  padding-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
  font-size: 0.9em;
}
.bc_btn a {
  color: #fff;
  display: block;
  width: 45px;
  height: 45px;
  padding-top: 45px;
  float: left;
  margin: 0 15px;
  border-radius: 0.5em;
  text-decoration: none;
}
.bc_btn a:hover {
  background-color: rgb(0, 0, 0, 0.6);
}
.bc_btn .num {
  font-size: 0.8em;
}
.bc_btn .hits {
  background: url(img/hits_btn.svg) center top no-repeat;
}
.bc_btn .diggs {
  background: url(img/diggs_btn.svg) center top no-repeat;
  cursor: pointer;
}
.bc_btn .diggsed {
  background: url(img/diggsed_btn.svg) center top no-repeat;
  cursor: pointer;
}
.bc_btn .reviews {
  background: url(img/reviews_btn.svg) center top no-repeat;
  cursor: pointer;
}
.bc_btn .back {
  background: url(img/back_btn.svg?042301) center top no-repeat;
}
.bc_btn .share {
  background: url(img/share_btn.svg?0423035) center top no-repeat;
}

@media only screen and (max-width: 1080px) {
  .style2 {
    background-image: url("img/mbg2.jpg");
  }
  .style3 {
    background-image: url("img/mbg3.jpg");
  }
  .style4 {
    background-image: url("img/mbg4.jpg");
  }
  .style5 {
    background-image: url("img/mbg5.jpg");
  }
}

.infobar {
  height: 28px;
  z-index: 996;
  position: absolute;
  left: 15px;
  top: 0px;
}
.infobar .sbtn {
  padding-left: 5px;
  float: left;
  margin-left: 3px;
  margin-right: 2px;
  font-size: 12px;
  color: #fff;
}
.infobar .sbtn .iconfont {
  font-size: 24px;
  margin-right: 3px;
  display: block;
  float: left;
}
.infobar .sbtn span {
  height: 24px;
  line-height: 24px;
}
.infobar .diggsed .iconfont {
  color: #f00004;
}

.casesbtn {
  position: absolute;
  right: 15px;
  font-size: 12px;
  color: #fff;
  cursor: pointer;
}
.casesbtn .iconfont {
  font-size: 22px;
  margin-left: 6px;
}

.markersbtn {
  position: absolute;
  right: 15px;
  height: 22px;
  line-height: 22px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.markersbtn .iconfont {
  font-size: 22px;
  margin-left: 6px;
}

#rightbar {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  align-items: center;
  height: 28px;
  line-height: 28px;
  background: #fff;
  padding: 0px;
  border-radius: 1em;
}

.mpbar #rightbar {
  right: 3px;
  top: 6px;
  border-radius: 0.8em;
}

.userbtn {
  font-size: 13px;
  color: #333;
  cursor: pointer;
  padding: 0px 6px;
}
.userbtn .iconfont {
  font-size: 16px;
  margin-left: 0px;
  margin-right: 1px;
}

.paidbtn{
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  border-radius: 1em;
  border-top-right-radius: 0em;
  border-bottom-right-radius: 0em;
  background: #ff5b3a;
  padding: 0 6px;
}

.paidbtn .iconfont {
  font-size: 14px;
  margin-left: 0px;
  margin-right: 1px;
}
.html {
  font-size: 0;
  overflow-y: auto;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  margin: auto;
}
.html .back {
  width: 100%;
  height: 3rem;
  position: fixed;
  z-index: 10;
}
.htmls .back {
  width: 100%;
  height: 3rem;
  position: fixed;
  top: 0;
  z-index: 99998;
}
.html .back .back-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ff9900;
  border-radius: 0 0 2.5rem 0;
  cursor: pointer;
}
.htmls .back .back-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ff9900;
  border-radius: 0 0 2.5rem 0;
  cursor: pointer;
}
.htmls .back .listen-full-btn {
  position: absolute;
  right: 0.8rem;
  top: 0.55rem;
  height: 2.2rem;
  padding: 0 0.85rem;
  border-radius: 1.1rem;
  background: #e5e7eb;
  color: #333333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
}
.htmls .back .listen-full-btn i {
  font-size: 1rem;
  line-height: 1;
}
.htmls .back .listen-full-btn span {
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
}
.htmls .back .listen-full-btn.on {
  color: #ff9900;
}
.html .back .back-icon img {
  width: 2rem;
}
.htmls .back .back-icon img {
  width: 2rem;
}
.text {
  padding: 3.5rem 2rem 2rem;
  white-space: normal;
  font-size: 1rem;
  line-height: 2rem;
}
@media only screen and (min-width: 1080px) {
  .text {
    padding: 3.5rem 2rem 2rem;
    white-space: normal;
    width: 960px;
    margin: 0 auto;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal{
    display: flex;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls{
    position: relative!important;
    right: auto;
    top: auto;
    bottom: auto;
    width: 60%;
    height: 96%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
    overflow: hidden;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .swiper-wrapper{
    position: absolute;
    left: 0;
    right: 0;
    top: 3rem;
    bottom: 4.2rem;
    height: auto;
  }
  .htmls {
    position: fixed!important;
    right: 0;
    top: 44px;
    bottom: 0;
    width: var(--pcSideW, 400px);
    z-index: 997;
    background: #ffffff;
    box-shadow: -5px 0px 12px rgba(0, 0, 0, 0.18);
    overflow: hidden;
  }
  .htmls .swiper-wrapper,
  .htmls .swiper-slide {
    height: 100%;
  }
  .htmls .text {
    width: auto;
    margin: 0;
    padding: 3.5rem 2rem 10rem;
  }
  .htmls .text,
  .htmls .ck-content,
  .htmls .ck-content * {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }
  .htmls .back .back-icon {
    cursor: pointer;
  }
  .htmls .back {
    position: absolute;
    width: 100%;
    height: 3rem;
    left: auto;
    right: 0;
    top: 0;
    z-index: 20;
  }
  .htmls .back .back-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ff9900;
    border-radius: 0 0 2.5rem 0;
  }
  .htmls .back .back-icon img {
    width: 2rem;
  }
  .htmls .function {
    width: 100% !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    height: 4.2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  }
  .htmls .function .function-icon {
    float: none;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin-right: 0;
  }
  .htmls .function .function-icon i {
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #666666;
    display: inline-block;
    margin: 0;
  }
  .htmls .function .function-icon p {
    margin-top: 0.2rem;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.75rem;
    color: #666666;
  }
  .htmls .function .function-icon.on i {
    color: #ff9900;
  }
  .htmls .function .function-icon.on p {
    color: #ff9900;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .text {
    width: auto;
    margin: 0;
    padding: 1.25rem 2.25rem 0;
    box-sizing: border-box;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .ck-content {
    padding-bottom: 24px;
    box-sizing: border-box;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .read-next-card {
    margin-bottom: 16px;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .read-locked-card {
    margin-bottom: 16px;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .back {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 30;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .swiper-button-prev,
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .swiper-button-next {
    color: #666666;
  }
  body.pc-issue-turn-popup #pcIssueArticleModal .htmls .function .function-icon.article {
    display: none;
  }
}
@media only screen and (max-width: 1079px) {
  .text {
    padding-bottom: 6rem;
  }
}
.text .title {
  margin-bottom: 1rem;
}
.text .title span {
  font-size: 1rem;
}
.text h1 {
  font-size: 1.5rem;
  margin-top: 0;
}
.text h2 {
  font-size: 1.2rem;
  text-indent: 2rem;
}
.text h3 {
  font-size: 1.2rem;
  text-indent: 2rem;
}
.text h4 {
  font-size: 1rem;
  text-indent: 2rem;
}
.text b {
  color: #ffffff;
}
.text p {
  font-size: 1rem;
  line-height: 2rem;
  text-indent: 2rem;
  text-align: justify;
  justify-content: space-between;
}
.text .img {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
/*.text i{display: block;text-align: center;font-size: 0.8rem;font-family: "楷体";margin-top: 0.5rem;}
/*.text img{width: 100%;height: auto;}*/
.html .function {
  position: fixed;
  bottom: 0.8rem;
  width: 100%;
}
.htmls .function {
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  z-index: 99998;
  height: 4.2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}
.html .function .function-icon {
  float: right;
  font-size: 0;
  width: 3.2rem;
  height: 3.2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  text-align: center;
  margin-right: 0.8rem;
  cursor: pointer;
}
.htmls .function .function-icon {
  float: none;
  font-size: 0;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  text-align: center;
  margin-right: 0;
  cursor: pointer;
  padding: 0 10px;
}
.html .function .function-icon img {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.2rem 0 0.1rem;
}
.htmls .function .function-icon img {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0;
}
.html .function .function-icon i {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin: 0.2rem 0 0.1rem;
  color: #ffffff;
  display: inline-block;
}
.htmls .function .function-icon i {
  font-size: 1.6rem;
  line-height: 1.6rem;
  margin: 0;
  color: #666666;
  display: inline-block;
}
.html .function .function-icon p {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0px;
}
.htmls .function .function-icon p {
  margin-top: 0.2rem;
  margin-bottom: 0;
  text-align: center;
  font-size: 0.75rem;
  color: #666666;
}
.html .function .on {
  background: #ff9900;
}
.htmls .function .on {
  background: transparent;
}
  .htmls .function .function-icon.on i {
    color: #ff9900;
  }
  .htmls .function .function-icon.on p {
    color: #ff9900;
  }
@media only screen and (max-width: 1079px) {
  .html .function {
    bottom: 0;
    height: 4.2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  }
  .html .function .function-icon {
    float: none;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin-right: 0;
  }
  .html .function .function-icon img {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0;
  }
  .html .function .function-icon i {
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #666666;
    display: inline-block;
  }
  .html .function .function-icon p {
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: #666666;
  }
  .html .function .function-icon.on i {
    color: #ff9900;
  }
  .html .function .function-icon.on p {
    color: #ff9900;
  }
  .htmls .function {
    bottom: 0;
    height: 4.2rem;
    position: fixed;
    z-index: 99998;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  }
  .htmls .function .function-icon {
    float: none;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin-right: 0;
  }
  .htmls .function .function-icon img {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0;
  }
  .htmls .function .function-icon i {
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #666666;
    display: inline-block;
  }
  .htmls .function .function-icon p {
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: #666666;
  }
  .htmls .function .function-icon.on i {
    color: #ff9900;
  }
  .htmls .function .function-icon.on p {
    color: #ff9900;
  }
}
#bdtts_ctrlbar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0.8rem;
  transform: translateX(-50%);
  z-index: 99998;
  width: 520px;
  max-width: calc(100% - 16rem);
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 10px #ddd;
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 14px;
}
#bdtts_ctrlbar .row {
  display: flex;
  align-items: center;
}
#bdtts_ctrlbar .row.controls {
  justify-content: center;
  gap: 0.8rem;
}
#bdtts_ctrlbar .left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
}
#bdtts_ctrlbar .mid {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  width: 100%;
  padding: 0 1.75rem;
  box-sizing: border-box;
}
#bdtts_ctrlbar .topActions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.25rem;
  width: 100%;
}
#bdtts_ctrlbar .topAct {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  min-width: 2.8rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #ff9900;
}
#bdtts_ctrlbar .topAct i {
  font-size: 1.32rem;
  line-height: 1;
}
#bdtts_ctrlbar .topAct span {
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
}
#bdtts_ctrlbar .progRow {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
#bdtts_ctrlbar .btn {
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.15rem;
  color: #333333;
  background: rgba(0, 0, 0, 0.04);
}
#bdtts_ctrlbar .btn.textBtn {
  width: auto;
  height: auto;
  min-width: 2.8rem;
  flex-direction: column;
  gap: 0.18rem;
  border-radius: 0;
  background: transparent;
}
#bdtts_ctrlbar .btn i {
  font-size: 22px;
  line-height: 1;
}
#bdtts_ctrlbar .btn.textBtn span {
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
}
#bdtts_ctrlbar .btn.play {
  background: #ff9900;
  color: #ffffff!important;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.7rem;
  box-shadow: 0 6px 14px rgba(255, 153, 0, 0.28);
}
#bdtts_ctrlbar .btn.play i {
  font-size: 30px;
  color: #ffffff !important;
}
#bdtts_ctrlbar input[type=range] {
  width: 100%;
}
#bdtts_ctrlbar .progWrap {
  width: 100%;
  flex: 1 1 auto;
  padding: 0 0 0.2rem;
}
#bdtts_ctrlbar .progTrack {
  position: relative;
  width: 100%;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.26);
  cursor: pointer;
}
#bdtts_ctrlbar .progFill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: #ffffff;
}
#bdtts_ctrlbar .progThumb {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%,-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#bdtts_ctrlbar .timebar {
  display: flex;
  justify-content: space-between;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  padding: 0 0.1rem 0.8rem;
}
#bdtts_ctrlbar .list {
  border: none;
  background: transparent;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 1.08rem;
}
#bdtts_ctrlbar .article {
  border: none;
  background: transparent;
}
body.uat-mp #bdtts_ctrlbar {
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  width: auto;
  max-width: none;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}
body.uat-mp #bdtts_ctrlbar .btn {
  color: #333333;
}
body.uat-mp #bdtts_ctrlbar .timebar {
  color: #666666;
}
body.uat-mp #bdtts_ctrlbar .topAct {
  background: transparent;
}
body.uat-pc #bdtts_ctrlbar {
  left: auto;
  right: 0;
  bottom: 0;
  transform: none;
  width: var(--pcSideW, 400px);
  max-width: 100%;
  padding-left:0;
  padding-right: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.uat-pc #bdtts_ctrlbar .btn {
  color: #333333;
}
body.uat-pc #bdtts_ctrlbar .timebar {
  color: #666666;
}
body.uat-pc #bdtts_ctrlbar .topAct {
  background: transparent;
}
body.uat-mp #bdtts_ctrlbar.in-tts-panel,
body.uat-pc #bdtts_ctrlbar.in-tts-panel {
  background: transparent;
  box-shadow: none;
  border: none;
}
body.uat-mp #bdtts_ctrlbar.in-tts-panel .topAct,
body.uat-pc #bdtts_ctrlbar.in-tts-panel .topAct {
  background: transparent;
}
body.uat-mp #bdtts_ctrlbar.in-tts-panel .btn,
body.uat-pc #bdtts_ctrlbar.in-tts-panel .btn,
body.uat-mp #bdtts_ctrlbar.in-tts-panel .btn i,
body.uat-pc #bdtts_ctrlbar.in-tts-panel .btn i,
body.uat-mp #bdtts_ctrlbar.in-tts-panel .timebar,
body.uat-pc #bdtts_ctrlbar.in-tts-panel .timebar,
body.uat-mp #bdtts_ctrlbar.in-tts-panel .topAct,
body.uat-pc #bdtts_ctrlbar.in-tts-panel .topAct {
  color: #000;
}
#bdtts_ctrlbar.in-tts-panel {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  max-width: none;
  padding: 1.2rem 0 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#bdtts_ctrlbar.in-tts-panel .timebar {
  color: rgba(255,255,255,0.82);
}
#bdtts_ctrlbar.in-tts-panel .btn {
  color: #ffffff;
  background: transparent;
}
#bdtts_ctrlbar.in-tts-panel .btn.play {
  background: #ff9900;
  color: #ffffff!important;
}
#bdtts_ctrlbar.in-tts-panel .btn i,
#bdtts_ctrlbar.in-tts-panel .list i,
#bdtts_ctrlbar.in-tts-panel .article i {
  color: #ffffff;
}
#bdtts_ctrlbar.in-tts-panel .btn.textBtn span {
  color: #000;
}
#bdtts_ctrlbar.in-tts-panel .topAct {
  background: transparent;
  color: #ffffff;
}
#bdtts_ctrlbar.in-tts-panel .row.controls {
  margin-top: 1.45rem;
}
#bdtts_ctrlbar.in-tts-panel .left {
  gap: 1.15rem;
  margin: 0 auto;
}
#bdtts_ctrlbar.in-tts-panel .btn.prev,
#bdtts_ctrlbar.in-tts-panel .btn.next {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1.6rem;
}
#bdtts_ctrlbar.in-tts-panel .btn.prev i,
#bdtts_ctrlbar.in-tts-panel .btn.next i {
  font-size: 26px;
}
#bdtts_ctrlbar.in-tts-panel .btn.play {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 2.35rem;
}
#bdtts_ctrlbar.in-tts-panel .btn.play i {
  font-size: 26px;
}
#bdtts_ctrlbar.in-tts-panel .mid {
  width: 100%;
}
#bdtts_ctrlbar.in-tts-panel .topActions {
  justify-content: center;
  gap: 2.1rem;
}
#bdtts_ctrlbar.in-tts-panel .progRow {
  gap: 0;
}
#bdtts_ctrlbar.in-tts-panel .progTrack {
  background: rgba(55, 65, 81, 0.2);
}
#bdtts_ctrlbar.in-tts-panel .progFill,
#bdtts_ctrlbar.in-tts-panel .progThumb {
  background: #000;
}
#bdtts_ttslist {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.45);
  display: none;
}
#bdtts_ttslist .panel {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 14%;
  bottom: 14%;
  background: #ffffff;
  border-radius: 10px;
  overflow: auto;
}
#bdtts_ttslist .panel h3 {
  margin: 0;
  padding: 12px 14px;
  font-size: 16px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
}
#bdtts_ttslist .panel h3 .close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  cursor: pointer;
}
#bdtts_ttslist .panel h3 .close i {
  font-size: 18px;
  line-height: 1;
}
#bdtts_ttslist .panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#bdtts_ttslist .panel li {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
#bdtts_ttslist .panel li.active {
  color: #ff9900;
}
#bdtts_ttslist .panel li.active .catalog-item-lock {
  color: #ff9900;
}
#bdtts_ttslist .panel li.catalog-locked {
  cursor: default;
}
#bdtts_ttslist .panel li.catalog-locked:active {
  background: #ffffff;
}
#bdtts_ttslist .panel li:active {
  background: #f7f7f7;
}
body.uat-pc #bdtts_ttslist .panel {
  left: auto;
  right: 40px;
  width: calc(var(--pcSideW, 400px) - 80px);
}
#bdtts_speed,
#bdtts_voice {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.45);
  display: none;
}
#bdtts_speed .panel,
#bdtts_voice .panel {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 24%;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
#bdtts_speed .panel h3,
#bdtts_voice .panel h3 {
  margin: 0;
  padding: 12px 14px;
  font-size: 16px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#bdtts_speed .panel h3 .close,
#bdtts_voice .panel h3 .close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  cursor: pointer;
}
#bdtts_speed .panel h3 .close i,
#bdtts_voice .panel h3 .close i {
  font-size: 18px;
  line-height: 1;
}
#bdtts_speed .panel ul,
#bdtts_voice .panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#bdtts_speed .panel li,
#bdtts_voice .panel li {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
#bdtts_speed .panel li.active,
#bdtts_voice .panel li.active {
  color: #ff9900;
}
#bdtts_speed .panel li:active,
#bdtts_voice .panel li:active {
  background: #f7f7f7;
}
body.uat-pc #bdtts_speed .panel,
body.uat-pc #bdtts_voice .panel {
  left: auto;
  right: 40px;
  width: calc(var(--pcSideW, 400px) - 80px);
}
body.uat-pc #pcSidePanel > #bdtts_ttslist,
body.uat-pc #pcSidePanel > #bdtts_speed,
body.uat-pc #pcSidePanel > #bdtts_voice {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
body.uat-pc #pcSidePanel > #bdtts_ttslist .panel {
  left: 14px;
  right: 14px;
  top: 68px;
  bottom: 14px;
  width: auto;
}
body.uat-pc #pcSidePanel > #bdtts_speed .panel,
body.uat-pc #pcSidePanel > #bdtts_voice .panel {
  left: 14px;
  right: 14px;
  top: 68px;
  width: auto;
}
body.uat-pc #pcSidePanel > #bdtts_speed .panel {
  left: 14px;
  right: 14px;
  top: 200px;
  width: auto;
}
/*.flip-action{left: 0 !important; top: 0 !important;}
.flip-action img{inset: 0 !important;}*/
.ToggleReading {position: fixed; right: 10px; bottom: 45px; z-index: 999;background:#ff9900;color: #fff;border-radius: 50%;width: 48px;height: 48px;display: flex;align-items: center;justify-content: center;cursor: pointer;}
.ToggleReading i {font-size: 24px;}
.text .intro {
  display: flex;
  margin-bottom: 2rem;
}
.text .intro .left-img {
  width: auto;
  max-height: 18rem;
}
.text .intro .right-text {
  flex: 1;
  margin-left: 1rem;
}
.text .intro .right-text h2 {
  margin-top: 0;
}
.text .intro .right-text h4 {
  font-size: 1rem;
  margin-bottom: 0;
}
.text .intro .right-text p {
  text-indent: 0;
  font-size: 0.9rem;
  line-height: 1.5rem;
}
.text .lead {
  margin-bottom: 2rem;
}
.text .lead-img {
  margin-bottom: 0.5rem;
  width: 100%;
  height: auto;
}
.text .lead-text p {
  font-family: "楷体";
  font-size: 0.8rem;
}
.clearfix:after,
.clearfix:before {
  content: " ";
  display: table;
  clear: both;
  zoom: 1;
}
.readerbox {
  text-align: center;
  width: 100%;
  padding: 10px 0px;
  display: none;
}
.banner {
  position: fixed;
  left: 0px;
  top: auto;
  bottom: 15px;
  width: 100%;
  z-index: 98;
  text-align: center;
  height: 90px;
}
.banner .box {
  position: relative;
  display: inline-block;
}
.banner .box img {
  max-height: 100%;
  max-width: 100%;
}
.banner .btn {
  position: absolute;
  top: 3px;
  left: auto;
  right: 3px;
  z-index: 99;
  cursor: pointer;
  background-image: url(img/close.png);
  width: 20px;
  height: 20px;
  background-size: contain;
}
.mpbanner {
  position: fixed;
  left: 0px;
  top: auto;
  bottom: 40px;
  width: 100%;
  z-index: 98;
  text-align: center;
  height: auto;
}
.mpbanner .box img {
  max-width: 100%;
  height: auto;
}
.mpbanner .btn {
  position: absolute;
  top: 3px;
  left: auto;
  right: 3px;
  z-index: 99;
  cursor: pointer;
  background-image: url(img/close.png);
  width: 20px;
  height: 20px;
  background-size: contain;
}
.ck-content .image_resized {
  margin: 0 auto !important;
}
.ck-content blockquote {
  overflow: hidden;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #666;
  margin-left: 0;
  font-style: italic;
  border-left: 5px solid #ccc;
  background: #f2f2f2;
}
.ck-content .image {
  clear: both;
  text-align: center;
  margin: 20px 0px 20px 0px;
  width: auto;
  height: auto;
}
.ck-content .image > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.ck-content .image {
  position: relative;
  overflow: hidden;
}
.ck-content .image .ck-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
}
.ck-content .image.ck-appear {
  animation: fadeIn 0.7s;
}
.ck-content .image .ck-progress-bar {
  height: 2px;
  width: 0;
  background: var(--ck-color-upload-bar-background);
  transition: width 0.1s;
}
.ck-content .image > figcaption {
  color: #333;
  padding: 0.6em;
  font-size: 1em;
  font-weight: bold;
  outline-offset: -1px;
}
.ck-content .image-style-align-center,
.ck-content .image-style-align-left,
.ck-content .image-style-align-right,
.ck-content .image-style-side {
  max-width: 50%;
}
.ck-content .image-style-side {
  float: right;
  margin: 0.5rem 0px 0.5rem 1rem;
}
.ck-content .image-style-align-left {
  float: left;
  margin: 0.5rem 1rem 0.5rem 0rem;
}
.ck-content .image-style-align-center {
  margin-left: auto;
  margin-right: auto;
}
.ck-content .image-style-align-right {
  float: right;
  margin: 0.5rem 0px 0.5rem 1rem;
}
.ck-content .table {
  margin: 1em auto;
  display: table;
}
.ck-content .table table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px double #bfbfbf;
}
.ck-content .table table td,
.ck-content .table table th {
  min-width: 2em;
  padding: 0.4em;
  border-color: #d9d9d9;
  border: 1px solid #bfbfbf;
}
.ck-content .table table th {
  font-weight: 700;
  background: #f2f2f2;
  border: 1px solid #bfbfbf;
}
.ck-content p > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.ck-content img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.sharebox {
  padding: 15px;
  line-height: 26px;
  -moz-user-select: text;
  -khtml-user-select: text;
  user-select: text;
  -webkit-user-select: text;
}
.sharebox h5 {
  font-size: 14px;
  padding: 0px;
  margin: 5px;
}
.sharebox hr {
  margin: 5px 0px;
}
.sharebox .link a {
  color: #007fcf;
}
.sharebox .link {
  text-align: left;
  background: #fff;
  padding: 5px 10px 5px 10px;
}
.sharebox .tishi {
  text-align: left;
  font-size: 12px;
  color: #666;
}

.sinfobox {
  padding: 15px;
  line-height: 26px;
  -moz-user-select: text;
  -khtml-user-select: text;
  user-select: text;
  -webkit-user-select: text;
}
.sinfobox h5 {
  font-size: 14px;
  padding: 0px;
  margin: 5px;
}
.sinfobox hr {
  margin: 5px 0px;
}
.sinfobox .link a {
  color: #007fcf;
}
.sinfobox .link {
  text-align: left;
  background: #fff;
  padding: 5px 10px 5px 10px;
}
.sinfobox .tishi {
  text-align: left;
  font-size: 12px;
  color: #666;
}

.wxqr-box {
  padding: 5px;
  float: left;
  text-align: center;
  margin-right: 20px;
  margin-left: 10px;
  font-size: 16px;
  cursor: pointer;
  border: #eee 2px solid;
  border-radius: 8px;
}
.wxqr-box:hover,
.xcx-box:hover,
.e-box:hover {
  border: dodgerblue 2px solid;
  background: #eef9ff;
}
.wxqr-box img {
  width: 150px;
  border: #ffffff 5px solid;
}
.e-box {
  padding: 5px;
  float: left;
  text-align: center;
  margin-right: 20px;
  font-size: 16px;
  cursor: pointer;
  border: #eee 2px solid;
  border-radius: 8px;
}
.e-box img {
  width: 140px;
  margin: 10px;
}
.xcx-box img {
  border: 5px #fff solid;
  width: 150px;
}
.xcx-box {
  padding: 5px;
  float: left;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  border: #eee 2px solid;
  border-radius: 8px;
}

.box .esinfo {
  width: 590px;
}
.box_line {
  margin: 15px 0px;
  border-top: #bcbcbc 1px solid;
  height: 0px;
}
.esinfo {
  float: right;
}
.esinfo h3 {
  text-align: left;
  margin: 0px;
  font-size: 20px;
  margin-top: 5px;
  font-weight: normal;
}
.esinfo h5 {
  font-size: 14px;
}
.esinfo p {
  font-size: 12px;
  color: #666;
}
.linkbox {
  background: #fff;
  height: 32px;
  line-height: 32px;
  padding-left: 5px;
  font-size: 14px;
  margin: 5px 0px 10px 0px;
}
.linkbox a {
  color: #003fad;
}
.linkbox a:hover {
  color: tomato;
}

.esinfo {
  width: 590px;
  float: none;
  margin: 15px;
  text-align: left;
  -moz-user-select: text;
  -khtml-user-select: text;
  user-select: text;
  -webkit-user-select: text;
}
.clr {
  clear: both;
}
.esinfo h5 {
  padding: 0px;
  margin: 0px;
}
.noticebox {
  background: #fffdd7;
  padding: 5px 0px 5px 10px;
  font-size: 12px;
  line-height: 24px;
}
.copybtn {
  height: 32px;
  line-height: 32px;
  border: none;
  color: #fff;
  background: #3ba300;
  font-size: 12px;
  display: inline-block;
  float: right;
  padding: 0px 8px;
}

/* 文章分享二维码弹窗 */
.article-share-qr {
  text-align: center;
  padding: 10px 0 4px;
}
.article-share-qr-img img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto;
}
.article-share-qr-tip {
  color: #666;
  font-size: 14px;
  margin: 12px 0 10px;
}
.article-share-qr-link {
  font-size: 13px;
  color: #666;
  word-break: break-all;
  text-align: left;
}
.article-share-qr-link a {
  color: #003fad;
}
.article-share-qr-link a:hover {
  color: tomato;
}

html {
  --pcSideW: 400px;
}
body {
  overflow: hidden;
  background-color: #f5f2ec;
  margin: 0;
  padding: 0;
}

.bar {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  position: relative;
  background: #000000;
  height: 44px;
  color: #fff;
  line-height: 44px;
  text-align: center;
  /*box-shadow: #666 0px 1px 2px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.bar span {
  margin: 0 3px;
  cursor: pointer;
  width: 30px;
  height: 31px;
  line-height: 30px;
  font-size: 12px;
}
.bar span img {
  padding: 3px;
  position: relative;
  top: -31px;
  filter: drop-shadow(0px 31px 0px #fff);
  -webkit-filter: drop-shadow(0px 31px 0px #fff);
}
.bar span:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.bgmToggle{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  box-sizing: border-box;
  cursor: pointer;
}
/* 声音设置弹窗统一承载翻页声、背景音乐和听书入口。 */
.soundSettingDialog{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 10020;
}
.soundSettingPanel{
  width: min(25rem, calc(100vw - 2rem));
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  box-sizing: border-box;
  padding: 1.45rem 1.5rem 1.35rem;
}
.soundSettingHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.soundSettingTitle{
  font-size: 1.2rem;
  line-height: 1.4;
  color: #111827;
  font-weight: 600;
}
.soundSettingClose{
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  cursor: pointer;
}
.soundSettingClose i{
  font-size: 1rem;
}
.soundSettingBody{
  margin-top: 1.5rem;
}
.soundSettingRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}
.soundSettingRow.disabled{
  opacity: 0.45;
}
.soundSettingLabel{
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #1f2937;
  font-size: 1.0rem;
}
.soundSettingLabel i{
  font-size: 1rem;
  color: #6b7280;
}
.soundSettingCtrl{
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.soundSettingSwitch{
  width: 3rem;
  height: 1.8rem;
  border-radius: 999px;
  background: #d1d5db;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}
.soundSettingSwitch.on{
  background: #3b82f6;
}
.soundSettingSwitchDot{
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  left: 0.2rem;
  top: 0.175rem;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.16);
}
.soundSettingSwitch.on .soundSettingSwitchDot{
  transform: translateX(1.2rem);
}
.soundSettingState{
  min-width: 2.2rem;
  color: #374151;
  font-size: 1rem;
}
.soundSettingSlider{
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.2rem 0 0.4rem;
}
.soundSettingSlider.disabled{
  opacity: 0.45;
}
.soundSettingSlider i{
  color: #9ca3af;
  font-size: 1rem;
}
.soundSettingSlider input[type="range"]{
  flex: 1;
  accent-color: #3b82f6;
  touch-action: pan-x;
}
.soundSettingVolumeText{
  min-width: 2.2rem;
  text-align: right;
  color: #6b7280;
  font-size: 1rem;
}
.soundSettingFooter{
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e5e7eb;
}
.soundSettingReadBtn{
  height: 3.4rem;
  border-radius: 0.75rem;
  background: #3b82f6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 500;
}
.soundSettingReadBtn i{
  font-size: 1.1rem;
}
.readMiniCtrl{
  position: fixed;
  right: 12px;
  top: 84px;
  width: 96px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  z-index: 10002;
  overflow: hidden;
  cursor: move;
}
.readMiniCtrl .thumb{
  width: 100%;
  height: 78px;
  position: relative;
  background:
    linear-gradient(135deg, #E2F2FE 0%, #F0E7F7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.readTtsPanel .readTtsPanelMain{
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  bottom: var(--tts-ctrl-wrap-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 0 1.2rem;
  box-sizing: border-box;
}
.readTtsPanel .readTtsPanelMainInner{
  width: 100%;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.readMiniCtrl .thumbCover{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  position: relative;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 8px 16px rgba(0,0,0,0.28);
  overflow: hidden;
}
.readMiniCtrl .thumbCover.has-cover{
  background-color: #1f2937;
}
.readMiniCtrl .thumbCover.is-playing{
  animation: bgmToggleSpin 6s linear infinite;
}
.readMiniCtrl .ops{
  height: 34px;
  display: flex;
  border-top: 1px solid #f0f0f0;
}
.readMiniCtrl .mini-btn{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.readMiniCtrl .mini-btn i{
  font-size: 16px;
  color: #111111;
}
.readMiniCtrl .mini-btn + .mini-btn{
  border-left: 1px solid #f0f0f0;
}
.readTtsPanel{
  position: fixed;
  inset: 0;
  z-index: 10005;
  background-color: var(--tts-panel-base-bottom, #dbeafe);
  background: linear-gradient(-45deg, var(--tts-panel-glow-top, #F8D9A8) 0%, var(--tts-panel-base-top, #E7F0FF) 48%, var(--tts-panel-base-bottom, #D9EAFE) 100%);
  opacity: 1;
  transition: opacity 0.28s ease;
}
.readTtsPanel .readTtsPanelDialog{
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  --tts-ctrl-wrap-h: 260px;
  padding: 1.2rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(0);
  transition: transform 0.3s ease;
  background-color: var(--tts-dialog-grad-end, #F0E7F7);
  /* background: linear-gradient(135deg, var(--tts-dialog-glow, #FBE7BD) 0%, var(--tts-dialog-grad-start, #EEF6FF) 50%, var(--tts-dialog-grad-end, #F5EEFF) 72%, var(--tts-dialog-accent, #F8F4FF) 100%); */
  background: linear-gradient(-45deg, var(--tts-dialog-glow, #FBE7BD) 0%, var(--tts-dialog-grad-start, #EEF6FF) 50%, var(--tts-dialog-accent, #F8F4FF) 100%);
}
.readTtsPanel.is-opening{
  animation: readTtsPanelFadeIn 0.28s ease both;
}
.readTtsPanel.is-opening .readTtsPanelDialog{
  animation: readTtsPanelSlideUp 0.3s ease both;
}
.readTtsPanel.is-closing{
  opacity: 0;
}
.readTtsPanel.is-closing .readTtsPanelDialog{
  transform: translateY(100%);
}
.readTtsPanel .readTtsPanelClose{
  position: absolute;
  left: 0.35rem;
  top: 0.85rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  z-index: 2;
}
.readTtsPanel .readTtsPanelClose .panelChevron{
  width: 0.72rem;
  height: 0.72rem;
  display: block;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg) translateY(-1px);
}
.readTtsPanel .readTtsPanelCoverWrap{
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.readTtsPanel .readTtsPanelCover{
  width: min(100%, 18rem);
  max-height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  overflow: visible;
}
.readTtsPanel .readTtsPanelCover.has-cover{
  background-color: transparent;
}
.readTtsPanel .readTtsPanelCover.is-playing{
  animation: none;
}
.readTtsPanel .readTtsPanelCoverImg{
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 20rem;
  border-radius: 1rem;
  background-color: #1f2937;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 18px 38px rgba(0,0,0,0.42);
  object-fit: contain;
  object-position: center center;
}
.readTtsPanel .readTtsPanelTitle{
  width: 340px;
  margin-top: 2.1rem;
  color: #000;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 600;
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.readTtsPanel .readTtsPanelBookName{
  width: 100%;
  margin-top: 0.55rem;
  color: rgba(0,0,0,0.68);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  word-break: break-word;
}
.readTtsPanel .readTtsPanelTitleText{
  display: block;
  white-space: nowrap;
  overflow: hidden;          /* 溢出内容隐藏 */
  text-overflow: ellipsis;   /* 文本溢出时显示省略号 */
}
.readTtsPanel .readTtsPanelTitle.is-marquee .readTtsPanelTitleText{
  overflow: visible;
  text-overflow: clip;
}
.readTtsPanel .readTtsPanelTitleMarquee{
  display: block;
  width: 100%;
  overflow: hidden;
}
.readTtsPanel .readTtsPanelTitleTrack{
  display: inline-flex;
  align-items: center;
  gap: var(--marquee-gap, 32px);
  min-width: max-content;
  will-change: transform;
  animation: readTtsPanelTitleMarquee var(--marquee-duration, 12s) linear infinite;
}
.readTtsPanel .readTtsPanelTitleClone{
  flex: 0 0 auto;
  display: block;
  overflow: visible;
  text-overflow: clip;
}
.readTtsPanel .readTtsPanelCtrlWrap{
  width: 100%;
  padding: 1rem 0rem 2.15rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
body.uat-pc #readTtsPanel{
  position: absolute;
}
body.uat-pc #readTtsPanel .readTtsPanelDialog{
  padding: 1.5rem 1.25rem 1.6rem;
}
#readTtsPanel .readTtsPanelMain{
  left: 1.25rem;
  right: 1.25rem;
  height: 100%;
  padding-bottom: 12rem;
  display: flex;
  align-items: center;
}
body.uat-pc #readTtsPanel .readTtsPanelCover{
  width: 100%;
  max-width: 18rem;
}
body.uat-pc #readTtsPanel .readTtsPanelTitle{
  font-size: 1.25rem;
}
body.uat-pc #readTtsPanel .readTtsPanelBookName{
  font-size: 0.95rem;
}
@keyframes readTtsPanelFadeIn{
  from{opacity:0;}
  to{opacity:1;}
}
@keyframes readTtsPanelSlideUp{
  from{transform:translateY(100%);}
  to{transform:translateY(0);}
}
@keyframes readTtsPanelTitleMarquee{
  from{transform:translateX(0);}
  to{transform:translateX(calc(-1 * var(--marquee-step, 0px)));}
}
.bgmToggle i{
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}
.bgmToggle.is-playing{
  animation: bgmToggleSpin 2s linear infinite;
}
@keyframes bgmToggleSpin{
  from{transform: rotate(0deg);}
  to{transform: rotate(360deg);}
}
@media only screen and (max-width: 1079px) {
  .soundSettingPanel{
    width: calc(100vw - 2rem);
    padding: 1.25rem 1.1rem 1.15rem;
  }
  .soundSettingTitle{
    font-size: 1.35rem;
  }
  .soundSettingLabel{
    gap: 0.65rem;
    font-size: 0.98rem;
  }
  .soundSettingReadBtn{
    height: 3rem;
    font-size: 1rem;
  }
  .bgmToggle{
    top: 50px;
  }
  .htmls .back .listen-full-btn {
    right: 0.65rem;
    top: 0.5rem;
    height: 2rem;
    padding: 0 0.75rem;
  }
  .htmls .back .listen-full-btn i {
    font-size: 0.95rem;
  }
  .htmls .back .listen-full-btn span {
    font-size: 0.8rem;
  }
}
.bar #pagenumber {
  border-radius: 5px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  padding: 0px 5px;
  min-width: 60px;
  width: auto;
  background: #fff;
  color: #333;
  cursor: auto;
  margin: 0 5px;
}
#currentPageinput {
  border: none;
  text-align: center;
  outline: 0px;
}
#barlogo {
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 8px;
  height: 30px;
  z-index: 1;
}
#barlogo img {
  max-height: 100%;
}
.mpbar {
  background: #000000;
  height: 40px;
  color: #fff;
  line-height: 40px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 997;
}
.toolbar {
  background: #000000;
  height: 40px;
  color: #fff;
  line-height: 40px;
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 997;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.toolbar span {
  margin: 0 5px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 20px;
  text-align: center;
  font-weight: normal;
}
.toolbar  #mparticle {	
    font-size: 22px;
}
.mpbar #barlogo {
  height: 28px;
  padding: 6px;
}
.mpbar  #barmparticle {	
    float: right;
    margin-right: 10px;
    font-size: 22px;
}
.setcontent {
  background-color: rgb(0, 0, 0, 0.75);
  position: absolute;
  z-index: 998;
  color: #fff;
  overflow: auto;
  padding-top: 34px;
}
.setcontent h5 {
  background-color: rgb(0, 0, 0, 1);
  margin: 0px;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 24px;
}
.setcontent h5 span {
  float: left;
}
#mpmulucontent,
#mpmulucontent ul li {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
#mpmulucontent {
  padding: 10px 15px 15px 30px;
}
.mthnlist {
  padding: 0px;
  margin: 0px;
  list-style: none;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.mthnlist li {
  padding: 0px;
  margin: 5px 8px;
  list-style: none;
  width: 90px;
}
.mthnlist li img {
  width: 100%;
  height: auto;
}
.mthnlist li span {
  display: block;
  text-align: center;
}
#wechatshare {
  background: rgb(0, 0, 0, 0.8) url("https://share-att.dps.cn/v2.5/style/img/wechatshare.svg") no-repeat top right;
  position: absolute;
  z-index: 9999;
  display: none;
  text-align:right;
}
#wechatshare.vertical-setcontent { 
  background: rgb(0, 0, 0, 0.8) url("https://share-att.dps.cn/v2.5/style/img/wechatshare_L.svg") no-repeat top left;
}
#wechatshare img{max-width: 100%;max-height: 100%;}
#mpagebox {
  background: #fff;
  height: 40px;
  color: #fff;
  line-height: 40px;
  position: fixed;
  bottom: 40px;
  width: 100%;
  z-index: 997;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  opacity: 0.8;
}
#mpagebox span {
  margin: 0 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  text-align: center;
}
#mpagebox #pagenumber {
  border-radius: 10px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  padding: 0px 5px;
  min-width: 120px;
  width: auto;
  background: #fff;
  color: #333;
  cursor: auto;
  margin: 0 5px;
  opacity: 0.8;
}
#mmorebox {
  background: #fff;
  height: 48px;
  color: #fff;
  padding-top: 2px;
  position: fixed;
  bottom: 40px;
  width: 100%;
  z-index: 997;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  opacity: 0.8;
}
#mmorebox span {
  margin: 0 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  text-align: center;
}
#mmorebox p {
  font-size: 12px;
  margin: 0px 8px;
  height: 50px;
  line-height: 12px;
  text-align: center;
}
.magazine-viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.magazine-viewport .magazine {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.magazine-viewport .page {
  background-color: #FFF;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.magazine-viewport .zoomer .region {
  display: none;
}

.magazine .region {
  position: absolute;
  overflow: hidden;
  background: #0066ff;
  opacity: 0.2;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}

.magazine .region:hover {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}

.magazine .region.zoom {
  opacity: 0.01;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
}

.magazine .region.zoom:hover {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}

.magazine .page {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.magazine-viewport .page img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  height: 100%;
  width: 100%;
}
.magazine-viewport.static-gpu .page img {
  transform: translateZ(0);
}
body.ios-body-lock .magazine-viewport.static-gpu .page img {
  transform: none;
}
body.ios-body-lock .magazine-viewport .page img {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  image-rendering: auto;
}

.media {
  z-index: 2;
}

.magazine .even .gradient {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0.9, rgba(0, 0, 0, 0)),
    color-stop(1, rgba(0, 0, 0, 0.2))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background-image: linear-gradient(
    left,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.magazine .odd .gradient {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(0.9, rgba(0, 0, 0, 0)),
    color-stop(1, rgba(0, 0, 0, 0.15))
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.15) 100%
  );
  background-image: -moz-linear-gradient(
    right,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.15) 100%
  );
  background-image: -ms-linear-gradient(
    right,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.15) 100%
  );
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.15) 100%
  );
  background-image: linear-gradient(
    right,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.magazine.single-mode .gradient {
  display: none;
}

.cover_shadow {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.flip_x {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
}

.flip_y {
  -moz-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -ms-transform: scaleX(-1);
  transform: scaleY(-1);
  filter: FlipV;
}

.hard_top_border {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 3px;
  width: 100%;

  background-image: linear-gradient(
    top,
    rgba(240, 240, 200, 0.6),
    rgba(240, 240, 200, 0)
  );
  background-image: -o-linear-gradient(
    top,
    rgba(240, 240, 200, 0.6),
    rgba(240, 240, 200, 0)
  );
  background-image: -moz-linear-gradient(
    top,
    rgba(240, 240, 200, 0.6),
    rgba(240, 240, 200, 0)
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(240, 240, 200, 0.6),
    rgba(240, 240, 200, 0)
  );
  background-image: -ms-linear-gradient(
    top,
    rgba(240, 240, 200, 0.6),
    rgba(240, 240, 200, 0)
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#CCF0F0C8', EndColorStr='#00F0F0C8');
}

.hard_inner_left_border {
  position: absolute;
  z-index: 1;
  left: 0px;
  right: auto;
  top: 0px;
  width: 10px;
  height: 100%;

  background-image: linear-gradient(
    left,
    rgba(150, 150, 150, 0.4),
    rgba(180, 180, 180, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(150, 150, 150, 0.4),
    rgba(180, 180, 180, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(150, 150, 150, 0.4),
    rgba(180, 180, 180, 0)
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(150, 150, 150, 0.4),
    rgba(180, 180, 180, 0)
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(150, 150, 150, 0.4),
    rgba(180, 180, 180, 0)
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#66969696', EndColorStr='#00B4B4B4');
}

.hard_left_cover_border {
  position: absolute;
  z-index: 0;
  left: 0px;
  right: auto;
  top: 0px;
  width: 4px;
  height: 100%;

  background-image: linear-gradient(
    left,
    rgba(180, 180, 140, 0.6),
    rgba(180, 180, 140, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(180, 180, 140, 0.6),
    rgba(180, 180, 140, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(180, 180, 140, 0.6),
    rgba(180, 180, 140, 0)
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(180, 180, 140, 0.6),
    rgba(180, 180, 140, 0)
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(180, 180, 140, 0.6),
    rgba(180, 180, 140, 0)
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#CCF0F0C8', EndColorStr='#00F0F0C8');
}

.cover_shadow.flip_x .hard_right_border {
  position: absolute;
  left: auto;
  right: 0px;
  top: 1px;
  width: 3px;

  background-image: linear-gradient(
    right,
    rgba(220, 220, 180, 0.6),
    rgba(220, 220, 180, 0)
  );
  background-image: -o-linear-gradient(
    right,
    rgba(220, 220, 180, 0.6),
    rgba(220, 220, 180, 0)
  );
  background-image: -moz-linear-gradient(
    right,
    rgba(220, 220, 180, 0.6),
    rgba(220, 220, 180, 0)
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(220, 220, 180, 0.6),
    rgba(220, 220, 180, 0)
  );
  background-image: -ms-linear-gradient(
    right,
    rgba(220, 220, 180, 0.6),
    rgba(220, 220, 180, 0)
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#00F0F0C8', EndColorStr='#77C8C896');
}

.hard_right_border {
  position: absolute;
  left: auto;
  right: 0px;
  top: 1px;
  width: 3px;

  background-image: linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -ms-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#00F0F0C8', EndColorStr='#77C8C896');
  height: 100%;
}

.hard_bottom_border {
  position: absolute;
  left: 12px;
  bottom: 0px;
  height: 3px;

  background-image: linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -ms-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#00F0F0C8', EndColorStr='#77C8C896');
  left: 0.5%;
  width: 99.6%;
}

.hard_left_border {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1.2%;
  height: 100%;

  background-image: linear-gradient(
    left,
    rgba(20, 20, 20, 0.5),
    rgba(240, 240, 200, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(20, 20, 20, 0.5),
    rgba(240, 240, 200, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(20, 20, 20, 0.5),
    rgba(240, 240, 200, 0)
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(20, 20, 20, 0.5),
    rgba(240, 240, 200, 0)
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(20, 20, 20, 0.5),
    rgba(240, 240, 200, 0)
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#77151515', EndColorStr='#00DCDCB4');
}

.hard_left_body {
  position: absolute;
  left: 2.5%;
  top: 0px;
  width: 1.5%;
  height: 100%;
  background-image: linear-gradient(
    left,
    rgba(40, 40, 20, 0) 0%,
    rgba(40, 40, 20, 0.4) 35%,
    rgba(40, 40, 20, 0) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(40, 40, 20, 0) 0%,
    rgba(40, 40, 20, 0.4) 35%,
    rgba(40, 40, 20, 0) 100%
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(40, 40, 20, 0) 0%,
    rgba(40, 40, 20, 0.4) 35%,
    rgba(40, 40, 20, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(40, 40, 20, 0) 0%,
    rgba(40, 40, 20, 0.4) 35%,
    rgba(40, 40, 20, 0) 100%
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(40, 40, 20, 0) 0%,
    rgba(40, 40, 20, 0.4) 35%,
    rgba(40, 40, 20, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#77282815', EndColorStr='#00282815');
}

.normal_left_border {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 2px;
  height: 100%;

  background-image: linear-gradient(
    left,
    rgba(200, 200, 200, 1),
    rgba(200, 200, 200, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(200, 200, 200, 1),
    rgba(200, 200, 200, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(200, 200, 200, 1),
    rgba(200, 200, 200, 0)
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(200, 200, 200, 1),
    rgba(200, 200, 200, 0)
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(200, 200, 200, 1),
    rgba(200, 200, 200, 0)
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#FFC8C8C8', EndColorStr='#CCC8C8C8');
}

.normal_left_body {
  position: absolute;
  left: 3%;
  top: 0px;
  width: 3px;
  height: 100%;

  background-image: linear-gradient(
    left,
    rgba(200, 200, 200, 0) 0%,
    rgba(220, 220, 220, 0.5) 50%,
    rgba(200, 200, 200, 0) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(200, 200, 200, 0) 0%,
    rgba(220, 220, 220, 0.5) 50%,
    rgba(200, 200, 200, 0) 100%
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(200, 200, 200, 0) 0%,
    rgba(220, 220, 220, 0.5) 50%,
    rgba(200, 200, 200, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(200, 200, 200, 0) 0%,
    rgba(220, 220, 220, 0.5) 50%,
    rgba(200, 200, 200, 0) 100%
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(200, 200, 200, 0) 0%,
    rgba(220, 220, 220, 0.5) 50%,
    rgba(200, 200, 200, 0) 100%
  );

  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#77151515', EndColorStr='#00DCDCB4');
}

.cover_shadow .staple_left_border {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 87px;
  height: 100%;

  background-repeat: repeat-y;
  background-image: url(img/staple_shadow.png);
  background-size: 100% auto;
  opacity: 0.7;
}

.cover_shadow .staple_left_body {
  position: absolute;
  z-index: 1;
  left: 1px;
  top: 0px;
  width: 10px;
  height: 100%;
}

.cover_shadow .top_nail {
  position: absolute;
  left: 0px;
  top: 25%;
  width: 2px;
  height: 60px;
  background: #c8c8c8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.cover_shadow .bottom_nail {
  position: absolute;
  left: 0px;
  bottom: 25%;
  width: 2px;
  height: 60px;
  background: #c8c8c8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.rightPaperCoil_bg {
  position: absolute;
  left: 0px;
  /*right: auto;*/
  width: 3px;
  height: 100%;
  background-image: url(img/wire-o_bg.png);
  background-repeat: repeat-y;
}
.rightPaperCoil {
  position: absolute;
  left: 0px;
  /*right: auto;*/
  width: 41px;
  height: 98%;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(img/wire-o.png);
  background-repeat: repeat-y;
}

.leftPaperCoil_bg {
  position: absolute;
  right: 0px;
  /*left: auto;*/
  width: 3px;
  height: 100%;
  background-image: url(img/leftwo_bg.png);
  background-repeat: repeat-y;
}

.leftPaperCoil {
  position: absolute;
  right: 0px;
  /*left: auto;*/
  width: 41px;
  height: 98%;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(img/leftwo.png);
  background-repeat: repeat-y;
}

.magazine-viewport .loader {
  background-image: url(img/loading100.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.magazine-viewport .shadow {
  -webkit-transition: -webkit-box-shadow 0.5s;
  -moz-transition: -moz-box-shadow 0.5s;
  -o-transition: -webkit-box-shadow 0.5s;
  -ms-transition: -ms-box-shadow 0.5s;

  /*-webkit-box-shadow:0 0 15px #333;
	-moz-box-shadow:0 0 15px #333;
	-o-box-shadow:0 0 15px #333;
	-ms-box-shadow:0 0 15px #333;
	box-shadow:0 0 15px #333;*/

  -webkit-box-shadow: 0 0 12px rgba(40, 40, 40, 0.7);
  -moz-box-shadow: 0 0 12px rgba(40, 40, 40, 0.7);
  -o-box-shadow: 0 0 12px rgba(40, 40, 40, 0.7);
  -ms-box-shadow: 0 0 12px rgba(40, 40, 40, 0.7);
  box-shadow: 0 0 12px rgba(40, 40, 40, 0.7);
}

.magazine-viewport .next-button,
.magazine-viewport .previous-button {
  width: 22px;
  height: 600px;
  position: absolute;
  top: 0;
  background-image: url(img/arrows.png);
  background-position: -4px 284px;
  background-repeat: no-repeat;
}

.magazine-viewport .next-button {
  right: -22px;
  -webkit-border-radius: 0 15px 15px 0;
  -moz-border-radius: 0 15px 15px 0;
  -ms-border-radius: 0 15px 15px 0;
  -o-border-radius: 0 15px 15px 0;
  border-radius: 0 15px 15px 0;
  background-image: url(img/arrows.png);
  background-position: -38px 284px;
  background-repeat: no-repeat;
}

.magazine-viewport .previous-button {
  left: -22px;
  -webkit-border-radius: 15px 0 0 15px;
  -moz-border-radius: 15px 0 0 15px;
  -ms-border-radius: 15px 0 0 15px;
  -o-border-radius: 15px 0 0 15px;
  border-radius: 15px 0 0 15px;
}

.magazine-viewport .previous-button-hover,
.magazine-viewport .next-button-hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.magazine-viewport .previous-button-hover,
.magazine-viewport .previous-button-down {
  background-image: url(img/arrows.png);
  background-position: -4px 284px;
  background-repeat: no-repeat;
}

.magazine-viewport .previous-button-down,
.magazine-viewport .next-button-down {
  background-color: rgba(0, 0, 0, 0.4);
}

.magazine-viewport .next-button-hover,
.magazine-viewport .next-button-down {
  background-image: url(img/arrows.png);
  background-position: -38px 284px;
  background-repeat: no-repeat;
}

.animated {
  -webkit-transition: margin-left 0.5s;
  -moz-transition: margin-left 0.5s;
  -ms-transition: margin-left 0.5s;
  -o-transition: margin-left 0.5s;
  transition: margin-left 0.5s;
}

.thumbnails {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  z-index: 996;
  overflow-x: auto;
  overflow-y: hidden;
}

.thumbnails::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  overflow-x: scroll;
}
.thumbnails::-webkit-scrollbar-thumb {
  background: #333;
}
.thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
}

.thumbnails ul {
  white-space: nowrap;
  margin: 0;
  padding: 10px 10px 5px 10px;
  text-align: center;
}

.thumbanils-touch ul {
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}

.thumbnails li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
  border: #f2f2f2 2px solid;
}

.thumbnails li span {
  display: none;
}

.thumbnails .current {
  border: #007ad3 2px solid;
}

.thumbnails ul li:hover {
  border: #007ad3 2px solid;
}
.thumbnails .thumb-hover {
  border: #007ad3 2px solid;
}

.thumbanils-touch .thumb-hover {
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}

.thumbnails .thumb-hover span {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 30px;
  font: bold 15px arial;
  line-height: 30px;
  color: #666;
  display: block;
  cursor: default;
}

.thumbnails li img {
  float: left;
  height: 60px;
  width: auto;
  cursor: pointer;
}

.bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

#wechatqr {
  background: #fff;
  padding: 15px;
  padding-top: 0px;
  z-index: 996;
  width: 160px;
  height: 200px;
  position: absolute;
  top: 50px;
  border: #999 solid 2px;
  margin-left: 0px;
  margin-top: -6px;
  color: #333;
}
#mulubox {
  display: none;
  position: absolute;
  left: 10px;
  top: 54px;
  width: 300px;
  background-color: #ffffff;
  box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
  z-index: 996;
  min-height: 358px;
}
#mulubox h5 {
  color: #fff;
  background: #000;
  margin: 0px;
  padding: 6px 10px;
  font-size: 14px;
  height: 22px;
  font-weight: normal;
}
#mulubox h5 span {
  float: right;
  cursor: pointer;
  font-size: 16px;
}
#mulucontent {
  overflow: auto;
  min-height: 300px;
}
#mulucontent ul {
  padding: 12px 0px;
  margin: 0px;
}
#mulucontent ul li {
  padding: 5px 5px 5px 10px;
  margin: 0px;
  font-size: 12px;
  line-height: 22px;
  list-style: none;
  cursor: pointer;
}
#mulucontent ul li p {
  padding: 0px;
  margin: 0px;
  color: #333;
}
#mulucontent ul li:hover {
  background: #eee;
}
#mulucontent::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  overflow-x: scroll;
}
#mulucontent::-webkit-scrollbar-thumb {
  background: #ccc;
}
#mulucontent::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
}
.bdtts_playing b{display: none;}
#pcReaderWrap{
  width: 100%;
  height: calc(100vh - 44px);
  display: flex;
  align-items: stretch;
}
#pcLeftPanel{
  position: relative;
  width: 0;
  height: 100%;
  overflow: hidden;
  background: #f5f7fa;
  border-right: 1px solid rgba(0,0,0,0.08);
  box-shadow: 5px 0px 12px rgba(0, 0, 0, 0.12);
  transition: width 0.25s;
}
body.pc-left-panel-open #pcLeftPanel{
  width: 300px;
}
#pcLeftPanel .pc-left-panel-header{
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 14px;
  background: #fff;
  color: #333;
  border-bottom: 1px solid #dadada;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
}
#pcLeftPanel .pc-left-panel-header i{
  font-size: 18px;
  font-weight: normal;
}
#pcLeftPanel .pc-left-panel-close{
  border: none;
  background: transparent;
  color: #666;
  font-size: 20px;
  cursor: pointer;
}
#pcLeftPanel .pc-left-panel-body{
  height: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.pc-left-panel-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  overflow-x: scroll;
}
.pc-left-panel-body::-webkit-scrollbar-thumb {
  background: #ccc;
}
.pc-left-panel-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
}
#pcReaderWrap .scale-view{
  flex: 1;
  width: auto;
  height: 100%;
}
#pcIssueArticleModal{
  position: absolute;
  inset: 0;
  z-index: 998;
  display: none;
  align-items: center;
  justify-content: center;
  /* background: #9199AE; */
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}
#pcIssueArticleModal .htmls{
  display: none;
}
#pcIssueArticleModal .htmls{
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
}
#pcSidePanel{
  position: relative;
  width: 0;
  height: 100%;
  overflow: hidden;
  background: #f5f7fa;
  box-shadow: -5px 0px 12px rgba(0, 0, 0, 0.18);
  transition: width 0.25s;
}
body.pc-dbox-open #pcSidePanel{
  width: var(--pcSideW, 400px);
}
.pc_Dbox {
  position: relative;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  background-color: #f5f7fa;
  box-shadow: none;
  z-index: 996;
  display: none;
  overflow: hidden;
}
.pc_Dbox h3 {
  color: #333;
  background: #fff;
  margin: 0px;
  font-size: 16px;
  font-weight: bold;
	border-bottom: 1px solid  #dadada;
	height: 48px;
	line-height: 48px;
}
.pc_Dbox h3 span {
  float: right;
  cursor: pointer;
  font-size: 16px;
display: block;
margin-right: 12px;
}
.pc_Dbox h3 a{color: #999;text-decoration: none;padding: 0px 5px;display: block;float: left;margin: 0px 4px;}
.pc_Dbox h3 a:first-child{margin-left:16px;}
.pc_Dbox h3 a:hover{color: #333;}
.pc_Dbox a.on{color: #333;}
.pc_Dbox h3 i{font-weight: normal;font-size: 17px;}

.mp_Dbox {
	display: none;
	background:#f5f7fa;
    position: absolute;
    z-index: 998;
    color: #333;
    overflow: auto;
}
.mp_Dbox h3 {
  color: #333;
  background: #fff;
  margin: 0px;
  font-size: 16px;
  font-weight: bold;
	border-bottom: 1px solid  #dadada;
	height: 48px;
	line-height: 48px;
	position: fixed;
	width: 100%;
}
.mp_Dbox h3 span {
  float: right;
  cursor: pointer;
  font-size: 16px;
margin-right: 12px;
}
.mp_Dbox h3 a{color: #999;text-decoration: none;padding: 0px 5px;display: block;float: left;margin: 0px 4px;}
.mp_Dbox h3 a:first-child{margin-left:16px;}
.mp_Dbox h3 a:hover{color: #333;}
.mp_Dbox a.on{color: #333;}
.mp_Dbox h3 i{font-weight: normal;}

#closeDbox{color: #666;}
.Dboxcontent {
  overflow: auto;
  min-height: 300px;
}
.pc_Dbox .Dboxcontent {
  height: calc(100% - 48px);
  min-height: 0;
}
.mp_Dbox .Dboxcontent{padding-top: 54px;}
.Dboxcontent::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  overflow-x: scroll;
}
.Dboxcontent::-webkit-scrollbar-thumb {
  background: #ccc;
}
.Dboxcontent::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
}
.newspaper_c{
	background: #fff;
	border-radius: 10px;
	margin: 15px;
	box-shadow: 0 1px 15px rgba(0,0,0,0.1);
}
.newspaper_c h5{
	color:#333;
	padding: 0px;
	margin: 0px;
	background: #f9fafb;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	font-size: 18px;
	height: 48px;
	padding-left: 18px;
	line-height: 48px;
  cursor: pointer;
}
.newspaper_c ul{
	margin: 0px;
  padding: 0px;
}
.newspaper_c li {
  list-style: none;
	display: block;
	font-size: 14px;
	line-height: 22px;
	padding: 8px 10px;
	border-bottom: 1px solid #f2f2f2;
}
.newspaper_c li:last-child {
  border-bottom: none;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.newspaper_c li a{
	display: block;
	color:#333;
	text-decoration: none;
}
.newspaper_c li a,
#bdtts_ttslist .panel li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.catalog-item-text{
  flex: 1;
  min-width: 0;
}
.catalog-item-lock{
  flex: 0 0 auto;
  color: #b8b8b8;
  font-size: 16px;
}
.newspaper_c li.catalog-locked,
.newspaper_c li.catalog-locked a,
#bdtts_ttslist .panel li.catalog-locked{
  color: #b8b8b8;
}
.newspaper_c li:hover{
	background: #f2f2f2;
}

/* ----- 自定义变量 ----- */
        :root {
            --bn-primary: #2563eb;
            --bn-primary-hover: #1d4ed8;
            --bn-secondary: #1e40af;
            --bn-gray-200: #e5e7eb;
            --bn-gray-500: #6b7280;
            --bn-gray-700: #374151;
            --bn-white: #ffffff;
            --bn-radius: 0.5rem;
            --bn-transition: 0.2s ease-in-out;
        }

        /* ----- 容器 ----- */
        .bnnav-card {
            background: var(--bn-white);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
        }

        #pcSidePanel .bnnav-card {
            width: var(--pcSideW, 400px);
            position: fixed;
            overflow: hidden;
        }

        /* ----- 版面文章区块高亮 ----- */
        .newspaper_c.bnnav-catalog-active {
            box-shadow: 0 0 0 2px var(--bn-primary), 0 1px 15px rgba(0,0,0,0.1);
            transition: box-shadow 0.25s;
        }

        /* ----- 标题 ----- */
        .bnnav-title {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--bn-gray-500);
            margin-bottom: 0.75rem;
        }

        /* ----- 网格容器 ----- */
        .bnnav-grid {
            padding: 15px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 0.5rem;
        }

        /* ----- 通用按钮样式 (单行布局) ----- */
        .bnnav-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;               /* 版号与标签间距 */
            text-align: center;
            padding: 0.75rem 0.5rem;    /* 上下增加内边距，视觉更饱满 */
            border-radius: var(--bn-radius);
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
            border: 1px solid transparent;
            background: transparent;
            text-decoration: none;
            font-family: inherit;
            line-height: 1.2;
            min-height: 32px;           /* 比之前稍矮，因为一行更紧凑 */
        }

        /* 版号文字 (加大) */
        .bnnav-btn .bnnav-edition {
            font-size: 1rem;            /* 从 0.75rem → 1rem */
            font-weight: 600;
            letter-spacing: 0.01em;
        }

        /* 标签文字 (加大) */
        .bnnav-btn .bnnav-label {
            font-size: 0.95rem;         /* 从 0.75rem → 0.95rem */
            font-weight: 400;
            opacity: 0.85;
        }

        /* ----- 主要按钮 (头版) ----- */
        .bnnav-btn-primary {
            background: var(--bn-primary);
            color: var(--bn-white);
            border-color: var(--bn-primary);
            box-shadow: 0 1px 2px rgba(37, 99, 235, 0.15);
        }
        .bnnav-btn-primary .bnnav-label {
            opacity: 0.9;
        }

        /* ----- 次要按钮 (政经/综合/文娱) ----- */
        .bnnav-btn-secondary {
            background: var(--bn-white);
            color: var(--bn-gray-700);
            border: 1px solid var(--bn-gray-200);
        }
        .bnnav-btn-secondary:hover {
            border-color: rgba(37, 99, 235, 0.3);
            color: var(--bn-primary);
            background: var(--bn-white);
        }

        /* ----- 聚焦状态 ----- */
        .bnnav-btn:focus-visible {
            outline: 2px solid var(--bn-primary);
            outline-offset: 2px;
        }

        /* ----- 响应式 ----- */
        @media (max-width: 400px) {
            .bnnav-card {
                padding: 0.2rem;
            }
            .bnnav-btn {
                padding: 0.6rem 0.4rem;
                min-height: 32px;
                gap: 0.3rem;
            }
            .bnnav-btn .bnnav-edition {
                font-size: 0.9rem;
            }
            .bnnav-btn .bnnav-label {
                font-size: 0.85rem;
            }
        }

        /* ---------- 当前期刊卡片区域（浮动固定，不随列表滚动） ---------- */
        .jn-current-wrapper {
            padding: 12px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.10));
            border-bottom: 1px solid #e5e7eb;
            flex-shrink: 0;
        }
        .jn-current-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            cursor: pointer;
        }
        .jn-current-card:hover {
            box-shadow: 0 6px 16px rgba(165, 0, 0, 0.3);
        }
        .jn-card-content {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .jn-cover-img {
            width: 80px;
            height: 100px;
            object-fit: cover;
            object-position: top;
            border-radius: 6px;
            flex-shrink: 0;
        }
        .jn-card-info {
            flex: 1;
        }
        .jn-badge-current {
            display: inline-block;
            background-color: #dc2626;
            color: white;
            font-size: 12px;
            font-weight: 500;
            padding: 0 8px;
            line-height: 20px;
            border-radius: 6px;
            margin-bottom: 6px;
        }
        .jn-card-title {
            font-size: 13px;
            font-weight: 600;
            color: #111827;
            line-height: 1.5;
            margin-top: 4px;
            margin-bottom: 4px;
        }
        .jn-card-date {
            font-size: 12px;
            color: #4b5563;
            margin-top: 6px;
            margin-bottom: 6px;
        }
        .jn-card-desc {
            font-size: 12px;
            color: #6b7280;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        .issue-content {
            padding: 8px 12px;
            font-size: 12px;
            line-height: 1.7;
            background: #fafafa;
        }
        .issue-paid-info {
            font-size: 12px;
            color: #2563eb;
            line-height: 1.5;
            padding: 4px 12px;
        }

        /* ---------- 筛选区域（浮动固定，不随列表滚动） ---------- */
        .jn-filter-area {
            padding: 15px;
            border-bottom: 1px solid #e5e7eb;
            flex-shrink: 0;
        }
        /* 列表滚动有内容被遮挡时，筛选区底部阴影提示 */
        .jn-filter-area.shadowed {
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }
        .jn-filter-area *{box-sizing: border-box;}
        .jn-filter-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .jn-filter-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
        }
        .jn-filter-label {
            font-size: 12px;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0;
            white-space: nowrap;
        }
        .jn-relative {
            position: relative;
            flex: 1;
        }
        .jn-input-text {
            width: 100%;
            padding: 8px 12px 8px 12px;
            padding-right: 40px;
            font-size: 14px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            background-color: #ffffff;
            color: #111827;
            outline: none;
            transition: box-shadow 0.2s, border-color 0.2s;
        }
        .jn-input-text:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.20);
        }
        .jn-input-text::placeholder {
            color: #9ca3af;
        }
        .jn-search-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            cursor: pointer;
        }
        .jn-select-wrap {
            position: relative;
            flex: 1;
        }
        .jn-select-wrap select {
            width: auto;
            padding: 8px 12px;
            padding-right: 32px;
            font-size: 14px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            background-color: #ffffff;
            color: #111827;
            appearance: none;
            outline: none;
            transition: box-shadow 0.2s, border-color 0.2s;
            cursor: pointer;
        }
        .jn-select-wrap select:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.20);
        }
        .jn-select-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
            pointer-events: none;
            font-size: 16px;
        }
        .jn-filter-row {
            display: flex;
            gap: 8px;
        }
        .jn-filter-row .jn-select-wrap {
            flex: 1;
        }

        .jn-btn-reset {
            width: 100%;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            background-color: #f3f4f6;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .jn-btn-reset:hover {
            background-color: #e5e7eb;
        }

        /* ---------- 历史期刊列表 (滚动) ---------- */
        .jn-history-area {
            flex: 1;
            overflow-y: auto;
            padding: 15px;
        }
        .jn-history-area::-webkit-scrollbar {
            width: 5px;
        }
        .jn-history-area::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        .jn-history-area::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 10px;
        }
        .jn-history-area::-webkit-scrollbar-thumb:hover {
            background: #b0b4ba;
        }

        .jn-section-title {
            font-size: 12px;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .jn-issue-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .jn-issue-count {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-size: 12px;            
        }

        .jn-issue-item {
            background: #ffffff;
            border-radius: 10px;
            padding: 12px;
            border: 1px solid #e5e7eb;
            cursor: pointer;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .jn-issue-item:hover {
            border-color: rgba(37, 99, 235, 0.3);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
        }
        .jn-issue-inner {
            display: flex;
            gap: 12px;
        }
        .jn-issue-cover {
            width: 64px;
            height: 88px;
            object-fit: cover;
            object-position: top;
            border-radius: 6px;
            flex-shrink: 0;
        }
        .jn-issue-info {
            flex: 1;
            min-width: 0;
        }
        .jn-issue-info h5 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            line-height: 1.5;
            margin-top: 8px;
            margin-bottom: 4px;
        }
        .jn-issue-info .jn-issue-date {
            font-size: 12px;
            color: #4b5563;
            margin-bottom: 4px;
        }
        .jn-issue-info .jn-issue-desc {
            font-size: 12px;
            color: #6b7280;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        .jn-issue-nodata {
            text-align: center;
            color: #6b7280;
            font-size: 14px;
            margin: 12px 0px;
        }

.read-next-card{
	margin-top: 1.5rem;
	padding: 1rem 1.1rem;
	border: 1px solid #d1d5db;
	background: #f3f4f6;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.read-next-main{
	flex: 1;
	min-width: 0;
	color: #333333;
	font-size: 0.95rem;
	line-height: 1.6;
}
.read-next-label{
	color: #666666;
}
.read-next-title{
	word-break: break-all;
}
.read-next-btn{
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.25rem;
	padding: 0 1rem;
	border-radius: 1.125rem;
	background: #ff9900;
	border: 1px solid #ff9900;
	color: #ffffff;
	text-decoration: none;
	font-size: 0.9rem;
  line-height: 1;
}
.read-next-btn:hover{
	color: #ffffff;
	text-decoration: none;
}
/* 锁定章节占位：正文与下一篇卡片不展示，居中显示提示文本与购买按钮（按钮复用 read-next-btn 样式） */
.read-locked-card{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 12rem;
	padding: 2.5rem 1rem;
}
.read-locked-tip{
	color: #666666;
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0 0 1.25rem;
}
#Issues ul {
  margin: 0;
  padding: 10px 10px 10px 10px;
  text-align: center;
}

#Issues li {
  list-style: none;
  display: inline-block;
  margin: 5px 0px;
	width: auto;
  border: #f5f7fa 2px solid;
}
#Issues li span {
  display: block;
font-size: 14px;
}

#Issues .current {
  border: #007ad3 2px solid;
}

#Issues ul li:hover {
  border: #007ad3 2px solid;
}

#Issues li img {
  width: 120px;
  cursor: pointer;
}

#Issues li a{color:#333;text-decoration: none;}

.mp_Dbox #Issues li{border: none;}
.mp_Dbox #Issues li:hover{border: none;}

#layouts ul {
  margin: 0;
  padding: 10px 10px 10px 10px;
  text-align: center;
}

#layouts li {
  list-style: none;
  display: inline-block;
  margin: 5px 0px;
	width: auto;
  border: #f5f7fa 2px solid;
	color: #333;
}
.mp_Dbox #layouts li{background: #fff;}
#layouts li span {
  display: block;
font-size: 12px;
}

#layouts .current {
  border: #007ad3 2px solid;
}

#layouts ul li:hover {
  border: #007ad3 2px solid;
}

#layouts li img {
  width: 120px;
  cursor: pointer;
}

.mediaDialog {
	background: #000000dd;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
  z-index: 999;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 33%;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 66%;
  background: #00000088;
  border-radius: 16%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.play-btn > img {
  width: 55%!important;
  height: auto;
}

@media (max-width: 1023px) {
  audio::-webkit-media-controls-current-time-display, audio::-webkit-media-controls-time-remaining-display {
    color: red;
    font-size: .8rem;
    display: none;
  }
}

.audio-wrapper {
  background-color: #F2F2F2;
  border-radius: 1000px;
  display: flex;
  align-items: center;
}

.audio-wrapper .audio_btn {
  height: 100%;
  width: 11%;
  background-image: url(./img/audio-wei.png);
  background-size: 1200% 330%;
  background-position: 16% 62%;
  flex-shrink: 0;
  cursor: pointer;
}
.audio-wrapper .play_btn {
  background-position: 17% 62%;
}
.audio-wrapper .playing_btn {
  background-position: 28% 62%;
}
.audio-wrapper .previous_btn {
  background-position: 7% 62%;
  margin-left: 2%;
}
.audio-wrapper .next_btn {
  background-position: 39% 62%;
  margin-right: 2%;
}

.progress-bar-bg {
  width: 80%;
  position: relative;
  height: 50%;
  cursor: pointer;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    transparent calc(50% - 1px), 
    #ADADAD calc(50% - 1px), 
    #ADADAD calc(50% + 1px), 
    transparent calc(50% + 1px), 
    transparent 100%);
}

.progress-bar {
  width: 0;
  height: 100%;
    background: linear-gradient(to bottom, 
    transparent 0%, 
    transparent calc(50% - 1px), 
    #000 calc(50% - 1px), 
    #000 calc(50% + 1px), 
    transparent calc(50% + 1px), 
    transparent 100%);
}

/*.audio-wrapper .audio_btn {
  height: 50%;
  width: 11%;
  background-image: url(img/audio-wei.png);
  background-size: 1200% 600%;
  background-position: 16% 62%;
  flex-shrink: 0;
}
.audio-wrapper .play_btn {
  background-position: 16% 60%;
}
.audio-wrapper .playing_btn {
  background-position: 27% 60%;
}
.audio-wrapper .previous_btn {
  background-position: 6% 60%;
  margin-left: 2%;
}
.audio-wrapper .next_btn {
  background-position: 38% 60%;
  margin-right: 2%;
}

.progress-bar-bg {
  width: 80%;
  background-color: #ADADAD;
  position: relative;
  height: 2px;
  border-top: 5px solid #F2F2F2;
  border-bottom: 5px solid #F2F2F2;
  background-clip: padding-box;
  cursor: pointer;
}

.progress-bar {
  background-color: #000000;
  width: 0;
  height: 100%;
}*/

.progress-bar-bg span {
  content: " ";
  height: 80%;
  aspect-ratio: 1 / 1;
  min-width: 8px;
  border-radius: 50%;
  background-color: #000000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  cursor: pointer;
}
.audio-time {
  margin: 0 2%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #999;
}
@media (max-width: 800px) {
  .audio-time {
    font-size: 6px;
  }
}

#zoomToolbar {
  position: fixed;
  width: 270px;
  height: 40px;
  background: #000000;
  left: 0;right: 0;top: 51px;
  margin: auto;
  opacity: 0.3;
  display: none;
  user-select: none; 
}
#zoomToolbar .item {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 26px;
  height: 26px;
  margin-left: 12px;
  margin-top: 6px;
}
#zoomToolbar .item img {
  margin-left: 4px;
  margin-top: 4px;
}
#zoomToolbar:hover {
  opacity: 0.7;
}
#zoomToolbar .item:hover {
  opacity: 0.8;
}

.handSwipeHelp_Left {
  opacity: 0;
  -webkit-transform: rotateZ(30deg);
  transform: rotateZ(30deg);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: handSwipeAnimate 1.5s 1s infinite ease-in-out;
  animation: handSwipeAnimate 1.5s 1s infinite ease-in-out;
}
.handSwipeHelp_Right {
  opacity: 0;
  -webkit-transform: rotateZ(-30deg);
  transform: rotateZ(-30deg);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: handSwipeAnimate_Right 1.5s 1s infinite ease-in-out;
  animation: handSwipeAnimate_Right 1.5s 1s infinite ease-in-out;
}
.handSwipeHelp_Right > img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
@-webkit-keyframes handSwipeAnimate {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  25% {
    opacity: 1;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  75% {
    opacity: 1;
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
}
@keyframes handSwipeAnimate {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  25% {
    opacity: 1;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  75% {
    opacity: 1;
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
}
@-webkit-keyframes handSwipeAnimate_Right {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  25% {
    opacity: 1;
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  75% {
    opacity: 1;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
}
@keyframes handSwipeAnimate_Right {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  25% {
    opacity: 1;
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  75% {
    opacity: 1;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
  }
}

/* 定义渐隐动画 */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

/* 横版模式 */
.vertical-mpbar {
  left: 100vw;
  width: 100vh;
  transform: rotate(90deg);
  transform-origin: left top;
}
.vertical-toolbar {
  left: 0;
  top: -40px;
  width: 100vh;
  transform: rotate(90deg);
  transform-origin: left bottom;
}
.vertical-RM-floatingToolbar {
  left: calc(env(safe-area-inset-left, 0px) + var(--rm-vertical-toolbar-left, 26px)) !important;
  top: 50% !important;
  bottom: auto !important;
  max-width: none;
  transform: translate(-50%, -50%) rotate(90deg) !important;
  transform-origin: center center;
}
.vertical-RM-floatingToolbar.RM-toolbar-hide {
  transform: translate(-180%, -50%) rotate(90deg) !important;
}
.vertical-mmorebox {
  left: 40px;
  top: -48px;
  width: 100vh!important;
  transform: rotate(90deg);
  transform-origin: left bottom;
}
.vertical-mpagebox {
  left: 40px;
  top: -48px;
  width: 100vh!important;
  transform: rotate(90deg);
  transform-origin: left bottom;
}
.vertical-handHelp {
  width: 100vh!important;
  height: 100vw!important;
  left: 50%!important;
  top: 50%!important;
  transform: translate(-50%, -50%) rotate(90deg);
}
.vertical-setcontent {
  width: 100vh!important;
  height: 100vw!important;
  position: fixed;
  left: 50%!important;
  top: 50%!important;
  transform: translate(-50%, -50%) rotate(90deg);
  padding-top: 0!important;
  overflow: visible!important;
}
.vertical-setcontent h5 {
  position: sticky;
}
.vertical-setcontent ul {
  width: 100%;
  height: calc(100% - 44px);
  overflow: auto;
  padding: 20px 20px 60px 20px;
  box-sizing: border-box;
}
.vertical-Dbox {
  width: 100vh!important;
  height: 100vw!important;
  position: fixed;
  left: 50%!important;
  top: 50%!important;
  transform: translate(-50%, -50%) rotate(90deg);
  padding-top: 0!important;
  overflow: visible!important;
}
.vertical-Dbox .Dboxcontent {
  height: 100%!important;
  overflow: auto;
  padding: 54px 20px 60px 20px;
  box-sizing: border-box;
}
.vertical-body #cxdialog {
  margin-top: auto!important;
  transform: rotate(90deg)!important;
}
.vertical-magazine {
  rotate: 90deg;
}
.vertical-mediaDialog {
  width: 100vh;
  height: 100vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.vertical-paidPopupDialog{
  transform: translate(-50%,-50%) rotate(90deg)!important;
  transform-origin: center center;
  max-width: 80vh;
}
.vertical-body #cxdialog.noRotate-dialog {
  transform: rotate(0deg)!important;
  margin-top: -260px!important;
}

/* 横版模式下，禁用滚动 */
html, body {
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
}
html.ios-body-lock {
  height: 100%;
  overflow: hidden;
}
body.ios-body-lock {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: auto;
}
.scale-view {
  overflow: hidden;
  overscroll-behavior: contain;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: auto;
  touch-action: none;
}
body.pc-dbox-open #canvas .thumbnails {
  left: var(--pcLeftPanelW, 0px);
  width: calc(100% - var(--pcSideW, 400px));
}
body.pc-left-panel-open #canvas .thumbnails {
  left: var(--pcLeftPanelW, 300px);
  width: calc(100% - var(--pcLeftPanelW, 300px));
}
body.pc-left-panel-open.pc-dbox-open #canvas .thumbnails {
  left: var(--pcLeftPanelW, 300px);
  width: calc(100% - var(--pcLeftPanelW, 300px) - var(--pcSideW, 400px));
}
.magazine-viewport {
  will-change: transform;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}
body.ios-body-lock .magazine-viewport {
  will-change: auto;
  backface-visibility: visible;
}

/* 付费电子书弹窗 */
#paidPopup{position:fixed;left:0;top:0;width:100%;height:100%;z-index:9999;display:none;}
#paidPopup .paidPopupMask{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.55);}
#paidPopup .paidPopupDialog{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:358px;max-width:88vw;background:#fff;border-radius:16px;box-shadow:0 10px 40px rgba(0,0,0,.25);padding:22px 20px 18px 20px;box-sizing:border-box;}
#paidPopup .paidPopupIconWrap{width:56px;height:56px;border-radius:50%;background:#FFF0EA;margin:0 auto 10px auto;display:flex;align-items:center;justify-content:center;}
#paidPopup .paidPopupIcon{font-size:26px;line-height:1;color:#ff5b3a;}
#paidPopup .paidPopupTitle{text-align:center;font-size:18px;font-weight:600;color:#111;letter-spacing:.5px;}
#paidPopup .paidPopupDesc{text-align:center;font-size:12px;color:#6b6b6b;line-height:1.6;margin-top:6px;}
#paidPopup .paidPopupCard{margin-top:14px;background:#F3F4F6;border-radius:12px;padding:14px 14px 12px 14px;display:flex;gap:10px;align-items:flex-start;}
#paidPopup .paidPopupCardLeft{flex:1;min-width:0;}
#paidPopup .paidPopupCardName{font-size:13px;color:#111;margin-bottom:8px;}
#paidPopup .paidPopupBenefits{margin:0;padding:0;list-style:none;}
#paidPopup .paidPopupBenefits li{display:flex;align-items:flex-start;gap:8px;font-size:12px;color:#4a4a4a;line-height:1.5;margin:6px 0;}
#paidPopup .paidPopupCheck{width:14px;height:14px;border-radius:50%;background:#26c281;flex:0 0 14px;position:relative;margin-top:2px;}
#paidPopup .paidPopupCheck:before{content:"";position:absolute;left:4px;top:3px;width:6px;height:3px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg);}
#paidPopup .paidPopupPrice{flex:0 0 auto;text-align:right;min-width:72px;display:flex;align-items:flex-end;justify-content:flex-end;gap:2px;margin-top:6px;font-weight: bold;}
#paidPopup .paidPopupPrice .unit{font-size:20px;color:#ff5b3a;line-height:1;}
#paidPopup .paidPopupPrice .value{font-size:24px;font-weight:700;color:#ff5b3a;line-height:1;}
#paidPopup .paidPopupBtns{margin-top:14px;}
#paidPopup .paidPopupBuyRow{display:flex;gap:12px;}
#paidPopup .paidPopupBuy{display:block;flex:1;height:44px;line-height:44px;text-align:center;border-radius:10px;font-size:16px;font-weight:600;text-decoration:none;box-sizing:border-box;}
#paidPopup .paidPopupBuyEbook{background:#ff5b3a;color:#fff;border:1px solid #ff5b3a;}
#paidPopup .paidPopupBuyEbook:hover{background: #e32803;border:1px solid #ff5b3a;}
#paidPopup .paidPopupBuyPaper{background:#fff;color:#ff5b3a;border:1px solid #ff5b3a;}
#paidPopup .paidPopupBuyPaper:hover{background:#ff5b3a;color:#fff;border:1px solid #ff5b3a;}
#paidPopup .paidPopupContinue{display:block;width:100%;height:40px;line-height:40px;text-align:center;background:#eef0f3;color:#4a4a4a;border-radius:10px;font-size:14px;margin-top:10px;text-decoration:none;}
#paidPopup .paidPopupContinue:hover{background:#ccc;}
#paidPopup .free .paidPopupIconWrap{background:#DCFCE7}
#paidPopup .free .paidPopupIcon{color:#16A34A}
#paidPopup .free .paidPopupBuyEbook{background:#16A34A;color:#fff;border:1px solid #16A34A;}
#paidPopup .free .paidPopupBuyEbook:hover{background: #15803D;border:1px solid #15803D;}
#paidPopup .free .paidPopupBuyPaper{background:#fff;color:#16A34A;border:1px solid #16A34A;}
#paidPopup .free .paidPopupBuyPaper:hover{background: #16A34A;color:#fff;border:1px solid #16A34A;}
#paidPopup .paidPopupDownloadEbook{background:#fff;color:#007aff;border:1px solid #007aff;}
#paidPopup .paidPopupDownloadEbook:hover{background: #007aff;color:#fff;border:1px solid #007aff;}
#iframecloseBtn_2 {position:absolute; top:10px; right:10px; z-index:1000; background:transparent; border:none; font-size:26px; color:#666; cursor:pointer;}
#iframecloseBtn {position:absolute; top:0; right:0; width:40px; height:40px; background:#ff9900; border:none; font-size:24px; color:#fff; cursor:pointer; border-radius:0 0 0 40px; display:flex; align-items:center;padding-left: 18px; z-index:1000;}
#topPlaceholder{height:60px;}
@media (max-width:360px){
	#paidPopup .paidPopupDialog{width:320px;}
}

        /* ========= 核心组件样式 ========= */
        /* 三列网格布局 */
        .donate-grid-cols-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        .donate-grid-cols-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        /* 快速金额按钮基础样式 ———— 默认背景白色，边框灰色，文字深灰 */
        .donate-reward-quick-amount {
            padding: 0.65rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 1rem;
            background-color: #ffffff;   /* 背景白色 */
            color: #1e293b;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            text-align: center;
            font-family: inherit;
            box-shadow: 0 1px 1px rgba(0,0,0,0.02);
        }

        /* 鼠标悬停效果: 边框 #ff5b3a，背景保持白色 */
        .donate-reward-quick-amount:hover {
            border-color: #ff5b3a;
            background-color: #ffffff;   /* 保持白色背景 */
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 91, 58, 0.15);
        }

        /* 点击时的active效果 */
        .donate-reward-quick-amount:active {
            transform: translateY(1px);
            transition: 0.05s;
        }

        /* 选中态样式 (点击后保持) — 边框 #ff5b3a，背景白色，稍微暖色阴影 */
        .donate-reward-quick-amount.selected {
            border-color: #ff5b3a;
            background-color: #ffffff;
            box-shadow: 0 0 0 2px rgba(255, 91, 58, 0.25), inset 0 1px 1px rgba(0,0,0,0.02);
        }

        /* 自定义金额区域下边距 */
        .donate-mb-6 {
            margin-bottom: 1.5rem;
        }

        /* 标签样式 */
        .donate-block {
            display: block;
        }
        .donate-text-sm {
            font-size: 0.875rem;
        }
        .donate-font-medium {
            font-weight: 500;
        }
        .donate-text-gray-700 {
            color: #334155;
        }
        .donate-mb-2 {
            margin-bottom: 0.5rem;
        }

        /* 相对定位容器（包裹输入框和¥符号） */
        .donate-relative {
            position: relative;
        }

        /* 货币符号 ¥ 定位 */
        .donate-absolute-currency {
            position: absolute;
            left: 0.875rem;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 1rem;
            font-weight: 500;
            pointer-events: none;
            z-index: 2;
        }

        /* 自定义金额输入框样式 ———— 修改聚焦边框及阴影为 #ff5b3a */
        .donate-custom-input {
            box-sizing: border-box;
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.25rem;
            border: 1.5px solid #e2e8f0;
            border-radius: 0.75rem;
            font-size: 1rem;
            font-family: inherit;
            background-color: #ffffff;
            color: #0f172a;
            transition: all 0.2s ease;
            font-weight: 450;
            line-height: 1.25;
        }

        .donate-custom-input::placeholder {
            color: #94a3b8;
            font-weight: 400;
            font-size: 0.9rem;
        }

        /* 输入框聚焦效果 — 边框改为 #ff5b3a，阴影使用暖橙色系 */
        .donate-custom-input:focus {
            outline: none;
            border-color: #ff5b3a;
            box-shadow: 0 0 0 3px rgba(255, 91, 58, 0.2);
            background-color: #ffffff;
        }

        /* 移除 number 输入框的上下箭头默认样式（保留功能，美化）*/
        .donate-custom-input::-webkit-inner-spin-button,
        .donate-custom-input::-webkit-outer-spin-button {
            opacity: 0.5;
            margin-left: 2px;
        }
        .donate-custom-input[type="number"] {
            -moz-appearance: textfield;
            appearance: textfield;
        }

        /* 辅助文案 */
        .donate-note {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.5rem;
            margin-top: 0.75rem;
            font-size: 0.75rem;
            color: #5b6e8c;
        }
        .donate-note svg {
            flex-shrink: 0;
        }
/* 期刊订阅 */
.jn-issue-tag-free {
  background-color: #d1fae5;  /* bg-green-100 */
  color: #059669;             /* text-green-600 */
  padding-left: 0.5rem;       /* px-2 */
  padding-right: 0.5rem;
  padding-top: 0.15rem;       /* py-1 */
  padding-bottom: 0.15rem;
  border-radius: 9999px;      /* rounded-full */
  font-size: 0.75rem;         /* text-xs */
  font-weight: 500;           /* font-medium */
  display: inline-block;      /* 确保内联块级表现 */
  margin: 0px;
}
.jn-issue-tag-paid {
  background-color: #fee2e2;  /* bg-red-100 */
  color: #dc2626;             /* text-red-600 */
  padding-left: 0.5rem;       /* px-2 */
  padding-right: 0.5rem;
  padding-top: 0.15rem;       /* py-1 */
  padding-bottom: 0.15rem;
  border-radius: 9999px;      /* rounded-full */
  font-size: 0.75rem;         /* text-xs */
  font-weight: 500;           /* font-medium */
  display: inline-block;      /* 确保内联块级表现 */
  margin: 0px;
}
.jn-issue-tag-subscribe {
  background-color: #e5f8ff;  /* bg-blue-100 */
  color: #1d4ed8;             /* text-blue-600 */
  padding-left: 0.5rem;       /* px-2 */
  padding-right: 0.5rem;
  padding-top: 0.15rem;       /* py-1 */
  padding-bottom: 0.15rem;
  border-radius: 9999px;      /* rounded-full */
  font-size: 0.75rem;         /* text-xs */
  font-weight: 500;           /* font-medium */
  display: inline-block;      /* 确保内联块级表现 */
  margin: 0px;
}

.cxdialog.marginTop-260{margin-top:-260px !important;}
.cxdialog.iframe-dialog{border-radius: 16px;}

/* 自动翻页弹窗沿用声音设置弹窗骨架，仅补充内容区样式。 */
.autoflipSettingPanel{
  width: min(25rem, calc(100vw - 2rem));
}
.autoflipSettingBody{
  margin-top: 1.5rem;
}
.autoflipSettingRow{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.6;
}
.autoflipSettingInput{
  width: 5.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  box-sizing: border-box;
  background: #fff;
  color: #111827;
  font-size: 1rem;
  text-align: center;
}
.autoflipSettingStart{
  width: 100%;
  height: 3rem;
  margin-top: 1.25rem;
  border: none;
  border-radius: 0.9rem;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* ===== 浮动工具栏开始 ===== */
.RM-floating-toolbar {
position: fixed;
bottom: 0px;
left: 50%;
transform: translateX(-50%) translateY(0);
background: rgba(255,255,255,0.95);
border-radius: 16px 16px 0 0;
border: 1px solid rgba(0,0,0,0.1);
box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
padding: 8px 12px;
z-index: 40;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
width: fit-content;
max-width: min(90vw, 600px);
transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
visibility: visible;
opacity: 1;
}
.RM-floating-toolbar.RM-toolbar-hide {
transform: translateX(-50%) translateY(120%);
opacity: 0;
visibility: hidden;
}

/* 收起按钮 */
.RM-toggle-btn {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
width: 32px;
height: 32px;
background: rgba(255,255,255,0.95);
border-radius: 50%;
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: #6b7280;
font-size: 18px;
}
.RM-toggle-btn:hover {
background: #fff;
}

/* 按钮容器 */
.RM-toolbar-btns {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
}

/* 功能按钮 */
.RM-toolbar-btn {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
width: 60px;
padding: 5px 16px;
border-radius: 8px;
border: none;
background: transparent;
cursor: pointer;
color: #6b7280;
transition: all 0.2s ease;
}
.RM-toolbar-btn:hover {
background: #f9fafb;
transform: translateY(-2px);
}
.RM-toolbar-btn.active {
color: #3b82f6;
}
.RM-toolbar-btn i {
font-size: 20px;
line-height: 1;
display: block;
}
.RM-toolbar-btn span {
font-size: 14px;
font-weight: 500;
white-space: nowrap;
}

/* 分割线 */
.RM-toolbar-divider {
width: 1px;
height: 50px;
background: #d1d5db;
}

/* 页面加载动画 */
@keyframes slideUp {
from {
transform: translateX(-50%) translateY(100%);
opacity: 0;
}
to {
transform: translateX(-50%) translateY(0);
opacity: 1;
}
}

/* 显示工具栏按钮 */
.RM-show-toolbar-btn {
position: fixed;
bottom: 16px;
left: 50%;
transform: translateX(-50%);
width: 32px;
height: 32px;
background: rgba(255,255,255,0.95);
border-radius: 50%;
box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
border: 1px solid rgba(0,0,0,0.1);
cursor: pointer;
z-index: 40;
display: flex;
align-items: center;
justify-content: center;
color: #6b7280;
font-size: 20px;
}
.RM-show-toolbar-btn:hover {
background: #fff;
}
body.vertical-body #RM-showToolbar {
left: calc(env(safe-area-inset-left, 0px) + var(--rm-vertical-show-left, 10px)) !important;
top: 50% !important;
bottom: auto !important;
transform: translate(-50%, -50%) rotate(90deg);
transform-origin: center center;
}

/* 浮动工具栏响应式 */
@media (max-width: 768px) {
.RM-floating-toolbar {
padding: 8px 12px 0px 12px;
bottom: 0;
}
.RM-toolbar-btns {
gap: 12px;
}
.RM-toolbar-btn {
padding: 5px 8px;
gap: 4px;
}
.RM-toolbar-btn i {
font-size: 20px;
}
.RM-toolbar-btn span {
font-size: 12px;
}
}
/* ===== 浮动工具栏结束 ===== */

.left-panel-toggle {
  position: absolute;
  left: 10px;
  top: calc(100% + 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  color: #333;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
}
.left-panel-toggle i {
  font-size: 20px;
  line-height: 1;
}
.mp-left-drawer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
}
.mp-left-drawer-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.mp-left-drawer-panel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f5f7fa;
  display: flex;
  flex-direction: column;
}
.mp-left-drawer-header {
  height: 48px;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 14px;
  background: #fff;
  color: #333;
  border-bottom: 1px solid #dadada;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
}
.mp-left-drawer-header i{
  font-size: 18px;
  font-weight: normal;
}
.mp-left-drawer-close {
  border: none;
  background: transparent;
  color: #666;
  font-size: 18px;
}
.mp-left-drawer-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.swiper-container {
  display: none;
  position: relative;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1000;
  background-color: #FFFFFF;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  /*-webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);*/
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 22px 22px;
  background-position: center;
  background-repeat: no-repeat;
  outline: none;
}
.swiper-button-prev:active,
.swiper-button-next:active{
  outline: none;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{ opacity : 0; }

/* ========== ebook 加载动画 ========== */
.ebook-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 200px;
}

.ebook-loading-spinner {
  display: block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.08);
  border-top-color: #bbb;
  border-radius: 50%;
  animation: ebook-spin 0.8s linear infinite;
}

.ebook-loading p {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  text-indent: 0;
  letter-spacing: 0.05em;
}

@keyframes ebook-spin {
  to {
    transform: rotate(360deg);
  }
}
