html,
body {
  font-family: PingFang SC, Microsoft YaHei, Arial, sans-serif !important;
  background: #f4f4f4;
  color: #212529;

}

a {
  color: #212529;
}
a:hover{
  color: #01574c;
}
header {
  background: url(/static/images/BG.jpg) center/cover no-repeat;
  background-position: 50% 70%;
}

.behide {
  display: none;
}

.footer {
  background: #01574c;
  border-top: 1px solid #01574c;
  color: #f4f4f4;
  font-size: 16px;
}

.footer .row {
  margin: 0 !important;
}

.footer .container {
  padding: 25px 0px;
}

.footer .text-small i {
  margin-right: 8px;
}

.footer .text-muted {
  color: #e4e4e4 !important;
}

.footer .text-small li {
  line-height: 2;
}

.footer .text-small li a {
  cursor: pointer;
  text-decoration: none;
}

.footer-center {
  text-align: center;
  background: #ddd;
  font-size: 14px;
  line-height: 40px;
  color: #212529;
}

.footer .ewm span{
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.footer .ewm img{
  display: block;
  width: 100%;
  margin: 0 auto;
}
.header-top {
  width: 100%;
  padding: 3% 0px;
  border-bottom: 1px solid #01574c;
  color: #01574c;
  /* background: #01574c; */
}

.to_top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99;
  width: 3rem;
  height: 3rem;
  bottom: 30%;
  right: 15px;
  background: #01574c;
  color: #ddd;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.header-top h5 {
  font-size: .8rem;
  margin-bottom: 0px;
}

.header-top h2 {
  font-weight: 600;
}

.header-top .nm-font {
  font-size: 1.48rem;
  display: block;
  margin-top: 10px;
}
.header-top .nm-font img{
  display: block;
  width: 100%;
}
.header-top .head-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.header-top .head-row .left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top .right {
  width: 30%;
  position: relative;
}

.header-top .right i {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 99;
}

.header-top .right .form-control {
  text-indent: 20px;
  height: 38px;
  font-size: 16px;
  line-height: 38px;
}

.header-top .right .btn {
  background-color: #046f61;
  color: #fff;
  min-width: 80px;
  border: none;
}

.menu {
  display: none;
  color: #fff;
}

.menuClose {
  display: none;
}

.head-column .head-row {
  gap: 35px;
}

.head-column {
  display: block;
  width: 100%;
  background: #01574b80;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.head-column .row {}

.head-column .sidebar-menu {
  
  text-align: center;
  cursor: pointer;
  position: relative;

}

.head-column .sidebar-menu:hover {
  background: #046f61;
}

.head-column .sidebar-menu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  /* 恢复原大小 */
}

.head-column .sidebar-menu .menu-title a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 16px 0;
}

.head-column .submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  z-index: 99;
  width: 100%;
  background: #046f61;
  margin: 0;
  padding: 0;
  top: 59px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.1);
  /* 初始缩小到95% */
  transform-origin: top left;
  /* 缩放原点：左上角（父菜单下方） */
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  /* 缓动曲线更顺滑 */
}

.head-column .submenu li {
  list-style: none;
}

.head-column .submenu li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 50px;
  color: #fff;

}

.head-column .submenu li a:hover {
  font-weight: bold;
}

.header-top .logo-img {
  height: 120px;
}

.home_top {
  padding: 0px;
  margin-bottom: 20px;
}

.home_top .swiper-slide {
  position: relative;
}

.home_top .swiper-ahref {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  line-height: 36px;
  color: white;
  background: #00000073;
  text-indent: 10px;
}

.home_top .left {}

/* .home_top .left,
.home_top .right {
  margin: 15px 0px;
} */

.oneline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home_top .left img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  /* 等比填满容器，裁剪超出部分 */
  object-position: center;
  /* 裁剪时保留顶部区域 */
}

