/* Initialize */
body, html {
  font-size: 16px;
  color: #333;
  font-family: "Microsoft YaHei", "Microsoft YaHei Light", SimSun, sans-serif, Helvetica, Arial;
}

@media (max-width: 779px) {
  body, html {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  body, html {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a:active, a:visited, a:focus {
  color: inherit;
}

a[href]:hover, a[href]:active {
  color: #0062ac;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

table {
  max-width: 100%;
  overflow: auto;
  border-collapse: collapse;
  table-layout: fixed;
}

td {
  border: 1px solid #969696;
  padding: .2em .5em;
}

blockquote {
  margin: 1em 0;
  padding-left: 2em;
  position: relative;
}

blockquote::before {
  content: '';
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #0062ac;
}

.container {
  width: 1200px;
  padding: 0;
  margin: 0 auto;
}

@media (max-width: 1239px)  {
  .container {
    width: 900px;
  }
}

@media (max-width: 991px) {
  .container {
    width: 100%;
    max-width: none;
    margin: 0 30px;
  }
}

@media (max-width: 600px) {
  .container {
    margin: 0 5%;
  }
}


/* Header */
.header {
  display: flex;
  flex: 0 0 auto;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 145px;
  padding: 31px 0 37px 0;
  background-color: #0062ac;
  border-bottom: 5px solid #199cff;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerLeft {
  display: flex;
  justify-content: flex-start;
}

.headerLogo {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-start;
  align-items: center;
  padding: 0 13px 0 0;
}

.headerLogo img {
  display: block;
  max-height: 79px;
}

.headerRight {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  flex-flow: row wrap;
  width: 168px;
}

.headerLinks {
  height: 20px;
  padding: 0;
  margin: 0 0 18px 0;
  flex-flow: row nowrap;
}

.headerLinks .topLink {
  width: 100%;
  height: 100%;
  color: #fff;
  line-height: 20px;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0 8px;
  border-right: 1px solid #fff;
}

.headerLinks .topLink:hover, .headerLinks .topLink:active,
.headerLinks .topLink:focus, .headerLinks .topLink:focus-within {
  color: #fff;
}

.headerLinks .topLink:last-child {
  padding-right: 0;
  border-right: none;
}

.headerSearch {
  display: flex;
  flex: 0 0 auto;
  width: 168px;
  height: 30px;
}

.headerSearch .searchText {
  display: flex;
  flex: 0 0 auto;
  width: 138px;
}

.headerSearch .searchText input {
  flex: 0 0 auto;
  font-size: 14px;
  color: #3c3c3c;
  width: 138px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  padding: 0 8px;
}

.headerSearch .searchButton {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 0 4px 4px 0;
  background-color: #fff;
}

.headerSearch .searchButton img {
  width: 15px;
  height: 15px;
}

.mobileButton {
  display: none;
}

@media (max-width: 779px) {
  .header {
    height: 125px;
    padding: 0;
  }

  .header .container {
    width: 100%;
  }

  .headerLogo {
    flex: 1 1 70%;
    padding: 30px 42px 30px 0;
  }

  .headerLogo img {
    max-height: 64px;
  }

  .headerRight {
    display: none;
  }

  .mobileButton {
    display: block;
    width: 42px;
    height: 34px;
    background-image: url('../images/mobile-menu.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 42px;
  }
}

@media (max-width: 500px) {
  .header {
    height: 25vw;
  }
}

@media (max-width: 432px) {
  .logo {
    flex: 1 1 50%;
    padding: 20px 40px 20px 0;
  }

  .mobileButton {
    width: 30px;
    height: 24px;
    margin-left: 30px;
  }
}

/* Mobile menu */
.mobileMenu {
  display: none;
}

@media (max-width: 779px) {
  .mobileMenu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    z-index: 200;
    background-color: rgba(0, 98, 172, 1);
  }

  .mobileMenu .container {
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .mobileButtonClose {
    display: block;
    width: 34px;
    height: 34px;
    background-image: url('../images/mobile-menu-close.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .mobileNavList {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
    list-style: none;
  }

  .mobileNavItem {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 140px;
    border-bottom: 1px solid hsla(0,0%,100%,.3);
    color: #fff;
  }

  .mobileNavItem.close {
    justify-content: flex-end;
    border-bottom: none;
  }

  .mobileNavList .mobileNavItem:last-child {
    border-bottom: none;
  }

  .mobileNavLink {
    color: #fff;
    font-size: 48px;
    line-height: 1.5;
  }

  .mobileNavItem:hover .mobileNavLink, .mobileNavLink:hover {
    color: #fff;
  }
}

@media (max-width: 600px) {
  .mobileNavItem {
    height: 100px;
  }

  .mobileNavLink {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .mobileButtonClose {
    width: 24px;
    height: 24px;
  }
}

/* Navigation */
.nav {
  height: 59px;
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
}

.navList {
  font-size: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}

.navList .navItem {
  display: inline-block;
  position: relative;
  width: 20%;
  text-align: center;
  flex: 1;
}

.navList .navItem:hover {
  background: #0062ac;
}

.navItem .navLink {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #3c3c3c;
  line-height: 59px;
  font-size: 16px;
  font-size: 1rem;
}

.navItem .navLink:hover {
  color: #fff;
}


@media (max-width: 991px) {
  .nav {
    height: 49px;
  }

  .navItem .navLink {
    line-height: 49px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 779px) {
  .nav {
    display: none;
  }
}

/* Footer */
.footer {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  width: 100%;
  /* height: 300px; */
  color: #fff;
  background-color: rgba(0, 98, 172, 1);
  background-image: url('../images/footer-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footerContent {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  /* height: 252px; */
  padding: 34px 0 24px 0;
}

.footerContent ul {
  list-style: none;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

.field-body ul li {
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.footerInfo {
    width: 40%;
    padding: 0 20px 0 0;
    margin: 0;
}

.footerLogo {
  margin: 0 0 16px 0;
}

.footerLogo img {
  display: block;
  max-width: 100%;
}


.footerInfo .infoList {
  list-style-type: none;
}

.infoList li, .linkList li {
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.infoList li a, .infoList li a:visited,
.infoList li a[href], .infoList li a[href]:visited,
.linkList li a, .linkList li a:visited,
.linkList li a[href], .linkList li a[href]:visited {
  color: rgba(255, 255, 255, 0.7);
}

.infoList li a:hover, .infoList li a:active, 
.infoList li a:focus, .infoList li a:focus-within,
.infoList li a[href]:hover, .infoList li a[href]:active, 
.infoList li a[href]:focus, .infoList li a[href]:focus-within,
.linkList li a:hover, .linkList li a:active, 
.linkList li a:focus, .linkList li a:focus-within,
.linkList li a[href]:hover, .linkList li a[href]:active, 
.linkList li a[href]:focus, .linkList li a[href]:focus-within {
  color: rgba(255, 255, 255, 1) !important;
}

.internalLink, .externalLink {
  padding: 0;
  margin: 0;
}

.internalLink {
  width: 20%;
}

.externalLink {
  width: 20%;
}

.internalLink h2, .externalLink h2 {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  text-align: left;
  font-weight: normal;
  font-weight: 500;
  padding: 0;
  margin: 10px 0 20px 0;
  color: #fff;
}

.footerQR {
  display: flex;
  flex: 0 0 auto;
  width: 20%;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
}

.footerQR .qrCode {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  max-width: 98px;
  margin-right: 20px;
}

.footerQR .qrCode:last-child {
  margin-right: 0;
}

.footerQR .qrCode img {
  display: block;
  width: 100%;
}

.footerQR .qrCode .qrText {
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
}

.copyright {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileFooter {
  display: none;
}

@media (max-width: 1239px) {
  .footerQR .qrCode {
    width: 75px;
    margin-right: 15px;
  }
}

@media (max-width: 991px) {
  .footerLogo {
    padding-right: 30px;
    margin-right: 10%;
  }
  
  .footerInfo {
    width: 50%;
  }

  .footerQR {
    display: none;
  }
}

@media (max-width: 779px) {
  .footer {
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 144px;
    padding: 0;
  }

  .footer .container {
    margin: 0;
    padding: 0;
  }

  .footerContent, .copyright {
    display: none;
  }

  .mobileFooter {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
    height: 88px;
  }

  .footerText {
    width: 100%;
    height: 44px;
    font-size: 20px;
    line-height: 44px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer {
    height: 96px;
  }

  .mobileFooter {
    height: 64px;
  }

  .footerText {
    height: 32px;
    font-size: 16px;
    line-height: 32px;
  }
}

@media (max-width: 432px) {
  .footer {
    height: 72px;
  }

  .mobileFooter {
    height: 44px;
  }

  .footerText {
    height: 22px;
    font-size: 12px;
    line-height: 22px;
  }
}