   /* 新加 - 模块 */
   /* 导航更新代码 */
   .header {
     position: sticky;
     margin: 0 auto;
     background: rgba(255, 255, 255, 1);
     transition: 0.5s;
     height: 90px;
     border-bottom: 0px solid #F4F4F4;
   }

   /* logo */
   .header .logo {
     width: 450px;
     height: 90px;
     padding-left: 3vw;
   }

   .header .logo a {
     width: 100%;
     height: 100%;
   }

   .header .logo a img {
     max-width: 200px;
     object-fit: contain;
     object-position: left;
   }

   .header .logo a h1 {
     font-size: 18px;
     font-weight: 700;
     color: #333333;
     margin-left: 10px;
     padding-left: 10px;
     background: url(/assets/images/img1.png) no-repeat left center;
   }

   .header .logo a h1 b {
     color: var(--color);
   }

   /* 导航 */
   .header .nav {
     background: url(/assets/images/img2.png) no-repeat center left;
     background-size: cover;
     width: calc(100% - 900px);
     max-width: initial;
     padding-left: 5vw;
   }

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


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

   .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: 160px;
     left: calc(50% - 80px);
     background: #fff;
   }

   .header .navbar_nav li.dropdown .dropdown_menu a {
     color: #666;
     background: #fff0;
     transition: 0s;
     font-size: 14px;
     padding: 10px 0;
     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 {
     padding-left: 60px;
     padding-right: 3vw;
     width: 550px;
     height: 90px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: #a2a2a2;
   }

   .yy {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: 0.5s;
   }

   .yy a {
     font-weight: bold;
     color: #fff;
     line-height: 1;
     transition: 0.5s;
   }

   .yy:hover a {
     color: var(--color);
   }

   .ss {
     width: 75px;
     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);
   }

   .phone {
     display: flex;
     align-items: center;
     grid-gap: 15px;
     font-size: 24px;
     color: #fff;
     font-weight: bold;
   }

   /* 下拉导航 */
   /* .header.on {
     height: 90px;
   }

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

   .header.on .navbar_nav li>a {
     line-height: 90px;
   }

   .header.on .NavRight {
     height: 90px;
   } */
   @media (max-width: 1600px) {
     .header .logo {
       width: 400px;
       height: 90px;
       padding-left: 3vw;
     }

     .header .nav {
       width: calc(100% - 800px);
       max-width: 1080px;
       padding-left: 4vw;
     }

     .NavRight {
       padding-left: 30px;
       padding-right: 3vw;
       width: 400px;
       height: 90px;
     }
   }

   @media (max-width: 1440px) {
     .header .nav {
       width: calc(100% - 550px);
       padding-left: 4vw;
     }

     .header .logo {
       width: 250px;
     }

     .NavRight {
       width: 300px;
       padding-right: 2vw;
     }

     .header .logo a h1 {
       display: none;
     }

     .yy {
       width: auto;
     }

     .ss {
       width: 50px;
     }

     .phone {
       font-size: 18px;
     }
   }

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

     .header .logo a {
       padding: 10px 0;
     }

     .NavRight {
       display: none;
     }
   }
