.hoverImg {
  display: block;
  overflow: hidden;
}
.hoverImg:hover > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.hoverImg > img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.defaultBg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.textAlign {
  word-break: break-all;
  overflow-wrap: anywhere;
}
.fix-nav-style {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0.05rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.05rem rgba(0, 0, 0, 0.1);
}
.fix-nav-style .main-menu-ul-list .main-menu > a {
  color: #222222;
}
.fix-nav-style .main-menu-ul-list .has-child {
  color: #222222;
}
.fix-nav-style .nav-icon-item {
  color: #222222;
}
.fix-nav-style .nav-logo .abs-log {
  opacity: 1;
  top: 0;
}
.container-con {
  width: var(--main-width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
.container-con .left-nav-con {
  padding-right: 0.6rem;
  padding-top: 0.56rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.container-con .left-nav-ul-list {
  width: 3.6rem;
  position: sticky;
  top: calc(var(--nav-height) + 0.56rem);
  /* = header 高度 + 间距 */
}
.container-con .left-nav-ul-list.fixed {
  position: sticky;
  top: 0;
}
.container-con .left-nav-ul-list > li {
  position: relative;
  width: 100%;
  height: 0.5rem;
  padding: 0 0.2rem;
  line-height: 0.5rem;
  cursor: pointer;
  color: #222222;
  font-size: 0.18rem;
  border-radius: 25px;
}
.container-con .left-nav-ul-list > li.active {
  background-color: #00228e;
  color: #ffffff;
}
.container-con .left-nav-ul-list > li::after {
  position: absolute;
  right: 0.2rem;
  top: 0.02rem;
  content: '\e782';
  font-family: "iconfont";
}
.container-con .content-con {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-left: 1px solid #e5e5e5;
  padding-left: 0.55rem;
  padding-top: 0.56rem;
  color: #333333;
  font-size: 0.16rem;
}
.container-con pre {
  font-size: 0.16rem;
  width: 100%;
  overflow-x: hidden;
  white-space: pre-wrap;
  /* 保留空白 + 自动换行 */
  overflow-wrap: break-word;
  /* 兼容写法 */
  text-align: justify;
  line-height: 0.34rem;
}
.container-con h1 {
  height: 0.66rem;
  margin-top: 0.6rem;
  font-size: 0.3rem;
  position: relative;
}
.container-con h1::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}
.container-con h1 > span {
  display: inline-block;
  height: 100%;
  position: relative;
}
.container-con h1 > span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #004898;
}
.container-con p {
  font-size: 0.16rem;
  line-height: 0.32rem;
  margin-top: 0.2rem;
  text-align: justify;
  -moz-text-align-last: justify;
  /* Firefox */
}
@media screen and (max-width: 760px) {
  .common-header-banner-con .banner-text-con {
    padding-top: 0;
  }
  .container-con .left-nav-con {
    display: none;
  }
  .container-con .content-con {
    padding: 0;
    border: none;
  }
  .container-con p,
  .container-con pre {
    font-size: 0.24rem;
  }
}
