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

   /* .header.on {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: var(--color);
   } */

   /* logo */
   .header .logo {
     display: block;
     width: 240px;
     height: 62px;
   }

   .header .logo a {
     width: 100%;
     height: 62px;
     padding: 0;
   }

   /* 导航 */
   .header .container {
     position: relative;
   }

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

   .header .nav {
     width: auto;
     max-width: unset;
   }

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

   .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: 62px;
     color: var(--color);
     text-shadow: 1px 1px 1px #A2A2A2;
     font-size: 14px;
     position: relative;
     display: flex;
     justify-content: center;
     transition: 0.5s;
   }

   .header .navbar_nav li>a i {
     margin-left: 5px;
   }

   /* .header .navbar_nav li>a:hover {
     background: var(--color);
     color: #fff;
   } */


   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: absolute;
     top: 100%;
     width: 145px;
     left: 0;
     background: #fff;
   }

   .header .navbar_nav li.dropdown .dropdown_menu a {
     color: #000;
     transition: 0s;
     font-size: 14px;
     padding: 10px 15px;
     text-align: left;
     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;
   }

   /* 新加导航 */
   .header0 {
     background: var(--color);
     padding: 10px var(--container);
     display: flex;
     justify-content: space-between;
   }

   .header0 .lxfs {
     color: #fff;
   }

   .header0 .lxfs i {
     margin-right: 5px;
     color: #fdd428;
   }

   .header0 .rt {
     display: flex;
     grid-gap: 15px;
   }

   .header0 .yy {
     display: flex;
     grid-gap: 5px;
   }

   .header0 .yy a {
     color: #fff;
     display: flex;
     align-items: center;
   }

   .header0 .yy a img {
     margin-right: 5px;
     width: 24px;
   }

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

   @media (max-width: 1200px) {
     .header {
       position: fixed;
     }

     .header.on {
       background: #fff;
       border-bottom: 1px solid #ccc;
     }

     .header .navBox {
       width: 260px;
     }

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

     .header #navToggle {
       margin: 0;
     }

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

     /* logo */
     .header .logo {
       display: block;
     }


     .header0 {
       display: none;
     }
   }