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

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

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

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


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

   .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-size: 16px;
     height: 100%;
     color: #fff;
     font-weight: 700;
     font-family: "LINE Seed Sans App";
   }

   .header .navbar_nav li>a.active {
     font-weight: bold;
   }

   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: absolute;
     top: 100%;
     width: max-content;
     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: 14px;
     text-align: center;
     line-height: 1.5;
     padding: 10px 30px;
     display: block;
     width: 100%;
     font-family: "LINE Seed Sans App";
   }

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

   /* 导航图标代码 */
   .NavRight {
     display: flex;
     align-items: center;
     grid-gap: 25px;
   }

   .NavRight li {
     height: 100%;
   }

   .NavSearch {
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .NavSearch img {
     width: 28px;
     height: 28px;
     object-fit: contain;
   }


   .NavSearch .ss {
     width: 200px;
     height: 35px;
     display: flex;
   }

   .NavSearch .ss .searchInput {
     width: 170px;
     height: 35px;
     border: 0px;
     outline: none;
     padding: 0px 10px;
   }

   .NavSearch .ss .subButn {
     width: 30px;
     height: 35px;
     background: url(../../img/search_1.png) no-repeat center #f0f0f0;
     background-size: 20px;
   }

   .NavRight .user img {
     max-width: 30px;
     max-height: 30px;
     object-fit: contain;
   }

   .NavRight li.touch {
     display: flex;
     align-items: center;
   }

   .NavRight li.touch a {
     width: 120px;
     height: 40px;
     border-radius: 50px;
     background: var(--hei);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #FFF;
     text-align: center;
     font-family: "LINE Seed Sans App";
     font-size: 16px;
     font-weight: 700;
     transition: 0.5s;
   }

   /* 导航向下滚动后样式 */
   .header.on {
     background: var(--shenlan);
   }

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

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

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

   .header.on .NavRight li.touch a {
     background: #FFF;
     color: var(--hei);
   }

   @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 {
       padding: 5px 0;
     }

     .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: #fff !important;
     }

     .NavRight {
       display: none;
     }

     .user a {
       display: flex !important;
       align-items: center;
       justify-content: center;
       grid-gap: 15px;
     }

     .user img {
       filter: invert(1);
     }
   }