   /* 新加 - 模块 */
   /* 导航更新代码 */
   .header {
     margin: 0 auto;
     transition: 0.5s;
     height: 90px;
     background: rgba(0, 0, 0, 0.3);
   }

   .header.on {
     background: rgba(0, 0, 0, 0.7);
   }

   .header .container {
     width: 100%;
     max-width: 100%;
     padding: 0 3vw;
   }

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

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

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

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

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

   .header .nav {
     width: calc(100% - 500px);
     max-width: 1080px;
     height: 90px;
   }

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

   .header .navbar_nav li.dropdown {
     position: relative;
     perspective: 500px;
   }

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

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



   /* 二级分类 */
   .header .navbar_nav li.dropdown .dropdown_menu {
     display: none;
     position: absolute;
     top: 100%;
     width: max-content;
     min-width: 175px;
     left: auto;
     background: rgba(0, 0, 0, 0.5);
     transition: all .3s ease-in-out;
     transform: scale(0.8) rotateY(30deg);
     transform-origin: left;
     opacity: 0;
     display: block;
     visibility: hidden;
   }

   .header .navbar_nav li.dropdown:hover .dropdown_menu {
     transform: none;
     opacity: 1;
     visibility: visible;
   }


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

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

   /* 导航图标代码 */
   .NavRight {
     display: flex;
     align-items: center;
     justify-content: end;
     grid-gap: 30px;
     width: 250px;
     height: 90px;
   }

   .Language {
     position: relative;
     height: 90px;
     display: flex;
     align-items: center;
     justify-content: center;
   }

   .Language a {
     font-size: 16px;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     grid-gap: 10px;
     padding: 10px 15px;
   }

   .Language ul {
     position: absolute;
     top: 100%;
     left: 0;
     width: auto;
     display: none;
     background-color: rgba(0, 0, 0, 0.5);
   }

   .Language:hover ul {
     display: block;
   }

   .Language ul a:hover {
     background: #f5500a;
   }

   .SearchImg {
     width: 20px;
     cursor: pointer;
   }


   .SearchBox {
     position: fixed;
     z-index: 9999999;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: rgba(0, 0, 0, .7);
     display: flex;
     align-items: center;
     justify-content: center;
     display: none;
     padding: 0 var(--container);
   }

   .SearchBox i {
     color: #fff;
     font-size: 24px;
     position: absolute;
     right: 15px;
     top: 15px;
   }

   .Search {
     width: 100%;
     max-width: 1200px;
     height: 50px;
     display: flex;
   }

   .searchInput {
     width: calc(100% - 50px);
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     padding-left: 15px;
     outline: none;
   }

   .searchInput::placeholder,
   .searchInput {
     color: #ccc;
   }

   .subButn {
     background: #f5500a;
     width: 50px;
     height: 100%;
     padding: 10px;
   }

   .subButn img {
     width: 100%;
     height: 100%;
   }

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

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

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

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

     .header #navToggle {
       margin: 0;
     }


     .header #navToggle span,
     .header #navToggle span:before,
     .header #navToggle span:after {
       background: #fff !important;
     }

     .header.on #navToggle span,
     .header.on #navToggle span:before,
     .header.on #navToggle span:after {
       background: #fff !important;
     }

     .m_nav {
       background: rgba(0, 0, 0, 0.3);
     }

     .m_nav .ul li a {
       color: #fff;
     }

     .m_nav .ul li .dropdown_menu a {
       border: 0px;
       font-weight: 400;
       height: auto;
       line-height: 1.5;
       padding: 5px 0;
     }

     .NavRight {
       display: none;
     }
   }