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

   .header.on {
     background: #fff0;
   }

   .header .container {
     position: relative;
   }

   .header .navBox {
     width: 100%;
     height: 140px;
     background: #fff;
     box-shadow: 0 0 5px #d0cdca;
     padding: 0 45px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: relative;
   }

   /* logo */
   .header .logo {
     width: 30%;
     height: 60px;
   }

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

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


   /* 导航 */

   .header .nav {
     width: 70%;
     max-width: 100%;
     height: 100%;
   }

   .header1 {
     position: relative;
   }

   .header1 {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
   }

   .header1 h1 {
     width: 260px;
     height: 25px;
     border: 2px solid #008d8e;
     display: flex;
   }

   .header1 h1 p {
     color: #fff;
     font-weight: bold;
     font-size: 14px;
     width: 50%;
     background: var(--color);
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
   }

   .header1 h1 b {
     color: var(--color);
     font-weight: bold;
     font-size: 14px;
     width: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
   }

   .header1Link {
     display: flex;
     grid-gap: 10px;
   }

   .header1Link a {
     font-size: 14px;
     line-height: 1;
     color: #868686;
   }

   .header1Link p {
     display: block;
     width: 1px;
     background: #868686;
   }

   .header1Link p:last-child {
     display: none;
   }

   .search {
     width: 30px;
     height: 25px;
     position: relative;
   }


   .subButn {
     width: 100%;
     height: 100%;
     background: url(/assets/img/search_1.png) no-repeat center;
     background-size: contain;
     position: relative;
     z-index: 1;
   }

   .searchInput {
     position: absolute;
     right: 100%;
     width: 0px;
     height: 25px;
     border: 1px solid #ccc;
     transition: 0.5s;
     opacity: 0;
     padding-left: 15px;
   }

   .search:hover .searchInput {
     width: 200px;
     opacity: 1;
   }

   .Language {
     position: absolute;
     z-index: 2;
     right: 0;
     bottom: 0;
   }

   .Language a {
     display: block;
     width: 100px;
     text-align: center;
     color: #fff;
     line-height: 2;
     font-size: 14px;
   }

   .Language a i {
     color: #fff;
     font-size: 14px;
   }

   .Language ul {
     position: absolute;
     right: 0;
     top: 100%;
     display: none;
     background: #fff;
   }

   .Language:hover ul {
     display: block;
   }

   .Language ul a {
     width: 100px;
     color: #000;
     border-bottom: 1px solid var(--color);
     padding: 5px;
     font-size: 14px;
   }

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

   .Language:before {
     content: "";
     display: block;
     position: absolute;
     bottom: -75px;
     right: -75px;
     border: 75px solid transparent;
     border-right-color: var(--color);
     transform: rotate(-135deg);
     z-index: -1;
     width: 130px;
   }

   /* 导航 */
   .header .nav .navbar_nav {
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding-right: 90px;
   }

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

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

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



   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: fixed;
     left: 0;
     top: 140px;
     width: 100%;
   }

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

   .menu_2 {
     background: #aaa;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     grid-gap: 20px 45px;
     padding: 30px 45px;
   }

   .header .navbar_nav li.dropdown .dropdown_menu a {
     color: #fff;
     background: #fff0;
     transition: 0s;
     font-size: 16px;
     text-align: center;
     line-height: 1.5;
     display: block;
   }

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





   @media (max-width: 1200px) {
     .header {
       background: #fff;
       width: 100%;
       border-bottom: 0px;
     }

     .header.on {
       position: fixed;
       background: #fff;
     }

     .header .navBox {
       width: 260px;
       padding: 0;
       height: auto;
       box-shadow: 0 0 0 #d0cdca;
     }

     .header1 {
       display: none;
     }

     .Language {
       display: none;
     }

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

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