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

   .header.on {
     background: #fff;
   }

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

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

   /* logo */
   .header .logo {
     max-width: 300px;
     height: 100%;
   }

   .header.on .logo .logo1 {
     display: none;
   }

   .header.on .logo .logo2 {
     display: flex;
   }

   @media (max-width: 1200px) {}

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

   .header .nav .navbar_nav {
     width: 100%;
     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: 16px;
     height: 100%;
     color: #fff;
     border-bottom: 2px solid #fff0;
   }

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

   .header.on .navbar_nav li>a {
     color: #333;
   }



   /* 二级分类 */
   .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;
     font-size: 16px;
     text-align: center;
     display: block;
     width: 100%;
     padding: 15px 30px;
   }

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

   /* 导航图标代码 */
   .NavRight {
     height: 100%;
     display: flex;
     grid-gap: 60px;
   }

   .phone {
     display: flex;
     align-items: center;
     grid-gap: 10px;
     color: #FFF;
     font-size: 22px;
     font-weight: 700;
   }

   .ewm {
     position: relative;
     display: flex;
     justify-content: center;
   }

   .ewm p {
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: #FFF;
     font-size: 14px;
   }

   .ewm img {
     position: absolute;
     top: 100%;
     width: 120px;
     display: none;
   }

   .ewm:hover img {
     display: block;
   }

   .header.on .NavRight * {
     color: #333;
   }

   .header.on .NavRight .phone img {
     filter: invert(1);
   }

   @media (max-width: 1440px) {
     .NavRight {
       grid-gap: 30px;
     }

     .phone {
       font-size: 18px;
     }
   }



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