:root {
  --main-color: #B70030;
  --hover-color: #8a0025;
}

.viewer-navbar,
.viewer-prev,
.viewer-next,
.viewer-toolbar>ul>.viewer-large {
  display: none;
}

/* --- start -------------------------------------------------------------------------------------------------------------------------------- */
.page-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all .3s ease;
}
.page-header-wrap.fixed {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(45, 50, 87, .3);
}

.page-header-wrap > h1 {
  width: 210px;
  height: 52px;
  position: relative;
  overflow: hidden;
  margin: unset;
  transition: all .3s ease;
  background: url(/images/logo-white.png) no-repeat center;
  background-size: contain;
}
.page-header-wrap.fixed > h1 {
  width: 180px;
  height: 52px;
  background: url(/images/logo.png) no-repeat center;
  background-size: contain;
}
.page-header-wrap .menu-wrap .menu-item > a {
  --main-color: #fff;
  color: #fff;
}
.page-header-wrap.fixed .menu-wrap .menu-item > a {
  --main-color: #b70030;
  color: #666;
}

.page-header-wrap > h1 > a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-indent: -9999px;
}
.page-header-wrap .menu {
  display: none;
}
.page-header-wrap .nav .top {
  display: none;
}
.page-header-wrap .menu-wrap {
  display: flex;
  padding: 0 20px;
  color: #666;
  position: relative;
}
.page-header-wrap .menu-wrap .menu-item > a {
  position: relative;
  display: block;
  line-height: 120px;
  padding: 0 15px;
  transition: line-height .3s ease, color .3s ease;
}
.page-header-wrap.fixed .menu-wrap .menu-item > a {
  line-height: 80px;
}
.page-header-wrap .menu-wrap .menu-item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 25%;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--main-color);
  opacity: 0;
  transform: scale(0) translateX(-50%);
  transition: transform .3s ease, opacity .3s ease;
}
.page-header-wrap .menu-wrap .menu-item.active > a,
.page-header-wrap .menu-wrap .menu-item:hover > a{
  color: var(--main-color);
}
.page-header-wrap .menu-wrap .menu-item.active > a::after,
.page-header-wrap .menu-wrap .menu-item:hover > a::after {
  transform: scale(1) translateX(-50%);
  opacity: 1;
}
.page-header-wrap .dropdown-wrap {
  position: relative;
}
.page-header-wrap .dropdown-wrap .dropdown {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  white-space: nowrap;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.page-header-wrap .dropdown-wrap .dropdown li + li {
  border-top: 1px solid #efefef;
}
.page-header-wrap .dropdown-wrap .dropdown a {
  display: block;
  line-height: 40px;
  padding: 0 10px;
  border-radius: 5px;
  font-size: 15px;
  transition: background .3s ease, color .3s ease;
}
.page-header-wrap .dropdown-wrap .dropdown a:hover {
  background: var(--main-color);
  color: #fff;
}
.page-header-wrap .dropdown-wrap:hover .dropdown {
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
@media screen and (max-width: 1260px) {
  .page-header-wrap .nav ul li a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1080px) {
  .page-header-wrap {
    padding: 0 32px;
  }
  .page-header-wrap > h1,
  .page-header-wrap.fixed > h1 {
    width: 300px;
    height: 60px;
  }
  .page-header-wrap .nav ul li a {
    font-size: 14px;
    line-height: 90px;
  }
  .page-header-wrap.fixed .nav ul li a {
    line-height: 90px;
  }
}
@media screen and (max-width: 640px) {
  .page-header-wrap {
    padding: 8px 15px;
  }
  .page-header-wrap > h1,
  .page-header-wrap.fixed > h1 {
    width: 140px;
    height: 45px;
  }
  .page-header-wrap .menu {
    display: block;
    width: 30px;
    height: 30px;
  }
  .page-header-wrap .menu svg {
    width: 30px;
    height: 30px;
  }
  .page-header-wrap .menu path {
    fill: #fff;
  }
  .page-header-wrap.fixed .menu path {
    fill: var(--main-color);
  }
  .page-header-wrap .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .page-header-wrap .nav.active {
    transform: translateX(0);
  }
  .page-header-wrap .nav .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
  }
  .page-header-wrap .nav .top .logo {
    width: 240px;
  }
  .page-header-wrap .nav .top .logo img {
    max-width: 100%;
    object-fit: contain;
  }
  .page-header-wrap .nav .top .close {
    width: 40px;
    height: 40px;
  }
  .page-header-wrap .nav .top .close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .page-header-wrap .menu-wrap {
    display: block;
  }
  .page-header-wrap .menu-wrap .menu-item > a {
    --main-color: #B70030;
    line-height: 60px;
    text-align: center;
    border-bottom: 1px solid #efefef;
    color: #333;
  }
  .page-header-wrap.fixed .menu-wrap .menu-item > a {
    line-height: 60px;
  }
  .page-header-wrap .dropdown-wrap .dropdown {
    display: none;
  }
  .page-header-wrap .nav .top .logo img {
    width: 140px;
  }
}

#app > .main.pc {
  overflow: hidden;
}
#app > .main.pad {}
#app > .main.mobile {}

