:root {
  --main-color: #133686;
  --hover-color: #102d70;
}



/* --- layout start -------------------------------------------------------------------------------------------------------------------------------- */
.page-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  transition: background .3s ease;
}
.page-header-wrap .container .rw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header-wrap .container h1 {
  margin: unset;
  width: 254px;
  height: 38px;
  position: relative;
}
.page-header-wrap .container h1 a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/images/logo.png) no-repeat center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}

.page-header-wrap .container nav {
  display: flex;
  align-items: center;
}
.page-header-wrap .container nav .top {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
}
.page-header-wrap .container nav .top .close {
  width: 40px;
  height: 40px;
}
.page-header-wrap .container nav .top .close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-header-wrap .container nav ul {
  display: flex;
  align-items: center;
}

.page-header-wrap .container nav ul li a {
  display: block;
  font-size: 18px;
  color: #333333;
  position: relative;
  transition: color .3s ease, padding .3s ease;
  padding: 45px 50px;
}
.page-header-wrap .container nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30%;
  width: 20%;
  height: 3px;
  border-radius: 2px;
  background: var(--main-color);

  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: transform .3s ease, opacity .3s ease, bottom .3s ease;
}
.page-header-wrap .container nav ul li:hover a::after,
.page-header-wrap .container nav ul li.active a::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.page-header-wrap .container nav ul li:hover a,
.page-header-wrap .container nav ul li.active a {
  color: var(--main-color);
}
.page-header-wrap .container .line {
  width: 1px;
  height: 12px;
  background: #333;
  margin: 0 50px 0 0;
  transition: margin .3s ease;
}
.page-header-wrap .container .search {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
}
.page-header-wrap .container .search img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: contain;
  transition: opacity .3s ease;
}
.page-header-wrap .container .search img:nth-child(1) {
  opacity: 0;
}
.page-header-wrap .container .search img:nth-child(2) {
  opacity: 1;
}
.page-header-wrap .container .search img:nth-child(3) {
  opacity: 0;
}
.page-header-wrap .container .search:hover img:nth-child(1) {
  opacity: 1;
}
.page-header-wrap .container .search:hover img:nth-child(2) {
  opacity: 0;
}
.page-header-wrap .container .menu {
  display: none;
}

.page-header-wrap.home {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
.page-header-wrap.home .container h1 a {
  background: url(/images/logo-white.png) no-repeat center;
  background-size: contain;
}
.page-header-wrap.home .container nav ul li a {
  color: #fff;
}
.page-header-wrap.home .container nav ul li a::after {
  background: #fff;
}
.page-header-wrap.home .container nav ul li:hover a,
.page-header-wrap.home .container nav ul li.active a {
  color: #fff;
}
.page-header-wrap.home .container .line {
  background: #fff;
}
.page-header-wrap.home .container .search img:nth-child(3) {
  opacity: 1;
}

.page-header-wrap.fixed {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.page-header-wrap.fixed .container nav ul li a {
  padding: 25px 50px;
}
.page-header-wrap.fixed .container nav ul li a::after {
  bottom: 20%;
}


@media screen and (max-width: 1500px) {
  .page-header-wrap .container .line {
    margin: 0 45px 0 25px;
  }
  .page-header-wrap .container nav ul li a {
    padding: 45px 25px;
  }
  .page-header-wrap.fixed .container nav ul li a {
    padding: 25px 25px;
  }
}
@media screen and (max-width: 1150px) {
  .page-header-wrap .container .line {
    margin: 0 35px 0 15px;
  }
  .page-header-wrap .container nav ul li a {
    padding: 45px 15px;
  }
  .page-header-wrap.fixed .container nav ul li a {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 640px) {
  .page-header-wrap .container .rw {
    padding: 10px 0;
  }
  .page-header-wrap .container h1 {
    width: 99px;
    height: 30px;
  }
  .page-header-wrap .container h1 a {
    background: url(/images/logo-simple-primary.png) no-repeat left center;
    background-size: contain;
  }
  .page-header-wrap .container .menu {
    display: block;
    width: 30px;
    height: 30px;
  }
  .page-header-wrap .container .menu svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .page-header-wrap .container .menu svg path {
    fill: var(--main-color);
  }
  .page-header-wrap .container nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-color);
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .3s ease, opacity .3s ease;
  }
  .page-header-wrap .container nav.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0%);
  }
  .page-header-wrap .container nav .top {
    display: flex;
  }
  .page-header-wrap .container nav ul {
    display: block;
    text-align: center;
    padding: 0px 20px;
  }
  .page-header-wrap .container nav ul li + li {
    margin-top: 20px;
  }
  .page-header-wrap .container nav ul li a {
    padding: 20px 0;
    background: var(--hover-color);
    border-radius: 10px;
    font-size: 14px;
    color: #fff !important;
    transition: background .3s ease;
  }
  .page-header-wrap .container nav ul li a:active {
    background: var(--main-color);
  }
  .page-header-wrap .container nav ul li a::after {
    display: none !important;
  }
  .page-header-wrap .container .line {
    display: none;
  }
  .page-header-wrap .container .search {
    margin: 20px auto;
    width: 50px;
    height: 50px;
    background: var(--hover-color);
    border-radius: 50%;
    transition: background .3s ease;
  }
  .page-header-wrap .container .search:active {
    background: var(--main-color);
  }
  .page-header-wrap .container .search img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-header-wrap .container .search img:nth-child(3) {
    opacity: 1;
  }


  .page-header-wrap.home .container h1 a {
    background: url(/images/logo-simple-white.png) no-repeat left center;
    background-size: contain;
  }
  .page-header-wrap.home .container .menu svg path {
    fill: #fff;
  }
  .page-header-wrap.fixed .container nav ul li a {
    padding: 20px 0;
  }
}

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