/* 移动端（屏幕宽度 < 768px） */
@media (max-width: 767px) {
  .home_top .left img {
    height: 250px;
    /* 高度自适应（根据宽度和图片比例自动计算） */
    /* 或固定更小高度，如 height: 180px; */
    max-height: 250px;
    /* 可选：设置最小高度，避免图片过矮 */
    object-fit: cover;
    /* 等比填满容器，裁剪超出部分 */
    object-position: center;
    /* 裁剪时保留顶部区域 */
  }
}

.home-tab {
  display: block;
  width: 100%;
  border-bottom: 1px solid #eee;
}

.home-tab>a {
  cursor: pointer;
  width: 33.3%;
  text-align: center;
  font-size: 18px;
  line-height: 36px;
  display: inline-block;
  border-bottom: 3px solid #f4f4f4;
  text-decoration: none;
}



.home-tab>span>a {
  cursor: pointer;
  float: right;
  font-size: 0.95rem;
  line-height: 39px;
}

.home-tab>span>a:hover {
  color: #01574c !important;
  text-decoration: underline !important;
}

.home-tab>a:hover {
  color: #01574c;
  font-weight: 500;
}

.home-tab>a.active {
  color: #018b76;
  font-weight: bold;
  background: white;
  border-bottom: 3px solid #018b76;
}

.home-middle .home-tab {
  border-bottom: 2px solid #dddcdc;
}

.home-middle .home-tab>a {
  margin-bottom: -2px;
  color: #018b76;
  font-weight: bold;
  background: none;
  text-align: left;
  width: auto;
  border-bottom: 3px solid #018b76;
}

.ad-imgs {
  width: 100%;
  border-radius: 8px;
}

.ads {
  margin: 15px 0;
  width: 100%;
}

.ads img {
  width: 100%;
}

.home-middle .news a,
.home_top .right .news a {
  cursor: pointer;
  display: flex;
  justify-content: start;
  align-items: flex-end;
  height: 40px;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
}

.home_top .right .news a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid #018b76;
  /* background-color: #018b76; */
  margin-left: 10px;
  margin-bottom: 7px;
}

.home_top .right .news a:hover {
  color: #018b76;
}

.home-middle .news a div,
.home_top .right .news a div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}
.home-middle{
  margin-bottom: 20px;
}
.home-middle .news-block {
  padding-top: 1rem;
}

.home-middle .news-block a {
  display: inline-block;
  width: calc(50% - 5px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  background: white;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 42px;
  border-radius: 4px;
  padding: 0px .5rem;
  text-decoration: none;
}

.home-middle .news-block>a:nth-child(even) {
  margin-left: 10px;
}

.home_top .right .left-date {
  flex: 1;
  text-indent: 10px;
  text-align: left;
  margin: 0 0 0 0;
  padding: 0 10px 0 0;
}

.home_top .right .right-txt {
  color: #999;
  font-size: 12px;
  padding-bottom: 3px;
  width: 80px;
  text-align: right;
}

.news-detail {
  padding: 20px 0px;
}

.news-nav {
  background: #e9ecef;
}

.news-nav .breadcrumb {
  border-radius: 0px;
  background: none;
}

.news-nav .breadcrumb .breadcrumb-item {
  font-size: .93rem;
  font-weight: 500;
}

.news-nav .breadcrumb a[href]:hover {
  text-decoration: none;
  /* 显示下划线（可选） */
  color: #01574c;
}

.news-detail .title {
  margin: 10px;
  white-space: normal;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  padding: .5rem 0px;
}

.news-detail .new_info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 18px;
  border-bottom: #e1e1e1 1px solid;
}
.news-detail .new_info div{
  margin: 0 10px;
}
.news-detail .news-content {
  padding: 25px 0;
}

.web_column .left {
  overflow: hidden;
}

@media (min-width: 768px) {
  .web_column .left {
    min-height: 500px;
  }
}

