.header .shortcut {
  height: 40px;
  background-color: #065892;
}
.header .shortcut .w {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.header .shortcut .w .shortcut_nav {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 16px;
}
.header .shortcut .w .shortcut_nav li {
  color: #fff;
}
.header .shortcut .w .shortcut_nav li a {
  display: flex;
  align-items: center;
  color: #fff;
}
.header .shortcut .w .shortcut_nav li a img {
  margin-right: 8px;
}
.header .shortcut .w .shortcut_nav li .panel {
  display: none;
  position: absolute;
  left: 50%;
  top: 30px;
  width: 140px;
  height: 140px;
  background-color: #fff;
  transform: translateX(-50%);
  border-radius: 5px;
  padding: 10px;
}
.header .shortcut .w  .shortcut_nav li .panel img {
  width: 100%;
  height: 100%;
}
.header .shortcut .w  .shortcut_nav li:hover .panel {
  display: block;
}
.header .shortcut .w .shortcut_nav li:nth-child(2n) {
  margin: 0 20px;
}
.header .banner {
  height: 215px;
  background-image: linear-gradient(180deg, #016bb5 0%, #016bb5 100%);
  padding-top: 24px;
}
.header .banner .w {
  height: 100%;
}
.header .banner .w .banner_top {
  display: flex;
  justify-content: space-between;
}
.header .banner .w .banner_top .search {
  display: flex;
  margin-top: 18px;
}
.header .banner .w .banner_top .search .search_box {
  display: flex;
  width: 318px;
  height: 43px;
  border-radius: 21px;
  background-color: #fff;
  overflow: hidden;
}
.header .banner .w .banner_top .search .search_box input {
  border: 0;
  outline: 0;
  text-align: center;
  font-size: 16px;
  color: #333;
  flex: 1;
}
.header .banner .w .banner_top .search .search_box input::placeholder {
  color: #646464;
}
.header .banner .w .banner_top .search .search_box .btn {
  border: 0;
  background-color: transparent;
  padding-right: 10px;
  cursor: pointer;
}
.header .banner .w .nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 24px;
  margin-top: 15px;
}
.header .banner .w .nav li {
  position: relative;
}
.header .banner .w .nav li a {
  color: #fff;
}
.header .banner .w .nav li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 69px;
  height: 2px;
  background-color: transparent;
}
.header .banner .w .nav li.active::before {
  background-color: #fff;
}
.header .banner .w .nav li:hover::before {
  background-color: #fff;
}
.footer {
  height: 210px;
  background-color: #016bb5;
  padding-top: 11px;
}
.footer .footer_nav {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer .footer_nav li {
  width: 312px;
  height: 54px;
  background-color: rgba(0, 0, 0, 0.25);
}
.footer .footer_nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  font-size: 16px;
}
.footer .footer_nav li a img {
  margin-left: 20px;
}
.footer .footer_nav li .panel {
  position: absolute;
  right: 0;
  top: 100%;
  width: 1300px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 100;
  display: none;
}
.footer .footer_nav li .panel .link-group {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer_nav li .panel .link-group a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 50px;
  color: #333;
  padding: 8px 0;
  border: 1px solid #f0f0f0;
  font-size: 14px;
  margin: 10px;
}
.footer .footer_nav li .panel .link-group a:hover {
  color: #366fca;
}
.footer .footer_nav li .panel .link-group a:last-child {
  border-bottom: none;
}
.footer .footer_nav li:hover a img {
  transform: rotate(180deg);
}
.footer .footer_nav li:hover .panel {
  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;
}