.page-aside-wrap {}
.page-footer-wrap {
  background: rgba(237, 239, 251, 1);
}
.page-footer-wrap header {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-footer-wrap header h1 {
  width: 100px;
  height: 38px;
  position: relative;
}
.page-footer-wrap header h1 a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/images/logo-simple-primary.png) no-repeat center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}
.page-footer-wrap header ul {
  display: flex;
  align-items: center;
}
.page-footer-wrap header ul li + li {
  margin-left: 80px;
}
.page-footer-wrap header ul a {
  font-size: 18px;
  color: #333333;
  transition: color .3s ease;
  position: relative;
}
.page-footer-wrap header ul a:hover {
  color: var(--main-color);
}
.page-footer-wrap header ul a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 70%;
  height: 3px;
  border-radius: 2px;
  background: var(--main-color);

  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: transform .3s ease, opacity .3s ease;
}
.page-footer-wrap header ul a:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.page-footer-wrap .rw {
  padding: 35px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  box-sizing: border-box;
  border-top: 1px solid rgba(208, 216, 233, 1);
  border-bottom: 1px solid rgba(208, 216, 233, 1);
}
.page-footer-wrap .rw .left li {
  display: inline-flex;
  align-items: center;
}
.page-footer-wrap .rw .left li:nth-child(1),
.page-footer-wrap .rw .left li:nth-child(4) {
  width: 270px;
}
.page-footer-wrap .rw .left li:nth-child(3) {
  display: block;
}
.page-footer-wrap .rw .left li:nth-child(4),
.page-footer-wrap .rw .left li:nth-child(5) {
  margin-top: 34px;
}
.page-footer-wrap .rw .left p {
  margin: unset;
  font-size: 16px;
  color: #333333;
  line-height: 1;
}
.page-footer-wrap .rw .left .icon {
  margin-right: 15px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-footer-wrap .rw .left .icon image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-footer-wrap .rw .right {
  display: none;
  text-align: center;
  opacity: 0;
}
.page-footer-wrap .rw .qrcode-wrap + .qrcode-wrap {
  margin-left: 20px;
}
.page-footer-wrap .rw .qrcode-wrap .cover {
  width: 110px;
  height: 110px;
}
.page-footer-wrap .rw .qrcode-wrap .cover image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-footer-wrap .rw .qrcode-wrap p {
  font-size: 14px;
  color: #666666;
  margin: 13px 0 0;
}
.page-footer-wrap .copyright-wrap {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 16px;
  color: #666666;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .page-footer-wrap header ul li + li {
    margin-left: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .page-footer-wrap header ul li + li {
    margin-left: 40px;
  }
}

@media screen and (max-width: 750px) {
  .page-footer-wrap {
    padding-bottom: 70px;
  }
  .page-footer-wrap header {
    height: 60px;
  }
  .page-footer-wrap header h1 {
    width: 50px;
  }
  .page-footer-wrap header ul li + li {
    margin-left: 10px;
  }
  .page-footer-wrap header ul a {
    font-size: 12px;
  }
  .page-footer-wrap .rw {
    display: block;
    padding: 20px 0;
  }
  .page-footer-wrap .rw .left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 1;
  }
  .page-footer-wrap .rw .left li:nth-child(3) {
    display: none;
  }
  .page-footer-wrap .rw .left li:nth-child(1),
  .page-footer-wrap .rw .left li:nth-child(4),
  .page-footer-wrap .rw .left li:nth-child(5) {
    width: unset;
    margin: unset;
  }
  .page-footer-wrap .rw .left li {
    display: flex;
    margin-bottom: 15px !important;
  }
  .page-footer-wrap .rw .left li:last-child p {
    line-height: 1.4;
  }
  .page-footer-wrap .rw .left p {
    flex: 1;
    font-size: 14px;
  }
  .page-footer-wrap .rw .left .icon {
    width: 12px;
    margin-right: 10px;
  }
  .page-footer-wrap .rw .left .icon img {
    display: block;
    width: 100%;
    object-fit: contain;
  }
  .page-footer-wrap .rw .right {
    justify-content: center;
    margin-top: 30px;
  }
  .page-footer-wrap .copyright-wrap {
    display: block;
    text-align: center;
    font-size: 14px;
  }
  .page-footer-wrap .copyright-wrap .left {
    margin-bottom: 10px;
  }
}




/* page-footer-nav-wrap */
.page-footer-nav-wrap {
  display: none;
}
@media screen and (max-width: 600px) {
  .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;
  }
}

/* --- layout end -------------------------------------------------------------------------------------------------------------------------------- */