.web_column .col-item {
  display: block;
  background: rgb(228, 228, 228);
  margin: 0px;
  line-height: 42px;
  text-align: center;
  margin-bottom: 10px;
}

.web_column .col-item:hover {
  background: #01574c;
  color: #ddd;
  text-decoration: none;
}

.web_column .col-item.active {
  background: #01574c;
  color: white;
  font-weight: 600;
}

.web_column .left .lm_child {
  background: white;
  padding: .5rem;
  margin-top: -10px;
  text-align: center;
  margin-bottom: 10px;
}

.web_column .left .lm_child {
  display: flex;
  flex-direction: column;
}

.web_column .left .lm_child>a {
  line-height: 40px;

}

.web_column .left .lm_child>a:hover {
  text-decoration: none;
  /* 显示下划线（可选） */
  color: #01574c;
  background: rgb(228, 228, 228);
}

.web_column .right .block-list .lm_child {
  display: block;
}

.web_column .right .block-list .lm_child>a {
  background: white;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 42px;
  border-radius: 4px;
  display: inline-block;
  width: calc(50% - 10px);
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 5px;
  box-sizing: border-box;
}
.web_column .right .block-list .lm_child>a:nth-child(even) {
  margin-left: 20px;
  /* 仅第一个元素加右侧间距 */
}


.web_column .right .lm_child>a:hover {
  text-decoration: none;
  /* 显示下划线（可选） */
  color: #01574c;
  background: rgb(228, 228, 228);
}

.web_column .right .bd-callout-info {
  border-right: #01574c 5px solid;
  border-left: #01574c 5px solid;
  line-height: 42px;
  background: #fff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.web_column .right .media_news {
  display: block;
  border-bottom: 1px dashed #ddd;
  margin-bottom: .7rem;
  margin-top: .1rem;

}

.web_column .right .media_news .news-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: .90rem;
  color: #999;
  padding-bottom: .5rem;
  margin: 0px;
  padding-left: 20px;
}

.web_column .right .media_news>a {
  display: inline-block;
  width: 85%;
  text-decoration: none;
  margin-top: 15px;
}

.web_column .right .media_news>a::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 2px solid #018b76;
  /* background-color: #018b76; */
  padding: 0px;
  margin-right: 10px;
}

.web_column .right .media_news>a:hover {
  color: #018b76;
}

/* 
.web_column .right .media {
  border-bottom: 1px dashed #ddd;
  margin-bottom: .7rem;
  margin-top: .1rem;
  padding: .5rem 0;
}

.web_column .right .media .img-cover {
  display: block;
  width: 80px;
  height: 47px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 5px;
  border: #fff 1px solid;

}

.web_column .right .media a {
  text-decoration: none;
}

.web_column .right .media .media-body>a:hover {
  color: #018b76;
}

.web_column .right .media .oneline {
  font-size: 1rem;
  display: block;
  width: 85%;
}

.web_column .right .news-info {

  flex-direction: row;
  justify-content: space-between;
  font-size: .90rem;
  color: #999;
  padding-bottom: .5rem;
  margin: 0px;
} */

.pagination {
  margin: 1.5rem 0px;
  border-radius: 0px;
}

.page-item.active .page-link {
  background-color: #01574c;
  border-color: #01574c;
}

.page-link {
  color: #01574c;
  border: none;
}

.good_links {
  padding: .5rem 0px;
}

.good_links .tit {
  cursor: pointer;
  font-size: 18px;
  line-height: 42px;
  display: block;
  text-decoration: none;
  color: #018b76;
  font-weight: bold;
  border-bottom: 3px solid #018b76;
}

.good_links {
  margin: 10px 0;
}

.good_links .row {
  margin: 0px;
}

.good_links .row .col-md-3 {
  display: flex;
  align-items: center;
}

.good_links .links {
  background: #fff;
  padding: .6rem 0px;
}

