/* 顶部 */
.top_box {
  padding-top: 14px;
}
.top_left {
  font-size: 18px;
  color: #fff;
}
.top_right {
  display: flex;
}
.top_right a {
  margin-left: 16px;
  line-height: 36px;
}
.top_wx {
  position: relative;
}
.top_wx span {
  font-size: 18px;
  line-height: 36px;
  color: #fff;
}

.top_wx img {
  position: absolute;
  left: -32px;
  top: 40px;
  display: none;
}

.top_wx:hover img {
  display: block;
}

/* logo部分 */
.logo {
  margin-top: 70px;
}
.logo_img {
  display: block;
  text-align: center;
}

/* 搜索 */
.search {
  padding-top: 60px;
}
.search .flex {
  width: 580px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
  background-color: #fff;
}
.search_input {
  flex: 1;
  padding-left: 25px;
  font-size: 16px;
}
.search_button {
  width: 130px;
  height: 62px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  background-color: #cc0620;
  cursor: pointer;
}
.search_button img {
  margin-right: 10px;
}
/* 导航栏 */
.nav {
  margin-top: 100px;
  border-bottom: 1px solid #fff;
}
.nav .flex {
  justify-content: space-around;
}
.nav a {
  font-size: 26px;
  line-height: 62px;
  color: #fff;
  font-weight: 600;
  width: 182px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.nav a:hover,
.nav .on {
  color: #fff;
}
.nav a:hover::after,
.nav a::after {
  content: '';
  width: 182px;
  height: 62px;
  position: absolute;
  left: 0;
  top: 0;
  background: url('../images/nav_bg.png') no-repeat center;
  z-index: -1;
}
.nav a.on:hover::after,
.nav .on::after {
  background-image: url('../images/nav_on.png');
}
.nav img {
  vertical-align: middle;
}

/* 热门服务 */
.sy .hotfw + .nav {
  margin-top: 50px;
}
.hotfw {
  margin-top: 80px;
  display: none;
}
.hotfw .flex {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(231, 242, 253, 0.4);
  padding: 20px 40px;
}
.hotfw_item {
  margin-left: 40px;
}
.hotfw_item li {
  float: left;
  display: inline-block;
  margin-left: 20px;
}

.hotfw_item li a {
  font-size: 16px;
  line-height: 48px;
  color: #666;
}
.hotfw_item li a i {
  margin-right: 5px;
  font-size: 30px;
  line-height: 48px;
  vertical-align: top;
}
/* 底部 */

.link {
  background-color: #0b5ba7;
  padding: 15px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.footer a,
.footer * {
  color: #fff;
}
.footer {
  background-color: #016bb5;
  padding-bottom: 20px;
  margin-top: 50px;
}
.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: 20%;
  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;
}
