   /* 新加 - 模块 */

   /* 导航更新代码 */
   .header {
     margin: 0 auto;
     transition: 0s;
     height: 130px;
     position: fixed;
     background: #fff;
   }

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

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

   /* logo */
   .header .logo {
     width: 400px;
     height: 80px;
     padding: 10px 0;
   }

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

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

   .navRight .search {
     width: 370px;
     height: 30px;
     display: flex;
   }

   .navRight .search .searchInput {
     width: 320px;
     height: 30px;
     border: 1px solid #ccc;
     padding-left: 15px;
   }

   .navRight .search .subButn {
     width: 50px;
     height: 30px;
     background: url(/assets/img/search_2.png) no-repeat center var(--color);
     background-size: 20px 20px;
   }

   .navRight {
     display: flex;
     align-items: center;
     grid-gap: 30px;
     height: 80px;
   }

   .navRight span a {
     display: block;
     width: 30px;
   }

   .navRight span a img {
     width: 100%;
   }

   /* 导航 */
   .header .nav {
     width: 100%;
     max-width: 100%;
     height: 50px;
     position: relative;
   }

   .header .nav::after {
     content: "";
     display: block;
     position: absolute;
     z-index: -1;
     left: -50%;
     top: 0;
     width: 200%;
     height: 100%;
     background: var(--color);
   }


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

   .header .navbar_nav li.dropdown {
     position: relative;
     width: 100%;
     height: 100%;
     border-left: 1px dashed #ffffff38;
     border-right: 1px dashed #00000038;
   }

   .header .navbar_nav li>a {
     display: flex;
     justify-content: center;
     align-items: center;
     grid-gap: 5px;
     position: relative;
     font-size: 16px;
     padding: 0;
     height: 100%;
     color: #fff;
   }

   .header .navbar_nav li>a img {
     width: 16px;
     height: 16px;
     object-fit: contain;
   }

   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: absolute;
     top: 100%;
     width: max-content;
     min-width: 100%;
     left: auto;
     background: #404040;
   }

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


   .header .navbar_nav li.dropdown .dropdown_menu a {
     color: #fff;
     background: var(--color);
     border-top: 1px solid #90b9d0;
     transition: 0s;
     font-size: 14px;
     text-align: center;
     line-height: 1.5;
     padding: 10px 30px;
     display: block;
   }

   .header .navbar_nav li.dropdown .dropdown_menu a:hover {
     text-decoration: underline !important;
   }

   /* 下滑导航栏样式 */
   .header.on {
     height: 50px;
   }

   .header.on .navRight,
   .header.on .logo {
     display: none;
   }

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

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

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

     .header .navBox {
       width: 260px;
       padding: 0;
     }

     .header .logo {
       width: 260px;
       padding: 5px 0;
       display: flex;
     }

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