﻿/* logo */
.top-box {
  width: 1140px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-box .logo-img {
  background-color: #f4f4f4;
}
/* search box */
.search-box {
  width: 354px;
}

/* navbar */
.navbar-container {
  width: 100%;
  background-color: #467DEB;
}
.nav-wrapper {
  width: 1140px;
  margin: 0 auto;
}
.nav-wrapper .navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-wrapper .navbar-flex li {
  display: block;
}
.nav-wrapper .navbar-flex li a {
  display: block;
  padding: 18px 15px;
  color: #fff;
}
.nav-wrapper .navbar-flex li a:hover {
  text-decoration: none;
  background-color: #396ADB;;
  color: #fff;
}
/* 二级菜单 */
.sub-nav {
  display: none;
  width: 160px;
  position: absolute;
  border-top: 1px solid rgba(255,255,255,.1);
  background-color: #467DEB;
  z-index: 999;
}
.sub-nav ul{
  margin: 0;
  padding: 0;
}
.sub-nav>ul>li{
  position: relative;
}
.sub-nav>ul>li>a{
  text-align: left;
  padding: 10px 0 10px 10px !important;
}
.sub-plus-nav {
  display: none;
  width: 160px;
  position: absolute;
  top: -1px;
  left: 160px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-left: 1px solid rgba(255,255,255,.1);
  background-color: #467DEB;
  z-index: 999;
}
.sub-plus-nav ul li a {
  text-align: left;
  padding: 10px 0 10px 10px !important;
}

/* footer */
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer {
  height: 253px;
  background: #F7FBFD;
}
footer .footer-wrapper {
  width: 1140px;
  margin: 0 auto;
  padding-top: 40px;
}
footer .links {
  display: inline-block;
}
.links .link-title {
  margin-bottom: 15px;
  color: #333333;
  font-size: 1.2rem;
  font-weight: bold;
}
.links .link-item, .links .link-item a {
  display: block;
  margin: 8px 0;
  color: #666;
  font-size: 0.95rem;
}
.rights .rights-text {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #909399;
}
.rights .icp a {
  font-size: 0.95rem;
  color: #909399;
}
.rights .icp a:hover {
  color: #409EFF;
}