/* header */


.nav-container-div {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 1.1rem;
  padding: 0 0.6rem;
  transition: height 0.3s;
}


.nav-container {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.nav-content {
  position: relative;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.nav-menu-container,
.nav-right-container {
  flex: 1;
}

.nav-menu-icon {
  align-items: center;
  cursor: pointer;
}

.nav-icon-div {
  align-items: center;
}

.nav-menu-icon .menu-icon {
  margin-right: 20px;
}

.nav-menu-icon .menu-icon span {
  width: 32px;
  height: 4px;
  margin-bottom: 8px;
  display: block;
  cursor: pointer;
  background: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-menu-icon .menu-icon span:nth-child(3) {
  width: 25px;
  margin-bottom: 0;
}

.nav-menu-icon .menu-icon.active span:nth-child(1) {
  width: 30px;
  background: #404040;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.nav-menu-icon .menu-icon.active span:nth-child(2) {
  opacity: 0;
}

.nav-menu-icon .menu-icon.active span:nth-child(3) {
  width: 30px;
  background: #404040;
  -webkit-transform: translateY(-13px) rotate(45deg);
  transform: translateY(-13px) rotate(45deg);
}

.nav-menu-icon .menu-text {
  color: #fff;
}

.nav-menu-icon .back {
  display: none;
  font-size: 16px;
}


.show-nav-container {

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  background: #00000050;
}

.show-nav-container.active {
  opacity: 1 !important;
  pointer-events: auto;
}


.show-nav-content {
  max-width: 375px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: auto;
  margin: auto 0;
  padding-left: 0.6rem;
  padding-right: 0.15rem;
  background: #fff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.show-nav-content.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}



.nav-menu-close {
  cursor: pointer;
  align-items: center;
  padding: 0.5rem 0;
}

.nav-menu-close .menu-icon {
  margin-right: 20px;
}

.nav-menu-close .menu-icon span {
  width: 30px;
  height: 4px;
  margin-bottom: 8px;
  display: block;
  cursor: pointer;
  background: #404040;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-menu-close .menu-icon span:nth-child(1) {
  width: 30px;
  background: #404040;
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}


.nav-menu-close .menu-icon span:nth-child(2) {
  width: 30px;
  background: #404040;
  -webkit-transform: translateY(-2px) rotate(45deg);
  transform: translateY(-2px) rotate(45deg);
}

.show-nav-container ul {
  color: #999;
  font-size: 0.2rem;
  padding-left: 0.1rem;
  font-family: 'Inter-Medium';
}

.show-nav-container ul li {
  position: relative;
  padding: 15px 0;
  cursor: pointer;
}

.show-nav-container ul li a {
  width: 100%;
  display: block;
}

.show-nav-container ul li a:hover {
  text-decoration: underline;
}

.current-menu-item>a {
  color: #133e77;
  /*text-decoration: underline;*/
}

.show-nav-content .media-links {
  margin: .5rem 0;
  padding-left: 0.1rem;
}

.show-nav-content .media-links a {
  margin-right: .3rem;
}

.show-nav-content .media-links a:last-child {
  margin-right: 0;
}

.show-nav-content .others-links {
  padding-left: 0.1rem;
}

.show-nav-content .others-links a {
  display: flex;
  color: #999;
  padding: 7px 0;
}

.show-nav-content .others-links a:hover {
  color: #084A91;
}

.menu-has-children::after {
  position: absolute;
  top: 15px;
  right: 0;
  width: 22px;
  height: 22px;
  content: '';
  transform: rotate(90deg);
  background: url(/lib/images/icon_up.svg) no-repeat center;
  background-size: contain;
}

/* 二级菜单 */
.sub-menu {
  padding-top: 10px;
  display: none;
}

.menu-has-children > a {
  width: fit-content !important;
}
 

/* nav-right-container  */
.nav-right-container {
  align-items: center;
  justify-content: flex-end;
}

.nav-products a {
  color: #fff;
  align-items: center;
}

.nav-products svg {
  margin-right: 10px;
}

.language,
.nav-search {
  cursor: pointer;
}

.nav-xian {
  height: 20px;
  width: 1px;
  margin: auto .4rem;
  background: #ffffff50;
}

.language {
  margin-right: .4rem;
}

.banner-nav-container.active {
  background: none !important;
}


.brick {
  height: 1.1rem;
  transition: all 0.3s;

}

.brick.active {
  height: 0.8rem;
  transition: all 0.3s;

}

.nav-container-div.active {
  background: #fff;
  box-shadow: 3px 3px 10px #242e2e15;
}

.nav-container-div.active1 {
  transition: all 0.3s;
}

.nav-container-div.active2 {
  height: 0.8rem;
  transition: height 0.3s;
}

.nav-container.active .logo svg,
.nav-container.active .nav-products svg {
  fill: #133e77;
}

.nav-container.active .language svg,
.nav-container.active .nav-search svg {
  fill: #404040;
}

.nav-container.active .nav-menu-icon .menu-icon span {
  background: #404040;
}

.nav-container.active .nav-menu-icon .menu-text,
.nav-container.active .nav-products a {
  color: #404040;
}

.nav-container.active .nav-xian {
  background: #e5e5e5;
}


/* header end */




/* footer */
.footer {
  padding: .8rem 0.6rem;
  background: #E8F1FB;
}

.footer .footer-left-div {
  max-width: 280px;
  width: 100%;
  margin-right: 7.812525vw;
  color: #666;
}


.footer .footer-left-div .address {
  margin: 0.5rem 0;
  line-height: 1.5;
}


.footer .footer-left-div .footer-contact ul li img {
  margin-right: .14rem;
  flex-shrink: 0;
}


.footer .footer-left-div .footer-contact ul li {
  margin-bottom: .32rem;
}

.footer .footer-left-div .footer-media {
  margin-top: 0.48rem;
}

.footer .footer-left-div .footer-media a {
  margin-right: 0.3rem;
}

.footer .footer-left-div .footer-media a:last-child {
  margin-right: 0;
}


.footer .footer-item-div,
.footer .footer-right-div {
  flex: 1;
  color: #666;
  margin-left: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-right-div {
  align-items: flex-start;
}


.footer .footer-item-div .footer-item {
  margin-bottom: 0.8rem;
  width: 100%;
}

.footer .footer-item-div .footer-item:last-child {
  margin-bottom: 0;
}

.footer .footer-item-div ul {
  position: relative;
  padding-left: 16px;
}

.footer .footer-item-div ul::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  content: '';
  background: #133e7710;
}

.footer .footer-item-div ul li,
.footer .footer-right-div ul li {
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer .footer-title h4 {
  color: #242e2e;
  font-size: 20px;
  font-family: 'ZapfHumanist601BT-Bold';
  margin-bottom: 0.36rem;
}

.footer .footer-right-div .footer-right-item {
  margin-bottom: .56rem;
  width: 100%;
}

.footer .footer-right-div .footer-right-item:last-child {
  margin-bottom: 0;
}

.footer .footer-right-div .footer-right-xian {
  position: relative;
  width: 100%;
  height: 2px;
  margin-bottom: 20px;
  background: #133e7710;
}

.footer .footer-right-div .footer-right-xian::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  content: '';
  background: #133e77;
}


.copyright {
  padding: 0.3rem 0.6rem;
  color: #666;
}

.copyright .content {
  justify-content: space-between;
}

.copyright .left {
  align-items: center;
}

.copyright .left .language svg {
  margin: 0 0.16rem;
}

.copyright .left .language img {
  width: 20px;
  transform: rotate(180deg);
}

.copyright .left .footer-form .input {
  position: relative;
  align-items: center;
}

.copyright .left input {
  height: 40px;
  width: 2.8rem;
  border-color: #e5e5e5;
  background: #fff;
}

.copyright .left input:focus {
  box-shadow: none;
}

.copyright .left input::placeholder {
  color: #999;
}


.copyright .left input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  border: none;
  padding: 0;
  transform: translateY(-50%);
  background: url(/lib/images/icon_nav_search_main.svg) no-repeat center;
}

.copyright .right {
  align-items: center;
}

.copyright .right a {
  margin-right: 0.6rem;
  display: flex;
}










@font-face {
  font-family: 'Inter-Bold';
  src: url("/lib/fonts/Inter-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Medium';
  src: url("/lib/fonts/Inter-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Regular';
  src: url("/lib/fonts/Inter-Regular.ttf");
  font-display: swap;

}

@font-face {
  font-family: 'Inter-SemiBold';
  src: url("/lib/fonts/Inter-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'ZapfHumanist601BT-Bold';
  src: url("/lib/fonts/ZapfHumanist601BT-Bold.otf");
  font-display: swap;
}


@font-face {
  font-family: 'ZapfHumanist601BT-Demi';
  src: url("/lib/fonts/ZapfHumanist601BT-Demi.otf");
  font-display: swap;
}



html {
  font-size: 100px;
}

body {
  color: #404040;
  font-size: .16rem;
  font-family: 'Inter-Regular';
}

.flex {
  display: flex;
}

.com-container {
  max-width: 16.4rem;
  width: 100%;
  margin: auto;
}

.title {
  color: #242e2e;
  font-size: .4rem;
  font-family: 'ZapfHumanist601BT-Bold';
}

.subtitle {
  font-size: .2rem;
}

.small-title {
  position: relative;
  color: #084A91;
  width: fit-content;
  margin-bottom: .3rem;
  font-family: 'ZapfHumanist601BT-Demi';
}

.small-title::after {
  position: absolute;
  top: 50%;
  right: -0.9rem;
  width: .8rem;
  height: 1px;
  content: '';
  transform: translateY(-50%);
  background: #133e77;
}

.title-center {
  text-align: center;
  margin: auto;
}

.text p {
  line-height: 1.5;
}

.text-overflow {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.site-btn a,
.site-btn p {
  position: relative;
  width: 240px;
  height: .56rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter-Medium';
  background: #133e77;
}


.site-btn a::after,
.site-btn p::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: '';
  background: #084A91;
  transition: all 0.4s;
}

.site-btn a:hover,
.site-btn p:hover {
  z-index: 2;
}

.site-btn a:hover::after,
.site-btn p:hover::after {
  z-index: -1;
  width: 100%;
  transition: all 0.4s;
}




.main-btn a {
  width: 2.8rem;
  height: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #084A91;
}

.main-btn a svg {
  margin-left: 10px;
  transition: all 0.4s;
}

.main-btn a:hover svg {
  transform: translateX(10px);
  transition: all 0.4s;
}

.get-quote {
  max-width: 3.2rem;
  width: 100%;

}

.get-quote p {
  /* max-width: 3.2rem; */
  height: 56px;
  width: 100%;
  margin: auto;
  color: #fff;
  font-size: .16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter-Medium';
  cursor: pointer;
  background: #133e77;
}

.get-quote p img {
  margin-right: 10px;
}


* {
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}




/* help-contact */
.help-contact .item {
  position: relative;
  flex: 1;
  padding: 0.82rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.help-contact .item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
  transition: all 0.4s;
  background: #242e2e15;
}

.help-contact .item.help {
  background: #084A91;
}

.help-contact .item.contact {
  background: #133e77;
}

.help-contact .item .title {
  color: #fff;
}

.help-contact .item .text {
  max-width: 420px;
  width: 100%;
  margin: 20px auto 30px;
}

.help-contact .item .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 240px;
  margin: auto;
  color: #fff;
  font-family: 'Inter-Medium';
  border: 1px solid #ffffff;
  background: #ffffff15;
}

.help-contact .item .btn svg {
  position: relative;
  margin-left: 10px;
}

.help-contact .item .btn::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  content: '';
  background: #ffffff;
  transition: all 0.4s;
}

.help-contact .item:hover::after {
  opacity: 1;
  transition: all 0.4s;
}

.help-contact .item:hover .btn {
  z-index: 2;
  color: #084A91;
  border: none;
}

.help-contact .item:hover .btn svg {
  z-index: 2;
  fill: #084A91;
}

.help-contact .item:hover .btn::after {
  height: 100%;
  transition: all 0.4s;
}

/* .help-contact end */

/* 面包屑导航 */
.breadcrumbs .com-container {
  max-width: 100%;
  padding: 0 0.6rem;
}

.breadcrumbs .content {
  align-items: center;
  flex-wrap: wrap;
  padding: .24rem 0;
  margin-bottom: .3rem;
  color: #666;
}

.breadcrumbs .content svg {
  margin-right: 10px;
}

.breadcrumbs .content span {
  margin: 0 5px;
}

/* 悬浮菜单*/
.fixed-menu-div {
  position: sticky;
  top: 220px;
  z-index: 100;
  width: fit-content;
  display: flex;
  background: #133e77;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.fixed-menu-content {
  position: relative;
}

.fixed-menu-lists-div {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 0;
  display: none;
  background: #133e77;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.fixed-menu-lists {
  position: relative;
  transition: all 0.3s;
}

.fixed-menu-brick {
  margin-top: -300px;
}

.fixed-menu-brick.active {
  margin-top: 0;
}

.fixed-menu-lists ul {
  padding: .6rem 0;
  background: #fff;
  transform: translateX(-100%);
  transition: all 0.3s;
}

.fixed-menu-lists ul.active {
  transform: translateX(0);
  transition: all 0.3s;
}


.fixed-menu-lists li {
  margin: 0 20px;
  white-space: nowrap;
  padding: 16px 40px 10px 20px;
  font-size: 0.14rem;
  border-bottom: 1px solid #ddd;
}

.fixed-menu-lists li a {
  width: 100%;
  display: flex;
}

.fixed-menu-lists-icon,
.fixed-menu-icon {
  width: 40px;
  height: 300px;
  margin: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #133e77;
}

.fixed-menu-lists-icon {
  height: 100%;
}



@media (max-width: 1740px) {
  .com-container {
    padding: 0 0.5rem;
  }
}


@media (max-width: 1640px) {

  .com-container,
  .nav-container-div,
  .breadcrumbs .com-container {
    padding: 0 0.3rem;
  }

  .footer {
    padding: 0.8rem 0.3rem;
  }

  .copyright {
    padding: 0.3rem;
  }

}


@media (max-width: 1280px) {
  body {
    font-size: .2rem;
  }

  .title {
    font-size: .4rem;
  }

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

@media (max-width: 1100px) {
  .copyright .content {
    flex-direction: column;
    align-items: center;
  }

  .copyright .left {
    margin-bottom: 20px;
  }

  .copyright .left input {
    width: 280px;
  }


  .footer .footer-title h4 {
    font-size: 17px;
  }

  .footer .footer-left-div {
    margin-right: 0;
  }
}



@media (max-width: 1023px) {
  body {
    font-size: .23rem;
  }

  .title {
    font-size: .44rem;
  }

  .subtitle {
    font-size: .32rem;
  }

  .logo {
    max-width: 1.5rem;
  }

  .site-btn a,
  .site-btn p {
    height: 45px;
  }

  .brick.active,
  .nav-container-div.active2 {
    height: 1rem;
  }


  .footer .content {
    flex-direction: column;
  }

  .footer .footer-left-div {
    max-width: 100%;
    margin-bottom: 0.6rem;
  }

  .footer .footer-item-div,
  .footer .footer-right-div {
    align-items: flex-start;
    margin-left: 0;
  }

  .footer .footer-item-div .footer-item,
  .footer-item-div {
    margin-bottom: 0.56rem;
  }


  .fixed-menu-lists-icon,
  .fixed-menu-icon {
    height: 224px;
    display: none;
  }

  .fixed-menu-brick {
    /* margin-top: -224px; */
    margin-top: 0;
  }

  .help-contact .item .desc {
    padding: 0 15px;
  }
}


@media (max-width: 767px) {
  body {
    font-size: 13px;
  }

  .title {
    font-size: .5rem;
  }

  .subtitle {
    font-size: .36rem;
  }

  .com-container,
  .breadcrumbs .com-container {
    padding: 0 15px;
  }

  .solutions .get-quote {
    width: 100%;
  }

  .get-quote p {
    height: 56px;
    font-size: 16px;
    max-width: 100%;
  }

  .nav-container-div,
  .nav-container-div.active2,
  .brick {
    height: 60px;
  }

  .show-nav-content {
    max-width: 100%;
    width: 80%;
    padding-left: 15px;
  }


  .nav-menu-icon .menu-text,
  .nav-products span {
    display: none;
  }

  .nav-products svg {
    margin: 0;
  }

  .nav-menu-icon .menu-icon span {
    margin-bottom: 5px;
    height: 3px;
  }

  .footer .footer-item {
    width: 100%;
  }

  .footer .footer-title {
    position: relative;
    width: 100%;
  }

  .footer .footer-title h4 {
    font-size: 20px;
    margin-bottom: 0;
  }

  .footer .footer-title::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 15px;
    height: 2px;
    content: '';
    transform: translateY(-50%);
    background: #242e2e;
  }

  .footer .footer-title::after {
    position: absolute;
    top: 5px;
    right: 6px;
    width: 2px;
    height: 15px;
    content: '';
    background: #242e2e;
  }

  .footer .footer-title.active::after {
    opacity: 0;
  }

  .footer .footer-link-lists,
  .footer .footer-right-link {
    display: none;
    margin-top: 0.4rem;
  }

  .copyright {
    padding: 0.8rem 15px;
  }

  .copyright .left {
    width: 100%;
    flex-direction: column;
  }

  .footer-form,
  .copyright .left input {
    width: 100%;
  }

  .copyright .language {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .copyright .right {
    text-align: center;
    flex-direction: column;
  }

  .copyright .right .links {
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .copyright .right a {
    margin-bottom: 10px;
  }

  .help-contact .content {
    flex-direction: column;
  }

  .help-contact .item {
    padding: 0.8rem 15px;
  }

}