/* 文本超出显示省略号 */
.ellipsis{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.type-area{
  width: 1200px;
  margin: 0 auto;
}
header{
  position: sticky;
  top: 0;
  z-index: 999;
  height: 80px;
  background: #fff;
}
header .type-area{
  display: flex;
  /* 两端对齐 */
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  width: 293px;
  height: 64px;
}
.logo h1{
  width: 100%;
  height: 100%;
}
.logo h1 a {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: url(../images/logo.png) no-repeat center;
}
.nav {
  display: flex;
  gap: 20px;
  margin: 0 20px;
}
.nav > li {
  position: relative;
  display: block;
  height: 84px;
  line-height: 84px;
}
.nav > li > a{
  display: block;
  font-size: 16px;
  color: #000;
  padding: 0 10px;
}
.nav .nav-sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #263B74;
  border-radius: 0 0 8px 8px;
  padding: 5px 0;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(186, 4, 12, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav > li:hover .nav-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav .nav-sub-menu li {
  padding: 0;
  height: auto;
  line-height: normal;
}
.nav .nav-sub-menu li a {
  display: block;
  font-size: 15px;
  padding: 12px 25px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.nav .nav-sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 30px;
}
/* banner */
.com-banner {
    margin: 0 auto;
    position: relative;
    height: 680px;
    overflow: hidden;
}

.com-banner .bd {
    height: 680px;
    z-index: 0;
    position: relative;
    left: 50%;
    margin-left: -952px;
}

.com-banner .banner_ctr {
    height: 90px;
    position: absolute;
    top: 45%;
    z-index: 2;
    left: 50%;
    margin-left: -600px;
}

.com-banner .banner_ctr a {
    display: block;
    width: 74px;
    height: 74px;
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
    display: block;
    cursor: pointer;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.com-banner:hover .banner_ctr a {
    opacity: .5;
    filter: alpha(opacity=50);
}

.com-banner .banner_ctr a.prev {
    left: -74px;
    background: url(../images/banner-prev.png) no-repeat center;
}

.com-banner .banner_ctr a.next {
    right: -1274px;
    background: url(../images/banner-next.png) no-repeat center;
}

.com-banner .banner_ctr a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.com-banner .hd {
    position: absolute;
    bottom: 25px;
    text-align: center;
    z-index: 5;
    left: 0;
    font-size: 0;
    line-height: 0;
    height: 0px;
    width: 100%;
    height: 9px;
    overflow: hidden;
}

.com-banner .hd li {
    background: #888;
    z-index: 2;
    cursor: pointer;
    margin: 0 2px;
    display: inline-block;
    width: 52px;
    height: 6px;
    zoom: 1;
    opacity: .8;
}

.com-banner .hd li:hover,
.com-banner .hd .on {
    opacity: 1;
    background: #15376A;
}
/* footer */
footer{
  height: 300px;
  padding: 3% 5%;
  background: #414141;
  color: #fff;
}
.footer-slogan ul {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
.footer-slogan li {
  height: 52px;
  line-height: 52px;
  font-size: 18px;
}
.footer-slogan li small{
  margin-right: 5px;
}
.footer-slogan li small img {
  width: 52px;
  height: 52px;
  vertical-align: middle;
}
.footer-nav {
  padding: 40px 0 15px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
}
.footer-nav li {
  display: block;
}
.footer-nav li a {
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 0 20px;
  border-right: 1px solid #fff;
}
.footer-nav li:last-child a {
  border-right: none;
}
.copyright {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 40px ;
}
.copyright p {
  font-size: 14px;
  margin-bottom: 10px;
}
/* 底部导航及侧边栏 */
.footer-aside {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  height: 70px;
  background: #263B74;
}
.footer-aside .type-area{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
.footer-phone{
  width: 177px;
  height: 37px;
}
.footer-aside > .type-area > ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex: 1;
  height: 100%;
}
.footer-aside > .type-area > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.footer-aside > .type-area > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  height: 100%;
  padding: 0 20px;
}
.footer-aside > .type-area > ul > li > a:hover {
  background: rgba(255, 255, 255, 0.15);
}
.footer-aside .sub-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #263B74;
  border-radius: 8px 8px 0 0;
  padding: 10px 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.footer-aside > .type-area > ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.footer-aside .sub-menu li a {
  display: block;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-aside .sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 30px;
}
.back-to-top {
  width: 62px;
  height: 31px;
  cursor: pointer;
}
.back-to-top img {
  width: 100%;
  height: 100%;
  /* 图片等比例缩放 */
  object-fit: contain;
}
/* 右边侧边栏 */
.right-aside {
  position: fixed;
  right: 0;
  top: 35%;
  transform: translateY(-35%);
  -webkit-transform: translateY(-35%);
  z-index: 999;
}
.right-aside ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.right-aside ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 83px;
  height: 70px;
  background: #263B74;
  border-radius: 5px;
  cursor: pointer;
}
.right-aside li p {
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
}
.vx-show-hiden,.phone-show-hiden {
  position: relative;
}
.vx-show {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: -160px;
  width: 160px;
  height: 120px;
  background: #f1f1f1;
  border-right: 2px solid #263B74;
}
.vx-show img {
  margin: 12px;
}
.right-aside .vx-show p {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.phone-show {
  position: absolute;
  top: 0;
  right: -121px;
  width: 121px;
  height: 62px;
  background: #f1f1f1;
  border-right: 2px solid #263B74;
}
.right-aside .phone-show p{
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  text-align: center;
}
/* 当前位置 */
.cur-position {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #263B74;
  margin: 20px 0;
}
.cur-position a {
  font-size: 16px;
}
/* 文章列表 */
.honour .honour_pic{
  overflow: hidden;
  width: 100%;
  height: 220px;
  padding: 10px;
  margin-bottom: 30px;
  cursor: pointer;
  border: 1px solid #eee;
}
.honour .honour_pic:hover{
  border: 1px solid #263B74;
}
.honour_pic {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.honour_pic .honour-pic-img {
  width: 210px;
  height: 200px;
}
.honour-pic-img img {
  width: 100%;
  height: 100%;
}
.honour-pic-text {
  width: 940px;
  height: 100%;
}
.honour-pic-text h5 {
  font-size: 20px;
  color: #333;
  margin: 15px 0;
}
.honour-pic-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.honour-pic-text p a {
  color: #263B74;
}
.honour-pic-text .date {
  font-size: 14px;
  color: 666;
  margin-top: 20px;
  text-align: right;
}
/* 文章详情 */
.art-content .art-hd {
  margin: 60px 0 10px 0;
  font-size: 36px;
  color: #333;
  font-weight: normal;
  text-align: center;
  line-height: 45px;
}
.art-content .art-meta{
  margin: 30px 0 0 0;
  text-align: center;
  color: #999;
  font-size: 14px;
  line-height: 22px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.art-content .content {
  margin: 30px 0 0 0;
  font-size: 16px;
  line-height: 200%;
}
.art-nav {
  margin: 30px 0;
}
.art-nav ul {
  display: flex;
  justify-content: space-between;
}