@charset "utf-8";
.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: 14px;
}

.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: 1.75rem;
  }
  .font-30 {
    font-size: 20px;
  }
}

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

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

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

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

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

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

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

.text-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;
}

.container {
  max-width: 1765px;
  width: calc(100% - 9.6875rem) !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% - 10.3125rem) !important;
  margin: 0 auto;
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 995;
}

header .container {
  height: 3.75rem;
  background: #fff;
  padding: 0 2.5rem;
  box-sizing: border-box;
}

header .logo {
  width: 11rem;
  margin-right: 1.875rem;
}

header .logo-text {
  opacity: 0;
  width: 8.125rem;
  display: block;
}

header .posBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  overflow: hidden;
}

header .posBox .loadImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50.1875rem;
  background: transparent;
  z-index: 20;
}

header .posBox .loadImg.change {
  animation: changeColor 2s ease-in-out forwards;
}

header .posBox .loadBg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
  width: 100vw;
  height: 100vh;
  margin-left: 50%;
}

header nav ul {
  margin-right: 1.25rem;
}

header nav .one-item {
  position: relative;
}

header nav .one-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 6.25rem;
}

header nav .one-item > a h2 {
  color: #595757;
}

header nav .one-item.active > a {
  background: #0357a8;
}

header nav .one-item.active a h2 {
  color: #fff;
}

header nav .one-item:hover > a {
  background: #0357a8;
}

header nav .one-item:hover a h2 {
  color: #fff;
}

header nav .one-item:hover ul {
  opacity: 1;
  pointer-events: auto;
}

header nav .one-item ul {
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 10px -2px rgba(0, 0, 0, 0.1);
  background: #fff;
  pointer-events: none;
  transition: all .3s ease-in-out;
  min-width: 90px;
}

header nav .one-item ul li {
  padding: 0 1rem;
}

header nav .one-item ul li:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}

header nav .one-item ul li a h3 {
  padding: .9rem 0;
  text-align: center;
}

header nav .one-item ul li:hover a h3 {
  color: #0357a8;
}

header .lianxi {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  position: relative;
  background: #fff;
  cursor: pointer;
}

header .lianxi .iconfont {
  color: #b81c22;
  transition: all 0.5s ease-in-out;
}

header .lianxi:hover {
  background: #b81c22;
}

header .lianxi:hover .iconfont {
  color: #fff;
}

header .icon-caidan {
  display: none;
}

header .search-box .input-box {
  position: relative;
}

header .search-box .input-box input {
  color: #595757;
}

header .search-box .input-box .iconfont {
  position: absolute;
  right: .625rem;
  top: 50%;
  transform: translateY(-50%);
  color: #595757;
}

header .search-box input {
  display: block;
  width: 8.4375rem;
  height: 1.875rem;
  background: transparent;
  border-radius: 15px;
  border: solid 1.5px #595757;
  outline: 0;
  box-sizing: border-box;
  padding: 0 .625rem;
  font-size: 14px;
}

header .search-box input:focus {
  border: 1.5px solid #595757;
  outline: 0;
}

header .lang {
  position: relative;
  margin-left: 2.8125rem;
}

header .lang .icon-diqiu {
  cursor: pointer;
  color: #595757;
}

header .lang ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 75px;
  border-radius: 7px;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  display: none;
}

header .lang ul li a {
  color: #595757;
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}

header .lang ul li:not(:last-child) {
  margin-bottom: 12px;
}

header .lang ul li:hover a {
  color: #0357a8;
  font-weight: bold;
}

header .lang ul li.active a {
  color: #0357a8;
  font-weight: bold;
}

header.innerHeader .logo-text {
  opacity: 1;
}

