.m-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  transition: all 0.2s ease-in-out;
}
.m-background.on {
  visibility: visible;
  opacity: 1;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  background: #002851;
  display: flex;
  flex-direction: column;
  z-index: 1001;
  transition: all 0.2s ease-in-out;
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .m-head {
  width: 100%;
  height: 70px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #4893D4;
}
.m-menu .m-head #m-logo {
  flex: 0 0 auto;
  height: 60%;
  display: flex;
}
.m-menu .m-head #m-logo > img {
  height: 100%;
}
.m-menu .m-head .m-menu-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.m-menu .m-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-body {
  width: 100%;
  height: auto;
  padding: 16px 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: white;
  overflow: auto;
}
.m-menu .m-body .m-to-inquiry {
  width: calc(100% - 32px);
  height: 40px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #002851;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #002851;
  word-break: keep-all;
  text-align: center;
  background: white;
}
.m-menu .m-body .m-lang-wrap {
  width: 100%;
  height: auto;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 480px) {
  .m-menu .m-body .m-lang-wrap {
    gap: 4px;
  }
}
.m-menu .m-body .m-lang-wrap > a {
  flex: 1 1 30%;
  height: 40px;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #002851;
}
.m-menu .m-body .m-lang-wrap > a .fi {
  font-size: clamp(14px, 4vw, 18px);
}
.m-menu .m-body .m-lang-wrap > a > p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #002851;
  word-break: keep-all;
}
.m-menu .m-body .m-global-nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #002851;
  border-bottom: 1px solid #002851;
}
.m-menu .m-body .m-global-nav .depth-1 {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav .depth-1 > span, .m-menu .m-body .m-global-nav .depth-1 > a {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #002851;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.m-menu .m-body .m-global-nav .depth-1 .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: #4893D4;
  box-shadow: inset 0 0 8px -2px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-body .m-global-nav .depth-1 .depth-2 > li {
  width: 100%;
  height: 40px;
}
.m-menu .m-body .m-global-nav .depth-1 .depth-2 > li > a {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  padding-left: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  line-height: 1.2;
  color: white;
}
.m-menu .m-body .m-global-nav .depth-1.on > span, .m-menu .m-body .m-global-nav .depth-1.on > a, .m-menu .m-body .m-global-nav .depth-1:hover > span, .m-menu .m-body .m-global-nav .depth-1:hover > a {
  background: #002851;
  color: white;
}
.m-menu .m-body .m-global-nav .depth-1.on .depth-2 {
  max-height: 200px;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 999;
  background: #002851;
}
@media (max-width: 1720px) {
  #header {
    height: 70px;
  }
}
#header .container {
  position: relative;
  width: 95%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#header .container .h-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 60%;
  display: flex;
}
#header .container .h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-global-nav {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#header .container .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container .h-global-nav .depth-1 > li {
  position: relative;
  width: auto;
  height: 100%;
  flex: 0 0 150px;
  display: flex;
}
@media (max-width: 1720px) {
  #header .container .h-global-nav .depth-1 > li {
    flex: 0 0 clamp(88px, 9vw, 120px);
  }
}
#header .container .h-global-nav .depth-1 > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: white;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1720px) {
  #header .container .h-global-nav .depth-1 > li > a {
    font-size: clamp(16px, 1.4vw, 22px);
  }
}
#header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 > li {
  width: 100%;
  height: auto;
}
#header .container .h-global-nav .depth-1 > li .depth-2 > li > a {
  width: 100%;
  height: 52px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: #002851;
}
#header .container .h-global-nav .depth-1 > li:hover > a {
  background: white;
  color: #002851;
}
#header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  max-height: 320px;
}
#header .container .h-right-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .container .h-right-wrap .product-question {
  width: 160px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid white;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1720px) {
  #header .container .h-right-wrap .product-question {
    width: 120px;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .product-question {
    display: none;
  }
}
#header .container .h-right-wrap .product-question:hover {
  background: white;
  color: #002851;
}
#header .container .h-right-wrap .h-lang-nav {
  position: relative;
  flex: 0 0 auto;
  width: 120px;
  height: 48px;
  border: 1px solid white;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-lang-nav {
    display: none;
  }
}
#header .container .h-right-wrap .h-lang-nav .current-lang {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .h-lang-nav .current-lang .fi {
  font-size: 24px;
}
#header .container .h-right-wrap .h-lang-nav .current-lang > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
#header .container .h-right-wrap .h-lang-nav .lang-list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid white;
  background: white;
  visibility: hidden;
  opacity: 1;
}
#header .container .h-right-wrap .h-lang-nav .lang-list .item {
  width: 100%;
  height: 48px;
}
#header .container .h-right-wrap .h-lang-nav .lang-list .item > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #002851;
  text-align: center;
}
#header .container .h-right-wrap .h-lang-nav .lang-list .item > a .fi {
  font-size: 20px;
}
#header .container .h-right-wrap .h-lang-nav.on .current-lang {
  background: white;
}
#header .container .h-right-wrap .h-lang-nav.on .current-lang > p {
  color: #002851;
}
#header .container .h-right-wrap .h-lang-nav.on .lang-list {
  visibility: visible;
  opacity: 1;
}
#header .container .h-right-wrap .m-menu-open {
  display: none;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-open {
    display: flex;
  }
}
#header .container .h-right-wrap .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: white;
}

