.header_for_pc {
  display: none;
}
.header_for_pc .header {
  display: flex;
  flex-direction: column;
  height: 482px;
  background: url("../images/header_bg.png") no-repeat center center / cover;
  margin-bottom: 60px;
}
.header_for_pc .header .top {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  flex: 1;
}
.header_for_pc .header .top .logo {
  width: 773px;
  height: 223px;
}
.header_for_pc .header .top .other {
  text-align: right;
  font-size: 14px;
  color: #000306;
}
.header_for_pc .header .navbar {
  display: flex;
  justify-content: center;
  height: 64px;
}
.header_for_pc .header .navbar .navlist {
  display: flex;
  width: 1445px;
  height: 100%;
  background: url("../../images/bg_nav.png") no-repeat center center;
  background-size: 100% 100%;
}
.header_for_pc .header .navbar .navlist li {
  position: relative;
  height: 100%;
  padding: 0 16px;
  border-radius: 10px 10px 0 0;
}
.header_for_pc .header .navbar .navlist li.active {
  background-color: #166ce8;
}
.header_for_pc .header .navbar .navlist li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_for_pc .header .navbar .navlist li:hover {
  background-color: #166ce8;
}
.header_for_pc .header .navbar .navlist li:hover .panel {
  display: block;
}
.header_for_pc .header .navbar .navlist li .panel {
  display: none;
  position: absolute;
  left: 0;
  top: 64px;
  width: 100%;
  background-color: rgba(11, 105, 243, 0.7);
  padding: 10px;
  box-sizing: border-box;
  z-index: 999;
}
.header_for_pc .header .navbar .navlist li .panel .panel_item {
  line-height: 40px;
  font-size: 14px;
}
.header_for_pc .header .navbar .navlist li .panel .panel_item a {
  color: #fff;
}
.header_for_mobile .nav-container {
  background-color: white;
  padding: 10px 20px;
  position: relative;
  border-bottom: 1px solid #f6f6f6;
  z-index: 999;
  /* 二级菜单样式 */
}
.header_for_mobile .nav-container .hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
.header_for_mobile .nav-container .hamburger span {
  width: 25px;
  height: 2px;
  background-color: #0467fb;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.header_for_mobile .nav-container .nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  padding: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.header_for_mobile .nav-container .nav-menu.active {
  display: flex;
}
.header_for_mobile .nav-container .nav-menu li {
  list-style: none;
  margin: 0;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.header_for_mobile .nav-container .nav-menu li:last-child {
  border-bottom: none;
}
.header_for_mobile .nav-container .nav-menu li a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  padding: 12px 15px;
  transition: all 0.3s ease;
}
.header_for_mobile .nav-container .nav-menu li a:active {
  background-color: #f5f9ff;
}
.header_for_mobile .nav-container .submenu {
  display: none;
  flex-direction: column;
  background-color: #f8f9fa;
  margin: 0;
  border-top: 1px solid #f0f0f0;
}
.header_for_mobile .nav-container .submenu.active {
  display: flex;
}
.header_for_mobile .nav-container .submenu li a {
  padding-left: 30px;
  font-size: 0.95rem;
  color: #666;
}
.header_for_mobile .nav-container .has-submenu > a::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 1.2em;
  transition: transform 0.3s ease;
  color: #0467fb;
}
.header_for_mobile .nav-container .has-submenu > a.active::after {
  transform: rotate(90deg);
}
.header_for_mobile .nav-container .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #0467fb;
}
.header_for_mobile .nav-container .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header_for_mobile .nav-container .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #0467fb;
}
.header_for_mobile .banner {
  height: 240px;
  background: url(../images/header_bg.png) no-repeat center center / cover;
  padding: 30px;
  text-align: center;
}
.header_for_mobile .banner .logo {
  height: 100px;
}
.header_for_mobile .banner .other {
  text-align: center;
  margin-top: 20px;
}
/* 移动端样式 */
@media (max-width: 767px) {
  .header_for_pc {
    display: none;
  }
  .header_for_mobile {
    display: block;
  }
}
/* PC 端样式 */
@media (min-width: 768px) {
  .header_for_pc {
    display: block;
  }
  .header_for_mobile {
    display: none;
  }
}

/* 底部 */
.foot {
  width: 100%;
  height: 174px;
  margin-top: 60px;
  background-color: #166ce8;
}
.foot .friend_items {
  width: 1300px;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .friend_items .friend_item {
  margin-right: 30px;
  font-size: 20px;
  color: #fff;
}
.foot .message {
  width: 1300px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .message span {
  display: inline-block;
  margin-right: 30px;
  line-height: 27px;
  color: #FFF;
  font-size: 18px;
}
.foot .put_on_file {
  width: 1300px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .put_on_file span {
  display: inline-block;
  margin-right: 30px;
  line-height: 27px;
  color: #FFF;
  font-size: 18px;
}

/* 媒体查询底部 */
@media (max-width:750px) {
  .ww {
     width: 100%;
  }

  .foot {
     width: 100%;
     height: 460px;
     margin-top: 40px;
     background-color: #166ce8;
  }
  .foot .friend_items {
     width: 100%;
     padding-top: 30px;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
  }
  .foot .friend_items .friend_item {
     margin-right: 0px;
     font-size: 20px;
     color: #fff;
  }
  .foot .message {
     width: 100%;
     margin-top: 30px;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
  }
  .foot .message span {
     display: inline-block;
     margin-right: 0px;
     line-height: 27px;
     color: #FFF;
     font-size: 18px;
  }
  .foot .put_on_file {
     width: 100%;
     margin-top: 10px;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
  }
  .foot .put_on_file span {
     display: inline-block;
     margin-right: 0px;
     line-height: 27px;
     color: #FFF;
     font-size: 18px;
  }
}
