/* base.css */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dd,
dt,
ol,
ul,
li,
table.tbody,
thead,
tr,
td,
form,
input,
button,
textarea,
p,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.row::before,
.row::after {
  display: none;
}
.container.bg-imgList .row {
  margin: 0;
}
.col-lg-12,
.col-lg-5,
.col-lg-3,
.col-lg-4,
.row {
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;  
}

.container-sthj {
  width: 100%;
}
.mt30 {
  margin-top: 30px;
}
/* 大屏 */
@media (min-width: 767px) {
  .col-xs-12 {
    padding: 0;
  }
  .container {
    width: 1200px;
    padding: 0;
  }
  .container-inner {
    width: 1200px;
    margin: 0 auto;
  }

  /* 头部 */
  .bg-header {
    height: 140px;
    background:#006c94 url(images1/headerbg.jpg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .bg-nav{
	  background-color: #255e7c;
	  top: 4px;
	      /* padding-top: 10px; */
	      position: relative;
  }
  .header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
  }

  /* .sthj-back {
    padding: 6px 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
  } */
  .sthj-back {
    position: absolute;
    top: 25px;
    right: 10px;
    display: flex;
    align-items: center;
  }

  .sthj-back a {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
  }

  .sthj-back .iconfont.icon-aui-icon-back {
    color: rgba(255, 255, 255, 0.6);
    padding-right: 4px;
  }

  /* 搜索组件 */
  .header-right__search {
    position: absolute;
    right: 10px;
    top: 55px;
  }
  
  .header-right__search__box {
	  border-radius: 15px;
	  overflow: hidden;
	  background-color: rgba(255, 255, 255, 0.1);  
  }
  
  .header-right__search__box form {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .search-title {
    width: 213px;
    height: 32px;
    border: none;
    outline: none;
    padding-left: 15px;
    font-size: 1.4rem;
    /* color: red; */
	background-color: rgba(255, 255, 255, 0.1);
  }
  
  .search-title::placeholder {  
          color: #fff; 
      }
  
  .search-sub {
    width: 42px;
    height: 32px;
    border: none;
    outline: none;
    cursor: pointer;
    padding-left: 10px;
    background: url(images/search.png)no-repeat  center;
	background-color: rgba(255, 255, 255, 0.1);
  }
  

  /* 导航 */

  .overlay,
  .sidebar-brand-header,
  .icon-RectangleCopy,
  .hamburger {
    display: none;
  }

  .navbar-inverse {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
  }

  .navbar-fixed-top,
  .navbar-fixed-bottom {
    position: initial;
    margin: 0;
  }

  /* 一级导航 */
  .bg-nav {
    /* background-color: #f3f3f3; */
  }
 
  .icon-dropdown{display: none;}
  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 49px;
  }

  .nav-menu__item {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
  }

  .nav-menu__item:hover {
    background-color: #02496f;
  }

  .nav-menu__item__link {
    font-size: 16px;
    width: 100%;
    height: 49px;
    color: rgba(255, 255, 255, 0.8);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
  }

  .nav-menu__item__link .subTitle {
    font-size: 1.8rem;
    transform: scale(0.6);
    white-space: nowrap;
    /* color: rgba(255, 255, 255, 0.7); */
  }

  .nav-menu__item .nav-menu__item__link:hover {
    /* color: #fff; */
  }

  .nav-menu__item .nav-menu__item__link:hover .subTitle {
    /* color: #fff; */
  }

  .nav-menu__item__link__active {
    /* background-color: #0e489a; */
    color: #fff;
  }

  /* 二级导航 */
  .nav-menu__item .sub__menu {
    /* width: 100%; */
    position: absolute;
    left: 0;
    top: 46px;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    transform: translateY(30px);
    /* transition: all 0.2s ease-in-out; */
    pointer-events: none;
    z-index: 10;
    min-width: 150px;
    /* background-color: rgba(0, 92, 57, 0.4); */
  }

  .nav-menu__item:hover .sub__menu {
    transform: translateY(0);
    pointer-events: all;
    opacity: 1;
  }

  .nav-menu__item .sub__menu .sub__menu__item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #305e7c;
    transition: all 0.2s ease-in-out;
  }

  .nav-menu__item .sub__menu .sub__menu__item:hover {
    /* background-color: #053e8f; */
  }

  .nav-menu__item .sub__menu .sub__menu__item a {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    line-height: 50px;
    font-size: 1.4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
  }

  .nav-menu__item .sub__menu .sub__menu__item:hover a {
    color: #fff;
  }

  .nav-menu__item > ul {
    position: relative;
  }

  .nav > li > a:hover,
  .nav > li > a:focus {
    /* background-color: #005c39; */
    color: rgba(255, 255, 255, 0.8);
  }
  .dropdown-menu > li > a:focus,
  .dropdown-menu > li > a:hover {
    background-color: #02496f;
  }
  .nav > li > a:hover {
    background-color: #02496f;
  }
 

  /* 三级导航 */