#footer {
  width: 100%;
  height: auto;
  padding: 20px 0 52px;
  background: #002851;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1280px) {
  #footer {
    padding: 1rem 0 40px;
    gap: 24px;
  }
}
#footer .top {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #4893D4;
}
@media (max-width: 1280px) {
  #footer .top {
    height: 48px;
  }
}
#footer .top .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#footer .top .container .f-global-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1280px) {
  #footer .top .container .f-global-nav {
    width: 100%;
    justify-content: space-evenly;
    gap: unset;
  }
}
#footer .top .container .f-global-nav > a {
  font-size: 18px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  #footer .top .container .f-global-nav > a {
    font-size: 14px;
  }
}
#footer .bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#footer .bottom .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  #footer .bottom .container {
    flex-direction: column;
    gap: 36px;
  }
}
#footer .bottom .container .left {
  flex: 0 0 40%;
}
@media (max-width: 1280px) {
  #footer .bottom .container .left {
    flex: unset;
    width: 100%;
    height: auto;
  }
}
#footer .bottom .container .left .f-info-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 1280px) {
  #footer .bottom .container .left .f-info-wrap {
    gap: 12px;
  }
}
#footer .bottom .container .left .f-info-wrap .item {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
}
#footer .bottom .container .left .f-info-wrap .item .f-head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  #footer .bottom .container .left .f-info-wrap .item .f-head {
    gap: 8px;
  }
}
#footer .bottom .container .left .f-info-wrap .item .f-head > svg {
  width: 24px;
  height: 24px;
  fill: white;
}
@media (max-width: 1280px) {
  #footer .bottom .container .left .f-info-wrap .item .f-head > svg {
    width: 20px;
    height: 20px;
  }
}
#footer .bottom .container .left .f-info-wrap .item .f-head > span {
  font-size: 16px;
  line-height: 24px;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .bottom .container .left .f-info-wrap .item .f-head > span {
    font-size: 13px;
    line-height: 20px;
  }
}
#footer .bottom .container .left .f-info-wrap .item .f-content {
  font-size: 16px;
  line-height: 24px;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .bottom .container .left .f-info-wrap .item .f-content {
    font-size: 13px;
    line-height: 20px;
  }
}
#footer .bottom .container .right {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 1280px) {
  #footer .bottom .container .right {
    flex: unset;
    width: 100%;
    height: auto;
    gap: 16px;
  }
}
#footer .bottom .container .right .contact-phone {
  position: relative;
  padding-top: 32px;
  padding-right: 20px;
}
@media (max-width: 1280px) {
  #footer .bottom .container .right .contact-phone {
    padding-top: 12px;
    padding-right: 16px;
  }
}
#footer .bottom .container .right .contact-phone .circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #E84D15;
  border-radius: 10000rem;
}
@media (max-width: 1280px) {
  #footer .bottom .container .right .contact-phone .circle {
    width: 40px;
    height: 40px;
  }
}
#footer .bottom .container .right .contact-phone > span {
  position: relative;
  font-size: 18px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .bottom .container .right .contact-phone > span {
    font-size: 16px;
  }
}
#footer .bottom .container .right .c-bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 52px;
}
@media (max-width: 1280px) {
  #footer .bottom .container .right .c-bottom {
    gap: 32px;
  }
}
@media (max-width: 640px) {
  #footer .bottom .container .right .c-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
#footer .bottom .container .right .c-bottom .phone {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  word-break: keep-all;
  color: white;
}
#footer .bottom .container .right .c-bottom .phone.for-cn {
  font-size: 48px;
}
@media (max-width: 1280px) {
  #footer .bottom .container .right .c-bottom .phone.for-cn {
    font-size: 32px;
  }
}
#footer .bottom .container .right .c-bottom .phone.for-en {
  font-size: 48px;
}
@media (max-width: 1280px) {
  #footer .bottom .container .right .c-bottom .phone.for-en {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  #footer .bottom .container .right .c-bottom .phone {
    font-size: 40px;
  }
}
#footer .bottom .container .right .c-bottom .social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1280px) {
  #footer .bottom .container .right .c-bottom .social-nav {
    gap: 12px;
  }
}
#footer .bottom .container .right .c-bottom .social-nav > a {
  flex: 0 0 auto;
}
#footer .bottom .container .right .c-bottom .social-nav > a > img {
  max-width: 100%;
}/*# sourceMappingURL=common.css.map */