.good_links .links a {
  display: block;
  padding: .6rem 0px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qrCodeBox{
  margin: 0 auto;
  padding: 60px 0;
}
.qrCodeBox h3{
  font-size: 16px;
  color: #000;
  text-align: center;
}
.qrCodeBox img{
  display: block;
  width: 200px;
  margin: 10px auto 0;
}
.formBox{
  width: 580px;
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 30px 46px 50px;
  margin: 20px auto 40px;
}
.formBox .lable {
  margin: 0 auto;
  position: relative;
}
.formBox p{
  margin: .8rem 0;
}
.formBox .lable input {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  color: #000;
  line-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.formBox .tj2 {
  width:  100%;
  height: 50px;
  display: block;
  margin: 40px auto 0;
  font-size: 0;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  line-height: 50px;
  background: #01574c;
  border: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.imgBox{
  position: relative;
  width: 100px;
  height: 100px;
}
#imageInput{
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.imgBox .imgBoxImg{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #01574c;
  border: 1px solid #ddd;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
#previewImg{
  width: 100px;
  height: 100px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
}

/* @media only screen and (max-width:768px) {
  .web_column .right .block-list .lm_child>a{
    width: 100%;
    margin: 0 10px 0 0;
  }
  .web_column .right .block-list .lm_child>a:nth-child(even){
    margin: 0;
  }
  
} */
@media only screen and (max-width:992px) {
  .header-top {
    padding: 5px 0;
  }
  .header-top .info h2{
    font-size: .9rem;
    margin-bottom: 0;
  }
  .header-top .info h5,.header-top .info span{
    display: none;
  }

  .header-top .logo-img {
    height: 50px;
  }

  .head-column {
    font-size: 16px;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 99;
    /* background: rgba(1,139,118,1); */
    background: #fff;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    padding-top: 30px;
  }
  .head-column .row{
    display: block;
  }
  .head-column .sidebar-menu {
    width: 100%;
    text-align: left;
    padding: 0 20px;
  }
  .head-column .sidebar-menu:nth-child(even){
    background: #f4f4f4;
  }
  .head-column .submenu {
    display: none !important;
  }
  .head-column .sidebar-menu .menu-title a{
    display: block;
    line-height: 54px;
  }
  .head-column .sidebar-menu:hover {
    background: transparent;
  }

  .head-column.active {
    opacity: 1;
    visibility: visible;
    left: 0;
  }

  .head-column .sidebar-menu .menu-title a {
    color: #333;
  }
  /* .header-top{
    color: #fff;
  } */
  .header-top .right {
    display: none;
  }

  .menu {
    display: block;
  }

  .menuClose {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: #333;
  }
  .footer .ewmBox{
    display: flex;
    justify-content: center;
  }
  .footer .ewmBox .ewm{
    width: 49%;
  }
  .footer .list-unstyled{
    text-align: center;
  }
  .footer .col-sm-3{
    text-align: center;
  }
  .footer-center{
    line-height: 24px;
    padding: 6px 10px;
  }
  .web_column .right{
    padding-bottom: 30px;
    padding-top: 20px;
  }
  .ad-imgs{
    margin-bottom: 15px;
  }
  .home-middle .col-md-4{
    margin-bottom: 10px;
  }
  .web_column .right .block-list .lm_child>a{
    width: calc(50% - 5px);
  }
  .web_column .right .block-list .lm_child>a:nth-child(even){
    margin-left: 10px;
  }
  .news-detail .title{
    padding: 0;
  }
  .news-detail .news-content{
    padding: 10px 0;
  }
  .formBox{
    width: 100%;
    padding: 15px 22px 35px;
    margin: 20px auto 10px;
  }
  .formBox .tj2{
    margin-top: 26px;
  }
}
.news-content div[data-w-e-type="video"] {
    width: 100%;
    text-align: center;
    margin: 15px auto;
}
.news-content video{
  max-width: 100%;
}