@charset "UTF-8";
html {
  height: 100%;
}

body {
  min-height: 100%;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  color: #333;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-weight: normal;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@font-face {
  font-family: "BarlowCondensed-Bold";
  src: url("../fonts/BarlowCondensed-Bold.ttf");
}
@font-face {
  font-family: "BarlowCondensed-Medium";
  src: url("../fonts/BarlowCondensed-Medium.ttf");
}
@font-face {
  font-family: "Outfit-VariableFont";
  src: url("../fonts/Outfit-VariableFont.ttf");
}
.font-barlow-bold {
  font-family: "BarlowCondensed-Bold";
}

.font-barlow-medium {
  font-family: "BarlowCondensed-Medium";
}

.font-outfit {
  font-family: "Outfit-VariableFont";
}

.language-en {
  font-family: "Outfit-VariableFont";
}

a,
.link {
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
a.link-primary,
.link.link-primary {
  color: #003f80;
}
a:hover, a:focus,
.link:hover,
.link:focus {
  color: #003f80;
  outline: 0;
  text-decoration: none;
}
a.link-white,
.link.link-white {
  color: #fff;
}
a.link-white:hover, a.link-white:focus,
.link.link-white:hover,
.link.link-white:focus {
  color: #fff;
}
a.disabled,
.link.disabled {
  opacity: 0.65;
  cursor: default;
}

.header {
  position: relative;
  z-index: 10;
}
.header .header-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
  z-index: -1;
  display: none;
}
.header.expand .header-mask, .header.m-expand .header-mask {
  display: block;
}
.header.expand .navbar-toggler, .header.m-expand .navbar-toggler {
  border: 0;
  color: #000;
}
.header.expand .navbar, .header.m-expand .navbar {
  background-color: #fff;
  border-bottom: 2px solid #ccc;
}
.header.expand .navbar .nav-text, .header.m-expand .navbar .nav-text {
  color: #000;
}
.header.expand .navbar .nav-text:after, .header.m-expand .navbar .nav-text:after {
  background: #003f80;
}
.header.expand .navbar .logo, .header.m-expand .navbar .logo {
  display: none;
}
.header.expand .navbar .logo-primary, .header.m-expand .navbar .logo-primary {
  display: block;
}
.header.expand .action,
.header.expand .action-link, .header.m-expand .action,
.header.m-expand .action-link {
  color: #000;
}
.header.expand .action + .action, .header.m-expand .action + .action {
  border-color: #000;
}

