@charset "UTF-8";
html,
body,
div,
span,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
video {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: transparent;
  font-size: 100%;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: Arial, sans-serif, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei";
  background-color: #f5f7fa;
}

article,
hgroup,
menu,
nav,
section,
aside,
details,
figcaption,
figure,
footer,
header {
  display: block;
}

nav ul,
ul,
li {
  list-style: none;
}

blockquote {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: none;
}

:root {
  --primary-color: #0E4BA3;
  --swiper-theme-color: var(--primary-color);
}

.bg-light {
  background-color: #050822 !important;
}

a {
  text-decoration: none;
}

input {
  outline: none;
  border: none;
  padding: 0;
}

.text-ellipsis {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.text-ellipsis-1 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text-ellipsis-2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-ellipsis-3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-ellipsis-4 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.text-ellipsis-5 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.scroll {
  overflow: hidden;
  overflow-y: auto;
}
.scroll::-webkit-scrollbar {
  width: 6px;
}
.scroll::-webkit-scrollbar-thumb {
  background: #4B6CB4;
  border-radius: 3px;
}

.pa-x {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pa-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pa-xy {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.preview {
  cursor: -webkit-zoom-in !important;
  cursor: zoom-in !important;
}

header {
  width: 100%;
  height: 75px;
  position: relative;
}
header .logo {
  height: 30px;
}
header .logo img {
  height: 100%;
}
header .nav-pc {
  height: 100%;
}
header .nav-pc .menu-dropdown-icon > a::after {
  content: "\f107";
  font-family: "FontAwesome";
  cursor: pointer;
  float: right;
  color: #fff;
  margin-left: 5px;
}
header .nav-pc .menu {
  height: 100%;
}
header .nav-pc .menu > ul {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 0;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .nav-pc .menu > ul:before, header .nav-pc .menu > ul:after {
  content: "";
  display: table;
}
header .nav-pc .menu > ul:after {
  clear: both;
}
header .nav-pc .menu > ul > li {
  padding: 0 20px;
  margin: 0;
  height: 100%;
}
header .nav-pc .menu > ul > li a {
  white-space: nowrap;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
header .nav-pc .menu > ul > li a > i.fa {
  margin-left: 5px;
}
header .nav-pc .menu > ul > li a.active {
  color: #0E4BA3;
}
header .nav-pc .menu > ul > li a::after {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
header .nav-pc .menu > ul > li:hover > a {
  color: #0E4BA3;
}

.menu-mobile {
  padding: 0 4vw;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-mobile .open-icon {
  display: block;
  opacity: 1;
}
.menu-mobile .close-icon {
  display: none;
  opacity: 0;
}

.menu-mobile.open .open-icon {
  opacity: 0;
  display: none;
}
.menu-mobile.open .close-icon {
  opacity: 1;
  display: block;
}

@media (max-width: 1399.98px) {
  header .nav-pc .menu > ul > li a {
    font-size: 16px;
  }
}
@media (max-width: 1199.98px) {
  .nav-pc {
    max-width: calc(100% - 30px);
    overflow: hidden;
  }
  .nav-pc .menu > ul > li {
    padding: 0 15px;
  }
  .nav-pc .menu > ul > li a {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  header {
    height: 13.3vw;
    max-width: 100% !important;
    background: #06214A;
    -webkit-box-shadow: 0px 1.3vw 2.7vw 0px rgba(10, 54, 87, 0.2);
            box-shadow: 0px 1.3vw 2.7vw 0px rgba(10, 54, 87, 0.2);
  }
  header.fixed-top {
    position: sticky;
  }
  header .header-container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: 0px 1.3vw 2.7vw 0px rgba(10, 54, 87, 0.2);
            box-shadow: 0px 1.3vw 2.7vw 0px rgba(10, 54, 87, 0.2);
  }
  header .header-container .logo {
    height: 8vw;
    margin-left: 4vw;
  }
  header .nav-pc .menu > ul {
    display: none !important;
  }
  header .nav-pc .menu > ul > li {
    width: 100%;
    display: block;
    height: auto !important;
    line-height: 12vw;
    border-bottom: 0.3vw solid #fff;
    background: #050822;
  }
  header .nav-pc .menu > ul > li a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 400;
    color: #fff;
  }
  header .nav-pc .menu > ul > li > .sub-menu {
    padding: 0 25px;
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
  }
  header .nav-pc .menu > ul > li > .sub-menu.normal-sub {
    width: 100%;
  }
  header .nav-pc .menu > ul > li > .sub-menu .sub-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  header .nav-pc .menu > ul > li > .sub-menu .sub-menu-list > .sub-menu-item {
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
  }
  header .nav-pc .menu > ul > li > .sub-menu .sub-menu-list > .sub-menu-item a {
    padding: 0 3vw;
  }
  header .nav-pc .menu > ul > li > .sub-menu .sub-menu-list > .sub-menu-item:last-child {
    border: none;
  }
  header .nav-pc .menu > ul > li > .sub-menu > li {
    width: 100%;
    margin-top: 20px;
  }
  header .nav-pc .menu > ul > li > .sub-menu > li:first-child {
    margin: 0;
  }
  header .nav-pc .menu > ul > li > .sub-menu > li > ul {
    position: relative;
  }
  header .nav-pc .menu > ul > li > .sub-menu > li > ul > li {
    float: none;
  }
  header .nav-pc .menu > ul > li:hover > a {
    color: #fff;
  }
  header .nav-pc .menu .show-on-mobile {
    display: block !important;
    position: fixed;
    top: 13.3vw;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #e5e5e5;
    z-index: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow-y: auto;
  }
  .menu-mobile {
    display: block !important;
  }
}
@media (max-width: 767.98px) {
  header .header-container {
    max-width: 540px;
  }
}
@media (max-width: 575.98px) {
  header .header-container {
    width: 100%;
  }
  .neiposition-icon {
    margin-left: 4vw;
  }
}
@media (min-width: 992px) {
  header {
    background-color: rgba(6, 33, 74, 0.8) !important;
  }
  header .header-container {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(2px);
  }
  header .pc-menu-list {
    width: 100%;
    height: 100%;
  }
  header .logo {
    height: 40px;
    margin-bottom: 2px;
  }
  header .nav-pc .menu .lang img {
    width: 46px;
  }
  header .nav-pc .menu .contact {
    width: unset;
    height: 38px;
    padding: 0 20px;
    color: #0E4BA3;
    background: #fff;
    border-radius: 22px;
    line-height: 38px;
  }
  header .nav-pc .menu .contact img {
    width: 20px;
    margin-right: 10px;
  }
  header .nav-pc .menu > ul > li {
    padding: 0 20px;
    margin: 0;
    height: 100%;
  }
  header .nav-pc .menu > ul > li a {
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    font-size: 15px;
    font-weight: 500;
  }
  header .nav-pc .menu > ul > li a > i.fa {
    margin-left: 5px;
  }
  header .nav-pc .menu > ul > li .hlef p {
    color: #fff;
    z-index: 1;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .nav-pc .menu > ul > li .hlef::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 100%;
    background: #fff;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .nav-pc .menu > ul > li .hlef::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: #0E4BA3;
    margin-left: 0;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .nav-pc .menu > ul > li .hlef:hover p, header .nav-pc .menu > ul > li .hlef.active p {
    color: #0E4BA3;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .nav-pc .menu > ul > li .hlef:hover::before, header .nav-pc .menu > ul > li .hlef.active::before {
    width: calc(100% + 40px);
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .nav-pc .menu > ul > li .hlef:hover::after, header .nav-pc .menu > ul > li .hlef.active::after {
    width: calc(100% + 40px);
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .nav-pc .menu > ul > li > .sub-menu {
    display: none;
    width: auto;
    background: #fff;
    padding: 20px 10px;
    position: absolute;
    z-index: 999;
    margin: 0;
    margin-left: -30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  header .nav-pc .menu > ul > li > .sub-menu:before, header .nav-pc .menu > ul > li > .sub-menu:after {
    content: "";
    display: table;
  }
  header .nav-pc .menu > ul > li > .sub-menu:after {
    clear: both;
  }
  header .nav-pc .menu > ul > li > .sub-menu > .sub-menu-list {
    min-height: 80px;
  }
  header .nav-pc .menu > ul > li > .sub-menu > .sub-menu-list > .sub-menu-item {
    margin: 0;
    padding-bottom: 0;
  }
  header .nav-pc .menu > ul > li > .sub-menu > .sub-menu-list > .sub-menu-item a {
    font-size: 15px;
    color: #fff;
    padding: 0.5rem 2rem;
    display: block;
    font-weight: 400;
  }
  header .nav-pc .menu > ul > li > .sub-menu > .sub-menu-list > .sub-menu-item a:hover {
    color: var(--primary-color);
    background-color: #f2f2f2;
  }
  header .nav-pc .menu > ul > li > .sub-menu > .sub-menu-list.normal-sub {
    left: auto;
    right: 0;
    padding: 10px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .nav-pc .menu > ul > li > .sub-menu > .sub-menu-list.normal-sub > li {
    width: auto;
    padding: 0 20px;
  }
  header .nav-pc .menu > ul > li > .sub-menu > .sub-menu-list.normal-sub > li a {
    width: auto;
    border: 0;
    padding: 1em 0;
  }
  header .nav-pc .menu > ul .rotate-icon a {
    color: #0E4BA3 !important;
  }
  header .sub-menu-container .sub-wrap {
    position: absolute;
    left: 0;
    top: 75px;
    width: 100%;
    background: #F7F7F7;
    z-index: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0px 0px 18px 18px;
    -webkit-box-shadow: 0px 0px 2px 0px #0E4BA3, inset 0px -5px 10px 0px #0E4BA3;
            box-shadow: 0px 0px 2px 0px #0E4BA3, inset 0px -5px 10px 0px #0E4BA3;
    background: -webkit-gradient(linear, left top, left bottom, from(#2082D0), to(#0E4BA3));
    background: linear-gradient(180deg, #2082D0 0%, #0E4BA3 100%);
  }
  header .sub-menu-container .sub-about {
    display: none;
    padding: 15px 5.3vw;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#3895E0), to(#296AC8));
    background: linear-gradient(180deg, #3895E0 0%, #296AC8 100%);
  }
  header .sub-menu-container .sub-about .sub-about-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1vw calc((100% - 60vw) / 2);
  }
  header .sub-menu-container .sub-about .about-item {
    height: 5.7vw;
    padding-left: 1.6vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20vw;
            flex: 0 0 20vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .sub-menu-container .sub-about .about-item img {
    width: 2.6vw;
    margin-right: 1vw;
  }
  header .sub-menu-container .sub-about .about-item p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .sub-menu-container .sub-about .about-item:hover {
    background-color: #0E4BA3;
    -webkit-box-shadow: inset 0px 0 0.3vw 0px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0px 0 0.3vw 0px rgba(0, 0, 0, 0.1);
    border-radius: 0.4vw;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .sub-menu-container .sub-about .about-item:hover p {
    font-weight: bold;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .sub-menu-container .sub-product {
    display: none;
    overflow: hidden;
  }
  header .sub-menu-container .sub-product .sub-product-container {
    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;
    height: 75vh;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left {
    width: 30%;
    height: 100%;
    padding: calc(2.1vw + 15px) 0 2.1vw 4.2vw;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .title {
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    padding-bottom: 1vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .title img {
    margin-left: 20px;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .product-cate {
    height: calc(100% - 20px - 1vw - 72px - 5vw);
    overflow-y: auto;
    padding: 25px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .product-cate a {
    width: 100%;
    height: 4vw;
    border-radius: 4px 0px 0px 4px;
    margin-bottom: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1vw;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .product-cate a:last-child {
    margin-bottom: 0;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .product-cate a img {
    width: 48px;
    margin-right: 15px;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .product-cate a p {
    font-size: 18px;
    color: #FFFFFF;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .product-cate .effect {
    background: #002B51;
    -webkit-box-shadow: 0px 0px 2px 0px #0E4BA3, inset 0px 3px 3px 0px #0E4BA3, inset 0px -3px 3px 0px #0E4BA3, inset 3px 0px 3px 0px #0E4BA3;
            box-shadow: 0px 0px 2px 0px #0E4BA3, inset 0px 3px 3px 0px #0E4BA3, inset 0px -3px 3px 0px #0E4BA3, inset 3px 0px 3px 0px #0E4BA3;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .contactus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 2.5vw;
    font-size: 18px;
    color: #FFFFFF;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .contactus p {
    position: relative;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .contactus p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-left .contactus p:hover::after {
    width: 100%;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right {
    width: 70%;
    height: 100%;
    padding: calc(2.1vw + 15px) 0 2.1vw 5.2vw;
    background: #F7F7F7;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap {
    width: 100%;
    height: 100%;
    display: none;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap.show {
    display: block;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-title img {
    width: 2.5vw;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-title p {
    position: relative;
    font-weight: bold;
    font-size: 1.3vw;
    color: #4B6CB8;
    margin-left: 1vw;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-title p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.2vw;
    background: #4B6CB4;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-scroll {
    width: 100%;
    height: calc(100% - 2.1vw);
    overflow-y: scroll;
    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: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 1.8vw 4.2vw 0 0;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-scroll a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 5vw) / 3);
            flex: 0 0 calc((100% - 5vw) / 3);
    cursor: pointer;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    margin: 2.5vw 2.5vw 0 0;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-scroll a:nth-child(-n+3) {
    margin-top: 0;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-scroll a:nth-child(3n) {
    margin-right: 0;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-scroll a .img {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-scroll a .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-scroll a p {
    height: 4.6vw;
    padding: 0.8vw 0.5vw;
    font-size: 1vw;
    color: #374649;
    text-align: center;
  }
  header .sub-menu-container .sub-product .sub-product-container .wrap-right .product-wrap .product-wrap-scroll a:hover {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0 0.3vw 0px rgba(75, 108, 180, 0.15);
            box-shadow: 0px 0 0.3vw 0px rgba(75, 108, 180, 0.15);
    border-radius: 0.4vw;
    border: 0.1vw solid #CCDBF1;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
  }
}
@media (min-width: 1200px) {
  header .header-container {
    padding-left: 16px !important;
    padding-right: 32px !important;
  }
  header .menu .lang img {
    width: 46px;
  }
  header .menu .contact {
    width: 126px;
    height: 38px;
    padding: 0 16px;
  }
  header .menu .contact img {
    width: 20px;
  }
}
@media (min-width: 1400px) {
  header .header-container {
    padding-left: 20px !important;
    padding-right: 40px !important;
  }
  header .nav-pc .menu > ul > li a {
    font-size: 18px;
  }
  header .menu .lang img {
    width: 46px;
  }
  header .menu .contact {
    width: 142px;
    height: 38px;
    padding: 0 20px;
  }
  header .menu .contact img {
    width: 20px;
  }
}
footer {
  background-color: #051A32;
  color: #fff;
}
footer a,
footer div,
footer p {
  color: #fff;
}
footer .footer-wrap .container {
  padding: 5.3vw 4vw;
}
footer .footer-wrap .container .footer-menu .footer-ul {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer-wrap .container .footer-menu li a {
  position: relative;
}
footer .footer-wrap .container .footer-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
footer .footer-wrap .container .footer-menu li a:hover::after {
  width: 100%;
}
footer .footer-info {
  background: #09233B;
}
footer .footer-info .container {
  padding: 0;
}
footer .footer-info .footer-detail {
  padding: 5.3vw 4vw;
  font-size: 3.7vw;
}
footer .footer-info .footer-detail .logo {
  width: 38.4vw;
}
footer .footer-info .footer-detail .footer-contact {
  font-weight: bold;
  font-size: 4.3vw;
  margin-top: 5.6vw;
}
footer .footer-info .footer-detail .info-container {
  margin: 6.7vw 0;
}
footer .footer-info .footer-detail .info-container .footer-dot {
  display: none;
}
footer .footer-info .footer-detail .footer-addr {
  margin-top: 6.7vw;
  line-height: 6.4vw;
}
footer .footer-info .footer-copyright {
  width: 100%;
  font-size: 3.2vw;
  text-align: center;
  border-top: 0.3vw dashed #AFB5B9;
  padding: 5.3vw;
}

@media (max-width: 991.98px) {
  footer .footer-wrap .container,
  footer .footer-info .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  footer .footer-wrap .container {
    padding: 5.3vw 4vw;
  }
  footer .footer-wrap .container .footer-menu .footer-ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 7vw;
  }
  footer .footer-wrap .container .footer-menu li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 47vw;
    font-size: 3.7vw;
  }
  footer .footer-wrap .container .footer-menu li:nth-child(2n) {
    width: 33vw;
  }
  footer .footer-wrap .container .footer-menu li dt,
  footer .footer-wrap .container .footer-menu li dd {
    margin-top: 6.7vw;
  }
  footer .footer-wrap .container .footer-menu li dt {
    font-size: 4.3vw;
  }
  footer .footer-wrap .container .footer-menu li dt:nth-child(-n+2) {
    margin-top: 0;
  }
  footer .footer-wrap .container .logo {
    display: none;
  }
  footer .footer-info .footer-detail .info-container div:last-child {
    margin-top: 6.7vw;
  }
}
@media (min-width: 992px) {
  footer .footer-wrap .container {
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  footer .footer-wrap .container .footer-menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  footer .footer-wrap .container .footer-menu li {
    font-size: 16px;
  }
  footer .footer-wrap .container .footer-menu li dt {
    font-size: 18px;
  }
  footer .footer-wrap .container .footer-menu li dd {
    margin-top: 40px;
  }
  footer .footer-wrap .container .logo {
    width: 11.5vw;
    max-width: 220px;
  }
  footer .footer-info .footer-detail {
    padding: 30px 0;
  }
  footer .footer-info .footer-detail .footer-contact {
    display: none;
  }
  footer .footer-info .footer-detail .info-container {
    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;
    margin: 0 auto;
  }
  footer .footer-info .footer-detail .info-container .footer-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: #AFB5B9;
    border-radius: 8px;
    margin: 0 88px;
  }
  footer .footer-info .footer-detail .info-container div {
    margin: 0;
    font-size: 18px;
  }
  footer .footer-info .footer-detail .footer-addr {
    font-size: 18px;
    margin: 30px 0 0;
    margin: 0;
    text-align: center;
    line-height: unset;
  }
  footer .footer-info .footer-detail .logo {
    display: none;
  }
  footer .footer-info .footer-copyright {
    font-size: 16px;
    border-top: 1px dashed #AFB5B9;
    padding: 30px;
  }
}
.rotate-icon a::after {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: var(--primary-color) !important;
}

/* 内页样式 s */
.neibanner {
  width: 100%;
  height: 56.25vw;
  position: relative;
}
.neibanner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.neibanner .neibannerdesc {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
  color: #fff;
}
.neibanner .neibannerdesc .neibannerdesc-title {
  margin-bottom: 40px;
}
.neibanner .neibannerdesc h2 {
  margin-top: 5px;
  font-size: 44px;
  font-weight: 400;
}
.neibanner .neibannerdesc p {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #f1f1f1;
}

.neinav {
  width: 100%;
  min-height: 50px;
  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;
}
.neinav .neiposition {
  border-bottom: 1px dashed #fff;
  padding: 30px 0 15px;
}
.neinav .neiposition i.fa {
  color: #ccc;
}
.neinav .neiposition .neiposition-icon {
  margin-right: 10px;
  margin-bottom: 5px;
  width: 24px;
  height: 24px;
}
.neinav .neiposition a {
  font-size: 16px;
  color: #fff;
}
.neinav .neiposition a:hover {
  color: #0244F7;
}

.page-pagination {
  text-align: center;
  width: 100%;
}
.page-pagination .pagination,
.page-pagination .pager {
  display: inline-block;
  padding-left: 0;
  margin: 30px 0;
  border-radius: 8px;
}
.page-pagination .pagination > li,
.page-pagination .pager > li {
  display: inline;
}
.page-pagination .pagination > li > a,
.page-pagination .pagination > li > span,
.page-pagination .pager > li > a,
.page-pagination .pager > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: var(--primary-color);
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.page-pagination .pagination > li:first-child > a,
.page-pagination .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.page-pagination .pagination > li:last-child > a,
.page-pagination .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.page-pagination .pagination > li > a:focus,
.page-pagination .pagination > li > a:hover,
.page-pagination .pagination > li > span:focus,
.page-pagination .pagination > li > span:hover {
  z-index: 2;
  color: var(--primary-color);
  background-color: #eee;
  border-color: #ddd;
}
.page-pagination .pagination > .active > a,
.page-pagination .pagination > .active > a:focus,
.page-pagination .pagination > .active > a:hover,
.page-pagination .pagination > .active > span,
.page-pagination .pagination > .active > span:focus,
.page-pagination .pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.page-pagination .pagination > .disabled > a,
.page-pagination .pagination > .disabled > a:focus,
.page-pagination .pagination > .disabled > a:hover,
.page-pagination .pagination > .disabled > span,
.page-pagination .pagination > .disabled > span:focus,
.page-pagination .pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.page-pagination .pagination .jumpto {
  display: inline-block;
  margin-left: 2px;
}
.page-pagination .pagination .jumpto input {
  padding: 6px;
  line-height: 1.42857143;
  color: #2c3e50;
  background-color: #fff;
  border: 1px solid #ddd;
  float: left;
}
.page-pagination .pagination .jumpto .page_number {
  width: 125px;
  text-align: center;
  margin-right: -1px;
}
.page-pagination .pager > .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* 内页样式 e */
@media (min-width: 1400px) {
  .container {
    max-width: 88%;
  }
}
@media (max-width: 1199.98px) {
  .neinav .neinav-wrapper li a {
    font-size: 12px;
  }
  .neinav .neinav-wrapper li.active a {
    font-size: 12px;
  }
}
@media (max-width: 991.98px) {
  .next-prev .next-prev-right {
    text-align: left !important;
  }
}