@media all {
  header {
    width: 100%;
    height: 4.75vw;
  }
  header .content {
    background: #FFFFFF;
    position: relative;
    z-index: 100000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5.75vw 0 2.5833333333vw;
  }
  header .content .logo {
    width: 9.25vw;
    height: 2.5833333333vw;
    background: url("/statics/images/2023/en/home_header_logo.png") center center/contain no-repeat;
  }
  header .content nav {
    height: 4.75vw;
    font-size: 0.9166666667vw;
    color: #323232;
    line-height: 1.3333333333vw;
    display: flex;
  }
  header .content nav .item {
    margin-right: 8.25vw;
    height: 4.75vw;
    line-height: 4.75vw;
    cursor: pointer;
  }
  header .content nav .item span {
    position: relative;
  }
  header .content nav .item span a {
    color: #000;
  }
  header .content nav .item span:after {
    content: "";
    height: 2px;
    background: #2082DB;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    transition: all 0.3s;
  }
  header .content nav .item:last-of-type {
    margin: 0;
  }
  header .content nav .active span:after {
    width: 100%;
  }
  header .content .other {
    height: 1.5vw;
    font-size: 1.0833333333vw;
    line-height: 1.5vw;
    position: relative;
  }
  header .content .other a {
    color: #BCBCBC;
    transition: all 0.3s;
  }
  header .content .other a:hover {
    color: #1B94DE;
  }
  header .content .other:before {
    content: "";
    width: 1px;
    height: 1.5vw;
    background: #BCBCBC;
    position: absolute;
    left: -2vw;
    top: 0;
    border: none;
  }
  header .content .m_function {
    display: none;
  }
  @keyframes width_0_100 {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  header .nav_products {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s;
    transform: translateY(calc(100% - 1px));
    cursor: default;
    display: none;
  }
  header .nav_products ul {
    padding: 2.5vw 15.8333333333vw;
    margin: 0;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #C3C3C3;
    background: #FFFFFF;
    box-shadow: 0px 1vw 1.25vw 0px rgba(0, 0, 0, 0.21);
    opacity: 0;
    transition: all 0.5s;
    overflow: hidden;
  }
  header .nav_products ul li {
    width: 12.8333333333vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .nav_products ul li .product_img {
    width: 6.4166666667vw;
    height: 6.1666666667vw;
    margin: 0 auto 1.4166666667vw;
    background: center bottom/contain no-repeat;
    transition: all 0.5s;
  }
  header .nav_products ul li .info {
    font-size: 0.9166666667vw;
    color: #5F5F5F;
    line-height: 1.1666666667vw;
    text-align: center;
    transition: all 0.5s;
  }
  header .nav_products ul li:hover .product_img {
    transform: scale(1.2);
  }
  header .nav_products ul li:hover .info {
    color: #1B94DE;
  }
  header .nav_products.active ul {
    opacity: 1;
  }
  .inner-nav {
    display: none;
  }
}
@media all and (max-width: 767px) {
  header {
    height: 60px;
  }
  header .content {
    position: fixed;
    left: 0;
    top: 0;
    padding: 0 10px;
    width: 100%;
  }
  header .content .logo {
    width: 120px;
    height: 60px;
  }
  header .content nav {
    display: none;
  }
  header .content .other {
    display: none;
  }
  header .content .m_function {
    display: block;
  }
  header .content .m_function .inner-header-icon {
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    color: #000000;
    font-size: 30px;
    text-align: center;
    width: 60px;
    height: 60px;
  }
  header .content .m_function .inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
  }
  header .content .m_function .inner-header-icon span {
    position: absolute;
    left: calc((100% - 30px) / 2);
    top: calc((100% - 1px) / 2);
    width: 30px;
    height: 1px;
    background-color: rgb(0, 0, 0);
  }
  header .content .m_function .inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
  }
  header .content .m_function .inner-header-icon span:nth-child(2) {
    opacity: 0;
  }
  header .content .m_function .inner-header-icon span:nth-child(3) {
    transform: translateY(-4px) rotate(0deg);
  }
  header .content .m_function .inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
  }
  header .content .m_function .inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
  }
  header .content .m_function .inner-header-icon-click span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickthird;
  }
  @keyframes clickfirst {
    0% {
      transform: translateY(4px) rotate(0deg);
    }
    100% {
      transform: translateY(0) rotate(45deg);
    }
  }
  @keyframes clicksecond {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes clickthird {
    0% {
      transform: translateY(-4px) rotate(0deg);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }
  header .content .m_function .inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
  }
  header .content .m_function .inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
  }
  header .content .m_function .inner-header-icon-out span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
  }
  @keyframes outfirst {
    0% {
      transform: translateY(0) rotate(-45deg);
    }
    100% {
      transform: translateY(-4px) rotate(0deg);
    }
  }
  @keyframes outsecond {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes outthird {
    0% {
      transform: translateY(0) rotate(45deg);
    }
    100% {
      transform: translateY(4px) rotate(0deg);
    }
  }
  .inner-nav {
    display: block;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    position: fixed;
    top: 60px;
    transform: translateY(-100%);
    left: 0px;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 100;
    margin: 0;
    padding: 20px 0 40px;
  }
  .inner-nav li a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 90%;
    margin-left: 5%;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
  }
  .inner-nav li a:hover {
    color: rgba(255, 255, 255, 0.4);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  }
  .inner-nav li a .icon {
    height: 10px;
    width: 10px;
    margin-left: 5px;
    position: relative;
    display: inline-block;
  }
  .inner-nav li a .icon:before {
    content: "";
    position: absolute;
    top: -5px;
    height: 10px;
    width: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    color: #797979;
    transform: rotate(45deg);
    transition: all 0.5s;
  }
  .inner-nav li a .icon.active:before {
    top: 3px;
    transform: rotate(-135deg);
  }
  .inner-nav li ul {
    padding: 0 0 0 20px;
    margin: 0;
    height: 0;
    overflow: hidden;
    list-style: none;
    transition: all 0.5s;
  }
  .inner-nav li ul li a {
    border: none;
  }
  .inner-nav li ul li a:hover {
    color: rgba(255, 255, 255, 0.4);
    border-bottom: none;
  }
}

/*# sourceMappingURL=header.css.map */
