:root {
  --main-color: #194C7A;
  --hover-color: #123655;
}

/* --- start -------------------------------------------------------------------------------------------------------------------------------- */
.page-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  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: 249px;
  height: 62px;
  background: url(/images/logo.png) no-repeat center;
  background-size: contain;
  position: relative;
  overflow: hidden;
  margin: unset;
  transition: all .3s ease;
}
.page-header-wrap.fixed > h1 {
  width: 249px;
  height: 62px;
}
.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 .nav ul {
  display: flex;
}
.page-header-wrap.home .nav ul li a {
  color: #fff;
}
.page-header-wrap.fixed .nav ul li a {
  line-height: 90px;
}
.page-header-wrap .nav ul li a {
  padding: 0 20px;
  line-height: 120px;
  color: #666;
  position: relative;
  transition: all .3s ease;
}
.page-header-wrap .nav ul li a::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -15px;
  height: 2px;
  border-radius: 2px;
  background: var(--main-color);
  opacity: 0;
  transform: scale(0);
  transition: transform .3s ease, opacity .3s ease;
}
.page-header-wrap .nav ul li.active a::after,
.page-header-wrap .nav ul li:hover a::after {
  transform: scale(1);
  opacity: 1;
}
.page-header-wrap .nav ul li.active a,
.page-header-wrap .nav ul li:hover a {
  font-weight: 700;
  color: var(--main-color);
}
.page-header-wrap.other > h1 {
  background: url(/images/logo-white.png) no-repeat center;
  background-size: contain;
}
.page-header-wrap.other .nav ul li a {
  color: #fff;
}
.page-header-wrap.other .nav ul li.active a::after,
.page-header-wrap.other .nav ul li:hover a::after {
  background: #fff;
}
@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: 249px;
    height: 62px;
  }
  .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.other .menu path {
    fill: #fff;
  }
  .page-header-wrap.other .nav ul li a {
    color: #333;
  }
  .page-header-wrap.other .nav ul li.active a {
    color: var(--main-color);
  }

  .page-header-wrap {
    padding: 8px 15px;
  }
  .page-header-wrap > h1,
  .page-header-wrap.fixed > h1 {
    width: 120px;
    height: 40px;
  }
  .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: 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: 50%;
    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 .nav ul {
    display: block;
    padding: 0 15px;
    overflow-y: auto;
    max-height: 88vh;
  }
  .page-header-wrap .nav ul li a {
    display: block;
    line-height: 60px;
    padding: unset;
    text-align: center;
  }
  .page-header-wrap.fixed .nav ul li a {
    line-height: 60px;
  }
  .page-header-wrap .nav ul li + li {
    border-top: 1px solid #efefef;
  }
  .page-header-wrap .nav ul li a::after {
    bottom: 10px;
    width: 30px;
    left: 50%;
    right: unset;
  }
  .page-header-wrap .nav ul li.active a::after,
  .page-header-wrap .nav ul li:hover a::after {
    transform: translateX(-50%) scale(1);
  }
}

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

.page-form-wrap {
  padding: 50px 0 35px;
  background: linear-gradient(to bottom, rgba(26, 77, 124, 1), rgba(22, 48, 71, 1));
  position: relative;
  z-index: 1;
}
.page-form-wrap header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 30px;
}
.page-form-wrap header h2 {
  font-weight: bold;
  font-size: 32px;
  color: #FFFFFF;
  margin: unset;
}
.page-form-wrap .col {
  margin-bottom: 15px;
}
.page-form-wrap .select-wrap,
.page-form-wrap .input-wrap {
  background: #ffff;
  border-radius: 5px;
}
.page-form-wrap .select-wrap .scroll-content {
  max-height: 260px;
}
.page-form-wrap .select-wrap .current {
  padding: 0 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-form-wrap .select-wrap .current.not {
  color: #666;
}
.page-form-wrap .submit {
  background: #4873F5;
  display: block;
  outline: none;
  border: unset;
  line-height: 45px;
  width: 100%;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background .3s ease;
}
.page-form-wrap .submit:hover,
.page-form-wrap .submit:active {
  background: #3f65d6;
}
.page-form-wrap .select-wrap {
  z-index: 100;
}
@media screen and (max-width: 640px) {
  .page-form-wrap header {
    display: block;
  }
  .page-form-wrap header h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .page-form-wrap .row {
    margin: 0 -7.5px;
  }
  .page-form-wrap .col {
    padding: 0 7.5px;
  }
}

.page-aside-wrap {}
.page-footer-wrap {
  background: rgba(245, 246, 246, 1);
  overflow: hidden;
  padding: 50px 0 20px;
}
.page-footer-wrap .container {
  max-width: 1700px;
}
.page-footer-wrap .rw {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.page-footer-wrap .logo {
  display: block;
  width: 180px;
  height: 50px;
  background: url(/images/logo.png) no-repeat center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}
.page-footer-wrap .left {
  padding-right: 8%;
  margin-right: 4%;
  border-right: 1px solid #ddd;
  color: #333;
}
.page-footer-wrap .right {
  flex: 1;
}
.page-footer-wrap .right li {
  color: #333;
}
.page-footer-wrap .right li a:hover {
  color: var(--main-color);
}
.page-footer-wrap .right li + li {
  margin-top: 10px;
}
.page-footer-wrap .qrcode-wrap {
  display: flex;
}
.page-footer-wrap .qrcode-wrap li + li {
  margin-left: 15px;
}
.page-footer-wrap .qrcode-wrap .cover {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 15px;
}
.page-footer-wrap .qrcode-wrap .cover img {
  width: 90%;
  height: 90%;
}
.page-footer-wrap .qrcode-wrap p {
  color: #666;
  text-align: center;
  margin: 10px 0 0;
}
.page-footer-wrap .left p {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 0;
  text-align: center;
  color: #666;
}
.page-footer-wrap .copyright {
  text-align: center;
  margin: unset;
  color: #999;
}
@media screen and (max-width: 640px) {
  .page-footer-wrap {
    padding: 30px 0 100px;
  }
  .page-footer-wrap .rw {
    display: block;
    padding-bottom: 30px;
  }
  .page-footer-wrap .left {
    margin: unset;
    padding: unset;
    border: unset;
  }
  .page-footer-wrap .logo {
    margin: 0 auto;
  }
  .page-footer-wrap .left p {
    font-size: 24px;
  }
  .page-footer-wrap .right {
    line-height: 1.4;
    margin-top: 20px;
    text-align: center;
  }
  .page-footer-wrap .right li {
    color: #666;
  }
  .page-footer-wrap .copyright {
    line-height: 1.4;
  }
  .page-footer-wrap .qrcode-wrap {
    justify-content: center;
    margin-top: 20px;
  }
}

.page-footer-nav-wrap {
  display: none;
}
@media screen and (max-width: 640px) {
  .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-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;
}
.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;
  }
  table td {
    font-size: 14px;
  }
}
