/* 头部公共样式 */
header {
  width: 100%;
  min-width: 1200px;
  height: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  font-size: 16px;
  box-shadow: 0px 3px 5px #cfd2e0;
  position: fixed;
  top: 0;
  z-index: 100;
}
header .nav {
  display: flex;
  border-bottom: 1px solid #cfd2e0;
}
header .nav li {
  height: 80px;
  line-height: 80px;
  /* padding: 0 15px;
  margin: 0 7px; */
  margin: 0;
  padding: 0 22px;
  position: relative;
  cursor: pointer;
}
header .nav li .child {
  position: absolute;
  background-color: #fff;
  width: 126px;
  left: 50%;
  top: 65px;
  margin-left: -63px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, .3);
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  padding-top: 2px;
  display: none;
}
header .nav li .child p {
  padding: 18px 0;
}
header .nav li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 0;
  border-bottom: 4px solid #35488a;
  transition: 0.2s all linear;
}
header .nav li:hover::before {
  left: 0;
  width: 100%;
}
header .nav li:hover .child {
  display: block;
}
header .nav li:hover~li::before {
    left: 0;
}
header .nav li.active::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 4px solid #35488a;
}
header .nav li a {
  color: #666666;
}
header .nav li.active>a,
.nav li a.child_active {
  color: #35488a;
}
header .search {
  width: 300px;
  height: 48px;
  border: 1px solid #35488a;
  position: relative;
}
header .search input {
  width: 100%;
  height: 46px;
  background: none;
  outline: none;
  border: none;
  font-size: 16px;
  text-indent: 16px;
}
header .search input:focus {
  border: none;
}
header .search .search_btn {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -11px;
  cursor: pointer;
}
main {
  padding-top: 80px;
}
/* 单页banner公共样式 */
main .common_banner {
  width: 100%;
  min-width: 1200px;
  height: 28vw;
  position: relative;
}
main .common_banner img {
  width: 100%;
  height: 100%;
}
/* main .common_banner .common_banner_desc {
  position: absolute;
  height: 110px;
  left: 16vw;
  top: calc(50% - 55px);
  color: #fff;
  font-weight: bold;
}
main .common_banner .common_banner_desc h1 {
  font-size: 50px;
  
  margin-bottom: 30px;
}
main .common_banner .common_banner_desc p {
  font-size: 20px;
} */
/* 模块固定宽度 */
.common_module {
  width: 1200px;
  margin: 0 auto;
}

/* 分页样式 */
.content_wrap .pagination_wrap {
  text-align: center;
}

.content_wrap .pagination_wrap .pagination {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 80px;
}

.content_wrap .pagination_wrap .pagination li {
  float: left;
  margin: 0 5px;
  border: 1px solid #dcdcdc;
  padding: 10px 18px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
}

.content_wrap .pagination_wrap .pagination li.active,
.content_wrap .pagination_wrap .pagination li:hover {
  background-color: #35488a;
  color: #fff;
}

/* 底部公共样式 */
footer {
  height: 140px;
  background-color: #35488a;
  color: #bfc5da;
  min-width: 1200px;
}

footer ul {
  display: flex;
  padding-bottom: 25px;
  border-bottom: 1px solid #8c97c0;
  font-size: 14px;
  padding-top: 40px;
  margin-bottom: 15px;
}
footer ul li {
  margin-right: 45px;
}
footer ul a {
  color: #fff;
}
footer ul a:hover {
  color: #ccc;
}
footer p span {
  font-size: 12px;
}
footer p>span {
  margin-right: 30px;
}