/* 导航右侧图标 */
.navRightIcon {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100px;
  /* width: 40%; */
}

.navIcon_1 {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 200px;
  height: 40px;
  background-color: rgb(37, 95, 191);
  border-radius: 50px;
}

.navIcon_1 img {
  width: 25px;
}

.navIcon_1 p {
  margin: 0;
  color: #fff;
}

/* .navIcon_2 a {
  background-image: -webkit-linear-gradient(90deg, rgb(220, 81, 50) 0%, rgb(227, 138, 35) 100%);
  display: block;
  width: 130px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 20px;
  font-size: 14px;
  transition: .5s;
}

.navIcon_2 a:hover {
  background: #2b92bf;
} */
/*====================导航*********/
header .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100px;
  padding: 0 100px;
  transition: 1s;
  display: flex;
  align-items: center;
}

.header::after {
  content: "";
  display: block;
  width: 100px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #f2f2f2;
  z-index: -1;
}

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

/*左侧logo*/
.header .logo {
  padding-right: 30px;
  background: #f2f2f2;
  height: 100px;
  display: flex;
  transition: 1s;
}

.header.on .logo {
  height: 80px;
}

.header .logo a {
  display: flex;
  align-items: center;
}

.header .logo a img {
  height: 60px;
}

.header .logo .img2 {
  display: none;
}

/*右侧*/
.header .nav {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
  line-height: 100px;
  display: block;
  width: 100%;
}

.navbar_nav {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .navbar_nav li {
  position: relative;
  display: block;
}

/* .header .navbar_nav li a:after {
  content: "";
  position: relative;
  top: 25%;
  left: 10px;
  border-top: 7px solid white;
  border-bottom: 7px solid #ffffff00;
  border-left: 7px solid #ffffff00;
  border-right: 7px solid #ffffff00;
  transition: all 0.5s ease 0s;
} */
.header .navbar_nav li>a {
  text-decoration: none;
  height: 100%;
  padding: 0 20px;
  display: block;
  line-height: 100px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
}

.header .navbar_nav li:hover a {
  /* color: #333;
  background: #fff; */
}

.header .navbar_nav li.dropdown {
  display: inherit;
  position: relative;
}

.header .navbar_nav li.dropdown .jt {
  width: 20px;
  height: 20px;
  background: url(i/top.png) no-repeat;
  background-size: 100% 100%;
  display: block;
}

.header .navbar_nav li.dropdown .dropdown_menu {
  display: none;
  position: absolute;
  top: 100px;
  min-width: 100%;
  background: #fff;
  /* padding: 30px; */
  text-align: center;
  left: 0%;
}

.header .navbar_nav li.dropdown .dropdown_menu a {
  display: block;
  font-size: 14px;
  color: #666;
  line-height: 40px;
  background: #fff;
  white-space: nowrap;
  text-align: center;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu {
  display: block;
  background: #fff;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a {
  /* color: #666; */
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
  /* color: #2b92bf; */
}

.header .navbar_nav li.dropdown .dropdown_menu p {
  color: #666;
  line-height: 1;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #e8b61e;
  white-space: nowrap;
}

/*白色背景的头部*/
.header.on {
  background: #f2f2f2;
  /* border-bottom: 1px solid #ccc; */
  height: 80px;
}

.navIcon_2 a, .navRightIcon, .nav, .navbar_nav {
  transition: 1s
}

.header.on,
.header.on .navRightIcon,
.header.on .nav,
.header.on .navbar_nav {
  height: 80px;
  transition: 1s
}

/* .header.on .navIcon_1 img {
  mix-blend-mode: exclusion;
} */
.header.on .logo .img2 {
  display: block;
}

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

.header.on .navbar_nav li a {
  color: #333;
  line-height: 80px;
  font-weight: bold;
}

#navToggle {
  display: none;
}

.m_nav {
  position: fixed;
  top: 0px;
  box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  overflow-y: auto;
  transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
  top: 0;
  transform: translateX(100%);
}

.m_nav.open {
  transform: translateX(0);
}

.m_nav .top {
  height: 60px;
  padding: 20px;
  box-sizing: border-box;
}

.m_nav .top .closed {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  float: right;
  cursor: pointer;
}

.m_nav .logo {
  width: 100%;
  margin: 0 auto;
}

.m_nav .logo img {
  height: 50px;
  display: block;
  margin: 30px auto;
}

.m_nav .ul {
  margin-top: 30px;
}

.m_nav .ul li {
  padding: 0 20px;
  border-bottom: 1px solid #f5f5f5;
  transform: translateY(0);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
  transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
  opacity: 0;
}

.m_nav.open .ul li {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
  -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
  transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
  -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
  transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
  -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
  transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
  -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
  transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
  -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
  transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
  -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
  transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  width: 100%;
}

.m_nav .ul li .dropdown_menu {
  display: none;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
  display: block;
}

.m_nav .ul li .dropdown_menu a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  box-sizing: border-box;
  border-bottom: 1px solid #f5f5f5;
}

.m_nav .ul li .dropdown_menu a:last-child {
  border: none;
}

.banner {
  width: 100%;
}

.banner img {
  width: 100%;
}

/* 新加代码 */
.header .navbar_nav li.dropdown:hover .dropdown_menu_0 {
  display: flex;
}

.dropdown_menu_0 {
  left: -100% !important;
}

.dropdown_menu_1 {
  margin: 0 60px;
}

.header .navbar_nav li:nth-child(1) .dropdown_menu {
  text-align: left;
}

.header .navbar_nav li:nth-child(2) .dropdown_menu {
  text-align: left;
}
