@charset "UTF-8";
.container {
  max-width: 97.8125rem;
  width: calc(100% - 22.1875rem) !important;
  padding: 0;
}

@media screen and (max-width: 992px) {
  .container {
    width: 100% !important;
    max-width: 100%;
    padding: 0 15px;
  }
}

.w1600 {
  max-width: 1600px;
  width: calc(100% - 20rem) !important;
  padding: 0;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .w1600 {
    width: 100% !important;
    max-width: 100%;
    padding: 0 15px;
  }
}

.w1400 {
  max-width: 1400px;
  width: calc(100% - 32.5rem) !important;
  padding: 0;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .w1400 {
    width: 100% !important;
    max-width: 100%;
    padding: 0 15px;
  }
}

.font-color-white {
  color: #fff;
}

.font-color-black {
  color: #000;
}

.font-color-info {
  color: #2c2c2c;
}

.font-color-content {
  color: #727171;
}

.font-bold {
  font-weight: bold;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 0.875rem;
}

.font-16 {
  font-size: 1rem;
}

.font-18 {
  font-size: 1.125rem;
}

.font-20 {
  font-size: 1.25rem;
}

.font-22 {
  font-size: 1.375rem;
}

.font-24 {
  font-size: 1.5rem;
}

.font-26 {
  font-size: 1.625rem;
}

.font-28 {
  font-size: 1.75rem;
}

.font-30 {
  font-size: 1.875rem;
}

@media screen and (max-width: 992px) {
  .font-12 {
    font-size: 12px;
  }
  .font-14 {
    font-size: 14px;
  }
  .font-16 {
    font-size: 14px;
  }
  .font-18 {
    font-size: 18px;
  }
  .font-20 {
    font-size: 16px;
  }
  .font-22 {
    font-size: 18px;
  }
  .font-24 {
    font-size: 18px;
  }
  .font-26 {
    font-size: 22px;
  }
  .font-28 {
    font-size: 28px;
  }
  .font-30 {
    font-size: 30px;
  }
}

.line-1 {
  line-height: 1;
}

.line-l2 {
  line-height: 1.2;
}

.line-14 {
  line-height: 1.4;
}

.line-16 {
  line-height: 1.6;
}

.line-18 {
  line-height: 1.8;
}

.line-20 {
  line-height: 2;
}

.overflow-1 {
  display: -webkit-box;
  /* 使用旧版WebKit内核布局盒模型 */
  -webkit-line-clamp: 1;
  /* 限制文本显示的行数为2行 */
  -webkit-box-orient: vertical;
  /* 设置盒模型布局方向为垂直 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 使用省略号表示被截断的部分 */
}