.nav-menu__item .sub__menu__item {
  position: relative;
}

.nav-menu__item .sub__menu__item i {
  transform: rotate(-90deg) translateY(5px);
  color: rgba(255, 255, 255, 0.8);
}

.nav-menu__item .sub__menu__item:hover i {
  color: #fff;
}
.nav-menu__item .sub__menu__item .sub__menu {
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
}

.nav-menu__item .sub__menu__item:hover .sub__menu {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
  pointer-events: all;
}

.nav-menu__item .sub__menu__item:hover .sub__menu .sub__menu__item a {
  color: rgba(255, 255, 255, 0.8);
}

.nav-menu__item .sub__menu__item .sub__menu .sub__menu__item:hover a {
  color: #fff;
}

/* 大图 */
/* swiper */
/* .swiper .swiper-wrapper {
  width: 100vw;
}

.swiper .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 400px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
  left: 20px;
  right: auto;
 
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.5;
  background-size: 15px;
  cursor: pointer;
  background-color: rgb(15, 165, 107);
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
  right: 20px;
  left: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.5;
  background-size: 15px;
  cursor: pointer;
  background-color: rgba(0, 92, 57, 0.8);
}

.swiper-slide {
  opacity: 0.6;
}

.swiper-slide-active {
  opacity: 1;
} */
  /* 内容部分 */

 /* .bg-container {
    background: url(images/bg.jpg);
    background-size: 100% 100%;

  } */
  .flex-box-1 {
    display: flex;
    /* justify-content: space-between; */
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: #fff;
	height: 420px;
    /* box-shadow: 10px 10px 5px #888888; */
  }
  .flex-box-2 {
    display: flex;
    justify-content: space-between;
    padding-top: 47px;
  }

  /* 新闻动态 */
  .sthj-news {
    width: 460px;
    /* margin-left: 20px; */
  }
  .news-header {
    padding-top: 30px;
    padding-bottom: 35px;
    display: flex;
    justify-content: space-between;
  }
  .news-header .news__head__title {
    font-size: 2.4rem;
	color: #015f7b;
	border-bottom: #015f7b 4px solid;
	padding-bottom: 15px;
	font-weight: bold;
  }

