   /* 新加 - 模块 */
   /* 导航更新代码 */
   .header {
     margin: 0 auto;
     transition: 0s;
     height: 130px;
     background: url(/assets/images/topback.png) no-repeat center;
     background-size: 100% cover;
   }



   .header .container {
     position: relative;
   }

   .header .navBox {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
   }

   /* logo */
   .header .logo {
     width: 400px;
     height: 130px;
   }

   .header .logo .logo1 {
     display: flex !important;
   }

   .header .logo .logo2 {
     display: none !important;
   }


   /* 导航 */
   .header .nav {
     width: calc(100% - 500px);
     max-width: 100%;
   }

   .topText {
     width: 100%;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: space-between;
   }

   .topText h1 {
     color: #fff;
     font-size: 12px;
   }

   .topText .Language {
     display: flex;
     align-items: center;
     grid-gap: 20px;
   }

   .topText .Language a {
     display: flex;
     align-items: center;
     grid-gap: 10px;
     font-size: 12px;
     color: #fff;
   }

   .header .nav .navbar_nav {
     width: 100%;
     height: 66px;
     display: flex;
     justify-content: space-between;
   }

   .header .navbar_nav li.dropdown {
     position: relative;
   }

   .header .navbar_nav li>a {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     font-size: 14px;
     color: #6b6b6b;
     height: 100%;
     border-bottom: 2px solid #fff;
   }

   .header .navbar_nav li>a:hover {
     color: var(--color);
     border-bottom: 2px solid var(--color);
   }


   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: absolute;
     top: 100%;
     width: max-content;
     left: 0;
     background: #F9F9F9;
   }

   .header .navbar_nav li.dropdown:hover .dropdown_menu {
     display: block;
   }


   .header .navbar_nav li.dropdown .dropdown_menu a {
     color: var(--color);
     background: #fff0;
     transition: 0s;
     font-size: 14px;
     text-align: center;
     padding: 10px 30px;
     display: block;
     width: 100%;
   }

   .header .navbar_nav li.dropdown .dropdown_menu a:hover {
     background: var(--color);
     color: #fff;
   }


   @media (max-width: 1200px) {
     .header {
       background: #2c2f34;
     }

     .header .container {
       display: flex;
       justify-content: space-between;
     }

     .header .logo .logo1 {
       display: none !important;
     }

     .header .logo .logo2 {
       display: flex !important;
     }

     .header .navBox {
       width: 260px;
       padding: 0;
     }

     .header .logo {
       padding: 5px 0;
     }

     .header #navToggle {
       margin: 0;
     }


     .header #navToggle span,
     .header #navToggle span:before,
     .header #navToggle span:after {
       background: #fff !important;
     }

     .header.on #navToggle span,
     .header.on #navToggle span:before,
     .header.on #navToggle span:after {
       background: #fff !important;
     }

     .NavRight {
       display: none;
     }

     .m_nav {
       background: rgb(0 0 0 / 80%);
     }

     .m_nav .ul li a {
       color: #fff;
     }

     .m_nav .top .closed {
       filter: invert(1);
     }
   }