.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: 10002;
  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: 998;
}
#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;
}

.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;
}
.html .back .back-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ff9900;
  border-radius: 0 0 2.5rem 0;
  cursor: pointer;
}
.html .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;
  }
}
.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 h4 {
  font-size: 1rem;
}
.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%;
}
.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;
}
.html .function .function-icon img {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.2rem 0 0.1rem;
}
.html .function .function-icon p {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0px;
}
.html .function .on {
  background: #ff9900;
}
/*.flip-action{left: 0 !important; top: 0 !important;}
.flip-action img{inset: 0 !important;}*/
.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 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%;
}
.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;
}

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;
  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;
}
.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: 998;
  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 .even .gradient {
  position: absolute;
  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;
  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%
  );
}

.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: 0px;
  margin: 0px;
  font-size: 12px;
  line-height: 34px;
  list-style: none;
  cursor: pointer;
  padding-left: 20px;
}
#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);
}

.pc_Dbox {
  display: none;
  position: absolute;
  left: 10px;
  top: 54px;
  width: 310px;
  background-color: #f5f7fa;
  box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
  z-index: 996;
  min-height: 358px;
}
.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;}

.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;}

#closeDbox{color: #666;}
.Dboxcontent {
  overflow: auto;
  min-height: 300px;
}
.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;
}
.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:hover{
	background: #f2f2f2;
}
#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;
}
.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: -48px;
  width: 100vh;
  transform: rotate(90deg);
  transform-origin: left bottom;
}
.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);
}

/* 横版模式下，禁用滚动 */
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;
}
.magazine-viewport {
  will-change: transform;
  transform-origin: 50% 50%;
  backface-visibility: 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; }