.overflow-2 {
  display: -webkit-box;
  /* 使用旧版WebKit内核布局盒模型 */
  -webkit-line-clamp: 2;
  /* 限制文本显示的行数为2行 */
  -webkit-box-orient: vertical;
  /* 设置盒模型布局方向为垂直 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 使用省略号表示被截断的部分 */
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.img100 img {
  display: block;
  width: 100%;
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box .imgPos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: cover;
  transition: all 0.5s ease-in-out;
}

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

header {
  position: fixed;
  inset: 0;
  height: 4.375rem;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

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

header .container .logo {
  width: 10rem;
}

header .container .logo img {
  filter: grayscale(100%) brightness(500%);
  mix-blend-mode: lighten;
}

header .container nav .oneNav {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

header .container nav .oneNav > a {
  color: #fff;
}

header .container nav .oneNav:not(:last-child) {
  margin-right: 3.125rem;
}

header .container nav .oneNav.active > a h2 {
  font-weight: bold;
  color: #034ea2;
}

header .container nav .oneNav:hover > a h2 {
  font-weight: bold;
}

header .container .menu {
  width: 25px;
  display: none;
  flex-direction: column;
  cursor: pointer;
}

header .container .menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

header .container .menu span:not(:last-child) {
  margin-bottom: 6px;
}

header .container .headSearch {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 2.5rem 0 2.8125rem;
  cursor: pointer;
}

header .container .headSearch .bi {
  color: #fff;
  font-size: 1.25rem;
}

header .container .headSearch .inputBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  display: none;
}

header .container .headSearch .inputBox input {
  font-size: 1rem;
  padding: 0.5rem 0.3125rem;
  border: 0;
  box-shadow: 0 0 0.3125rem 0.3125rem rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
}

header .container .headSearch .inputBox input:focus {
  border: 0;
  outline: 0;
}

header .container .langBtn {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

header .container .langBtn .bi {
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

header .container .langBtn .langList {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30%);
  background: #fff;
  box-shadow: 0 0 0.3125rem 0.3125rem rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 0.625rem;
  border-radius: 0.3125rem;
}

header .container .langBtn .langList a {
  color: #000;
  font-size: 1rem;
  display: block;
  text-align: center;
}

header.fixed {
  background: #fff;
}

header.fixed .logo img {
  filter: none;
  mix-blend-mode: normal;
}

header.fixed nav .oneNav > a,
header.fixed .langBtn .bi,
header.fixed .headSearch .bi {
  color: #000;
}

.subNavBox {
  position: absolute;
  top: 4.375rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: none;
  background: rgba(3, 78, 162, 0.8);
  padding: .9375rem;
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
  box-shadow: 0 0.1875rem 0.1875rem 0.1875rem rgba(0, 0, 0, 0.1);
}

.subNavBox li a h3 {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  word-break: keep-all;
}

.subNavBox li:not(:last-child) {
  margin-bottom: .9375rem;
}

footer .f-top {
  background: #525252;
  padding-bottom: 1.5rem;
  padding-top: 2.5rem;
}

footer .f-top .logoBox {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

footer .f-top .logoBox img {
  display: block;
  width: 12.5rem;
  margin-left: 1.125rem;
  filter: grayscale(100%) brightness(500%);
  mix-blend-mode: lighten;
}

footer .f-top .box {
  padding: 0 1.125rem;
  margin-top: 3.75rem;
}

footer .f-top .box .left .tip {
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
}

footer .f-top .box .left .line {
  width: 40px;
  height: 2px;
  background: #034ea2;
  margin: 0.8125rem 0 1.5rem;
}

footer .f-top .box .left .info li {
  align-items: center;
}

footer .f-top .box .left .info li img {
  display: block;
  width: 21px;
  margin-right: 12px;
}

footer .f-top .box .left .info li p {
  color: #fff;
  font-size: 12px;
}

footer .f-top .box .left .info li:not(:last-child) {
  margin-bottom: 10px;
}

footer .f-top .box .left .code {
  margin-top: 1.5625rem;
}

footer .f-top .box .left .code li {
  width: 100px;
}

footer .f-top .box .left .code li img {
  display: block;
  width: 100%;
}

footer .f-top .box .left .code li p {
  font-size: 12px;
  margin-top: 5px;
  color: #fff;
  text-align: center;
}

footer .f-top .box .left .code li:not(:last-child) {
  margin-right: 2.1875rem;
}

footer .f-top .box .right li:not(:last-child) {
  margin-right: 10rem;
}

footer .f-top .box .right h2 {
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 3.4375rem;
}

footer .f-top .box .right h3 {
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

footer .f-top .box .right a:last-child h3 {
  margin-bottom: 0;
}

footer .f-bot {
  height: 3.125rem;
  background: #212121;
}

footer .f-bot p,
footer .f-bot a {
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.8);
}

.banner {
  width: 100%;
  height: 41.875rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner .txt {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.banner .txt .cn-title {
  font-size: 3.75rem;
  line-height: 1;
}

.banner .txt .en-title {
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 100;
  margin-top: 0.375rem;
}

.banner .txt .tip {
  margin-top: 2.25rem;
}

.banner .txt .tip .cir {
  width: 3.5rem;
  height: 3.5rem;
  background: #034ea2;
  border-radius: 50%;
  margin-right: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.banner .txt .tip p {
  font-size: 1.25rem;
  color: #034ea2;
}

.banner.white .txt .cn-title {
  color: #034ea2;
}

.banner.white .txt .en-title {
  color: #fff;
}

.banner.white .txt .tip .cir {
  background: #fff;
}

.banner.white .txt .tip .cir .bi {
  color: #034ea2;
}

.banner.white .txt .tip .cir p {
  color: #fff;
}

.breadCrumbs {
  border-bottom: 1px solid #838383;
}

.breadCrumbs .container {
  height: 5rem;
}

.breadCrumbs .left a {
  font-size: 1.0625rem;
  color: #444444;
}

.breadCrumbs .left a.active {
  color: #034ea2;
}

.breadCrumbs .left a:not(:last-child) {
  margin-right: 5.625rem;
}

.breadCrumbs .right img {
  display: block;
  width: 1.8125rem;
  margin-right: 0.5625rem;
}

.breadCrumbs .right p,
.breadCrumbs .right a {
  color: #3c3c3c;
  font-size: 1.0625rem;
  line-height: 1;
}

.breadCrumbs.leftHide .container {
  justify-content: flex-end !important;
}

.paging {
  display: flex;
  justify-content: center;
  align-items: center;
}

.paging .page-item {
  width: 30px;
  height: 30px;
}

.paging .page-item span, .paging .page-item a {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  background-color: transparent;
  border: solid 1px #c8c8c8;
  color: #3c3c3c;
  font-size: 12px;
  padding: 0 !important;
  text-align: center;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}

.paging .page-item span:focus, .paging .page-item a:focus {
  box-shadow: none;
}

.paging .page-item.disabled span, .paging .page-item.disabled a {
  background-color: transparent;
  border: solid 1px #c8c8c8;
  color: #3c3c3c;
  font-size: 12px;
}

.paging .page-item.active span, .paging .page-item.active a {
  background-color: #034ea2 !important;
  background: #034ea2 !important;
  color: #fff !important;
}

.paging .page-item:hover span, .paging .page-item:hover a {
  background-color: #034ea2 !important;
  background: #034ea2 !important;
  color: #fff !important;
}

.paging .page-item:not(:last-child) {
  margin-right: .625rem;
}

@media screen and (max-width: 992px) {
  header {
    height: 60px;
  }
  header .container .logo {
    width: 8rem;
  }
  header .container .headSearch, header .container .langBtn {
    display: none;
  }
  header .container .nav-box {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    display: block !important;
  }
  header .container .nav-box .nav-close {
    background: #fff;
    height: 60px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
    transform: translateX(-100%);
    transition: all 0.2s ease-in;
  }
  header .container .nav-box .nav-close .bi {
    display: block;
    height: 100%;
    padding: 0 12px;
    font-size: 38px;
    color: #3a3a3a;
  }
  header .container .nav-box nav {
    width: 90%;
    overflow: auto;
    height: calc(100% - 60px);
    background: #fff;
    flex-direction: column;
    margin-right: 0 !important;
    transition: all .2s ease-in;
    transform: translateX(-100%);
  }
  header .container .nav-box nav .oneNav {
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    border-bottom: 1px solid #eee;
    margin-right: 0 !important;
  }
  header .container .nav-box nav .oneNav a {
    display: block;
    height: auto;
    width: calc(100% - 58px);
    padding: 12px 0;
    padding-left: 20px;
    color: #3a3a3a;
    text-transform: capitalize;
    justify-content: flex-start;
  }
  header .container .nav-box nav a {
    color: #000;
  }
  header .container .nav-box nav .bi-chevron-down {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    width: 38px;
    font-size: 18px;
    flex-shrink: 0;
    transition: all .5s ease-in-out;
  }
  header .container .nav-box nav .bi-chevron-down.active {
    transform: rotate(180deg);
  }
  header .container .nav-box nav .subNavBox {
    background: none;
    position: relative !important;
    top: unset !important;
    left: unset !important;
    height: auto !important;
    padding: 0;
    transform: none;
    border: 0;
    box-shadow: none;
    width: 100%;
  }
  header .container .nav-box nav .subNavBox .subNav {
    justify-content: flex-start;
    flex-direction: column;
  }
  header .container .nav-box nav .subNavBox .subNav li {
    width: 100%;
  }
  header .container .nav-box nav .subNavBox .subNav a h3 {
    font-size: 16px;
    color: #000;
    padding-left: 30px;
    display: flex;
    font-weight: normal;
    align-items: center;
  }
  header .container .nav-box nav .subNavBox .subNav a h3::before {
    content: '>';
    line-height: 1;
    display: block;
    transform: scale(1, 1.6) translateY(-2px);
    margin-right: 8px;
    font-size: 14px;
  }
  header .container .nav-box.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 999;
  }
  header .container .nav-box.active .nav-close,
  header .container .nav-box.active nav {
    transform: translateX(0);
  }
  header .container .menu {
    display: flex;
  }
  footer .f-top .logoBox img {
    margin: 0 auto;
  }
  footer .f-top .box .right {
    display: none !important;
  }
  footer .f-top .box .left {
    width: 100%;
  }
  footer .f-bot p, footer .f-bot a {
    font-size: 12px;
  }
  .banner {
    height: 300px;
  }
  .subNavBox {
    background: #fff;
  }
  .subNavBox li a h3 {
    color: #000;
  }
}
