   /* 新加 - 模块 */
   /* 导航更新代码 */
   .header {
     margin: 0 auto;
     transition: 0s;
     height: 85px;
     background: #fff;
     box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
   }

   .header .container {
     height: 100%;
     position: relative;
   }

   .header .navBox {
     height: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   /* logo */
   .header .logo {
     width: 200px;
     height: 100%;
   }


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

   .header .nav .navbar_nav {
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .header .navbar_nav li.dropdown {
     position: relative;
     height: 100%;
   }

   .header .navbar_nav li>a {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     font-size: 16px;
     height: 100%;
     color: #000000;
   }

   .header .navbar_nav li>a.active {
     font-weight: bold;
   }

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

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


   .header .navbar_nav li.dropdown .dropdown_menu a {
     color: #7E7E7E;
     background: #fff0;
     transition: 0s;
     padding: 10px 30px;
     font-size: 16px;
     text-align: center;
     line-height: 1.5;
     display: block;
     width: 100%;
   }

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

   /* 导航图标代码 */
   /* 搜索框代码 */
   .SearchBox {
     height: 100%;
     width: 50px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .SearchBox img {
     width: 20px;
     height: 20px;
     object-fit: contain;
     cursor: pointer;
   }

   .SearchBox .ss {
     position: absolute;
     right: 0;
     top: 100%;
     width: 240px;
     height: 50px;
     display: none;
     align-items: center;
     background: #f5f5f5;
   }


   .SearchBox .ss .searchInput {
     width: calc(100% - 50px);
     height: 100%;
     padding-left: 10px;
     outline: none;
     background: #fff0;
   }

   .SearchBox .ss .subButn {
     width: 50px;
     height: 100%;
     background: url(/assets/img/search_1.png) no-repeat center;
     background-size: 20px;
   }

   /* 多语言 */
   a.headerMore {
     border-radius: 100px;
     background: var(--color);
     width: 160px;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     font-size: 14px;
     color: #fff;
     font-family: MiSans2;
   }


   @media (max-width: 1200px) {
     .header {
       background: #fff;
       width: 100%;
       border-bottom: 0px;
     }

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

     .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: #333 !important;
     }

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

     .NavRight {
       display: none;
     }

     .m_nav .Language {
       text-align: center;
     }

     .m_nav .Language img {
       filter: invert(1);
       text-align: center;
     }
   }
