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

   .header .container {
     position: relative;
   }

   .header .logo {
     width: 200px;
     height: 120px;
   }

   .header .logo a img {
     max-width: 100%;
     max-height: 100%;
   }

   .header .logo .logo1 {
     filter: brightness(0) invert(1);
   }


   /* 导航 */
   .header .navBox {
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .header .nav {
     width: calc(100% - 400px);
     max-width: initial;
   }

   .header .nav .navbar_nav {
     width: 100%;
     display: flex;
     justify-content: space-evenly;
   }

   .header .navbar_nav li.dropdown {
     width: auto;
     height: 120px;
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: row;
   }

   .header .navbar_nav li>a {
     transition: 0.5s;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     font-size: 18px;
     color: #fff;
     line-height: 1;
     padding: 0;
     opacity: 1;
     height: 100%;
     padding: 0 15px;
   }

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

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



   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     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;
     padding: 10px;
     text-align: center;
     line-height: 1.5;
     width: 100%;
   }

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

   /* 导航图标代码 */
   .NavRight {
     width: 200px;
     height: 120px;
     display: flex;
     justify-content: space-between;
     filter: invert(1);
     transition: 0.5s;
   }

   .yy {
     width: 50px;
     height: 100%;
     color: #000000;
     line-height: 1;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: 0.5s;

   }


   .ss {
     position: relative;
     transition: 0.5s;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .ss .searchInput {
     padding: 0 15px;
     position: absolute;
     height: 40px;
     border: 1px solid #000;
     top: 100%;
     right: 0;
     background: #ffffff80;
     display: none;
   }

   .ss:hover .searchInput {
     display: block;
   }

   .ss .subButn {
     width: 60px;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: #fff0;
   }

   .ss .subButn img {
     width: 20px;
     height: 20px;
   }

   /* 下拉高度调整 */
   .header.on {
     height: 100px;
   }

   .header.on .logo {
     height: 100px;
   }

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

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

   .header.on .navbar_nav li.dropdown {
     height: 100px;
   }

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

   .header.on .NavRight {
     height: 100px;
     filter: invert(0);
   }

   @media (max-width: 1440px) {
     .header .navbar_nav li>a {
       font-size: 16px;
       padding: 0;
     }

   }

   @media (max-width: 1200px) {
     .header .navBox {
       width: 260px;
       padding: 0;
     }

     .header {
       background: #fff;
       width: 100%;
       border-bottom: 0px;
     }

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

     .header #navToggle {
       margin: 0;
     }

     .header .logo a {
       padding: 10px 0;
     }

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

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

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

   /* 新加 */
   .header::after {
     content: "";
     position: absolute;
     z-index: -1;
     left: 0;
     top: 0;
     width: 32%;
     height: 100px;
     background: #F7F9FC;
     transition: 0.5s;
     transition-delay: 0.2s;
     opacity: 0;
   }

   .header.on2::after {
     opacity: 1;
   }

   @media (max-width: 1440px) {
     .header.on2::after {
       width: 40%;
     }
   }

   @media (max-width: 1200px) {
     .header.on2::after {
       display: none;
     }
   }