/** 头部区域 */
.page-header {
  height: 60px;
  background: #fff;
}
.page-header .logo {
  display: flex;
  height: 60px;
  align-items: center;
}
.page-header .logo .logo-img img {
  width: 120px;
}
.page-header .logo .logo-divide {
  height: 28px;
  border-right: 2px solid #3E6293;
  margin: 0 9px;
}
.page-header .logo .logo-text {
  font-size: 15px;
  color: #3E6293;
  line-height: 20px;
  letter-spacing: 2px;
}
.page-header .top-nav-bar {
  margin: 0;
  float: right;
}
.page-header .top-nav-bar > li {
  float: left;
  list-style: none;
  padding: 0 21px;
  line-height: 60px;
  position: relative;
}
.page-header .top-nav-bar > li > a {
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  color: #4e4e4e;
}
.page-header .top-nav-bar > li > a .icon-hot-fill {
  color: red;
}
.page-header .top-nav-bar > li:hover,
.page-header .top-nav-bar > li.active {
  background: #3c6292;
}
.page-header .top-nav-bar > li:hover > a,
.page-header .top-nav-bar > li.active > a {
  color: #fff;
}
.page-header .top-nav-bar > li .sub-nav-list {
  visibility: hidden;
  line-height: normal;
  padding: 40px 55px;
  position: absolute;
  left: 0;
  top: 61px;
  background: #fff;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.page-header .top-nav-bar > li .sub-nav-list dl,
.page-header .top-nav-bar > li .sub-nav-list dt,
.page-header .top-nav-bar > li .sub-nav-list dd {
  margin: 0;
  padding: 0;
}
.page-header .top-nav-bar > li .sub-nav-list dl {
  display: inline-block;
  margin-right: 70px;
}
.page-header .top-nav-bar > li .sub-nav-list dl:last-child {
  margin-right: 0;
}
.page-header .top-nav-bar > li .sub-nav-list dl dt {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  height: 40px;
  position: relative;
}
.page-header .top-nav-bar > li .sub-nav-list dl dt .iconfont {
  position: absolute;
  left: -30px;
  top: 0px;
  background: #ebeff4;
  color: #3c6292;
  border-radius: 50%;
  padding: 4px;
}
.page-header .top-nav-bar > li .sub-nav-list dl dd {
  margin-bottom: 4px;
  line-height: 22px;
}
.page-header .top-nav-bar > li .sub-nav-list dl dd > a {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  display: inline-block;
  text-decoration: none;
  line-height: 22px;
  padding: 2px 10px;
  position: relative;
  left: -10px;
}
.page-header .top-nav-bar > li .sub-nav-list dl dd > a:hover {
  background: #3C6292;
  border-radius: 5px;
  color: #FFFFFF;
}
.page-header .top-nav-bar > li:hover .sub-nav-list {
  visibility: visible;
}
