   /* 新加 - 模块 */

   /* 导航更新代码 */
   .header {
     margin: 0 auto;
     transition: 0s;
     height: 90px;
     position: fixed;
     background: #fff;
     box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 15px;
   }

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

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

   /* logo */
   .header .logo {
     width: 300px;
     height: 100%;
     padding: 10px 0;
   }

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

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


   /* 导航 */

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

   .header .nav .navbar_nav {
     width: 100%;
     display: flex;
     justify-content: space-between;
     grid-gap: 5px;
   }

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

   .header .navbar_nav li>a {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     font-size: 18px;
     font-weight: bold;
     padding: 0;
     height: 100%;
     color: #333333;
   }

   .header .navbar_nav li>a i {
     opacity: 0;
     position: absolute;
     bottom: 5px;
     color: var(--color);
   }

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

   .header .navbar_nav li>a:hover i {
     opacity: 1;
   }

   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: absolute;
     top: 100%;
     width: 200px;
     left: auto;
     background: var(--color);
   }

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


   .header .navbar_nav li.dropdown .dropdown_menu a {
     color: #fff;
     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(--color2);
     color: #fff;
   }


   .navbar_nav .phone {
     display: flex;
     align-items: center;
     grid-gap: 10px;
     font-size: 18px;
     color: var(--color);
   }

   .navbar_nav .phone img {
     width: 30px;
   }

   .navbar_nav .search {
     position: relative;
     display: flex;
     align-items: center;
   }

   .navbar_nav .subButn {
     position: relative;
     z-index: 1;
     width: 80px;
     height: 80px;
     border-radius: 4px;
     background: url(/assets/img/search_2.png) no-repeat center var(--color);
     background-size: 24px;
   }

   .navbar_nav .searchInput {
     display: none;
     position: absolute;
     right: 0;
     top: 100%;
     width: 200px;
     height: 30px;
     border: 1px solid #ccc;
     padding-left: 10px;
   }

   .navbar_nav .search:hover .searchInput {
     display: block;
   }

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

     .navbar_nav .phone {
       grid-gap: 5px;
       font-size: 16px;
     }
   }

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

     .NavRight {
       display: none;
     }
   }