/* 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;
}

.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: 150px;
    background:#0063b6 url(images1/headerbg.jpg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .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: 30px;
    right: 30px;
    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: 22px;
    top: 55px;
  }
  
  .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: #b1b1b1;
  }
  
  .search-sub {
    width: 42px;
    height: 32px;
    border: none;
    outline: none;
    cursor: pointer;
    padding-left: 10px;
    background: #fff url(images1/ss1.png) no-repeat  center;
  
  }
  

  /* 导航 */

  .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: 52px;
  }

  .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: red; */
  }

  .nav-menu__item__link {
    font-size: 1.6rem;
    width: 100%;
    height: 49px;
    color: #00274c;
    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: 96%;
    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: 100px;
    /* 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: #0063b6;
    transition: all 0.2s ease-in-out;
  }

  .nav-menu__item .sub__menu .sub__menu__item:hover {
    /* background-color: red; */
  }

  .nav-menu__item .sub__menu .sub__menu__item a {
    width: 150px;
    height: 50px;
    padding: 0 10px;
    line-height: 50px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    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: #0360b4;
  }
  .dropdown-menu > li > a:focus,
  .dropdown-menu > li > a:hover {
    background-color: #1a77c5;
  }
  .nav > li > a:hover {
    /* background-color: red; */
  }
 

  /* 三级导航 */
