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

@media screen and (max-width: 992px) {
  .container {
    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;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.1875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 999999;
}

header .logo {
  display: block;
  width: 13.9375rem;
}

header .pcNav {
  height: 100%;
}

header .pcNav ul {
  height: 100%;
}

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

header .pcNav .oneNav a h2 {
  font-size: 1.125rem;
  font-family: Calibri-Bold;
  color: #000;
}

header .pcNav .oneNav:not(:last-child) {
  margin-right: 5.625rem;
}

header .pcNav .oneNav.active > a h2 {
  color: #073184;
  font-weight: bold;
}

header .pcNav .oneNav:hover > a h2 {
  color: #073184;
}

header .subNav {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-top: 2px solid #073184;
  padding: 0 .625rem;
}

header .subNav a {
  display: block;
  box-sizing: border-box;
}

header .subNav a h3 {
  height: 3.125rem;
  line-height: 3.125rem;
  word-break: keep-all;
  white-space: nowrap;
  text-align: center;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.9);
}

header .subNav a:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

header .subNav a:hover h3 {
  color: #073184;
}

@media screen and (min-width: 992px) {
  header .subNav2 {
    width: 100vw;
    position: fixed;
    top: 7.1875rem;
    left: 0;
    transform: unset;
    padding: 2.8125rem 0;
  }
  header .subNav2 .container {
    display: flex;
    flex-wrap: wrap;
  }
  header .subNav2 .item {
    width: 12.5rem;
    height: 3.4375rem;
    color: #000;
    background: #f2f4f9;
    transition: all 0.5s ease-in-out;
    margin-bottom: 1.875rem;
    font-family: Calibri;
    border-radius: 1.8125rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .subNav2 .item h3 {
    font-size: 1.125rem;
    white-space: unset;
    line-height: 1.2;
    height: auto;
  }
  header .subNav2 .item:hover {
    background: #073184;
  }
  header .subNav2 .item:hover h3 {
    color: #fff;
  }
  header .subNav2 .item:not(:nth-child(8n)) {
    margin-right: 1.3838rem;
  }
}

header .toolList li {
  position: relative;
}

header .toolList li .cirBtn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

header .toolList li .cirBtn .iconfont {
  font-size: 0.875rem;
  color: #073184;
}

header .toolList li .box {
  display: none;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translate(-50%, 0);
  background: #fff;
  min-width: 6.25rem;
  box-shadow: 0px 0px 5px 2px rgba(255, 255, 255, 0.5);
  padding: 0.3125rem 0.625rem;
  border-radius: 0.9375rem;
}

header .toolList li .box input {
  border: 0;
  font-size: 14px;
  color: #000;
}

header .toolList li .box input::placeholder {
  font-size: 14px;
  color: #073184;
}

header .toolList li .box p {
  font-size: 1.25rem;
  color: #000;
  white-space: nowrap;
  font-family: Calibri-Bold;
}

header .toolList li .box img {
  display: block;
}

header .toolList li:not(:last-child) {
  margin-right: 0.8125rem;
}

header .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #073184;
  transition: all 0.8s ease-in-out;
}

header .line img {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.625rem;
  transform: translate(50%, -100%);
}

header.fixed {
  background: #fff;
}

header.fixed .toolList li .cirBtn {
  background: #073184;
}

header.fixed .toolList li .cirBtn .iconfont {
  color: #fff;
}

header.fixed .toolList li .box {
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
}

footer {
  background: #073184;
  position: relative;
}

footer .backTop {
  position: absolute;
  top: 0;
  right: 5rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  transform: translateY(-40%);
  z-index: 30;
  background: #f8c013;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  cursor: pointer;
}

footer .backTop .iconfont {
  font-size: 2.25rem;
}

footer .backTop p {
  font-family: Calibri-Bold;
  font-size: 1rem;
}

footer .footer-nav li a h2 {
  font-size: 1.125rem;
  color: #fff;
}

