   /* 新加 - 模块 */
   /* 导航更新代码 */
   .header {
     position: relative;
     margin: 0 auto;
     background: transparent;
     transition: 0.5s;
     height: 90px;
     border-bottom: 0px solid #F4F4F4;
   }


   /* 下拉导航调整 */
   .header.on {
     position: fixed;
     top: 0;
     left: 0;
     background: #fff;
     width: 100%;
   }

   .header .logo {
     width: 200px;
     height: 90px;
   }

   .header .container {
     position: relative;
   }

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

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

   .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: 100px;
     color: #fff;
     font-size: 16px;
     position: relative;
     padding: 0;
     display: flex;
     justify-content: center;
   }



   /* 二级分类 */

   .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: var(--color);
   }

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

   @media (max-width: 1440px) {}

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

     .header {
       background: #fff;
       width: 100%;
     }

     .header #navToggle {
       margin: 0;
     }

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


   /* -------------  新加  ---------------- */
   .header1 {
     background: #f1f1f1;
     padding: 0 var(--container);
     height: 60px;
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .header1 .iconBox {
     width: calc(100% - 450px);
     grid-gap: 20px;
     display: flex;
     align-items: center;
   }

   .header1 .iconBox a {
     display: block;
   }

   .header1 .iconBox a img {
     width: 100%;
   }


   .header1 .search {
     overflow: hidden;
     border: solid 1px #ccc;
     width: 350x;
     height: 30px;
     background: #fff;
     display: flex;
   }

   .header1 .search input {
     padding-left: 20px;
     width: calc(100% - 50px);
   }

   .header1 .search button {
     position: relative;
     width: 50px;
     height: 100%;
     background: #fff;
   }

   .language {
     display: flex;
     align-items: center;
   }

   .language img {
     height: 30px;
     margin-right: 10px;
   }

   .header .navbar_nav li>a {
     color: #000;
     font-weight: bold;
   }



   .header {
     height: 100px;
   }




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

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