.low_header {
  display: flex;
  flex-direction: column;
  height: 459px;
  background: url(../images/bg_header.png) no-repeat;
  background-size: cover;
}
.low_header .shortcut {
  height: 64px;
  background-color: rgba(255, 255, 255, 0.3);
}
.low_header .shortcut .shortcut_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  font-size: 18px;
}
.low_header .shortcut .shortcut_nav li {
  margin-left: 38px;
}
.low_header .shortcut .shortcut_nav li a {
  display: flex;
  align-items: center;
  color: #376fca;
}
.low_header .shortcut .shortcut_nav li a img {
  margin-right: 8px;
}
.low_header .banner {
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding-top: 98px;
}
.low_header .banner .search_web {
  position: relative;
  display: flex;
  align-items: center;
  width: 492px;
  height: 58px;
  background-color: #ffffff;
  border-radius: 58px;
  overflow: hidden;
  padding-right: 6px;
}
.low_header .banner .search_web::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 21px;
  height: 21px;
  background: url(../images/icon_search.png) no-repeat;
  background-size: 100% 100%;
  transform: translateY(-50%);
}
.low_header .banner .search_web .search_text {
  flex: 1;
  border: 0;
  outline: 0;
  padding-left: 64px;
  font-size: 16px;
  color: #333;
}
.low_header .banner .search_web .search_text::placeholder {
  color: #2377b7;
}
.low_header .banner .search_web .search_button {
  width: 84.43px;
  height: 50.38px;
  background-color: #366fca;
  border: 0;
  outline: 0;
  border-radius: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.low_header .header_nav {
  height: 94px;
  background-color: #366fca;
}
.low_header .header_nav .nav_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 32px;
  color: #fff;
}
.low_header .header_nav .nav_list li a {
  color: #fff;
}
.low_header .header_nav .nav_list li a:hover {
  color: #fdf100;
}
.low_header .header_nav .nav_list li.active a {
  color: #fdf100;
}
.footer .footer_nav {
  height: 67px;
  background-color: #3c6cc2;
  position: relative;
}
.footer .footer_nav .nav_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 16px;
  color: #fff;
}
.footer .footer_nav .nav_list .nav_item {
  position: relative;
  cursor: pointer;
}
.footer .footer_nav .nav_list .nav_item .title {
  display: flex;
  align-items: center;
}
.footer .footer_nav .nav_list .nav_item .title img {
  margin-left: 5px;
  transition: transform 0.3s;
}
.footer .footer_nav .nav_list .nav_item .panel {
  position: absolute;
  left: 0;
  top: 100%;
  width: 200px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 15px;
  z-index: 100;
  display: none;
}
.footer .footer_nav .nav_list .nav_item .panel .link-group {
  display: flex;
  flex-direction: column;
}
.footer .footer_nav .nav_list .nav_item .panel .link-group a {
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.footer .footer_nav .nav_list .nav_item .panel .link-group a:hover {
  color: #366fca;
}
.footer .footer_nav .nav_list .nav_item .panel .link-group a:last-child {
  border-bottom: none;
}
.footer .footer_nav .nav_list .nav_item:hover .title img {
  transform: rotate(180deg);
}
.footer .footer_nav .nav_list .nav_item:hover .panel {
  display: block;
}
.footer .footer_main {
  display: flex;
  height: 176px;
  background-color: #F4F4F4;
}
.footer .footer_main .blocks {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.footer .footer_main .blocks .block_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 33%;
  height: 100%;
  font-size: 16px;
  color: #333;
  line-height: 40px;
}
.footer .footer_main .blocks .block_item a {
  color: #333;
  margin-right: 20px;
}
.footer .footer_main .blocks .block_item a:hover {
  color: #2377b7;
}
.footer .footer_main .blocks .other {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.footer .footer_main .blocks .other .map {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.footer .footer_main .blocks .other .map img {
  width: 33px;
  height: 33px;
}