footer .line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  margin-top: 3.4375rem;
}

footer .line .inner-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}

footer .line .btnLogo {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
  transition: all 0.5s ease-in-out;
}

footer .footer-center {
  margin-top: 5.625rem;
}

footer .footer-center .left .footer-logo {
  display: block;
  width: 15rem;
}

footer .footer-center .left a.footer-logo {
  margin-left: 1.25rem;
}

footer .footer-center .left img {
  display: block;
  width: 100%;
}

footer .footer-center .left ul {
  margin-top: 1.4375rem;
  width: 15rem;
}

footer .footer-center .left ul li {
  position: relative;
}

footer .footer-center .left ul li .cirBtn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

footer .footer-center .left ul li .cirBtn .iconfont {
  font-size: 0.875rem;
  color: #073184;
}

footer .footer-center .left ul li .box {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translate(-50%, 0);
  background: #fff;
  min-width: 6.25rem;
  box-shadow: 0px 0px 5px 2px rgba(255, 255, 255, 0.5);
  padding: 0.3125rem 0.625rem;
  border-radius: 0.9375rem;
}

footer .footer-center .left ul li .box input {
  border: 0;
  font-size: 14px;
  color: #000;
}

footer .footer-center .left ul li .box input::placeholder {
  font-size: 14px;
  color: #073184;
}

footer .footer-center .left ul li .box p {
  font-size: 1.25rem;
  color: #000;
  white-space: nowrap;
  font-family: Calibri-Bold;
}

footer .footer-center .left ul li .box img {
  display: block;
  width: auto;
}

footer .footer-center .center {
  font-size: 2.125rem;
  color: #f8c013;
  font-family: Gilroy-Bold;
}

footer .footer-center .center .iconfont {
  font-size: 2.125rem;
  margin-right: 1.375rem;
}

footer .footer-center .right .searchBtn {
  width: 18.125rem;
  height: 3.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.875rem;
}

footer .footer-center .right .searchBtn input {
  background: transparent;
  font-size: 1rem;
  color: #fff;
  margin-left: 1.375rem;
  font-family: Gilroy-Regular;
  border: 0;
  outline: 0;
}

footer .footer-center .right .searchBtn input::placeholder {
  font-family: Gilroy-Regular;
  color: #fff;
}

footer .footer-center .right .searchBtn input:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

footer .footer-center .right .searchBtn .iconfont {
  font-size: 1.625rem;
  color: #f8c013;
}

footer .footer-bq {
  padding: 2.8125rem 0 2.5rem;
}

footer .footer-bq .bq,
footer .footer-bq .link a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.33);
}

