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


   .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.on .logo .logo1 {
     display: none;
   }

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

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

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

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

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

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


   /* .header.on .navbar_nav li>a,
   .header:hover .navbar_nav li>a {
     color: var(--color);
   } */


   .header .navbar_nav span {
     display: block;
     width: 2px;
     height: 6px;
     background: #fff;
   }



   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: absolute;
     top: 100%;
     width: 200px;
     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;
     line-height: 3;
     display: block;
     width: 100%;
   }

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

   /* 导航图标代码 */
   .ss {
     display: flex;
     align-items: center;
     grid-gap: 5px;
   }

   .subButn {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 20px;
     height: 20px;
     background: #fff0;
   }

   .subButn img {
     width: 100%;
     height: 100%;
     object-fit: contain;
   }

   .searchInput {
     width: 50px;
     height: 20px;
     background: #fff0;
     outline: none;
   }

   .searchInput::placeholder {
     color: #fff;
     font-weight: bold;
   }

   .header.on {
     background: #fff;
   }

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

   .header.on .navbar_nav span {
     background: #000;
   }

   .header.on .ss .subButn {
     filter: invert(1);
   }

   .header.on .ss .searchInput::placeholder {
     color: #000;
   }

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