   /* 新加 - 模块 */

   .header1 {
     padding: 15px var(--container);
     display: flex;
     align-items: center;
     grid-gap: 10px;
     font-size: 14px;
     color: #585858;
     border: 1px solid #e5e5e5;
   }

   .header2 {
     padding: 45px var(--container);
     display: flex;
     align-items: center;
     justify-content: space-between;
   }

   .header2 .phone {
     display: flex;
     align-items: center;
     grid-gap: 10px;
   }

   .header2 .phone .text {
     font-size: 14px;
     color: #333;
   }

   .header2 .phone .text p {
     font-size: 20px;
     color: #0153a9;
   }

   .search {
     width: 300px;
     height: 36px;
     border: 1px solid #e1e1e1;
     display: flex;
     align-items: center;
   }

   .search .subButn {
     width: 40px;
     height: 20px;
     background: url(/assets/img/search_1.png) no-repeat center;
     background-size: contain;
     border-right: 1px solid #333;
   }

   .searchInput {
     width: calc(100% - 40px);
     padding-left: 15px;
   }

   /* 导航更新代码 */
   .header {
     margin: 0 auto;
     transition: 0s;
     height: 50px;
     background: url(/assets/images/nav_back.png) no-repeat center;
     background-size: cover;
     position: relative;
   }

   .header.on {
     position: fixed;
   }

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

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

   /* logo */
   .header .logo {
     width: 300px;
     height: 100%;
     padding: 10px 0;
     display: none;
   }


   /* 导航 */

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

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

   .header .navbar_nav li.dropdown {
     width: 100%;
     position: relative;
     background: url(/assets/images/nav_li_xian.jpg) no-repeat right;
   }

   .header .navbar_nav li.dropdown:last-child {
     background: none;
   }

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

   .header .navbar_nav li>a:hover {
     color: #fff;
     background: url(/assets/images/nav_a_back.png) no-repeat center;
     background-size: cover;
   }

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

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


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

   .header .navbar_nav li.dropdown .dropdown_menu a:hover {
     color: #fff;
     background: url(/assets/images/nav_a_back.png) no-repeat center;
     background-size: cover;
   }


   @media (max-width: 1200px) {
     .header1 {
       grid-gap: 5px;
       font-size: 12px;
     }

     .header2 {
       display: none;
     }

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

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

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

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