.xt{
	/* display: block !important; */
	/* float: left; */
	position: relative;
	width: 460px;
	height: 1px;
	background-color: #ececec;
	bottom: 35px;
	/* top: 20px; */
}
.xt2{
	/* display: block !important; */
	/* float: left; */
	position: relative;
	width: 340px;
	height: 1px;
	background-color: #ececec;
	bottom: 35px;
	/* top: 20px; */
}

  .news__head__more {
    display: flex;
    align-items: center;
  }
  .news__head__more span {
    font-size: 1.2rem;
    color: #085f8e;
  }
  .news__head__more i {
    font-size: 1.2rem;
    padding-left: 5px;
  }

  .news-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .news-content li {
    width: 47%;
  }
  .news-content li:nth-child(2) {
    margin-left: 36px;
  }
  .news-pic img {
    width: 291px;
    height: 195px;
  }
  .news-content .news-title {
    padding-top: 20px;
  }
  .news-content .news-title a {
    font-size: 1.4rem;
    color: #333;
  }
  .news-detail a {
    font-size: 1.2rem;
    color: #999;
    line-height: 20px;
  }
  .news-detail {
    padding-bottom: 30px;
    padding-top: 5px;
  }
  /* 通知公告 */
  .sthj-notice {
    width: 340px;
    margin-left: 30px;
    /* padding-right: 20px; */
  }
  .notice-header {
    padding-top: 30px;
    padding-bottom: 35px;
    display: flex;
    justify-content: space-between;
  }
  .playlist{
	  display: none;
  }

  .notice__head__title {
    font-size: 2.4rem;
	color: #015f7b;
	border-bottom: #015f7b 4px solid;
	padding-bottom: 15px;
	font-weight: bold;
  }
  .notice__head__more {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .notice__head__more span {
    font-size: 1.2rem;
    color: #085f8e;
  }
  .notice__head__more i {
    font-size: 1.2rem;
    padding-left: 5px;
  }

  .notice__content li {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding-top: 14px;
  }
  /* .imgscroll2_img{
	  padding: 80px 0 0 25px;
  } */
  /* .imgscroll2_img a:first-of-type img{
	  padding: 80px 0 0 0;
  } */
  .notice__content li:first-child {
    padding: 0;
  }
  .notice__content li .time {
    width: 58px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #085f8e;
    border-radius: 5px; */
    color: #085f8e;
  }
  .notice__content li .time .date {
    width: 58px;
    position: relative;
    text-align: center;
    /* border-bottom: 1px solid #0d6936; */
    font-size: 2rem;
	background-color: #d0eff5;
	color: #005572;
  }
 /* .notice__content li .time .date::after {
    position: absolute;
    left: 13px;
    bottom: 1px;
    content: "";
    width: 32px;
    height: 1px;
    background-color: #085f8e;
  } */
  .notice__content li .time .month {
    font-size: 1.2rem;
	width: 58px;
	text-align: center;
	background-color: #006c94;
	color: #e7eeee;
  }
  .notice__content li .summary {
    padding-left: 18px;
    line-height: 22px;
    white-space: normal;
	font-size: 16px;
  }

  .notice__content li .summary a {
    color: #333;
    font-size: 16px;
  }
  div#wp_content_w30_0{
	  font-size: 16px;
  }
  .col-news__list * {
	  font-size: 16px;
  }

  /* 党建工作 */
  .sthj-djgz {
    position: relative;
    width: 489px;
    height: 263px;
    background-color: #fff;
    padding-top: 38px;
    padding-left: 20px;
    padding-right: 30px;
  }
  .sthj-djgz::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 152px;
    height: 4px;
    background-color: #085f8e;
  }
  .djgz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .djgz__head__title {
    font-size: 2.4rem;
  }
  .djgz__head__more {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .djgz__head__more span {
    font-size: 1.2rem;
    color: #085f8e;
  }
  .djgz__head__more i {
    font-size: 1.2rem;
    padding-left: 5px;
  }
  .djgz__content {
    /* padding-top: 25px; */
  }
  .djgz__content li {
    display: flex;
    justify-content: space-between;
    line-height: 35px;
	font-size: 16px;
	    border-bottom: #ececec 1px solid;
	    padding-bottom: 8px;
  }
  .djgz__content li span {
    color: #999;
    font-size: 1.4rem;
  }
  .flex-box-3 {
    padding: 35px 0;
	background-color: #ecf9fc;
	width: 100%;
	height: 325px;
	
	/* height: 350px; */
  }
  .flex-box-3 ul {
    display: flex;
    justify-content: space-between;
  }
  .flex-box-3 ul li {
    /* flex: 1; */
    width: 234px;
    height: 151px;
    position: relative;
  }
  .flex-box-3 ul li a {
    width: 234px;
    height: 151px;
    display: flex;
    /* flex-direction: column-reverse; */
    text-align: end;
  }
  .flex-box-3 ul li a span {
    position: absolute;
  }
  .flex-box-3 ul li a span:first-child {
    font-size: 2rem;
    left: 30px;
    bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
  }
  .flex-box-3 ul li a span:last-child {
    font-size: 3rem;
    right: 26px;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.4);
  }
  .flex-box-3 ul li:first-child a {
    background: url(images/bg_zsxx.jpg);
  }
  .flex-box-3 ul li:nth-child(2) a {
    background: url(images/bg_jyzx.jpg);
  }
  .flex-box-3 ul li:nth-child(3) a {
    background: url(images/bg_bszn.jpg);
  }
  .flex-box-3 ul li:nth-child(4) a {
    background: url(images/bg_xzzx.jpg);
  }
  
  .imgscroll2_td:first-of-type{
	      padding-left: 0px !important;
  }
  td.imgscroll2_td {
      top: 80px;
      position: relative;
	  padding-left: 26px;
	  }

  .bg-header-h145 {
    height: 145px;
    background: #0068b1 url(images/footerbg.jpg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .flex-box-4 {
    display: flex;
    align-items: center;
	height: 180px;
  }
  .nav-header-more {
      /* more链接的容器样式 */  
      /* 根据需要设置内边距、背景色等 */  
      /* background-color: #f00; /* 举例的背景色  */ */
      color: #fff; /* 举例的文字颜色 */  
      padding: 10px 10px; /* 内边距 */  
      /* 其他样式 */  
  	    right: -470px;
  	    position: relative;
  }  
    
  .nav-list {  
      /* ul的样式 */  
      list-style: none; /* 移除默认的列表样式 */  
      padding: 0; /* 移除默认的内边距 */  
      margin: 0; /* 移除默认的外边距 */  
      /* 其他样式 */  
  }  
    
  .more-link {  
      /* more链接的样式 */  
      /* 根据需要设置样式 */  
      text-decoration: none; /* 移除下划线 */  
      color: #ffff; /* 继承父元素的文字颜色 */  
      /* 其他样式 */  
  }
  .flex-box-4 ul {
    display: flex;
  }
  .flex-box-4 ul li {
    flex: 1;
    padding-right: 22px;
  }
  .flex-box-4 ul li a {
    display: flex;
    align-self: center;
    padding-left: 42px;
    background-position: left;
  }
  .flex-box-4 ul li:first-child a{
    background: url(images/jiduan.png)no-repeat;
  }
  .flex-box-4 ul li:nth-child(2) a{
    background: url(images/icon01.png)no-repeat;
  }
  .flex-box-4 ul li:nth-child(3) a{
    background: url(images/xiufu.png)no-repeat;
  }
  .flex-box-4 ul li:nth-child(4) a{
    background: url(images/shenyuan.png)no-repeat;
  }
  .flex-box-4 ul li:nth-child(5){
    background: url(images/icon03.png)no-repeat;
  }
  .flex-box-4 ul li:nth-child(6){
    background: url(images/cehui.png)no-repeat;
  }
  .flex-box-4 ul li:nth-child(7){
    background: url(images/icon04.png)no-repeat;
  }
  .flex-box-4 ul li:nth-child(8){
    background: url(images/icon02.png)no-repeat;
  }
  