aside {
  position: fixed;
  right: -22.1875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22.1875rem;
  background: #f8c013;
  border-radius: 1.25rem;
  z-index: 999;
  padding: 2.5rem 1.0625rem 2.1875rem 2.1875rem;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

aside .title {
  font-family: Calibri-Bold;
  font-size: 1.875rem;
  line-height: 1;
}

aside .tip {
  margin: 1.25rem 0 0.9375rem;
  line-height: 1;
  font-family: Calibri-Bold;
  font-size: 1.1875rem;
}

aside input {
  background: rgba(255, 255, 255, 0.37);
  border-radius: 1.5625rem;
  display: block;
  width: 100%;
  border: 0;
  height: 3.125rem;
  padding: 0 1.875rem;
  margin-bottom: 0.625rem;
  color: #fff;
  font-family: Gilroy-Bold;
  font-size: 1rem;
}

aside input::placeholder {
  font-family: Gilroy-Bold;
  font-size: 1rem;
  color: #fff;
}

aside input:focus {
  background: rgba(255, 255, 255, 0.37);
}

aside textarea {
  background: rgba(255, 255, 255, 0.37);
  width: 100%;
  height: 5rem;
  border-radius: 1.25rem;
  border: 0;
  resize: none;
  padding: 1.25rem 1.875rem;
  color: #fff;
  font-family: Gilroy-Bold;
  font-size: 1rem;
  margin-bottom: .3125rem;
}

aside textarea::placeholder {
  font-family: Gilroy-Bold;
  font-size: 1rem;
  color: #fff;
}

aside .formBtn {
  width: 11.75rem;
  height: 2.875rem;
  background: #073184;
  border-radius: 1.4375rem;
  margin: 1.875rem auto 0;
  cursor: pointer;
  font-family: Calibri-Bold;
  font-size: 1.3125rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #073184;
  cursor: pointer;
}

aside .codeBox {
  justify-content: space-between;
}

aside .codeBox input {
  width: calc(100% - 110px);
  margin-bottom: 0;
}

aside .codeBox img {
  border-radius: 1.5625rem;
}

aside .asideBtn {
  width: 4.375rem;
  height: 5.9375rem;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: #f8c013;
  border-radius: 50%;
  cursor: pointer;
}

aside .asideBtn .iconfont {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30%;
  font-size: 1.5rem;
  z-index: 2;
}

aside .asideBtn.closeBtn {
  display: none;
}

aside .asideBtn.openBtn .iconfont {
  left: 12%;
}

aside.active {
  right: 0;
}

aside.active .asideBtn.closeBtn {
  display: block;
}

aside.active .asideBtn.openBtn {
  display: none;
}

.banner {
  height: 56.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner .bannerTitle {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-family: Calibri-Bold;
  font-size: 6.0625rem;
  color: rgba(255, 255, 255, 0.93);
}

.breadCrumb {
  margin-top: -3.75rem;
}

.breadCrumb .container {
  align-items: center;
}

.breadCrumb i,
.breadCrumb a {
  font-family: Calibri;
  font-size: 1rem;
  color: #777777;
}

.breadCrumb .iconfont {
  font-size: 1.5rem;
}

.breadCrumb.blue i {
  color: rgba(7, 49, 132, 0.94);
}

.breadCrumb.blue a:last-child {
  color: #073184;
}

.leftAside {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.leftAside a {
  margin-bottom: 3.125rem;
}

.leftAside a:nth-child(3) {
  margin-bottom: 2.1875rem;
}

.leftAside a i {
  font-size: 1.125rem;
  color: #073184;
}

.leftAside .line {
  width: 1px;
  height: 3.875rem;
  background: #6f87b8;
}

.leftAside p {
  margin-top: 2.5rem;
  font-family: Calibri;
  font-size: 16px;
  color: #073184;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

#videModal.cur {
  opacity: 1;
  pointer-events: auto;
}

#videModal.cur .modal_bai {
  transform: translateX(-50%) translateY(-50%) scale(1);
}

#videModal {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}

#videModal .modal_bai {
  background: rgba(255, 255, 255, 0.35);
  padding: 1rem;
  box-shadow: 0px 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.2);
  border-radius: 0.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

#videModal .modal_bai .modal-header {
  border: none;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  color: #333;
  padding-left: 0;
  padding-right: 0;
}

#myModalLabel {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1rem;
}

#videModal .modal_bai .close {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(50%) translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  font-size: 1.125rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

#videModal .modal_bai .modal-body {
  padding: 0;
  width: 90vw;
  height: 90vh;
}

#videModal .modal_bai .modal-body video {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

#videModal .modal_bai .modal-body iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 640px) {
  footer .footer-center {
    margin-top: 20px;
    flex-direction: column;
  }
  footer .footer-center .center {
    margin: 15px 0;
  }
  footer .footer-center .left ul {
    width: 100%;
  }
  footer .footer-center .left ul li .cirBtn {
    width: 30px;
    height: 30px;
  }
  footer .footer-center .left ul li .cirBtn .iconfont {
    font-size: 14px;
  }
  footer .footer-bq {
    padding: 10px 0;
    flex-wrap: wrap;
  }
  footer .footer-bq .bq {
    width: 100%;
  }
  footer .footer-bq .link {
    width: 100%;
  }
}