.page-aside-wrap {}
.page-footer-wrap {
  background: url(/images/page-footer-bgc.png) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.page-footer-wrap .rw {
  display: flex;
  align-items: center;
  padding: 38px 0 0;
}
.page-footer-wrap .rw .left {
  flex: 1;
}
.page-footer-wrap .rw .left .logo {
  display: block;
  margin-bottom: 38px;
}
.page-footer-wrap .rw .link-wrap {
  display: flex;
}
.page-footer-wrap .rw .link-wrap dl {
  margin-right: 10%;
}
.page-footer-wrap .rw .link-wrap dt {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  transition: color .3s ease;
}
.page-footer-wrap .rw .link-wrap dt::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 20px;
  height: 3px;
  background: #A8A8A8;
  border-radius: 3px;
  transition: background .3s ease;
}
.page-footer-wrap .rw .link-wrap dt:hover {
  color: var(--main-color);
}
.page-footer-wrap .rw .link-wrap dt:hover::after {
  background: var(--main-color);
}
.page-footer-wrap .rw .link-wrap dd {
  padding: unset;
  margin: unset;
  font-size: 14px;
  font-weight: 300;
  color: #727272;
  line-height: 1.8;
  transition: color .3s ease;
}
.page-footer-wrap .rw .link-wrap dd + dd {
  margin-top: 5px;
}
.page-footer-wrap .rw .link-wrap dd:hover {
  color: var(--main-color);
}
.page-footer-wrap .rw .right ul li {
  font-size: 16px;
  color: #323232;
  line-height: 1.6;
}

.page-footer-wrap .rw .right ul li + li {
  margin-top: 8px;
}
.page-footer-wrap .rw .qrcode-wrap {
  display: flex;
}
.page-footer-wrap .rw .qrcode-wrap .col + .col {
  margin-left: 30px;
}
.page-footer-wrap .rw .qrcode-wrap .col {
  font-size: 13px;
  color: #323232;
  text-align: center;
  margin-top: 60px;
  transition: color .3s ease;
}
.page-footer-wrap .rw .qrcode-wrap .col:hover {
  color: var(--main-color);
}
.page-footer-wrap .rw .qrcode-wrap .col:hover .cover {
  transform: scale(1.05);
}
.page-footer-wrap .rw .qrcode-wrap .cover {
  width: 110px;
  height: 110px;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.page-footer-wrap .rw .qrcode-wrap .cover img {
  width: 95%;
  height: 95%;
  object-fit: contain;
}
.page-footer-wrap .copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  font-size: 14px;
  color: #727272;
  padding: 20px 0;
  border-top: 2px solid #ddd;
}