.navbar {
  background-color: #001630;
  border-bottom: 2px solid #001630;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .logo {
  display: block;
}
.navbar .logo-primary {
  display: none;
}
.navbar .navbar-toggler {
  border: 0;
  color: #fff;
}
.navbar .navbar-toggler .iconfont {
  font-size: 20px;
}
.navbar .navbar-toggler-close {
  display: none;
}
.navbar .navbar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .dropdown-menu {
  right: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-left: 0;
  border-right: 0;
  padding: 0;
  border-radius: 0;
  margin-left: -1em;
  margin-right: -1em;
  background: #fff;
}
.navbar .dropdown-menu .dropdown-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.navbar .dropdown-menu .menu-item {
  max-height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 10px 0;
  column-gap: 20px;
  font-size: 14px;
  color: #808080;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .dropdown-menu .menu-item .menu-text {
  color: #808080;
}
.navbar .dropdown-menu .menu-item:hover, .navbar .dropdown-menu .menu-item.active {
  color: #000;
}
.navbar .dropdown-menu .menu-item:hover > .menu-text, .navbar .dropdown-menu .menu-item.active > .menu-text {
  color: #000;
}
.navbar .dropdown-menu .menu-item:hover > .menu-list,
.navbar .dropdown-menu .menu-item:hover > .iconfont, .navbar .dropdown-menu .menu-item.active > .menu-list,
.navbar .dropdown-menu .menu-item.active > .iconfont {
  display: block;
}
.navbar .dropdown-menu .menu-item > .menu-list {
  display: none;
  margin-top: -10px;
  margin-bottom: -10px;
}
.navbar .dropdown-menu .menu-item > .iconfont {
  font-size: 14px;
  display: none;
}
.navbar .action {
  display: inline-block;
  padding: 0 10px;
  line-height: 1;
}
.navbar .action.dropdown {
  position: static;
}
.navbar .action-link {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .action + .action {
  border-left: 2px solid #fff;
}
.navbar .dropdown-search .input-group {
  padding: 10px 0;
}
.navbar .dropdown-search .input-group .input-group-prepend {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .dropdown-search .input-group .input-group-prepend .iconfont {
  font-size: 26px;
  margin-right: 12px;
  color: #000;
}
.navbar .dropdown-search .input-group .input-group-prepend:after {
  content: "";
  position: absolute;
  height: 36px;
  width: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: #000;
}
.navbar .dropdown-search .input-group .form-control {
  background: transparent;
  margin-left: 12px;
  padding: 0;
  border: 0;
  font-size: 28px;
}
.navbar .dropdown-search .links {
  padding: 20px 0;
  font-size: 14px;
}
.navbar .dropdown-search .links .iconfont {
  margin-left: 20px;
  font-size: 14px;
}
.navbar .dropdown-search .text-grey {
  color: #ccc;
}

@media (min-width: 1200px) {
  .navbar .navbar-nav .nav-link {
    padding: 0 24px;
  }
}
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }
  .navbar #navbar-search {
    display: none !important;
  }
  .navbar .nav-link {
    padding: 0 12px;
  }
  .navbar .navbar-nav .nav-text {
    position: relative;
    display: inline-block;
    padding: 24px 0 22px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .navbar .navbar-nav .nav-text:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .navbar .navbar-nav .nav-item .nav-link > .iconfont {
    display: none;
  }
  .navbar .navbar-nav .nav-item:hover .nav-text:after {
    opacity: 1;
  }
  .navbar .navbar-nav .nav-item.active .nav-text, .navbar .navbar-nav .nav-item.show .nav-text {
    font-weight: 500;
  }
  .navbar .navbar-nav .nav-item.active .nav-text:after, .navbar .navbar-nav .nav-item.show .nav-text:after {
    opacity: 1;
  }
  .navbar .navbar-nav .nav-item.dropdown {
    position: static;
  }
  .navbar .dropdown-menu {
    right: 0;
    border: 0;
    padding: 20px 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .header.m-expand {
    height: 100vh;
    overflow: auto;
  }
  .header.m-expand .navbar {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .header.m-expand .navbar .navbar-wrapper {
    min-height: calc(100vh - 48px);
  }
  .header.m-expand .navbar-toggler-close {
    display: inline-block;
  }
  .header.m-expand .navbar-toggler-menu {
    display: none;
  }
  .navbar .navbar-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
  .navbar .navbar-nav {
    padding-top: 60px;
    padding-bottom: 40px;
    width: 100%;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navbar .navbar-nav .nav-item .nav-link .iconfont {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #000;
  }
  .navbar .navbar-nav .nav-item.active .nav-text, .navbar .navbar-nav .nav-item.show .nav-text {
    color: #003f80;
  }
  .navbar .navbar-nav .nav-item.active .nav-link > .iconfont, .navbar .navbar-nav .nav-item.show .nav-link > .iconfont {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    color: #003f80;
  }
  .navbar .dropdown-menu {
    background: #f9f9f9;
  }
  .navbar .dropdown-menu .menu-item {
    max-height: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .navbar .dropdown-menu .menu-item > .iconfont {
    visibility: hidden;
  }
  .navbar .dropdown-menu .menu-item > .menu-list {
    padding-left: 15px;
  }
  .navbar .dropdown-search {
    padding-top: 50px;
  }
  .navbar .form-inline {
    margin-left: -1em;
    margin-right: -1em;
  }
  .navbar .form-inline .action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 10px 0;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .navbar .form-inline .action .iconfont {
    font-size: 22px;
    margin-right: 10px;
  }
  .navbar .form-inline .action + .action {
    border-left: 0;
    border-color: rgba(0, 0, 0, 0.15);
  }
  .navbar .m-content {
    padding: 25px 15px;
    background: #f9f9f9;
    margin-left: -15px;
    margin-right: -15px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navbar .m-content .title {
    font-weight: bold;
    margin-bottom: 25px;
  }
  .navbar .m-content .item {
    margin-bottom: 8px;
  }
  .navbar .m-content .text {
    font-size: 10px;
  }
  .navbar .m-content .text-small {
    font-size: 8px;
  }
}
@media (min-width: 1200px) {
  .language-en .navbar .navbar-nav .nav-link {
    padding: 0 12px;
  }
}
body.m-menu-expand {
  overflow: hidden;
}

.footer {
  background: #001630;
}
.footer .footer-follow {
  padding: 80px 0 40px;
  border-bottom: 1px solid #fff;
}
.footer .footer-follow .title {
  font-size: 20px;
  color: #fff;
  margin-right: 24px;
}
.footer .footer-follow .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer .footer-follow .iconfont {
  font-size: 30px;
}
.footer .footer-nav {
  padding: 28px 0 12px;
  color: #fff;
}
.footer .footer-nav .title {
  font-size: 20px;
  margin-bottom: 24px;
}
.footer .footer-nav .list {
  font-size: 16px;
}
.footer .footer-nav .item {
  margin-bottom: 14px;
}
.footer .footer-nav .link-white {
  opacity: 0.5;
}
.footer .footer-nav .link-white:hover {
  opacity: 1;
}
.footer .footer-contact {
  font-size: 16px;
  color: #fff;
  border-top: 1px solid #fff;
  padding-top: 12px;
}
.footer .footer-contact .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.footer .footer-contact .list .d-flex {
  gap: 4px;
}
.footer .footer-links {
  padding: 40px 0 20px;
  text-align: center;
  font-size: 12px;
}
.footer .footer-links .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .footer-links .image {
  height: 50px;
}
.footer .footer-links .item {
  opacity: 0.5;
}
.footer .footer-links .item:hover {
  opacity: 1;
}
.footer .footer-links .text {
  padding: 0 4px;
}
.footer .footer-links .divider {
  width: 1px;
  height: 10px;
  background: #fff;
  margin-bottom: 3px;
  opacity: 0.5;
}
.footer .footer-copyright {
  padding-bottom: 80px;
  color: #fff;
  opacity: 0.5;
}

.footer-popover .popover-body {
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .footer .footer-navbar-nav {
    padding: 20px 0;
  }
  .footer .footer-navbar-nav .nav-item .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer-navbar-nav .nav-item .nav-link .nav-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 14px;
    color: #fff;
  }
  .footer .footer-navbar-nav .nav-item .nav-link .iconfont {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #fff;
  }
  .footer .footer-navbar-nav .nav-item.show .iconfont {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .footer .footer-navbar-nav .dropdown-menu {
    position: static !important;
    -webkit-transform: none !important;
            transform: none !important;
    right: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-left: 0;
    border-right: 0;
    padding: 0;
    border-radius: 0;
    margin-left: -1em;
    margin-right: -1em;
    background: #001b3a;
  }
  .footer .footer-navbar-nav .dropdown-menu .menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
  }
  .footer .footer-navbar-nav .dropdown-menu .menu-item .menu-text {
    display: block;
    color: #fff;
  }
  .footer .footer-navbar-nav .dropdown-menu .menu-item:hover > .menu-list, .footer .footer-navbar-nav .dropdown-menu .menu-item.active > .menu-list {
    display: block;
  }
  .footer .footer-navbar-nav .dropdown-menu .menu-item > .menu-list {
    padding-left: 15px;
    display: none;
    margin-top: 10px;
    margin-bottom: -10px;
  }
  .footer .footer-follow {
    padding: 20px 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .footer .footer-follow .image-logo {
    width: 170px;
  }
  .footer .footer-follow .list {
    gap: 5px;
  }
  .footer .footer-follow .iconfont {
    font-size: 24px;
  }
  .footer .footer-links {
    padding: 20px 0;
    margin-left: -15px;
    margin-right: -15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .footer-links .title {
    color: #fff;
    margin-bottom: 20px;
  }
  .footer .footer-links .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .footer .footer-links .item {
    padding: 4px;
  }
  .footer .footer-links .image {
    height: 30px;
  }
  .footer .footer-links .text {
    font-size: 8px;
    padding: 4px 0;
  }
  .footer .footer-links .divider {
    width: 0;
  }
  .footer .footer-copyright {
    padding-top: 10px;
    padding-bottom: 20px;
    opacity: 1;
    font-size: 10px;
  }
  .footer .footer-copyright .text {
    display: block;
  }
}
.btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn:focus, .btn:active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn.btn-primary {
  color: #fff;
  background: #003f80;
  border-color: #003f80;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:active:hover {
  background: #fff;
  border-color: #003f80;
  color: #003f80;
}

.form-control {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}
.form-control:focus {
  border-color: #316c99;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.content-title .title {
  font-size: 40px;
}
.content-title .subtitle {
  font-size: 20px;
  font-family: "Outfit-VariableFont";
}
@media (max-width: 991.98px) {
  .content-title .title {
    font-size: 24px;
    font-weight: 500;
  }
  .content-title .subtitle {
    font-size: 12px;
  }
}

.language-en .content-title .title {
  font-size: 32px;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .language-en .content-title .title {
    font-weight: 500;
    font-size: 20px;
  }
}
.content-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 520px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.content-banner .title {
  font-size: 62px;
}
.content-banner .subtitle {
  font-size: 24px;
}

@media (max-width: 991.98px) {
  .content-banner {
    min-height: 260px;
  }
  .content-banner .title {
    font-size: 32px;
  }
  .content-banner .subtitle {
    font-size: 14px;
  }
}
.language-en .content-banner .subtitle {
  font-weight: 300;
}

.float-button {
  position: fixed;
  right: 0;
  top: calc(100vh - 236px);
  z-index: 99;
  background: #f2f2f2;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.float-button .action + .action:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: #b2b2b2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.float-button .action {
  position: relative;
  display: block;
  text-align: center;
  line-height: 52px;
  width: 52px;
  height: 52px;
  color: #b2b2b2;
}
.float-button .action:hover {
  color: #003f80;
}
.float-button .icon-service {
  font-size: 27px;
}
.float-button .icon-chat {
  font-size: 29px;
}
.float-button .icon-up {
  font-size: 14px;
}

.action-modal .close {
  position: absolute;
  right: 60px;
  top: 40px;
  font-size: 48px;
  color: #000;
  font-weight: lighter;
  opacity: 1;
  z-index: 10;
}
.action-modal .modal-content {
  border-radius: 10px;
}
.action-modal .modal-body {
  padding: 60px;
}

.action-modal-service .content-title {
  margin-bottom: 40px;
}
.action-modal-service .wrapper {
  margin-bottom: 40px;
  color: #666;
}
.action-modal-service .wrapper .title {
  font-size: 20px;
  color: #333;
}
.action-modal-service .wrapper .number {
  font-size: 20px;
}
.action-modal-service .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 150px;
}
.action-modal-service .right {
  position: relative;
  left: 60px;
}
.action-modal-service .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.action-modal-service .item {
  min-width: 40px;
  margin-right: 10px;
  margin-bottom: 4px;
}
.action-modal-service .image-block {
  background-image: url("../images/float/map-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.action-modal-service .image-block .image {
  display: block;
  width: 100%;
}
.action-modal-service .qr-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  text-align: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.action-modal-service .qr-section .image-qr {
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .action-modal .modal-xl {
    max-width: 1180px;
  }
}
@media (max-width: 991.98px) {
  .float-button {
    position: fixed;
    right: 15px;
    top: calc(100vh - 236px);
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
  }
  .float-button .action + .action:before {
    content: none;
  }
  .float-button .action {
    position: relative;
    display: block;
    text-align: center;
    line-height: 46px;
    width: 46px;
    height: 46px;
    color: #000;
    background: #fff;
  }
  .float-button .action:hover {
    background: #fff;
    color: #000;
  }
  .float-button .action-service,
  .float-button .action-chat {
    display: none;
  }
  .float-button .icon-up {
    font-size: 12px;
  }
  .action-modal .modal-dialog {
    min-height: 100%;
    max-height: 100%;
    margin: 0;
  }
  .action-modal .close {
    position: absolute;
    right: 15px;
    top: 60px;
    font-size: 32px;
  }
  .action-modal .modal-content {
    border-radius: 0;
    border: 0;
    min-height: 100%;
  }
  .action-modal .modal-body {
    padding: 60px 15px;
  }
  .action-modal .content-logo {
    margin-bottom: 60px;
  }
  .action-modal-service .left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .action-modal-service .right {
    position: relative;
    left: 0;
    padding-right: 50px;
  }
  .action-modal-service .wrapper {
    color: #666;
  }
  .action-modal-service .wrapper .title {
    font-weight: bold;
  }
  .action-modal-service .list {
    width: 150px;
  }
  .action-modal-service .qr-section {
    margin-top: 20px;
    font-size: 14px;
  }
  .action-modal-service .qr-section .image-qr {
    width: 90px;
  }
  .float-block {
    text-align: center;
  }
  .float-block .action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    line-height: 80px;
    color: #003f80;
    font-size: 20px;
  }
  .float-block .action .icon-service,
  .float-block .action .icon-chat {
    font-size: 20px;
  }
  .float-block .action.action-service {
    background: #f2f2f2;
  }
  .float-block .action.action-chat {
    background: #e5e5e5;
  }
}
.language-en .action-modal-service .wrapper {
  font-size: 12px;
}
.language-en .action-modal-service .wrapper .title {
  line-height: 1.2;
}
.language-en .action-modal-service .list .item {
  min-width: 60px;
}
.language-en .action-modal-service .qr-section {
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .language-en .action-modal-service .wrapper .title {
    font-size: 14px;
  }
}
.index .index-banner {
  height: calc(100vh - 69px);
}
.index .index-banner .top-swiper {
  height: 100%;
}
.index .index-banner .swiper-slide {
  background-position: center;
  background-size: cover;
}
.index .index-banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}
.index .index-banner .banner-wrapper .banner-title {
  color: #fff;
  font-size: 54px;
  font-weight: lighter;
}
.index .index-banner .banner-wrapper .banner-subtitle {
  color: #fff;
  font-size: 54px;
}
.index .index-banner .banner-wrapper .banner-content {
  font-size: 24px;
}
.index .index-banner .banner-wrapper .button-next {
  margin-left: 40px;
}
.index .index-banner .banner-wrapper .iconfont {
  font-size: 32px;
}
.index .index-banner .banner-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 1;
  color: #fff;
}
.index .index-banner .banner-bottom .banner-links-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.index .index-banner .banner-bottom .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index .index-banner .banner-bottom .item {
  position: relative;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-top: 20px;
}
.index .index-banner .banner-bottom .item:hover {
  opacity: 1;
  padding-top: 0;
  padding-bottom: 20px;
}
.index .index-banner .banner-bottom .image {
  height: 60px;
  max-width: 100%;
}
.index .index-introduce {
  padding: 60px 80px;
}
.index .index-introduce .wrapper {
  position: relative;
  height: 600px;
}
.index .index-introduce .list {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
  padding: 30px;
  height: 100%;
  text-align: center;
}
.index .index-introduce .list .title {
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  font-size: 40px;
  line-height: 46px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index .index-introduce .list .title.active {
  opacity: 1;
  font-size: 46px;
}
.index .index-introduce .list .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index .index-introduce .list .active .content {
  opacity: 1;
}
.index .index-introduce .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.index .index-introduce .introduce-swiper {
  height: 100%;
}
.index .index-introduce .introduce-swiper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.index .index-introduce .swiper-pagination {
  top: 30px;
  padding: 0 60px;
  bottom: auto;
  text-align: right;
}
.index .index-introduce .swiper-pagination .swiper-pagination-bullet {
  height: 4px;
  width: 6px;
  background: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
.index .index-introduce .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
}
.index .index-reports {
  position: relative;
  padding: 80px 0 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#001630), to(#002852));
  background-image: linear-gradient(to bottom, #001630, #002852);
}
.index .index-reports .reports-title {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
}
.index .index-reports .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
}
.index .index-reports .right .right-wrapper {
  max-width: 270px;
}
.index .index-reports .right .content-title {
  margin-bottom: 80px;
}
.index .index-reports .right .link {
  font-size: 18px;
}
.index .index-reports .right .link .text {
  margin-right: 8px;
}
.index .index-reports .wrapper {
  min-height: 250px;
  margin-right: calc(50% - 255px);
}
.index .index-reports .wrapper .content {
  padding: 20px;
  background: #081026;
  color: #fff;
}
.index .index-reports .wrapper .content .title {
  font-size: 24px;
}
.index .index-reports .wrapper .content .link {
  color: #fff;
}
.index .index-reports .wrapper .content .text {
  margin-right: 8px;
}
.index .index-reports .wrapper .swiper-slide {
  width: 440px;
}
.index .index-reports .wrapper .swiper-slide .image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 250px;
  background: #fff;
}
.index .index-reports .wrapper .swiper-slide .image {
  display: block;
  width: 100%;
  max-height: 250px;
}
.index .index-reports .wrapper .swiper-button {
  padding: 20px 0;
  text-align: right;
  color: #fff;
}
.index .index-reports .wrapper .swiper-button .iconfont {
  font-size: 32px;
}
.index .index-reports .wrapper .swiper-button .button-next {
  margin-left: 40px;
}
.index .index-recent {
  position: relative;
  padding: 80px 0 20px;
}
.index .index-recent .recent-title {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
}
.index .index-recent .left {
  width: 270px;
}
.index .index-recent .left .content-title {
  margin-bottom: 80px;
}
.index .index-recent .left .link {
  font-size: 18px;
}
.index .index-recent .left .link .text {
  margin-right: 8px;
}
.index .index-recent .wrapper {
  min-height: 250px;
  margin-left: calc(50% - 255px);
}
.index .index-recent .wrapper .content {
  padding: 20px;
  background: #081026;
  color: #fff;
}
.index .index-recent .wrapper .content .title {
  font-size: 24px;
}
.index .index-recent .wrapper .content .link {
  color: #fff;
}
.index .index-recent .wrapper .content .text {
  margin-right: 8px;
}
.index .index-recent .wrapper .swiper-slide {
  width: 440px;
}
.index .index-recent .wrapper .swiper-slide .image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 250px;
  background: #fff;
}
.index .index-recent .wrapper .swiper-slide .image {
  display: block;
  width: 100%;
  max-height: 250px;
}
.index .index-recent .wrapper .swiper-button {
  padding: 20px 0;
  color: #003f80;
}
.index .index-recent .wrapper .swiper-button .iconfont {
  font-size: 32px;
}
.index .index-recent .wrapper .swiper-button .button-next {
  margin-left: 40px;
}
.index .index-exhibition {
  padding: 80px 0;
  background: url("../images/index/exhibition.png") center no-repeat;
  background-size: cover;
  color: #fff;
}
.index .index-exhibition .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.index .index-exhibition .left {
  width: 300px;
}
.index .index-exhibition .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index .index-exhibition .item .title {
  font-size: 62px;
  line-height: 1;
}
.index .index-exhibition .item .text {
  font-size: 18px;
}
.index .index-exhibition .item.item1 {
  min-width: 90px;
}
.index .index-exhibition .item.item2 {
  min-width: 164px;
}
.index .index-exhibition .item.item3 {
  min-width: 200px;
}
.index .index-exhibition .item.item4 {
  min-width: 190px;
}
.index .index-exhibition .divider {
  width: 1px;
  background-color: #fff;
}
.index .index-service {
  color: #fff;
  text-align: center;
}
.index .index-service .image {
  display: block;
  width: 100%;
}
.index .index-service .item {
  height: 100%;
}
.index .index-service .service-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 100%;
}
.index .index-service .wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#001630), to(#003267));
  background-image: linear-gradient(to bottom, #001630, #003267);
  padding-bottom: 80px;
}
.index .index-service .wrapper .title {
  color: #fff;
  margin-top: -28px;
  margin-bottom: 24px;
  font-weight: bold;
}
.index .index-service .wrapper .content {
  padding: 0 15px;
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .index .index-banner {
    height: calc(100vh - 58px);
  }
  .index .index-banner .banner-wrapper {
    top: 30%;
  }
  .index .index-banner .banner-wrapper .banner-title {
    font-size: 30px;
    font-weight: normal;
  }
  .index .index-banner .banner-wrapper .banner-subtitle {
    font-size: 30px;
    font-weight: 500;
  }
  .index .index-banner .banner-wrapper .banner-content {
    font-size: 14px;
  }
  .index .index-banner .banner-wrapper .button-next {
    margin-left: 16px;
  }
  .index .index-banner .banner-wrapper .iconfont {
    font-size: 32px;
  }
  .index .index-banner .banner-bottom .banner-links-title {
    font-size: 14px;
  }
  .index .index-banner .banner-bottom .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .index .index-banner .banner-bottom .item {
    max-width: 25%;
    opacity: 1;
    padding-top: 0;
  }
  .index .index-banner .banner-bottom .item:hover {
    padding-bottom: 0;
  }
  .index .index-introduce {
    padding: 10px 0 0 0;
  }
  .index .index-introduce .wrapper {
    height: auto;
  }
  .index .index-introduce .list {
    background: #003f80;
    padding: 40px 60px;
  }
  .index .index-introduce .list .item {
    padding: 0;
  }
  .index .index-introduce .list .title {
    opacity: 1;
    font-size: 14px;
    line-height: 27px;
  }
  .index .index-introduce .list .title.active {
    font-size: 18px;
    font-weight: bold;
  }
  .index .index-introduce .list .content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    font-size: 12px;
    min-height: 72px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .index .index-introduce .list .active .content {
    display: block;
    opacity: 1;
  }
  .index .index-introduce .swiper-button {
    position: absolute;
    left: 20px;
    top: 40px;
    line-height: 1;
  }
  .index .index-introduce .swiper-button .iconfont {
    font-size: 24px;
  }
  .index .index-introduce .swiper-button.button-next {
    left: auto;
    right: 20px;
  }
  .index .index-introduce .background {
    position: static;
  }
  .index .index-introduce .introduce-swiper {
    height: 280px;
  }
  .index .index-reports {
    padding-top: 40px;
    padding-bottom: 0;
    background: #eee;
  }
  .index .index-reports .reports-title {
    position: static;
  }
  .index .index-reports .right {
    color: #000;
    margin-bottom: 20px;
  }
  .index .index-reports .right .right-wrapper {
    max-width: unset;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index .index-reports .right .content-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
  }
  .index .index-reports .right .link {
    font-size: 14px;
  }
  .index .index-reports .wrapper {
    min-height: unset;
    padding: 0 15px;
    margin-right: 0;
  }
  .index .index-reports .wrapper .content {
    background: #fff;
    color: #000;
  }
  .index .index-reports .wrapper .content .title {
    font-size: 16px;
  }
  .index .index-reports .wrapper .content .text {
    font-size: 12px;
  }
  .index .index-reports .wrapper .content .link {
    color: #000;
  }
  .index .index-reports .wrapper .swiper-slide {
    width: 100%;
  }
  .index .index-reports .wrapper .swiper-slide .image-wrapper {
    height: auto;
  }
  .index .index-reports .wrapper .swiper-slide .image {
    max-height: unset;
  }
  .index .index-recent {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #eee;
  }
  .index .index-recent .recent-title {
    position: static;
  }
  .index .index-recent .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
  .index .index-recent .left .content-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
  }
  .index .index-recent .left .link {
    font-size: 14px;
  }
  .index .index-recent .wrapper {
    min-height: unset;
    padding: 0 15px;
    margin-left: 0;
  }
  .index .index-recent .wrapper .content {
    padding-top: 25px;
    background: #080f27;
    color: #fff;
  }
  .index .index-recent .wrapper .content .title {
    font-size: 16px;
  }
  .index .index-recent .wrapper .content .link {
    color: #fff;
  }
  .index .index-recent .wrapper .content .text {
    font-size: 12px;
  }
  .index .index-recent .wrapper .swiper-slide {
    width: 100%;
  }
  .index .index-recent .wrapper .swiper-slide .image-wrapper {
    height: auto;
  }
  .index .index-recent .wrapper .swiper-slide .image {
    max-height: unset;
  }
  .index .index-exhibition {
    padding: 40px 0;
    background-image: url("../images/index/m-exhibition.png");
  }
  .index .index-exhibition .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .index .index-exhibition .content-title {
    text-align: center;
  }
  .index .index-exhibition .left {
    width: 100%;
    margin-bottom: 20px;
  }
  .index .index-exhibition .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .index .index-exhibition .item {
    min-width: unset !important;
    width: 50%;
    margin-bottom: 20px;
    text-align: center;
  }
  .index .index-exhibition .item .title {
    font-size: 38px;
  }
  .index .index-exhibition .item .text {
    font-size: 12px;
  }
  .index .index-exhibition .divider {
    width: 0;
  }
  .index .index-service {
    padding: 20px 15px;
    background: #eee;
    color: #000;
  }
  .index .index-service .item {
    height: auto;
  }
  .index .index-service .service-content {
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }
  .index .index-service .wrapper {
    background: #fff;
    padding-bottom: 20px;
  }
  .index .index-service .wrapper .title {
    color: #000;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    -webkit-text-stroke: 0;
  }
  .index .index-service .wrapper .content {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .index .index-service .wrapper .iconfont {
    font-size: 14px;
  }
}
.language-en .index .index-introduce .list .title {
  font-size: 32px;
  line-height: 36px;
}
.language-en .index .index-introduce .list .title.active {
  font-size: 36px;
}
.language-en .index .index-introduce .list .content-item {
  display: none;
}
.language-en .index .index-introduce .list .content-item .content {
  min-height: 81px;
}
.language-en .index .index-introduce .list .content-item.active {
  display: block;
}
.language-en .index .index-introduce .list .content-item.first {
  text-align: left;
}
.language-en .index .index-introduce .list .content-item.last {
  text-align: right;
}
.language-en .index .index-recent .wrapper .content .text {
  margin-left: 8px;
  margin-right: 20px;
}
.language-en .index .index-exhibition .item .title {
  font-size: 46px;
}
.language-en .index .index-exhibition .item .text {
  font-size: 12px;
}
.language-en .index .index-exhibition .item.item1 {
  min-width: 105px;
}
.language-en .index .index-exhibition .item.item2 {
  min-width: 130px;
}
.language-en .index .index-exhibition .item.item3 {
  min-width: 220px;
}
.language-en .index .index-exhibition .item.item4 {
  min-width: 160px;
}
.language-en .index .index-exhibition .divider {
  max-height: 46px;
}
.language-en .index .index-service .wrapper .title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

@media (max-width: 991.98px) {
  .language-en .index .index-introduce .list {
    padding: 40px 20px 60px;
  }
  .language-en .index .index-introduce .list .title {
    font-size: 10px;
  }
  .language-en .index .index-introduce .list .title.active {
    font-size: 14px;
  }
  .language-en .index .index-introduce .list .content-item .content {
    text-align: center;
  }
  .language-en .index .index-introduce .swiper-button {
    top: auto;
    bottom: 20px;
  }
  .language-en .index .index-exhibition .item .title {
    font-size: 38px;
  }
}
.about .about-banner {
  background-image: url("../images/about/banner.png");
}
.about .about-banner .nav {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.about .about-banner .nav .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#001834), to(#003266));
  background-image: linear-gradient(to bottom, #001834, #003266);
  font-size: 24px;
  border-radius: 10px;
  text-align: center;
}
.about .about-banner .nav .divider {
  width: 1px;
  height: 20px;
  background: #fff;
}
.about .about-introduction {
  background: #f2f2f2;
  padding: 120px 0 80px;
}
.about .about-introduction .introduction-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about .about-introduction .introduction-head .extra {
  font-size: 16px;
  text-align: right;
  line-height: 2;
}
.about .about-introduction .content-title {
  margin-bottom: 80px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about .about-introduction .wrapper {
  border-radius: 10px;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.about .about-introduction .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 80px 0;
}
.about .about-introduction .content .title {
  font-size: 28px;
}
.about .about-introduction .content .subtitle {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 20px;
}
.about .about-introduction .content .subtitle-number {
  font-size: 52px;
}
.about .about-introduction .content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  line-height: 2;
}
.about .about-introduction .image-block {
  margin-top: 60px;
  margin-left: 20px;
  margin-right: 20px;
  text-align: center;
  background-image: url("../images/about/introduction-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about .about-introduction .image {
  display: block;
  width: 100%;
}
.about .about-introduction .image-logo {
  max-width: 100%;
  margin-top: -20px;
  margin-bottom: 40px;
}
.about .about-honors {
  padding: 80px 0;
  background: url("../images/about/honors.png") center no-repeat;
  background-size: cover;
}
.about .about-honors .content-title {
  margin-bottom: 60px;
}
.about .about-honors .list {
  row-gap: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about .about-honors .item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about .about-honors .image {
  height: 90px;
}
.about .about-events {
  padding: 80px 0;
}
.about .about-events .events-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about .about-events .events-head .extra {
  font-size: 16px;
  text-align: right;
}
.about .about-events .content-title {
  margin-bottom: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about .about-events .list {
  position: relative;
}
.about .about-events .list:before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 120px;
  width: 2px;
  background: #001531;
}
.about .about-events .list .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.about .about-events .list .year {
  position: relative;
  width: 180px;
  font-size: 48px;
}
.about .about-events .list .year:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 46px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 2px solid #001531;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.about .about-events .list .year:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 56px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #001531;
  border-radius: 50%;
  z-index: 2;
}
.about .about-events .list .text {
  font-size: 26px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about .about-events .more {
  text-align: center;
  font-size: 16px;
}
.about .about-culture {
  padding-bottom: 80px;
}
.about .about-culture .wrapper {
  border-radius: 10px;
  padding: 40px 60px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#001937), to(#003e7d));
  background-image: linear-gradient(to bottom right, #001937, #003e7d);
}
.about .about-culture .item {
  padding: 30px 20px;
}
.about .about-culture .item:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.about .about-culture .title {
  font-size: 40px;
}
.about .about-culture .subtitle {
  font-size: 20px;
}
.about .about-culture .content {
  font-size: 18px;
}
.about .about-core {
  padding: 80px 0;
  background: url("../images/about/core.png") center no-repeat;
  background-size: cover;
  color: #fff;
}
.about .about-core .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about .about-core .left {
  width: 300px;
}
.about .about-core .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about .about-core .item .title {
  font-size: 62px;
  line-height: 1;
}
.about .about-core .item .text {
  font-size: 18px;
}
.about .about-core .divider {
  width: 1px;
  background-color: #fff;
}

@media (min-width: 1200px) {
  .about .about-honors .list .col:nth-child(4) .item {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .about .about-honors .list .col:nth-child(5) .item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-left: 70px;
  }
}
@media (max-width: 991.98px) {
  .about .about-banner {
    background-image: url("../images/about/m-banner.png");
  }
  .about .about-introduction {
    background: #fff;
    padding: 40px 0;
  }
  .about .about-introduction .introduction-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    text-align: center;
  }
  .about .about-introduction .introduction-head .extra {
    font-size: 14px;
    text-align: center;
  }
  .about .about-introduction .introduction-head .extra .span {
    display: block;
  }
  .about .about-introduction .content-title {
    margin-bottom: 20px;
  }
  .about .about-introduction .wrapper {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .about .about-introduction .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 10px 0;
  }
  .about .about-introduction .content .title {
    font-size: 20px;
  }
  .about .about-introduction .content .subtitle {
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .about .about-introduction .content .subtitle-number {
    font-size: 32px;
  }
  .about .about-introduction .content .left {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
  }
  .about .about-introduction .content .left > br {
    display: none;
  }
  .about .about-introduction .content .right {
    padding-top: 20px;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 20px;
    text-align: center;
  }
  .about .about-introduction .image-block {
    margin-top: 0;
    margin-left: -15px;
    margin-right: -15px;
    background-image: url("../images/about/m-introduction-bg.png");
  }
  .about .about-introduction .image-logo {
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .about .about-honors {
    padding: 40px 0;
  }
  .about .about-honors .content-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .about .about-honors .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    row-gap: 20px;
  }
  .about .about-honors .image {
    height: 60px;
  }
  .about .about-events {
    padding: 40px 0;
  }
  .about .about-events .events-head {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .about .about-events .events-head .extra {
    font-size: 14px;
    text-align: center;
  }
  .about .about-events .content-title {
    margin-bottom: 20px;
    text-align: center;
  }
  .about .about-events .list:before {
    content: "";
    top: 21px;
    bottom: 21px;
    left: 90px;
    width: 1px;
    background: #001531;
  }
  .about .about-events .list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  .about .about-events .list .year {
    padding-left: 15px;
    width: 120px;
    font-size: 24px;
  }
  .about .about-events .list .year:before {
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    border: 1px solid #001531;
  }
  .about .about-events .list .year:after {
    right: 27px;
    width: 6px;
    height: 6px;
  }
  .about .about-events .list .text {
    font-size: 14px;
  }
  .about .about-events .more {
    font-size: 14px;
  }
  .about .about-culture {
    padding-bottom: 40px;
  }
  .about .about-culture .wrapper {
    border-radius: 5px;
    padding: 30px 15px;
  }
  .about .about-culture .item {
    padding: 15px;
    text-align: center;
  }
  .about .about-culture .title {
    font-size: 20px;
  }
  .about .about-culture .subtitle {
    font-size: 14px;
  }
  .about .about-culture .content {
    font-size: 8px;
  }
  .about .about-core {
    padding: 40px 0;
  }
  .about .about-core .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about .about-core .content-title {
    text-align: center;
  }
  .about .about-core .left {
    width: 100%;
    margin-bottom: 20px;
  }
  .about .about-core .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about .about-core .item {
    width: 50%;
    margin-bottom: 20px;
    text-align: center;
  }
  .about .about-core .item .title {
    font-size: 38px;
  }
  .about .about-core .item .text {
    font-size: 12px;
  }
  .about .about-core .divider {
    width: 0;
  }
}
.language-en .about .about-introduction .content-title {
  margin-bottom: 40px;
}
.language-en .about .about-introduction .introduction-head {
  display: block;
}
.language-en .about .about-introduction .introduction-head .extra {
  text-align: left;
  line-height: 1.5;
  margin-bottom: 40px;
}
.language-en .about .about-introduction .introduction-head .extra .span {
  display: block;
}
.language-en .about .about-introduction .content .right {
  text-align: right;
  float: right;
  padding-left: 40px;
}
.language-en .about .about-honors .list {
  row-gap: 80px;
}
.language-en .about .about-honors .image {
  height: 100px;
}
.language-en .about .about-events .events-head {
  display: block;
}
.language-en .about .about-events .events-head .extra {
  text-align: left;
  margin-bottom: 40px;
}
.language-en .about .about-events .list .text {
  font-size: 16px;
}
.language-en .about .about-core .divider {
  max-height: 72px;
}

@media (max-width: 991.98px) {
  .language-en .about .about-introduction .introduction-head .extra {
    text-align: justify;
  }
  .language-en .about .about-introduction .introduction-head .extra .span {
    display: inline;
    font-size: 14px;
  }
  .language-en .about .about-introduction .content .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    margin-bottom: 0;
    text-align: justify;
  }
  .language-en .about .about-introduction .content .right {
    text-align: center;
    float: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .language-en .about .about-honors .list {
    row-gap: 20px;
  }
  .language-en .about .about-honors .list .image {
    padding: 0;
    max-width: 80%;
    max-height: 100px;
  }
  .language-en .about .about-events .list .text {
    font-size: 12px;
  }
  .language-en .about .about-events .list > .item:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 90px;
    width: 1px;
    height: 50%;
    background: #fff;
  }
}
.join .join-banner {
  background: url("../images/join/banner.png") center no-repeat;
  background-size: cover;
}
.join .join-banner .banner-content {
  padding: 160px 0 60px;
}
.join .join-banner .banner-title {
  font-size: 62px;
}
.join .join-banner .banner-subtitle {
  font-size: 24px;
}
.join .join-banner .banner-bottom {
  padding-top: 200px;
}
.join .join-banner .banner-bottom .item {
  position: relative;
  text-align: center;
}
.join .join-banner .banner-bottom .link {
  display: block;
  padding: 16px 0;
  font-size: 24px;
}
.join .join-banner .banner-bottom .link:after {
  content: "";
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: #00aaff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.join .join-banner .banner-bottom .link:hover:after {
  opacity: 1;
}
.join .join-explore {
  padding-top: 80px;
}
.join .join-explore .content-title {
  margin-bottom: 140px;
}
.join .join-explore .position {
  color: #004180;
}
.join .join-explore .position .text {
  font-size: 28px;
  margin-right: 16px;
}
.join .join-explore .position .iconfont {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.join .join-explore .nav {
  margin-bottom: 60px;
}
.join .join-explore .nav-link {
  position: relative;
  font-size: 20px;
  padding-left: 0;
  padding-right: 0;
  margin-right: 48px;
  color: #808080;
}
.join .join-explore .nav-link:hover, .join .join-explore .nav-link.active {
  color: #000000;
}
.join .join-explore .nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #000;
}
.join .join-explore .job-form {
  width: 500px;
  margin-bottom: 40px;
}
.join .join-explore .input-group {
  background: #f6f6f6;
}
.join .join-explore .form-control {
  padding-left: 32px;
  background: transparent;
  border: 0;
}
.join .join-explore .btn {
  padding-left: 24px;
  padding-right: 24px;
}
.join .join-explore .btn .iconfont {
  margin-right: 8px;
}
.join .join-explore .image-block {
  text-align: center;
  background-image: url("../images/join/explore-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.join .join-explore .image-block .image {
  display: block;
  width: 100%;
}
.join .join-list {
  padding-bottom: 80px;
}
.join .join-list .wrapper {
  padding: 24px 0;
  border-bottom: 2px solid #333;
}
.join .join-list .title {
  font-size: 24px;
  color: #000;
  margin-bottom: 24px;
}
.join .join-list .content {
  font-size: 18px;
}
.join .join-list .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}
.join .join-list .list .item {
  min-width: 530px;
}
.join .join-list .item-info {
  color: #808080;
}
.join .join-list .item-info .text {
  position: relative;
  padding-right: 12px;
}
.join .join-list .item-info .text + .text {
  padding-left: 12px;
}
.join .join-list .item-info .text + .text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  height: 18px;
  border-left: 2px solid #808080;
}
.join .join-list .more {
  text-align: center;
  font-size: 16px;
}
.join .join-activity {
  background: #001630;
}
.join .join-activity .content-title {
  padding: 80px 0;
}
.join .join-activity .activity-swiper .image {
  display: block;
  width: 100%;
}
.join .join-activity .activity-swiper .button-prev,
.join .join-activity .activity-swiper .button-next {
  position: absolute;
  cursor: pointer;
  bottom: 100px;
  left: calc(50% + 520px);
  z-index: 10;
}
.join .join-activity .activity-swiper .button-prev .iconfont,
.join .join-activity .activity-swiper .button-next .iconfont {
  color: #fff;
  font-size: 34px;
}
.join .join-activity .activity-swiper .button-prev {
  left: calc(50% + 420px);
}
.join .join-activity .image {
  display: block;
  max-width: 100%;
}
.join .join-activity .wrapper {
  padding: 40px 0 60px;
  color: #fff;
}
.join .join-activity .wrapper .title {
  font-size: 30px;
  height: 90px;
  overflow: hidden;
}
.join .join-activity .wrapper .content {
  font-size: 18px;
  height: 81px;
  overflow: hidden;
}
.join .join-global .content-title {
  padding: 80px 0;
}
.join .join-global .image-block {
  margin-bottom: 60px;
  text-align: center;
  background-image: url("../images/join/introduction-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.join .join-global .image {
  display: block;
  width: 100%;
}
.join .join-contact {
  padding-bottom: 100px;
}
.join .join-contact .content-title {
  padding-bottom: 32px;
  border-bottom: 2px solid #666;
  margin-bottom: 32px;
}
.join .join-contact .content-title.left {
  margin-right: 45px;
}
.join .join-contact .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.join .join-contact .list .item .item-local {
  min-width: 100px;
  font-size: 40px;
  font-weight: 500;
  color: #003f80;
}
.join .join-contact .list .item .item-content {
  font-size: 18px;
  color: #666;
}
.join .join-contact .list .item .item-label {
  min-width: 90px;
  text-wrap: nowrap;
}
.join .join-contact .list-qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
.join .join-contact .list-qr .item {
  font-size: 18px;
  margin-right: 48px;
}
.join .join-contact .list-qr .image-qr {
  margin-bottom: 18px;
}
.join .join-message {
  padding-bottom: 60px;
}
.join .join-message .content-title {
  margin-bottom: 40px;
}
.join .join-message .btn {
  color: #003f80;
  padding: 8px 28px;
  border-color: #003f80;
}
.join .join-message .btn:hover {
  color: #fff;
  background: #003f80;
}
.join .join-message .form-group {
  margin-bottom: 40px;
}
.join .join-message .form-control {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.join .join-message .bottom {
  text-align: center;
  margin-top: 40px;
}

.join-popover {
  border: 0;
  max-width: 400px;
  min-height: 120px;
  background: rgba(255, 255, 255, 0.8);
}
.join-popover.bs-popover-bottom {
  display: none;
}
.join-popover > .arrow:after {
  border-top-color: rgba(255, 255, 255, 0.8);
}
.join-popover .popover-body {
  padding: 20px;
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .join .join-banner .banner-content {
    padding: 80px 0;
  }
  .join .join-banner .banner-title {
    font-size: 30px;
  }
  .join .join-banner .banner-subtitle {
    font-size: 14px;
  }
  .join .join-culture {
    position: relative;
    padding: 40px 0;
  }
  .join .join-culture:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-bottom: 1px solid #ccc;
  }
  .join .join-culture .content-title {
    margin-bottom: 20px;
  }
  .join .join-culture .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    color: #003f80;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .join .join-culture .btn .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .join .join-culture .btn .iconfont {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .join .join-culture .btn.collapsed {
    color: #000;
  }
  .join .join-culture .btn.collapsed .iconfont {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .join .join-culture .collapse,
  .join .join-culture .collapsing {
    background: #f2f2f2;
    margin-left: -15px;
    margin-right: -15px;
  }
  .join .join-culture .content {
    padding: 15px;
    background: #f2f2f2;
  }
  .join .join-explore {
    padding-top: 40px;
  }
  .join .join-explore .content-title {
    text-align: center;
    margin-bottom: 40px;
  }
  .join .join-explore .position {
    color: #004180;
  }
  .join .join-explore .position .text {
    font-size: 14px;
    margin-right: 8px;
  }
  .join .join-explore .nav {
    margin-bottom: 20px;
  }
  .join .join-explore .nav-link {
    position: relative;
    font-size: 14px;
    margin-right: 24px;
  }
  .join .join-explore .job-form {
    width: auto;
    margin-bottom: 20px;
  }
  .join .join-explore .input-group {
    background: #f6f6f6;
  }
  .join .join-explore .form-control {
    padding-left: 16px;
    font-size: 14px;
  }
  .join .join-explore .btn {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
  }
  .join .join-list {
    padding-bottom: 40px;
  }
  .join .join-list .wrapper {
    padding: 24px 0;
    border-bottom: 0;
  }
  .join .join-list .title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .join .join-list .content {
    font-size: 14px;
  }
  .join .join-list .list {
    margin-bottom: 16px;
  }
  .join .join-list .list .item {
    width: 100%;
    min-width: unset;
  }
  .join .join-list .item-info .text + .text:before {
    height: 12px;
    border-left: 1px solid #808080;
  }
  .join .join-list .more {
    font-size: 14px;
  }
  .join .join-activity .content-title {
    padding: 40px 0;
    text-align: center;
  }
  .join .join-activity .activity-swiper .button-prev,
  .join .join-activity .activity-swiper .button-next {
    bottom: 150px;
    left: auto;
    right: 15px;
  }
  .join .join-activity .activity-swiper .button-prev .iconfont,
  .join .join-activity .activity-swiper .button-next .iconfont {
    font-size: 28px;
  }
  .join .join-activity .activity-swiper .button-prev {
    right: 65px;
  }
  .join .join-activity .wrapper {
    padding: 70px 0 50px;
  }
  .join .join-activity .wrapper .title {
    font-size: 18px;
    height: 54px;
    margin-bottom: 20px;
  }
  .join .join-activity .wrapper .content {
    font-size: 14px;
    height: 84px;
  }
  .join .join-global .content-title {
    padding: 40px 0;
    text-align: center;
  }
  .join .join-global .image-block {
    margin-bottom: 30px;
    background-image: url("../images/about/m-introduction-bg.png");
  }
  .join .join-contact {
    padding-bottom: 40px;
  }
  .join .join-contact .content-title {
    text-align: center;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 20px;
  }
  .join .join-contact .content-title.left {
    margin-right: 0;
  }
  .join .join-contact .list {
    margin-bottom: 40px;
  }
  .join .join-contact .list .item {
    margin-bottom: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .join .join-contact .list .item .item-local {
    min-width: 60px;
    font-size: 20px;
  }
  .join .join-contact .list .item .item-content {
    font-size: 12px;
  }
  .join .join-contact .list .item .item-label {
    min-width: 70px;
  }
  .join .join-contact .list-qr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
  .join .join-contact .list-qr .item {
    font-size: 14px;
    margin-right: 0;
  }
  .join .join-contact .list-qr .image-qr {
    width: 90px;
    margin-bottom: 8px;
  }
  .join .join-message {
    padding-bottom: 40px;
  }
}
.language-en .join .join-banner .banner-bottom .link {
  font-size: 20px;
}
.language-en .join .join-explore .nav-item {
  min-width: 110px;
}
.language-en .join .join-explore .nav-link {
  display: inline-block;
  margin-right: 12px;
}
.language-en .join .join-list .location {
  font-size: 14px;
  line-height: 36px;
  margin-bottom: 24px;
}
.language-en .join .join-list .location .iconfont {
  font-size: 12px;
}
.language-en .join .join-list .item-info .text {
  font-size: 14px;
}
.language-en .join .join-list .item-info .text + .text:before {
  top: 0;
}
.language-en .join .join-contact .list {
  margin-bottom: 40px;
}
.language-en .join .join-contact .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0;
}
.language-en .join .join-contact .list .item .item-local {
  font-size: 40px;
}
.language-en .join .join-contact .list .item .item-content {
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .language-en .join .join-list .content {
    font-size: 12px;
  }
  .language-en .join .join-list .location {
    font-size: 12px;
    line-height: 21px;
    margin-bottom: 12px;
  }
  .language-en .join .join-list .item-info .text {
    padding-right: 6px;
    line-height: 15px;
    font-size: 10px;
  }
  .language-en .join .join-list .item-info .text + .text {
    padding-left: 6px;
  }
  .language-en .join .join-list .item-info .text + .text:before {
    top: 1.5px;
  }
  .language-en .join .join-contact .list {
    margin-bottom: 20px;
  }
  .language-en .join .join-contact .list .item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .language-en .join .join-contact .list .item .item-local {
    font-size: 20px;
  }
  .language-en .join .join-contact .list .item .item-content {
    font-size: 12px;
  }
}
.business .business-banner {
  background-image: url("../images/business/banner.png");
}
.business .business-banner .subtitle {
  font-size: 18px;
  margin-bottom: 80px;
}
.business .business-banner .subtitle .text {
  margin-right: 8px;
}
.business .business-speciality {
  margin-top: -230px;
  overflow: hidden;
}
.business .business-speciality .speciality-swiper {
  padding-top: 62px;
  overflow: visible;
}
.business .business-speciality .speciality-swiper .swiper-slide {
  height: auto;
}
.business .business-speciality .swiper-button {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  line-height: 1;
}
.business .business-speciality .swiper-button .iconfont {
  font-size: 32px;
}
.business .business-speciality .swiper-button .button-next {
  margin-left: 40px;
}
.business .business-speciality .item {
  position: relative;
  height: 100%;
  padding: 20px 24px 44px;
  background: #f2f2f2;
  border-radius: 10px;
}
.business .business-speciality .item .link {
  position: absolute;
  bottom: 20px;
  left: 24px;
}
.business .business-speciality .item:hover .link {
  opacity: 1;
}
.business .business-speciality .wrapper {
  min-height: 120px;
}
.business .business-speciality .title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #003f80;
}
.business .business-speciality .subtitle {
  color: #003f80;
}
.business .business-speciality .image-wrapper {
  min-height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business .business-speciality .image {
  display: block;
  max-width: 100%;
}
.business .business-speciality .content {
  padding: 16px 0;
  border-top: 2px solid #333;
}
.business .business-speciality .link {
  opacity: 0;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.business .business-recent {
  position: relative;
  padding: 80px 0 20px;
}
.business .business-recent .recent-title {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
}
.business .business-recent .left {
  width: 300px;
}
.business .business-recent .left .content-title {
  margin-bottom: 80px;
}
.business .business-recent .left .link {
  font-size: 18px;
}
.business .business-recent .left .link .text {
  margin-right: 8px;
}
.business .business-recent .wrapper {
  min-height: 250px;
  margin-left: calc(50% - 255px);
}
.business .business-recent .wrapper .content {
  padding: 20px;
  background: #081026;
  color: #fff;
}
.business .business-recent .wrapper .content .title {
  font-size: 24px;
}
.business .business-recent .wrapper .content .link {
  color: #fff;
}
.business .business-recent .wrapper .content .text {
  margin-right: 8px;
}
.business .business-recent .wrapper .swiper-slide {
  width: 440px;
}
.business .business-recent .wrapper .swiper-slide .image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 250px;
  background: #fff;
}
.business .business-recent .wrapper .swiper-slide .image {
  display: block;
  width: 100%;
  max-height: 250px;
}
.business .business-recent .wrapper .swiper-button {
  padding: 20px 0;
  color: #003f80;
}
.business .business-recent .wrapper .swiper-button .iconfont {
  font-size: 32px;
}
.business .business-recent .wrapper .swiper-button .button-next {
  margin-left: 40px;
}

@media (max-width: 991.98px) {
  .business .business-banner {
    min-height: 360px;
    background-image: url("../images/business/m-banner.png");
  }
  .business .business-banner .title {
    margin-bottom: 20px;
  }
  .business .business-banner .subtitle {
    font-size: 14px;
  }
  .business .business-speciality {
    margin-top: -150px;
  }
  .business .business-speciality .speciality-swiper {
    padding-top: 42px;
  }
  .business .business-speciality .swiper-button .button-next {
    margin-left: 24px;
  }
  .business .business-speciality .swiper-slide {
    width: 70%;
  }
  .business .business-speciality .item {
    min-height: 190px;
    padding: 10px 15px 34px;
    border-radius: 5px;
  }
  .business .business-speciality .item .link {
    left: 15px;
    bottom: 10px;
  }
  .business .business-speciality .wrapper {
    min-height: 60px;
  }
  .business .business-speciality .title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .business .business-speciality .subtitle {
    font-size: 16px;
  }
  .business .business-speciality .image {
    max-width: 80%;
  }
  .business .business-speciality .content {
    padding: 10px 0;
    font-size: 10px;
    border-top: 1px solid #333;
  }
  .business .business-speciality .link {
    opacity: 1;
    font-size: 12px;
  }
  .business .business-recent {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .business .business-recent .recent-title {
    position: static;
  }
  .business .business-recent .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
  .business .business-recent .left .content-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
  }
  .business .business-recent .left .link {
    font-size: 14px;
  }
  .business .business-recent .wrapper {
    min-height: unset;
    padding: 0 15px;
    margin-left: 0;
  }
  .business .business-recent .wrapper .content {
    padding-top: 25px;
  }
  .business .business-recent .wrapper .content .title {
    font-size: 16px;
  }
  .business .business-recent .wrapper .content .text {
    font-size: 12px;
  }
  .business .business-recent .wrapper .swiper-slide {
    width: 100%;
  }
  .business .business-recent .wrapper .swiper-slide .image-wrapper {
    height: auto;
  }
  .business .business-recent .wrapper .swiper-slide .image {
    max-height: unset;
  }
}
.language-en .business .business-speciality {
  margin-top: -200px;
}
.language-en .business .business-banner .title {
  line-height: 1.2;
}
.language-en .business .business-recent .wrapper .content .text {
  margin-left: 8px;
  margin-right: 20px;
}

@media (max-width: 991.98px) {
  .language-en .business .business-banner .title {
    width: 100%;
  }
  .language-en .business .business-speciality {
    margin-top: -130px;
  }
}
.technology .technology-banner {
  background-image: url("../images/technology/banner.png");
}
.technology .technology-honer {
  padding: 80px 0;
}
.technology .technology-honer .list {
  row-gap: 80px;
}
.technology .technology-honer .item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.technology .technology-honer .image {
  padding: 0 25px;
  max-width: 100%;
}
.technology .technology-online {
  padding: 80px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#001630), to(#002d5c));
  background-image: linear-gradient(to bottom, #001630, #002d5c);
}
.technology .technology-online .content-title {
  margin-bottom: 80px;
}
.technology .technology-online .online-content {
  font-size: 28px;
}
.technology .technology-online .online-content .image-wrapper {
  text-align: right;
}
.technology .technology-online .online-swiper {
  margin-top: 40px;
  margin-bottom: 80px;
  background: #003f80;
}
.technology .technology-online .online-swiper .swiper-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.technology .technology-online .online-swiper .left {
  width: 350px;
}
.technology .technology-online .online-swiper .right {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.technology .technology-online .online-swiper .content {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
}
.technology .technology-online .online-swiper .content .title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.technology .technology-online .online-swiper .content .list {
  font-size: 20px;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.technology .technology-online .online-swiper .content .list .item {
  position: relative;
  padding-left: 20px;
}
.technology .technology-online .online-swiper .content .list .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 6px;
  background-color: #007bff;
}
.technology .technology-online .online-swiper .swiper-button {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 350px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: #003f80;
  min-height: 110px;
  z-index: 5;
}
.technology .technology-online .online-swiper .swiper-button .swiper-button-pagination {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 20px;
}
.technology .technology-online .online-swiper .swiper-button .swiper-pagination-bullet {
  font-size: 28px;
  background: transparent;
  height: auto;
  width: auto;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.technology .technology-online .online-swiper .swiper-button .swiper-pagination-bullet-active {
  font-weight: 500;
  opacity: 1;
}
.technology .technology-online .online-swiper .swiper-button .button-prev .iconfont,
.technology .technology-online .online-swiper .swiper-button .button-next .iconfont {
  font-size: 32px;
}
.technology .technology-online .online-flow .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.technology .technology-online .online-flow .list .item {
  position: relative;
  font-size: 18px;
  color: #fff;
  min-width: 110px;
  text-align: center;
}
.technology .technology-online .online-flow .list .item:not(:first-child):after {
  content: "";
  position: absolute;
  top: 50px;
  right: calc(100% + 10px);
  border-top: 1px dashed #0f83ff;
  width: 85px;
}
.technology .technology-online .online-flow .list .item .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  margin-bottom: 24px;
}
.technology .technology-digitl {
  padding: 80px 0;
}
.technology .technology-digitl .content-title {
  margin-bottom: 60px;
}
.technology .technology-digitl .content {
  line-height: 2;
  font-size: 18px;
}
.technology .technology-digitl .wrapper {
  margin-top: 60px;
  padding: 60px;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#001630), to(#003e7e));
  background-image: linear-gradient(to bottom, #001630, #003e7e);
  color: #fff;
  overflow: hidden;
}
.technology .technology-digitl .wrapper .section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 100%;
}
.technology .technology-digitl .wrapper .section .border-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.technology .technology-digitl .wrapper .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  margin-bottom: 40px;
}
.technology .technology-digitl .wrapper .title-wrapper .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 38px;
  padding: 0 20px;
  background-image: -webkit-gradient(linear, left top, right top, from(#003e7e), to(rgba(0, 22, 48, 0)));
  background-image: linear-gradient(to right, #003e7e, rgba(0, 22, 48, 0));
}
.technology .technology-digitl .wrapper .border-wrapper {
  padding: 20px;
  border: 2px solid #0062ba;
  border-radius: 10px;
}
.technology .technology-digitl .wrapper .border-wrapper .title {
  font-size: 22px;
}
.technology .technology-digitl .wrapper .border-wrapper .text {
  font-size: 16px;
}
.technology .technology-digitl .wrapper .image-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.technology .technology-meo {
  padding: 80px 0;
  background: #f2f2f2;
}
.technology .technology-meo .content-title {
  margin-bottom: 60px;
}
.technology .technology-meo .content {
  line-height: 2;
  font-size: 18px;
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .technology .technology-banner {
    background-image: url("../images/technology/m-banner.png");
  }
  .technology .technology-honer {
    padding: 40px 0;
  }
  .technology .technology-honer .list {
    row-gap: 20px;
  }
  .technology .technology-honer .list .image {
    padding: 0;
    max-width: 60%;
  }
  .technology .technology-online {
    padding: 40px 0;
  }
  .technology .technology-online .content-title {
    margin-bottom: 20px;
    text-align: center;
  }
  .technology .technology-online .online-content {
    font-size: 14px;
    text-align: center;
  }
  .technology .technology-online .online-swiper {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .technology .technology-online .online-swiper .content {
    top: 15px;
    left: 15px;
    right: 15px;
  }
  .technology .technology-online .online-swiper .content .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .technology .technology-online .online-swiper .content .list {
    font-size: 12px;
  }
  .technology .technology-online .online-swiper .content .list .item {
    padding-left: 10px;
  }
  .technology .technology-online .online-swiper .content .list .item:before {
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 4px;
  }
  .technology .technology-online .online-swiper .swiper-button {
    position: static;
    width: 100%;
    padding: 0 40px;
  }
  .technology .technology-online .online-swiper .swiper-button .swiper-pagination-bullet {
    min-width: 56px;
    font-size: 18px;
    line-height: 42px;
  }
  .technology .technology-online .online-swiper .swiper-button .swiper-pagination-bullet-active {
    font-size: 28px;
  }
  .technology .technology-online .online-flow .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .technology .technology-online .online-flow .list .item {
    width: 33.33%;
    font-size: 12px;
    margin-bottom: 30px;
  }
  .technology .technology-online .online-flow .list .item.item-order {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .technology .technology-online .online-flow .list .item.item-order:before {
    content: "";
    position: absolute;
    height: 40px;
    left: 100%;
    border-right: 1px dashed #0f83ff;
    border-bottom: 1px dashed #0f83ff;
    width: 50%;
  }
  .technology .technology-online .online-flow .list .item:not(:first-child):after {
    content: "";
    position: absolute;
    top: 40px;
    right: calc(100% - 20px);
    width: 40px;
  }
  .technology .technology-online .online-flow .list .item:last-child:after {
    content: none;
  }
  .technology .technology-online .online-flow .list .item .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 30px;
    height: 80px;
    margin-bottom: 0;
  }
  .technology .technology-digitl {
    padding: 40px 0;
  }
  .technology .technology-digitl .content-title {
    margin-bottom: 20px;
    text-align: center;
  }
  .technology .technology-digitl .content {
    line-height: 2;
    font-size: 14px;
  }
  .technology .technology-digitl .wrapper {
    margin-top: 20px;
    padding: 0;
    border-radius: 5px;
    text-align: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#001630), to(#002a57));
    background-image: linear-gradient(to bottom, #001630, #002a57);
  }
  .technology .technology-digitl .wrapper .title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: unset;
    margin-top: 20px;
    margin-bottom: 0;
  }
  .technology .technology-digitl .wrapper .title-wrapper .title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 18px;
    padding: 5px 20px;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 22, 48, 0)), color-stop(#003e7e), to(rgba(0, 22, 48, 0)));
    background-image: linear-gradient(to right, rgba(0, 22, 48, 0), #003e7e, rgba(0, 22, 48, 0));
  }
  .technology .technology-digitl .wrapper .border-wrapper {
    padding: 20px;
    border: 1px solid #0062ba;
    margin: 15px;
  }
  .technology .technology-digitl .wrapper .border-wrapper .title {
    font-size: 12px;
  }
  .technology .technology-digitl .wrapper .border-wrapper .title:before, .technology .technology-digitl .wrapper .border-wrapper .title:after {
    content: "路";
  }
  .technology .technology-digitl .wrapper .border-wrapper .text {
    font-size: 12px;
  }
  .technology .technology-digitl .wrapper .border-wrapper.border-wrapper-top {
    margin: 0;
    border: 0;
  }
  .technology .technology-meo {
    padding: 40px 0 10px;
    background: #f2f2f2;
  }
  .technology .technology-meo .content-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .technology .technology-meo .content {
    line-height: 2;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .technology .technology-meo .image {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width: 1200px) {
  .technology .technology-online .online-flow .list .item:not(:first-child):after {
    width: 125px;
  }
}
.language-en .technology .technology-online .online-content {
  font-size: 18px;
}
.language-en .technology .technology-online .online-swiper .content .title {
  max-width: 70%;
  font-size: 24px;
}
.language-en .technology .technology-online .online-swiper .swiper-button .swiper-pagination-bullet {
  font-size: 18px;
}
.language-en .technology .technology-online .online-flow .list .item:not(:first-child):after {
  width: 40px;
}
.language-en .technology .technology-digitl .wrapper .title-wrapper .title {
  font-size: 34px;
}
.language-en .technology .technology-digitl .wrapper .title-wrapper .img-fluid {
  margin-top: 30px;
}
.language-en .technology .technology-digitl .wrapper .border-wrapper .title {
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .language-en .technology .technology-online .online-content {
    font-size: 14px;
  }
  .language-en .technology .technology-online .online-swiper .content .title {
    max-width: 100%;
    font-size: 14px;
  }
  .language-en .technology .technology-online .online-swiper .content .list {
    font-size: 12px;
  }
  .language-en .technology .technology-digitl .wrapper .title-wrapper .img-fluid {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .language-en .technology .technology-online .online-flow .list .item:not(:first-child):after {
    width: 65px;
  }
}
.invest .invest-banner {
  background-image: url("../images/invest/banner.png");
}
.invest .invest-content {
  padding: 80px 0;
}
.invest .invest-content.grey {
  background: #f2f2f2;
}
.invest .invest-content .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.invest .invest-content .content-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.invest .invest-content .text {
  padding-top: 40px;
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 991.98px) {
  .invest .invest-content {
    padding: 40px 0 10px;
  }
  .invest .invest-content.grey {
    background: #fff;
  }
  .invest .invest-content .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .invest .invest-content .content-title {
    text-align: center;
  }
  .invest .invest-content .text {
    padding-top: 20px;
    font-size: 14px;
    line-height: 2;
  }
}
.market .market-banner {
  background-image: url("../images/market/banner.png");
}
.market .market-country {
  padding: 80px 0;
}
.market .market-country .country-map {
  margin-bottom: 80px;
}
.market .market-country .country-map .image-block {
  text-align: center;
  background-image: url("../images/market/introduction-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.market .market-country .country-map .image {
  display: block;
  width: 100%;
}
.market .market-country .country-swiper {
  height: 440px;
  padding: 32px 0;
}
.market .market-country .country-swiper .swiper-slide {
  height: auto;
}
.market .market-country .country-swiper .swiper-slide.swiper-slide-active .title {
  font-weight: bold;
  color: #003f80;
}
.market .market-country .country-swiper .swiper-slide.swiper-slide-active .list {
  opacity: 1;
}
.market .market-country .country-swiper .swiper-slide .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 125px;
}
.market .market-country .country-swiper .swiper-slide .list {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.market .market-country .country-swiper .swiper-slide .title {
  font-size: 48px;
  min-width: 200px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.market .market-country .country-swiper .swiper-slide .country-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
.market .market-country .country-swiper .swiper-slide .name {
  min-width: 50px;
  margin-right: 10px;
}
.market .market-country .country-swiper .swiper-slide .image {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
}
.market .market-country .country-swiper .button-prev-wrapper,
.market .market-country .country-swiper .button-next-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: #fff;
  z-index: 10;
}
.market .market-country .country-swiper .button-next-wrapper {
  top: auto;
  bottom: 0;
}
.market .market-country .country-swiper .button-prev,
.market .market-country .country-swiper .button-next {
  display: inline-block;
  margin-left: 84px;
}
.market .market-country .country-swiper .button-prev:hover,
.market .market-country .country-swiper .button-next:hover {
  color: #003f80;
}
.market .market-country .country-swiper .button-prev .iconfont,
.market .market-country .country-swiper .button-next .iconfont {
  font-size: 32px;
  line-height: 1;
}
.market .market-country .country-wrapper {
  display: none;
}
.market .market-country .country-wrapper.active {
  display: block;
}
.market .market-country .country-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 24px;
  margin-bottom: 20px;
}
.market .market-country .country-head .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.market .market-country .country-head .button-prev,
.market .market-country .country-head .button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 36px;
  cursor: pointer;
}
.market .market-country .country-head .button-prev:hover,
.market .market-country .country-head .button-next:hover {
  color: #003f80;
}
.market .market-country .country-head .button-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.market .market-country .country-head .button-next {
  margin-left: 24px;
}
.market .market-country .country-head .iconfont {
  font-size: 14px;
}
.market .market-country .content {
  padding: 40px 0;
  font-size: 16px;
  line-height: 2;
}
.market .market-buyers {
  padding: 80px 0;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#001630), to(#002b58));
  background-image: linear-gradient(to bottom, #001630, #002b58);
}
.market .market-buyers .content-title {
  margin-bottom: 80px;
}
.market .market-buyers .buyers-swiper {
  overflow: visible;
}
.market .market-buyers .button-wrapper {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.market .market-buyers .button-wrapper .button-next {
  margin-left: 48px;
}
.market .market-buyers .button-wrapper .iconfont {
  font-size: 34px;
}
.market .market-buyers .section {
  text-align: center;
  margin-bottom: 30px;
}
.market .market-buyers .wrapper {
  position: relative;
  margin-top: 12px;
  border-radius: 10px;
  background: #003f80;
}
.market .market-buyers .wrapper:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -12px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #003f80;
}
.market .market-buyers .head {
  color: #fff;
  padding: 16px 20px;
}
.market .market-buyers .head .title {
  font-size: 18px;
}
.market .market-buyers .head .name {
  font-size: 20px;
}
.market .market-buyers .content {
  border-radius: 10px;
  padding: 16px 20px;
  background: #fff;
}
.market .market-buyers .content .name {
  font-size: 20px;
  color: #003f80;
  margin-bottom: 40px;
}
.market .market-buyers .content .text-border {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 0 10px 10px 10px;
}
.market .market-buyers .content .text-border:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-bottom-left-radius: 10px;
  z-index: 1;
}
.market .market-buyers .content .text-border:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -1px;
  width: 0;
  height: 10px;
  border-left: 1px solid #ccc;
}
.market .market-buyers .content .text {
  position: relative;
  padding: 10px;
  min-height: 130px;
}
.market .market-buyers .content .text:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 9px;
  height: 0;
  border-top: 1px solid #fff;
}

@media (max-width: 991.98px) {
  .market .market-country {
    padding-top: 40px;
    padding-bottom: 0;
    background: #f3f3f3;
  }
  .market .market-country .country-map {
    margin-bottom: 40px;
    background: #f3f3f3;
  }
  .market .market-country .country-map .image-block {
    background-image: url("../images/market/m-introduction-bg.png");
  }
  .market .market-country .country-map .map-swiper .image {
    display: none;
  }
  .market .market-country .country-map .map-swiper .image.active {
    display: block;
  }
  .market .market-country .country-swiper {
    height: auto;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0 32px;
  }
  .market .market-country .country-swiper .swiper-slide {
    width: auto;
  }
  .market .market-country .country-swiper .swiper-slide .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .market .market-country .country-swiper .swiper-slide .title {
    font-size: 26px;
    min-width: unset;
    padding: 0 6px;
  }
  .market .market-country .country-swiper .swiper-slide .country-item {
    padding: 6px;
  }
  .market .market-country .country-swiper .swiper-slide .name {
    font-size: 12px;
    min-width: unset;
    margin-right: 0;
  }
  .market .market-country .country-swiper .swiper-slide .image {
    display: none;
  }
  .market .market-country .country-swiper .button-prev-wrapper,
  .market .market-country .country-swiper .button-next-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    height: 100%;
    background: #f3f3f3;
  }
  .market .market-country .country-swiper .button-next-wrapper {
    top: 0;
    bottom: auto;
    right: 0;
    left: auto;
  }
  .market .market-country .country-swiper .button-prev,
  .market .market-country .country-swiper .button-next {
    margin-left: 0;
  }
  .market .market-country .country-swiper .button-prev .iconfont,
  .market .market-country .country-swiper .button-next .iconfont {
    display: inline-block;
    line-height: 39px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .market .market-country .country-wrapper {
    padding: 30px;
    background: #fff;
  }
  .market .market-country .country-head {
    font-size: 14px;
  }
  .market .market-country .country-head .button-prev {
    line-height: 21px;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .market .market-country .country-head .button-next {
    line-height: 21px;
    margin-left: 24px;
  }
  .market .market-country .country-head .iconfont {
    font-size: 14px;
  }
  .market .market-country .content-title {
    text-align: center;
  }
  .market .market-country .content {
    font-size: 14px;
  }
  .market .market-buyers {
    margin-bottom: 10px;
    padding: 40px 0;
  }
  .market .market-buyers .content-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .market .market-buyers .buyers-swiper {
    overflow: visible;
  }
  .market .market-buyers .buyers-swiper .swiper-slide {
    width: 240px;
  }
  .market .market-buyers .button-wrapper {
    padding-top: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .market .market-buyers .section {
    margin: 0 auto;
    width: 120px;
    margin-bottom: 30px;
  }
  .market .market-buyers .wrapper {
    position: relative;
    margin-top: 12px;
    border-radius: 5px;
    background: #003f80;
  }
  .market .market-buyers .head {
    color: #fff;
    padding: 8px 10px;
  }
  .market .market-buyers .head .title {
    font-size: 12px;
  }
  .market .market-buyers .head .name {
    font-size: 14px;
  }
  .market .market-buyers .content {
    border-radius: 5px;
    padding: 8px 10px;
  }
  .market .market-buyers .content .name {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .market .market-buyers .content .text {
    font-size: 12px;
    min-height: 130px;
  }
}
.language-en .market .market-buyers .head .name {
  min-height: 60px;
}
.language-en .market .market-buyers .content .name {
  min-height: 60px;
  margin-bottom: 20px;
}
.language-en .market .market-buyers .content .text {
  min-height: 180px;
}
.language-en .market .market-country .country-head {
  font-size: 20px;
}

@media (max-width: 991.98px) {
  .language-en .market .market-buyers .head .name {
    min-height: 42px;
  }
  .language-en .market .market-buyers .content .name {
    min-height: 42px;
    margin-bottom: 10px;
  }
  .language-en .market .market-buyers .content .text {
    min-height: 160px;
  }
  .language-en .market .market-country .country-head {
    font-size: 14px;
  }
  .language-en .market .market-country .content {
    text-align: justify;
  }
}
.information .information-head {
  padding: 80px 0;
}
.information .information-nav {
  margin-bottom: 80px;
}
.information .information-nav .nav {
  margin-bottom: 40px;
}
.information .information-nav .nav-link {
  position: relative;
  font-size: 18px;
  margin-right: 40px;
  padding-left: 0;
  padding-right: 0;
}
.information .information-nav .nav-link.active {
  color: #003f80;
}
.information .information-nav .nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #003f80;
}
.information .information-nav .list {
  margin-bottom: 40px;
}
.information .information-nav .item {
  position: relative;
  display: block;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 24px 24px 48px;
  min-height: 220px;
  margin-bottom: 30px;
  color: #fff;
  overflow: hidden;
}
.information .information-nav .item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.information .information-nav .item:hover .link {
  top: 0;
  opacity: 1;
}
.information .information-nav .item .title {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
  z-index: 1;
}
.information .information-nav .item .date {
  position: relative;
  font-size: 18px;
  z-index: 1;
}
.information .information-nav .item .bottom {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 18px;
  z-index: 1;
}
.information .information-nav .item .link {
  opacity: 0;
  position: relative;
  top: 24px;
}
.information .information-nav .more {
  text-align: center;
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .information .information-head {
    padding: 40px 0;
  }
  .information .information-nav {
    margin-bottom: 40px;
  }
  .information .information-nav .nav {
    margin-bottom: 20px;
  }
  .information .information-nav .nav-link {
    font-size: 14px;
    margin-right: 20px;
  }
  .information .information-nav .nav-link.active:after {
    height: 1px;
  }
  .information .information-nav .list {
    margin-bottom: 20px;
  }
  .information .information-nav .list > .row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .information .information-nav .list > .row > .col-6 {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .information .information-nav .item {
    border-radius: 5px;
    padding: 24px 12px 36px;
    min-height: 140px;
    margin-bottom: 15px;
  }
  .information .information-nav .item .title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .information .information-nav .item .date {
    font-size: 12px;
  }
  .information .information-nav .item .bottom {
    bottom: 12px;
    right: 12px;
    font-size: 14px;
  }
  .information .information-nav .more {
    font-size: 14px;
  }
}
.language-en .information .information-nav .item .title {
  font-weight: normal;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .language-en .information .information-nav .nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.detail .detail-breadcrumb {
  background: #f4f4f4;
}
.detail .detail-breadcrumb .breadcrumb {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  margin-bottom: 0;
}
.detail .detail-breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: ">";
}
.detail .detail-wrapper {
  padding-top: 100px;
  padding-bottom: 80px;
}
.detail .detail-content .title {
  color: #003f80;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
.detail .detail-content .date {
  margin-bottom: 20px;
}
.detail .detail-content .share:after {
  content: "";
  height: 2px;
  background: #333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.detail .detail-content .share .iconfont {
  margin-right: 10px;
}
.detail .detail-content .content {
  padding: 40px 0;
}
.detail .detail-content .tags .tag {
  display: inline-block;
  padding: 6px 16px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #333;
  border-radius: 10rem;
}
.detail .detail-related .title {
  font-size: 24px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.detail .detail-related .list .item .image {
  display: block;
  width: 100%;
}
.detail .detail-related .list .item .item-title {
  padding: 12px 0;
}
.detail .detail-related .list .item .item-date {
  margin-bottom: 16px;
}
.detail .detail-more {
  padding: 80px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#001630), to(#002b5a));
  background-image: linear-gradient(to bottom, #001630, #002b5a);
}
.detail .detail-more .more-info {
  height: 100%;
  padding: 40px 24px;
  background: #fff;
  border-radius: 10px;
}
.detail .detail-more .more-info .head {
  min-height: 74px;
  font-size: 28px;
  margin-bottom: 24px;
}
.detail .detail-more .more-info .link:hover {
  color: #001630;
}
.detail .detail-more .item {
  margin-bottom: 24px;
}
.detail .detail-more .item .title {
  font-size: 18px;
}
.detail .detail-more .more-exhibition {
  min-height: 380px;
  height: 100%;
  padding: 40px 24px;
  background: url("../images/detail/more-exhibition-bg.png") center no-repeat;
  background-size: cover;
  border-radius: 10px;
}
.detail .detail-more .more-exhibition .title {
  color: #fff;
  font-size: 28px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.detail .detail-more .more-exhibition .link {
  font-size: 18px;
}

.post-content img {
  max-width: 100%;
  height: auto;
}

.detail-popover > .arrow:after {
  border-bottom-color: #f7f7f7;
}
.detail-popover #qrcode {
  margin: 0 auto;
  width: 128px;
  height: 128px;
}
.detail-popover .popover-header {
  text-align: center;
  font-size: 14px;
}
.detail-popover .popover-body {
  text-align: center;
  font-size: 12px;
}

.modal-copy .modal-content {
  width: 250px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .detail .detail-wrapper {
    padding: 40px 0;
  }
  .detail .detail-content .title {
    color: #000;
    font-size: 24px;
    text-align: center;
  }
  .detail .detail-content .date {
    text-align: center;
    margin-bottom: 20px;
  }
  .detail .detail-content .share:before {
    content: "";
    height: 1px;
    background: #333;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .detail .detail-content .share:after {
    height: 1px;
  }
  .detail .detail-content .share .iconfont {
    margin-left: 10px;
  }
  .detail .detail-content .content {
    padding: 20px 0;
  }
  .detail .detail-content .tags {
    margin-bottom: 40px;
  }
  .detail .detail-related .title {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .detail .detail-related .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .detail .detail-related .list .item {
    padding-left: 7.5px;
    padding-right: 7.5px;
    width: 50%;
  }
  .detail .detail-related .nav-link {
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .detail .detail-related .nav-link.active {
    color: #003f80;
  }
  .detail .detail-related .nav-link.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #003f80;
  }
  .detail .detail-more {
    padding: 0;
    margin-bottom: 10px;
    background: #fff;
  }
  .detail .detail-more .more-exhibition {
    min-height: 220px;
    margin-left: -15px;
    margin-right: -15px;
    padding: 20px 15px;
    border-radius: 0;
  }
  .detail .detail-more .more-exhibition .title {
    color: #fff;
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .detail .detail-more .more-exhibition .link {
    font-size: 12px;
  }
}
@media (max-width: 991.98px) {
  .language-en .detail .detail-related .nav-link {
    font-size: 12px;
    margin-right: 10px;
  }
}
.exhibition .exhibition-head {
  padding: 80px 0;
}
.exhibition .exhibition-head .head-search {
  height: 100%;
}
.exhibition .exhibition-head .input-group {
  background: #f6f6f6;
}
.exhibition .exhibition-head .form-control {
  padding-left: 32px;
  background: transparent;
  border: 0;
}
.exhibition .exhibition-head .btn {
  padding-left: 48px;
  padding-right: 48px;
}
.exhibition .exhibition-filter {
  margin-bottom: 40px;
}
.exhibition .exhibition-filter .filter-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
}
.exhibition .exhibition-filter .filter-header .link-reset {
  margin-left: 30px;
  display: none;
}
.exhibition .exhibition-filter .filter-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.exhibition .exhibition-filter .filter-list .item {
  font-size: 18px;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exhibition .exhibition-filter .filter-list .item.active {
  color: #003f80;
}
.exhibition .exhibition-filter .filter-list .item .text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 4px;
}
.exhibition .exhibition-filter .filter-list .item .iconfont {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.exhibition .exhibition-filter .filter-list .item.collapsed .iconfont {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.exhibition .exhibition-filter .filter-content {
  background: #f6f6f6;
}
.exhibition .exhibition-filter .filter-content .list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 0;
}
.exhibition .exhibition-filter .filter-content .list.child {
  display: none;
}
.exhibition .exhibition-filter .filter-content .list.child.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.exhibition .exhibition-filter .filter-content .list .item {
  padding: 10px 0;
  font-size: 18px;
  color: #808080;
  margin-right: 20px;
  min-width: 40px;
}
.exhibition .exhibition-filter .filter-content .list .item:hover, .exhibition .exhibition-filter .filter-content .list .item.active {
  color: #003f80;
  font-weight: bold;
}
.exhibition .exhibition-list {
  margin-bottom: 80px;
}
.exhibition .exhibition-list .list {
  margin-bottom: 40px;
}
.exhibition .exhibition-list .item {
  position: relative;
  border-radius: 10px;
  padding: 24px 24px 48px;
  min-height: 310px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
}
.exhibition .exhibition-list .item .wrapper {
  min-height: 82px;
}
.exhibition .exhibition-list .item .image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exhibition .exhibition-list .item .image {
  display: block;
  max-width: 100%;
  max-height: 120px;
}
.exhibition .exhibition-list .item .title {
  padding-top: 10px;
  font-weight: 500;
  font-size: 20px;
  color: #003f80;
  line-height: 1.2;
}
.exhibition .exhibition-list .item .subtitle {
  font-size: 16px;
  color: #003f80;
}
.exhibition .exhibition-list .item .date {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 2px solid #666;
}
.exhibition .exhibition-list .item .country {
  margin-bottom: 10px;
}
.exhibition .exhibition-list .item .text {
  font-size: 18px;
  color: #666;
}
.exhibition .exhibition-list .item .bottom {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 18px;
}
.exhibition .exhibition-list .more {
  text-align: center;
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .exhibition .exhibition-head {
    padding: 40px 0 20px;
  }
  .exhibition .exhibition-head .content-title {
    margin-bottom: 40px;
  }
  .exhibition .exhibition-head .form-control {
    font-size: 14px;
    padding-left: 16px;
  }
  .exhibition .exhibition-head .btn {
    font-size: 14px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .exhibition .exhibition-filter {
    margin-bottom: 20px;
  }
  .exhibition .exhibition-filter .filter-header {
    padding-bottom: 10px;
  }
  .exhibition .exhibition-filter .filter-header .link-reset {
    margin-left: 10px;
    font-size: 10px;
  }
  .exhibition .exhibition-filter .filter-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
  }
  .exhibition .exhibition-filter .filter-list .item {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 25%;
  }
  .exhibition .exhibition-filter .filter-content .list {
    padding: 5px 0;
  }
  .exhibition .exhibition-filter .filter-content .list .item {
    padding: 5px 0;
    font-size: 12px;
  }
  .exhibition .exhibition-list {
    margin-bottom: 40px;
  }
  .exhibition .exhibition-list .list {
    margin-bottom: 40px;
  }
  .exhibition .exhibition-list .list > .row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .exhibition .exhibition-list .list > .row > .col-6 {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .exhibition .exhibition-list .item {
    border-radius: 5px;
    padding: 15px 15px 40px;
    min-height: 200px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
  }
  .exhibition .exhibition-list .item .wrapper {
    min-height: 62px;
  }
  .exhibition .exhibition-list .item .image-wrapper {
    height: 90px;
  }
  .exhibition .exhibition-list .item .image {
    max-height: 90px;
  }
  .exhibition .exhibition-list .item .title {
    font-size: 14px;
  }
  .exhibition .exhibition-list .item .subtitle {
    font-size: 12px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .exhibition .exhibition-list .item .date {
    border-top: 1px solid #666;
  }
  .exhibition .exhibition-list .item .text {
    font-size: 12px;
  }
  .exhibition .exhibition-list .item .bottom {
    bottom: 15px;
    left: 15px;
    font-size: 14px;
  }
  .exhibition .exhibition-list .more {
    font-size: 14px;
  }
}
.research .research-head {
  padding: 80px 0;
}
.research .research-tips {
  margin-bottom: 40px;
  font-size: 18px;
}
.research .research-tips .tip-contact {
  color: #003f80;
}
.research .research-tips .tip-item {
  margin-bottom: 10px;
}
.research .research-form {
  margin-bottom: 80px;
}
.research .research-form .bottom {
  text-align: center;
  padding-top: 60px;
}
.research .research-form .bottom .btn {
  color: #003f80;
  padding: 8px 28px;
  border-color: #003f80;
}
.research .research-form .bottom .btn:hover {
  color: #fff;
  background: #003f80;
}

@media (max-width: 991.98px) {
  .research .research-head {
    padding: 40px 0;
  }
  .research .research-tips {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .research .research-tips .tip-contact {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .research .research-tips .tip-item {
    margin-bottom: 0;
  }
  .research .research-tips .tip-label {
    display: inline-block;
    min-width: 80px;
    font-size: 14px;
  }
  .research .research-form {
    margin-bottom: 40px;
  }
  .research .research-form .form-control {
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    min-height: 38px;
    height: 38px;
  }
  .research .research-form .bottom {
    padding-top: 20px;
  }
}
.protection .protection-head {
  padding: 80px 0;
}
.protection .protection-content {
  font-size: 18px;
  margin-bottom: 80px;
}
.protection .protection-content .bottom {
  text-align: center;
  padding-top: 60px;
}
.protection .protection-content .bottom .btn {
  color: #003f80;
  padding: 8px 28px;
  border-color: #003f80;
}
.protection .protection-content .bottom .btn:hover {
  color: #fff;
  background: #003f80;
}

@media (max-width: 991.98px) {
  .protection .protection-head {
    padding: 40px 0;
  }
  .protection .protection-content {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .protection .protection-content h1,
  .protection .protection-content h4 {
    font-size: 18px;
  }
  .protection .protection-content .bottom {
    padding-top: 40px;
  }
}
.contact {
  padding: 100px 0 60px;
}
.contact .content-title {
  margin-bottom: 40px;
}
.contact .btn {
  color: #003f80;
  padding: 8px 28px;
  border-color: #003f80;
}
.contact .btn:hover {
  color: #fff;
  background: #003f80;
}
.contact .form-group {
  margin-bottom: 40px;
}
.contact .form-control {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.contact .bottom {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 991.98px) {
  .contact {
    padding: 50px 0 30px;
  }
}
.result .result-head {
  padding-top: 48px;
  border-bottom: 1px solid #c6c6c6;
}
.result .result-head .form {
  margin-bottom: 24px;
}
.result .result-head .input-group {
  width: 340px;
}
.result .result-head .input-group-text {
  background: transparent;
  border-right-color: transparent;
}
.result .result-head .form-control {
  border-left-color: transparent;
}
.result .result-head .text {
  color: #c6c6c6;
  margin-bottom: 4px;
}
.result .result-list .list-head {
  margin-top: 4px;
  font-size: 12px;
  color: #c6c6c6;
  margin-bottom: 48px;
}
.result .result-list .item {
  margin-bottom: 48px;
}
.result .result-list .item .title {
  font-weight: bold;
}
.result .result-list .empty {
  padding-bottom: 300px;
  font-size: 48px;
}
.result .result-page {
  border-top: 1px solid #c6c6c6;
  padding-top: 24px;
  padding-bottom: 48px;
}
.result .result-page .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result .result-page .pagination .pagination-spacing {
  width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result .result-page .pagination .pagination-spacing .text {
  padding-left: 8px;
}
.result .result-page .pagination .form-control {
  text-align: center;
  width: 30px;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 991.98px) {
  .result .result-head {
    padding-top: 24px;
  }
  .result .result-head .input-group {
    width: 100%;
  }
  .result .result-head .text {
    color: #333;
  }
  .result .result-list .item {
    margin-bottom: 24px;
  }
  .result .result-list .empty {
    padding-bottom: 100px;
    font-size: 24px;
  }
}
.not-found {
  padding: 96px 0;
  text-align: center;
}
.not-found .image {
  margin-bottom: 30px;
}
.not-found .title {
  font-size: 36px;
  color: #003f80;
  margin-bottom: 30px;
}
.not-found .subtitle {
  font-size: 24px;
  margin-bottom: 48px;
}
.not-found .btn {
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 991.98px) {
  .not-found {
    padding: 48px 0;
    text-align: center;
  }
  .not-found .image {
    margin-bottom: 16px;
  }
  .not-found .title {
    font-size: 18px;
    color: #003f80;
    margin-bottom: 16px;
  }
  .not-found .subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .not-found .btn {
    font-size: 14px;
    padding: 4px 24px;
  }
}