@media screen and (max-width: 992px) {
  header .container {
    height: 60px;
    padding: 0 15px;
  }
  header .logo {
    width: 50%;
  }
  header .lianxi {
    margin-right: 20px;
  }
  header .icon-caidan {
    display: block;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    transition: opacity .25s ease-out;
    background: rgba(0, 0, 0, 0.5);
    z-index: 95;
  }
  header nav .nav-close {
    background: #fff;
    display: flex;
    width: 90%;
    height: 52px;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
    transform: translateX(-100%);
    transition: all .2s ease-in;
  }
  header nav .nav-close i {
    height: 100%;
    padding: 0 12px;
    font-size: 30px;
    color: #3a3a3a;
  }
  header nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  header nav.active .nav-close,
  header nav.active ul {
    transform: translateX(0);
  }
  header nav > ul {
    width: 90%;
    height: calc(100% - 52px);
    overflow: auto;
    flex-direction: column;
    background: #fff;
    transform: translateX(-100%);
    transition: all .2s ease-in;
  }
  header nav > ul .one-item {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 0;
  }
  header nav > ul .one-item > a {
    height: auto;
    width: calc(100% - 58px);
    padding: 12px 0;
    padding-left: 20px;
    color: #3a3a3a;
    text-transform: capitalize;
    justify-content: flex-start;
  }
  header nav > ul .one-item h2 {
    font-size: 14px;
    color: #3a3a3a;
  }
  header nav > ul .one-item .bi {
    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 nav > ul .one-item .bi.active {
    transform: rotate(180deg);
  }
  header nav > ul .one-item .bi.hide {
    display: none;
  }
  header nav > ul .one-item.active > a {
    background: transparent;
  }
  header nav > ul .one-item.active > a h2 {
    color: #0357a8;
    font-weight: bold !important;
  }
  header nav > ul .one-item.active > ul {
    display: block;
  }
  header nav > ul .one-item:not(:last-child) {
    margin-right: 0;
  }
  header nav > ul .one-item:hover > a {
    background: transparent;
  }
  header nav > ul .one-item:hover a h2 {
    font-weight: normal;
    color: #3a3a3a;
  }
  header nav > ul .one-item ul {
    display: none;
    position: static;
    opacity: 1;
    border: 0;
    box-shadow: none;
    width: 100%;
    margin-right: 0;
  }
  header nav > ul .one-item ul li {
    position: relative;
  }
  header nav > ul .one-item ul li a h3 {
    font-size: 14px;
    padding: 10px 0;
    padding-left: 30px;
    display: flex;
    color: #3a3a3a;
  }
  header nav > ul .one-item ul li a h3::before {
    content: '>';
    line-height: 1;
    display: block;
    transform: scale(1, 1.6) translateY(1px);
    margin-right: 8px;
    font-size: 12px;
  }
  header .lang {
    margin: 0 20px;
  }
  header .posBox .loadImg {
    width: 90%;
  }
}

@media screen and (max-width: 640px) {
  header .logo {
    width: 120px;
  }
  header .logo-text {
    width: 80px;
  }
  header .right .search-box {
    display: none !important;
  }
}

footer .container {
  background: url(../images/footer-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 1.875rem 0 1.5625rem;
}

footer .footer-top .logo-box {
  position: relative;
}

footer .footer-top .logo-box .logo {
  display: block;
  width: 13.75rem;
}

footer .footer-top .logo-box::after {
  content: "";
  max-width: 1600px;
  width: 100rem;
  height: 1px;
  background: #fff;
  opacity: .3;
  position: absolute;
  left: 0;
  bottom: -2rem;
}

footer .footer-top .tel {
  margin-top: 5.4375rem;
}

footer .footer-top .tel .iconfont {
  font-size: 2.3125rem;
}

footer .footer-top .tel p {
  font-size: 2.5rem;
  margin-left: 1.875rem;
}

footer .footer-top .iconList {
  margin-top: 3.4375rem;
}

footer .footer-top .iconList li {
  position: relative;
}

footer .footer-top .iconList li:not(:last-child) {
  margin-right: 1.25rem;
}

footer .footer-top .iconList li:hover .codeBox {
  opacity: 1;
}

footer .footer-top .iconList .icon-box {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

footer .footer-top .iconList .icon-box:hover {
  background: #0357a8;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.8);
}

footer .footer-top .iconList .codeBox {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  opacity: 0;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

footer .footer-top .iconList .codeBox img {
  display: block;
  width: 94%;
}

footer .footer-top .ft-r {
  margin-top: 1.875rem;
}

footer .footer-top .ft-r > li .dropNav {
  margin-top: 4.6875rem;
}

footer .footer-top .ft-r > li .dropNav li a h3 {
  transition: all 0.5s ease-in-out;
}

footer .footer-top .ft-r > li .dropNav li:hover a h3 {
  transform: translate(-5px, -5px);
}

footer .footer-top .ft-r > li:not(:last-child) {
  margin-right: 11.25rem;
}

footer .footer-bot {
  margin-top: 7.1875rem;
}

footer .footer-bot div,
footer .footer-bot a {
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 992px) {
  footer .container {
    margin-top: 0 !important;
  }
  footer .footer-top {
    justify-content: center !important;
  }
  footer .footer-top .ft-l {
    width: 100%;
  }
  footer .footer-top .logo-box {
    margin: 0 auto;
  }
  footer .footer-top .logo-box img {
    margin: 0 auto;
  }
  footer .footer-top .logo-box::after {
    content: none;
  }
  footer .footer-top .tel {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  footer .footer-top .tel, footer .footer-top .iconList {
    margin-top: 20px;
    padding-top: 10px;
    box-sizing: border-box;
    justify-content: center !important;
  }
  footer .footer-top .ft-r {
    display: none !important;
  }
  footer .footer-bot {
    margin-top: 40px;
  }
}

@media screen and (max-width: 640px) {
  footer .footer-bot {
    flex-wrap: wrap;
  }
  footer .footer-bot .bq, footer .footer-bot .jishu {
    width: 100%;
    text-align: center;
  }
}

main {
  margin-top: calc(3.75rem + 2px);
}

@media screen and (max-width: 992px) {
  main {
    margin-top: 62px;
  }
}

.oneTitle {
  position: relative;
}

.oneTitle h2 {
  font-size: 2.1875rem;
  color: #0357a8;
  position: relative;
}

.oneTitle img {
  position: absolute;
  bottom: 1.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
}

@media screen and (max-width: 992px) {
  .oneTitle {
    justify-content: center;
  }
}

@media screen and (max-width: 640px) {
  .oneTitle h2 {
    width: 100%;
    text-align: center;
  }
  .oneTitle img {
    max-width: 94%;
  }
}

.twoTitle .en-title {
  font-size: 2.1875rem;
  font-weight: bold;
  color: #000000;
  opacity: .14;
  line-height: 1;
  letter-spacing: -1px;
}

.twoTitle .cn-title {
  font-size: 2.1875rem;
  font-weight: bold;
  color: #000000;
  line-height: 1;
}

.twoTitle .line {
  width: 5rem;
  height: 3px;
  margin-top: 1.875rem;
  background: #0357a8;
}

.more {
  display: block;
  position: relative;
  width: 95px;
  height: 35px;
  overflow: hidden;
}

.more .more-center {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more .more-center span {
  font-size: 13px;
  background: linear-gradient(to right, #0357a8 0%, #4d9bf7 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.more .more-center .bi {
  font-size: 14px;
  margin-left: 7px;
  color: #0357a8;
}

.more::before {
  content: '';
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, #0357a8 0%, #4d9bf7 100%);
  animation: rotate 4s linear infinite;
}

.more2 {
  padding: 8px 12px;
  border: 1px solid black;
  border-image: linear-gradient(108deg, #0357a8 0%, #4d9bf7 100%) 1;
  font-size: 12px;
  color: #0357a8;
  line-height: 1;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}

.more2 .bi {
  margin-left: 6px;
  font-size: 12px;
  color: #0357a8;
}

.more2:hover {
  background: #0357a8;
  color: #fff;
}

.more2:hover .bi {
  color: #fff;
}

@keyframes rotate {
  100% {
    transform: rotate(0.8turn);
  }
}

.banner {
  margin-top: .375rem;
  padding-top: 36.26%;
  position: relative;
}

.banner .banner-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner .banner-box .oneTitle {
  position: absolute;
  top: 50%;
  left: 15.3%;
  transform: translateY(-50%);
}

.banner .banner-box .oneTitle h2 {
  color: #fff !important;
}

.banner .banner-box .oneTitle h2 span {
  position: relative;
  z-index: 3;
}

.banner .banner-box .oneTitle h2 img {
  top: -100%;
  bottom: unset;
  transform: translate(-50%, -50%);
}

.banner .banner-box .oneTitle .line {
  width: 3.4375rem;
  height: 3px;
  margin-top: 3.125rem;
  background: #fff;
}

.banner .fuNav {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 7.3125rem;
  border-radius: 6.25rem 0px 0px 0px;
  min-width: 71.5625rem;
  background: #fff;
}

.banner .fuNav li,
.banner .fuNav a {
  height: 100%;
}

.banner .fuNav li:hover .iconfont,
.banner .fuNav li:hover h3 {
  color: #0357a8;
}

.banner .fuNav li.active .iconfont,
.banner .fuNav li.active h3 {
  color: #0357a8;
}

.banner .fuNav .iconfont {
  font-size: 1.5625rem;
}

.banner .fuNav .iconfont,
.banner .fuNav h3 {
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 992px) {
  .banner .fuNav {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .banner {
    height: 200px;
  }
  .banner .banner-box .oneTitle {
    left: 0;
    width: 100%;
    align-items: center;
  }
}

.fenye {
  display: flex;
  justify-content: center;
}

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

.fenye .page-item a, .fenye .page-item span {
  display: block;
}

.fenye .page-item .page-link {
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: #424141;
  width: 30px;
  height: 30px;
  margin: 0;
}

.fenye .page-item .page-link:focus {
  border: 0;
  box-shadow: none;
}

.fenye .page-item:first-child, .fenye .page-item:last-child {
  border: 1px solid black;
  border-image: linear-gradient(108deg, #0357a8 0%, #4d9bf7 100%) 1;
}

.fenye .page-item:first-child .page-link, .fenye .page-item:last-child .page-link {
  top: -2px;
}

.fenye .page-item:first-child:hover, .fenye .page-item:last-child:hover {
  background-image: linear-gradient(41deg, #29abe2 0%, #1e72c3 100%);
}

.fenye .page-item:first-child:hover .page-link, .fenye .page-item:last-child:hover .page-link {
  color: #fff;
}

.fenye .page-item:not(:last-child) {
  margin-right: 20px;
}

.fenye .page-item.active .page-link {
  color: #0357a8;
}