@media screen and (max-width: 640px) {
  .page-footer-wrap .rw {
    display: block;
  }
  .page-footer-wrap .rw .link-wrap {
    display: none;
  }
  .page-footer-wrap .rw .left .logo {
    text-align: center;
  }
  .page-footer-wrap .rw .right ul li {
    font-size: 14px;
    color: #666;
    text-align: center;
  }
  .page-footer-wrap .rw .qrcode-wrap {
    justify-content: center;
  }
  .page-footer-wrap .rw .qrcode-wrap .col {
    margin-top: 30px;
  }
  .page-footer-wrap .copyright {
    margin-top: 15px;
  }
}

.page-footer-nav-wrap {
  display: none;
}
@media screen and (max-width: 640px) {
  .page-footer-wrap {
    padding-bottom: 80px;
  }
  .page-footer-wrap .copyright {
    display: block;
  }
  .page-footer-wrap .copyright a {
    display: block;
    text-align: center;
  }
  .page-footer-wrap .copyright .right {
    text-align: center;
  }
  .page-footer-nav-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 10px 15px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.1);
  }
  .page-footer-wrap .copyright a:last-child {
    margin: 10px 0;
  }
  .page-footer-nav-wrap .col {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .page-footer-nav-wrap .col.active span {
    color: var(--main-color);
  }
  .page-footer-nav-wrap .col.active img:first-child {
    display: none;
  }
  .page-footer-nav-wrap .col.active img:last-child {
    display: block;
  }
  .page-footer-nav-wrap .icon {
    height: 30px;
    margin-bottom: 10px;
  }
  .page-footer-nav-wrap .icon img {
    height: 100%;
    object-fit: contain;
    text-align: center;
  }
  .page-footer-nav-wrap .icon img:first-child {
    display: block;
  }
  .page-footer-nav-wrap .icon img:last-child {
    display: none;
  }
  .page-footer-nav-wrap span {
    display: block;
    font-size: 12px;
    color: #999999;
    text-align: center;
  }
}
/* --- end -------------------------------------------------------------------------------------------------------------------------------- */


@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
    transform: translateY(var(--distance-length));
  }
}



.paging-wrap {
  padding: 68px 0 82px;
}
.paging-wrap {
  text-align: center;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}
.paging-wrap a {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  transition: all .3s ease;
  background: #fff;
}
.paging-wrap a:not(a.item) {
  padding: 0 13px;
}
.paging-wrap a + a {
  margin-left: 5px;
}
.paging-wrap a.item {
  width: 32px;
}
.paging-wrap a.item.active {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}
.paging-wrap a:hover {
  background: var(--hover-color);
  border-color: var(--hover-color);
  color: #fff;
}
@media screen and (max-width: 640px) {
  .paging-wrap {
    padding: 30px 0;
  }
  .paging-wrap .start-text,
  .paging-wrap .end-text,
  .paging-wrap .start,
  .paging-wrap .prev,
  .paging-wrap .next,
  .paging-wrap .end {
    display: none !important;
  }
}


.loading-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: var(--main-color);
  transition: transform .3s ease;
}
.loading-wrap.inactive {
  transform: translateY(-100%);
}
.loading-wrap .content img {
  width: 180px;
}
.loading-wrap .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading-wrap .loading {
  display: block;
  position: relative;
  width: 6px;
  height: 10px;

  animation: rectangle infinite 1s ease-in-out -0.2s;

  background-color: #fff;
}

.loading-wrap .loading:before,
.loading-wrap .loading:after {
  position: absolute;
  width: 6px;
  height: 10px;
  content: "";
  background-color: #fff;
}

.loading-wrap .loading:before {
  left: -14px;

  animation: rectangle infinite 1s ease-in-out -0.4s;
}

.loading-wrap .loading:after {
  right: -14px;

  animation: rectangle infinite 1s ease-in-out;
}
.loading-wrap .icon {
  width: 60px;
  height: 60px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rectangle {
  0%,
  80%,
  100% {
    height: 20px;
    box-shadow: 0 0 #fff;
  }

  40% {
    height: 30px;
    box-shadow: 0 -20px #fff;
  }
}

