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

   .header * {
     transition: 0s !important;
   }

   .header .container {
     position: relative;
   }

   .header .navBox {
     position: relative;
     width: 60%;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
   }

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

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

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

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

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


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

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


   .header .navbar_nav li.dropdown .dropdown_menu a {
     background: #fff0;
     transition: 0s;
     color: #797979;
     font-size: 16px;
     text-align: center;
     padding: 10px 15px;
     line-height: 1.5;
     display: block;
     width: 100%;
   }

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




   /* 导航图标代码 */
   .NavRight {
     position: absolute;
     top: 0;
     right: 0;
     height: 120px;
     display: flex;
     align-items: center;
   }

   .Search {
     display: flex;
     grid-gap: 5px;
   }

   .subButn {
     width: 20px;
     height: 20px;
     background: url(/assets/img/search_1.png) no-repeat center #fff0;
     background-size: contain;
   }

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

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

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

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

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

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

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

   .header.on .navBox {
     width: 100%;
   }

   .header.on .nav {
     width: calc(100% - 400px);
     max-width: 960px;
     height: 90px;
   }

   .header.on .NavRight {
     position: unset;
     height: 90px;
   }

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

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

     .header .logo {
       padding: 5px 0;
     }

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

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

   @media (max-width: 720px) {
     .header {
       background: #fff0;
     }
   }
    /* 新加代码 */
    .header {
        background: #fff;
    }

    .header .logo {
        height: 90px;
    }

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

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

    .header .navbar_nav li>a {
        color: #4D4D4D;
    }

    .header .navBox {
        width: 100%;
    }

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

    .header .NavRight {
        position: unset;
        height: 90px;
    }
