.w {
  width: 100%;
  padding: 0 10px;
}
.header .banner {
  height: 430px;
  background: url(../images/header_bg_header.png) no-repeat;
  background-size: 100% 100%;
  padding-top: 29px;
}
.header .banner .shortcut {
  display: flex;
  justify-content: flex-end;
}
.header .banner .shortcut .shortcut_nav {
  display: flex;
  align-items: center;
}
.header .banner .shortcut .shortcut_nav li {
  position: relative;
}
.header .banner .shortcut .shortcut_nav li:nth-child(2n) {
  margin: 0 15px;
}
.header .banner .shortcut .shortcut_nav li a {
  color: #333;
  font-size: 16px;
  cursor: pointer;
}
.header .banner .shortcut .shortcut_nav li .panel {
  display: none;
  position: absolute;
  top: 25px;
  left: 50%;
  width: 120px;
  height: 120px;
  background-color: #bfc;
  transform: translateX(-50%);
}
.header .banner .shortcut .shortcut_nav li .panel img {
  width: 100%;
  height: 100%;
}
.header .banner .shortcut .shortcut_nav li:hover a {
  color: #015293;
}
.header .banner .shortcut .shortcut_nav li:hover .panel {
  display: block;
}
.header .banner .shortcut .other {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.header .banner .shortcut .other .other_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 31px;
  background-color: #015293;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  margin-left: 20px;
}
.header .banner .shortcut .other .other_item:nth-child(2) {
  background-color: #c09351;
}
.header .banner .shortcut .other .other_item img {
  margin-right: 5px;
}
.header .banner .logo {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.header .nav {
  height: auto;
  background-color: #015293;
}
.header .nav .w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
  padding: 10px 0;
}
.header .nav .w .navlist {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.header .nav .w .navlist li {
  margin-right: 0px;
}
.header .nav .w .navlist li a {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #fff;
}
.header .nav .w .navlist li a img {
  margin-right: 10px;
}
.header .nav .w .navlist li a p {
  position: relative;
}
.header .nav .w .navlist li a p::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 4px;
  background-color: transparent;
  border-radius: 2px;
}
.header .nav .w .navlist li:hover a,
.header .nav .w .navlist li.active a {
  font-weight: 700;
}
.header .nav .w .navlist li:hover a p::before,
.header .nav .w .navlist li.active a p::before {
  background-color: #fff;
}
.header .nav .w .search_box {
  display: flex;
  justify-content: center;
  width: 100%;
}
.header .nav .w .search {
  display: flex;
  position: relative;
  margin-top: 20px;
  width: 339px;
  height: 40px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #c09351;
  padding-left: 44px;
}
.header .nav .w .search::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/header_icon_search.png) no-repeat;
  background-size: 100% 100%;
}
.header .nav .w .search .search_input {
  flex: 1;
  border: 0;
  outline: 0;
  text-align: center;
}
.header .nav .w .search .search_btn {
  width: 69px;
  height: 100%;
  border-radius: 10px;
  border: 0;
  outline: 0;
  background-color: #c09351;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
.footer {
  height: auto;
  background-color: #dbecf9;
  padding-bottom: 20px;
}
.footer .footer_nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .footer_nav li {
  width: 48%;
  padding-top: 11px;
}
.footer .footer_nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: #333;
  font-size: 16px;
  background-color: #c5e0f4;
}
.footer .footer_nav li a img {
  margin-left: 20px;
}
.footer .footer_nav li .panel_box {
  display: none;
  position: absolute;
  bottom: 51px;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.footer .footer_nav li .panel_box .panel {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #c5e0f4;
}
.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 {
  cursor: pointer;
}
.footer .footer_nav li.links:hover {
  background-color: #c5e0f4;
}
.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;
  flex-wrap: wrap;
  height: auto;
  margin-top: 30px;
  font-size: 16px;
}
.footer .footer_main .item {
  width: 100%;
}
.footer .footer_main .item.pic {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}
.footer .footer_main .item.word {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #333;
  line-height: 30px;
  padding-left: 10px;
  width: 100%;
}
.footer .footer_main .item.word .block {
  margin-right: 20px;
}
.footer .footer_main .item.word a {
  color: #333;
}
.footer .footer_main .item.word a:hover {
  color: #015293;
}
