   /* 新加 - 模块 */
   /* 导航更新代码 */
   .header {
     padding-left: var(--container);
     padding-right: var(--container);
     position: fixed;
     margin: 0 auto;
     background: rgba(255, 255, 255, 0);
     transition: 0.5s;
     height: 90px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
   }

   /* logo */
   .header .logo {
     width: 300px;
     height: 90px;
   }

   @media (max-width: 1200px) {
     .header .logo a {
       padding: 10px 0;
     }
   }

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

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


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

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

   .header .navbar_nav li>a {
     line-height: 90px;
     font-weight: bold;
     color: #fff;
     font-size: 16px;
     position: relative;
     padding: 0;
     display: flex;
     justify-content: center;
   }

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

   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: absolute;
     top: 100%;
     width: 240px;
     background: #fff;
   }

   .header .navbar_nav li.dropdown .dropdown_menu a {
     color: #666;
     background: #fff0;
     transition: 0s;
     font-size: 14px;
     padding: 0 10px;
     line-height: 3;
     text-align: center;
     width: 100%;
     overflow: hidden;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 1;
     word-break: break-all;
   }

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

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

   /* 导航图标代码 */
   .NavRight {
     width: 150px;
     height: 90px;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     grid-gap: 15px;
   }


   .yy {
     font-size: 14px;
     color: #fff;
     line-height: 1;
     transition: 0.5s;
     display: flex;
     align-items: center;
     justify-content: center;
     grid-gap: 10px;
   }

   .yy img {
     width: 25px;
   }

   .yy:hover {
     color: #fff;
   }

   .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 #ccc;
     top: 100%;
     right: 0;
     display: none;
   }

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

   .ss .subButn {
     width: 40px;
     height: 40px;
     background: #fff0;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .ss .subButn img {
     width: 22px;
     height: 22px;
     filter: brightness(0) invert(1);
   }


   /* 下拉导航 */
   .header.on {
     background: #fff;
   }


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

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

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



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

     .header {
       background: #fff;
       width: 100%;
     }

     .header #navToggle span,
     .header #navToggle span:before,
     .header #navToggle span:after {
       background: #000 !important;
       margin: 0;
     }

     .header #navToggle {
       margin: 0;
       float: none;
       position: absolute;
       right: 0;
       top: 0;
       display: flex;
       align-items: center;
     }



     .NavRight {
       display: none;
     }
   }