.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;
    /* box-shadow: 10px 10px 5px #888888; */
	padding-bottom: 50px;
  }
  .flex-box-2 {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
	background: #f3f3f3;
	/* width: 100%; */
	padding-bottom: 30px;
  }

  /* 新闻动态 */
  .xinwen{
	  width: 400px !important;
  }
  .sthj-news {
    width: 800px;
    margin-left: 20px;
	line-height: 10px;
  }
  .news-header {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
  }
  .news-header .news__head__title {
    font-size: 2.4rem;
	color: #052F52;
  }

  .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%;
	border-bottom: 2px solid #0063B6;
  }
  .news-content li:nth-child(2) {
    margin-left: 36px;
  }
  .xinwendiv {
      width: 362.96px;
      height: 272.46px;
      overflow: hidden;
      display: flex;
      justify-content: center;
  }
  .news-pic img {
    width: 100%;
    height: 100%;
  }
  .xinwendiv img{
	  width: auto;
	  height: 100%;
  }
  .news-content .news-title {
    padding: 20px 0 10px 0;
	font-size: 20px;
  }
  .news-content .news-title a {
    font-size: 16;
    color: #333;
	font-weight: 600;
  }
  .news-detail a {
    font-size: 14px;
    color: #999;
    line-height: 30px;
  }
  .news-detail {
    padding-bottom: 18px;
    padding-top: 5px;
	color: #aaaaaa;
  }
  /* 通知公告 */
  .sthj-notice {
    width: 765px;
    margin-left: 20px;
    /* padding-right: 20px; */
  }
  .notice-header {
    padding-top: 30px;
    padding-bottom: 23px;
    display: flex;
    justify-content: space-between;
  }

  .notice__head__title {
    font-size: 2.4rem;
	    color: #052F52;
  }
  .notice__head__more {
    display: flex;
    align-items: center;
    justify-content: space-between;
	position: relative;
	left: 340px;
	border: 1px solid #0063b6;
	border-radius: 12px; /* 边缘变圆 */  
	padding: 3px 6px; 
  }
  .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: 22px; */
  }
  .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: #0063b6;
  }
  .notice__content li .time .date {
    width: 58px;
    position: relative;
    text-align: center;
    /* border-bottom: 1px solid #0d6936; */
    font-size: 2rem;
  }
  .notice__content li .time .date::after {
    position: absolute;
    left: 13px;
    bottom: 1px;
    /* content: ""; */
    width: 32px;
    height: 1px;
    background-color: #0063b6;
  }
  .notice__content li .time .month {
    font-size: 1.2rem;
	position: relative;
	left: -10px;
  }
  .notice__content li .summary {
    padding-left: 18px;
    line-height: 22px;
    white-space: normal;
	color: #aaaaaa;
  }

  .notice__content li .summary a {
    color: #333;
    font-size: 1.4rem;
  }

  /* 党建工作 */
  .sthj-djgz {
    position: relative;
    width: 400px;
    height: 263px;
    /* background-color: #fff; */
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 30px;
  }
  .box4more{
	  border: 1px solid #fff;
	  padding: 0px 6px;
	  left: -25px;
  }
  .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;
	    color: #052F52;
  }
  .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: 30px;
	color: #aaaaaa;
	flex-direction: column; /* 子项上下排列 */  
	  align-items: flex-start;
  }
  .djgz__content li span {
    color: #0063B6;
    font-size: 1.4rem;
	padding-bottom: 8px;
  }
  .flex-box-3 {
    padding: 50px 0;
  }
  .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);
  }

  .bg-header-h145 {
    height: 145px;
    background: #0063B6 url(images1/scientificbg.jpg);
    background-repeat: no-repeat;
    background-position: center;
	background-size: cover;
  }
  .flex-box-4 {
    display: flex;
    align-items: center;
	height: 180px;
  }
  .nav-header-more {
      /* background-color: #f00; /* 举例的背景色  */ */
      color: #fff; /* 举例的文字颜色 */  
      /* padding: 10px 10px; */ /* 内边距 */  
      /* 其他样式 */  
  	    right: -470px;
  	    position: relative;
  }  
  .keyan {
  	display: flex;
  	justify-content: space-between !important;
  	padding: 40px 0 25px 0;
  	width: 1200px;
  	left: 30px;
  	position: relative;
  }
    
  .nav-list {  
      /* ul的样式 */  
      list-style: none; /* 移除默认的列表样式 */  
      padding: 0; /* 移除默认的内边距 */  
      margin: 0; /* 移除默认的外边距 */  
      /* 其他样式 */  
  }  
  .nav-list li{
	  width: 220px;
  }
    
  .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(images1/scientific001.png)no-repeat;
  }
  .flex-box-4 ul li:nth-child(2) a{
    background: url(images1/scientific002.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 0 0 30px; /* 移除默认的ul内边距 */  
  list-style: none; /* 移除默认的列表样式 */  
}  
  
.flex-box-4 ul li {  
  flex: 0 0 20%; /* 不增长、不缩小、基础宽度为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: #094281;
  }
  .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;
  }

  .col-menu {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }

  /* 一级栏目 */
  .col-menu__title {
    width: 220px;
    height: 48px;
    line-height: 48px;
    background-color: #0063b6;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .col-menu__title h2 {
    font-size: 1.8rem;
    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: 1px 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;
	background: #fafafa;
  }

  .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;
  }

  /* 文章列表 */
  .col-news {
    margin-left: 50px;
    padding-top: 10px;
    width: 100%;
  }

  .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: 1.6rem;
    color: #0063b6;
    height: 47px;
    line-height: 47px;
    position: relative;
    font-weight: 500;
    border-bottom: 3px solid #0063b6;
    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: 35px;
    line-height: 35px;
    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;
  }

  .col-news__list > ul li:hover {
    /* background-color: #dce9f2; */
  }

  .col-news__list > ul li:hover a {
    color: #42820a;
  }

  .col-news__list .news-title a {
    font-size: 1.4rem;
    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 0 50px;
  }

  .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: 55px;
  background-size: 100% 100%;
}
.dis-wrap{
  padding: 0 30px;
  background-color: #fff;
  /* box-shadow:  0  0 25px  #eaeaea;   */
}

.dis-wrap-h1 {
  font-size: 2rem;
  color: #383838;
  text-align: center;
  font-weight: 500;
  padding-top: 70px;
  padding-bottom: 30px;
}

.dis-wrap-release {
  height: 38px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fbfbfb;
}

.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 p {
  /* font-size: 1.4rem; */
  font-size: 20px;
  text-indent: 2em;
  line-height: 25px;
  margin-top: 35px;
}

.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: #a0a0a0;
}
}
