.header {
  height: 241px;
  background: url(../images/bg_header.png) no-repeat;
  background-size: 100% 100%;
}
.header .shortcut {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  padding-top: 30px;
}
.header .shortcut li {
  color: #fff;
}
.header .shortcut li a {
  display: flex;
  align-items: center;
  color: #fff;
}
.header .shortcut li a img {
  margin-right: 8px;
}
.header .shortcut li:nth-child(2n) {
  margin: 0 20px;
}
.header .banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .banner .search {
  display: flex;
}
.header .banner .search .search_box {
  display: flex;
  width: 318px;
  height: 43px;
  border-radius: 21px;
  background-color: #fff;
  overflow: hidden;
}
.header .banner .search .search_box input {
  border: 0;
  outline: 0;
  text-align: center;
  font-size: 16px;
  color: #333;
  flex: 1;
}
.header .banner .search .search_box input::placeholder {
  color: #646464;
}
.header .banner .search .search_box .btn {
  border: 0;
  background-color: transparent;
  padding-right: 10px;
  cursor: pointer;
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 24px;
  margin-top: 10px;
}
.header .nav li {
  position: relative;
}
.header .nav li a {
  color: #fff;
}
.header .nav li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 69px;
  height: 2px;
  background-color: transparent;
}
.header .nav li.active::before {
  background-color: #fff;
}
.header .nav li:hover::before {
  background-color: #fff;
}
.footer {
  height: 210px;
  background-color: #016bb5;
}
.footer .footer_nav {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer .footer_nav li {
  width: 312px;
  padding-top: 11px;
}
.footer .footer_nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  color: #fff;
  font-size: 16px;
  background-color: #075087;
}
.footer .footer_nav li a img {
  margin-left: 20px;
}
.footer .footer_nav li .panel_box {
  display: none;
  position: absolute;
  bottom: 65px;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.footer .footer_nav li .panel_box .panel {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #075087;
}
.footer .footer_nav li .panel_box .panel .panel_item {
  width: 200px;
  font-size: 18px;
  transition: all 0.3s;
}
.footer .footer_nav li .panel_box .panel .panel_item:hover {
  transform: translateX(3px);
}
.footer .footer_nav li.links:hover {
  background-color: #075087;
}
.footer .footer_nav li.links:hover a img {
  transform: rotate(180deg);
}
.footer .footer_nav li.links:hover .panel_box {
  display: block;
}
.footer .footer_main {
  display: flex;
  height: 88px;
  margin-top: 30px;
  font-size: 16px;
}
.footer .footer_main .item {
  width: 33.33%;
}
.footer .footer_main .item.pic {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}
.footer .footer_main .item.word {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  line-height: 30px;
}
.footer .footer_main .item.word a {
  color: #fff;
}
.footer .footer_main .item.word a:hover {
  text-decoration: underline;
}
