   /* 新加 - 模块 */
   /* 导航更新代码 */
   .header {
     margin: 0 auto;
     transition: 0s;
     height: 85px;
     background: #fff;
   }

   .header .container {
     width: 100%;
     max-width: 100%;
     height: 100%;
     position: relative;
     padding: 0 60px;
     box-shadow: 5px 5px 5px rgba(0,0,0,0.05);
   }

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

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


   /* 导航 */
   .header .nav {
     width: calc(100% - 500px);
     max-width: unset;
     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;
   }

   /* 导航图标代码 */
   .navbar_nav .line {
     display: block;
     width: 1px;
     height: 20px;
     background: #fff;
   }


   .NavRight {
     height: 100%;
     position: relative;
     display: flex;
     align-items: center;
     grid-gap: 15px;
   }

   /* 搜索框代码 */
   .SearchBox {
     height: 100%;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
   }

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

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

   .SearchBox:hover .ss {
     display: flex;
   }

   .SearchBox .ss .searchInput {
     width: 150px;
     height: 100%;
     padding-left: 10px;
     outline: none;
   }

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

   .NavRight .Language {
     color: #000;
     font-size: 16px;
     font-weight: bolder;
   }

   .NavRight .Phone {
     color: var(--color);
     font-family: MiSans;
     font-size: 28px;
     font-weight: bold;
   }

   @media (max-width: 1440px) {
     .header .container {
       padding: 0 30px;
     }

     .header .nav {
       width: calc(100% - 360px);
     }

     .NavRight .Phone {
       font-size: 20px;
     }
   }


   @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;
     }
   }