.flex-box-4 {  
  display: flex;  
  align-items: center;  
  width: 100%; /* 父容器宽度为100% */  
}  
  
.flex-box-4 ul {  
  display: flex;  
  flex-wrap: wrap; /* 允许换行 */  
  padding: 0; /* 移除默认的ul内边距 */  
  list-style: none; /* 移除默认的列表样式 */  
}  
  
.flex-box-4 ul li {  
  flex: 0 0 25%; /* 不增长、不缩小、基础宽度为24%（留一点空间给padding等） */  
  padding-right: 44px;  
  box-sizing: border-box; /* 确保padding和border不会增加元素的总宽度 */  
  padding-bottom: 25px;
}  
  
.flex-box-4 ul li:nth-child(4n) {  
  padding-right: 0; /* 第四个及以后的li元素没有右边距，因为它们是每行的最后一个 */  
}  
  
 
  .flex-box-4 li a span {
    padding-left: 10px;
    font-size: 1.4rem;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
  }

  /* 底部 */
  .footer-mobile {
    display: none;
  }
  .footer {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #025e7c;
  }
  
  #myVideo{
	  width: 460px;
	  height: 260px;
  }
  .footer-pc p {
    font-size: 1.2rem;
    text-align: center;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
  }

  /* listcolumn */
  /* .bg-list {
    background: url(images/bg.jpg) no-repeat bottom;
    padding-bottom: 50px;
    background-size: 100% 100%;
  } */
  .bg-list-content {
    background-color: #fff;
  }
  .col-wrap {
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
	margin-bottom: 63px;
	        top: 50px;
	        position: relative;
  }

  .col-menu {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }

  /* 一级栏目 */
  .col-menu__title {
    width: 220px;
    height: 48px;
    line-height: 48px;
    background-color: #035e7d;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .col-menu__title h2 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    position: relative;
    padding-left: 22px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  /* 二级列表 */
  .col-menu__list {
    /* border: 1px solid #e4e4e4; */
    width: 220px;
    /* min-height: calc(100vh - 130px); */
  }

  .menu__list__item {
    border-bottom: 2px solid #fff;
  }
  .col-menu__list .menu__list__item:last-child {
    border: none;
  }

  .menu__list__item__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    height: 40px;
    line-height: 40px;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    position: relative;
  }

  .menu__list__item__link:hover {
    background-color: #eeeeee;
    color: #00578f;
  }

  .col-menu__list span {
    font-size: 1.4rem;
    /* color: #5e5e5e; */
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .menu__list__item__link:hover span {
    color: #00578f;
  }

  .menu__list > li.selected .menu__list__item__link {
    /* background-color: #eeeeee; */
  }

  .menu__list > li.selected .menu__list__item__link {
    position: relative;
  }

  .menu__list > li.selected .menu__list__item__link span {
    color: #00578f;
    font-weight: 500;
  }

  /* 三级子栏目 */
  .sub__list {
    display: flex;
    flex-direction: column;
  }
  
  .sub__list .sub__list__item>a {
    display: flex;
    padding-left: 20px;
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #e4e4e4;
  }
  
  .menu__list .parent,
  .menu__list .parent .menu__list__item__link {
    /* background-color: #eeeeee; */
  }
  
  .menu__list .parent>a span {
    color: #00578f;
  }
  
  .menu__list .parent .sub__list a:hover {
    background-color: #eeeeee;
  }
  
  .menu__list .parent .sub__list a:hover span{
    color: #00578f;
  }
  
  .menu__list .parent .selected a {
    background-color: #eeeeee;
  }
  
  .sub__list .sub__list__item>a span {
    padding-left: 20px;
  }
  
  .sub__list span{
    font-size: 1.3rem;
  }

  /* 文章列表 */
  
  //列表页箭头
  .nav-left-toggle{
  	width: 40px;
  	text-align: center;
  	height: 60px;
  	line-height: 60px;
  	position: absolute;
  	top: 0px;
  	right: 0px;
  	display: none;
  }
  .nav-left-toggle span{
  	font-size: 24px;
  	color: #0f457d;
  	font-weight: bold;
  	}
  
  .col-news {
    margin-left: 50px;
    padding-top: 10px;
    width: 820px;
  }
.col-news__list {
    top: 20px;
    position: relative;
}
  .col-news__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .col-news__head::after {
    position: absolute;
    left: 0;
    bottom: 8px;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #e4e4e4;
  }
  .col-news__head h2 {
    font-size: 18px;
    color: #025e7c;
    height: 45px;
    line-height: 47px;
    position: relative;
    font-weight: 500;
    border-bottom: 3px solid #025e7c;
    z-index: 9;
  }
  
.col-news__head h2.long-text {
  line-height: 20px !important;
  margin: 0 40px -16px 0;
}
  
  /* location */
  .location {
    padding: 21px 0 25px;
    font-size: 1.4rem;
    color: #5e5e5e;
    position: relative;
  }

  .location {
    font-size: 1rem;
    color: #999;
  }

  .location .possplit {
    background: none;
    position: relative;
    margin-left: 10px;
    text-indent: 0;
  }

  .location .possplit::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "|";
    font-size: 1.2rem;
    color: #333;
  }

  .col-news__list > ul li {
    height: 55px;
    line-height: 55px;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .news-item-li:hover {
      background-color: #fff;
      /* border-color: #ff0000; */
      /* width: 731px; */
      /* height: 51px; */
      padding: 2px 6px;
      /* width: 800px; */
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
      /* padding-bottom: 20px; */
  }

  .col-news__list > ul li:hover {
    /* background-color: #dce9f2; */
  }

  .col-news__list > ul li:hover a {
    color: #245e7a;
  }

  .col-news__list .news-title a {
    font-size: 16px;
    color: #333333;
    transition: all 0.3s ease-in-out;
  }

  .col-news__list .news-date {
    font-size: 1.3rem;
    color: #333;
  }

  .col-news__list .wp_paging {
    padding: 35px 100px 35px 0px;
  }

  .col-news__list .wp_paging .per_count,
  .col-news__list .wp_paging em.all_count,
  .col-news__list .wp_paging .curr_page,
  .col-news__list .wp_paging .all_pages {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
  }

  /* dis */
.bg-dis{
  /* background: url(images/bg.jpg)no-repeat bottom; */
  padding-bottom: 80px;
  background-size: 100% 100%;
  top: 50px;
          position: relative;
}
.dis-wrap{
  padding: 0 30px;
  background-color: #fff;
  /* box-shadow:  0  0 25px  #eaeaea;   */
}

.dis-wrap-h1 {
  font-size: 2rem;
  color: #025e7c;
  text-align: center;
  font-weight: 500;
  padding-top: 50px;
  padding-bottom: 30px;
}

.dis-wrap-release {
  height: 38px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f8fc;
}

.dis-wrap-release p {
  font-size: 1.2rem;
  color: #999;
}

.dis-wrap-release span {
  font-size: 1.2rem;
  color: #999;
}

.dis-wrap-content {
  padding: 35px 0 55px;
  border-bottom: 1px solid #f6f6f6;
  min-height: calc(100vh - 408px);
 overflow: hidden;
}
.dis-wrap-content * {
	font-size: 16px !important;
}

.dis-wrap-content p {
  font-size: 16px;
  text-indent: 2em;
  line-height: 25px;
  margin-top: 7px;
}

.dis-wrap-content p:first-child {
  margin-top: 0;
}

.close {
  display: flex;
  justify-content: center;
}

.close a {
  font-size: 1.2rem;
  padding: 12px 0 20px;
  color: #999;
}
}
