/* CSS Document */
.flex-bet {
  display: flex;
  justify-content: space-between;
}
.p-over {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.swiper1 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: none;
  border: 2px solid #fff;
  opacity: 1;
  border-radius: 50%;
}
.swiper1 .swiper-pagination {
  display: none;
}
.swiper1 .swiper-pagination-bullet-active {
  background-color: #fff;
  border-radius: 50%;
}
.swiper1 .swiper-button-next {
  display: none;
}
.swiper1 .swiper-button-prev {
  display: none;
}
.swiper1 .swiper-button-next:after,
.swiper1 .swiper-button-prev:after {
  display: none;
}
.indexabo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}
.indexabo .abo-img {
  width: 50%;
}
.indexabo .abo-img img {
  width: 100%;
}
.indexabo .abo-con {
  width: 50%;
  margin: 0 5%;
}
.indexabo .abo-con h3 {
  font-size: 24px;
  color: #0d7a82;
  font-weight: bold;
}
.indexabo .abo-con p {
  font-size: 18px;
  color: #000;
  margin-top: 20px;
  line-height: 200%;
}
.index-num dl {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.index-num dl dt {
  position: relative;
}
.index-num dl dt img {
  z-index: 1;
}
.index-num dl dt h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: white;
  z-index: 10;
}
.index-num dl dd {
  display: flex;
  justify-content: space-between;
  justify-content: space-around;
  align-items: center;
  flex: 1;
  background-color: #fafafa;
}
.index-num dl dd div {
  text-align: center;
}
.index-num dl dd div h3 {
  font-size: 21px;
  margin: 10px 0;
}
.index-num dl dd div p {
  font-size: 40px;
  font-weight: bold;
  color: #0d7a82;
}
.piclist {
  overflow: hidden;
}
.piclist h3 {
  font-size: 32px;
  margin-bottom: 50px;
}
.piclist .w {
  height: 450px;
  margin-top: 50px;
}
.piclist .swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.piclist .swiper-slide {
  text-align: center;
  height: calc((100% - 100px) / 2);
  padding: 10px;
  box-sizing: border-box;
}
.piclist .swiper-slide a {
  display: block;
  position: relative;
}
.piclist .swiper-slide a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.piclist .swiper-slide img {
  width: 100%;
  border: 1px solid #ccc;
}
.piclist .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cccccc;
  opacity: 1;
  border-radius: 50%;
}
.piclist .swiper-pagination-bullet-active {
  background-color: #0d7a82;
  border-radius: 50%;
}
.mpiclist {
  display: none;
}
.mpiclist h3 {
  font-size: 32px;
  margin-top: 50px;
  margin-bottom: 30px;
}
.mlist {
  display: flex;
  flex-wrap: wrap;
}
.mlist a {
  display: block;
  width: 25%;
  padding: 5px;
  box-sizing: border-box;
}
.mlist a img {
  width: 100%;
  border: 1px solid #ddd;
}
.tslist {
  background-color: #f8f9ff;
  padding: 50px 0;
  margin-top: 50px;
}
.tslist h3 {
  font-size: 32px;
  margin-bottom: 50px;
  text-align: center;
}
.tslist ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tslist ul li {
  width: 25%; /* 一行四列 */
  padding: 0 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.tslist ul li a {
  display: block;
  background-color: white;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.tslist ul li a img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.tslist ul li a .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(13 122 130);
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 2;
}
.tslist ul li a .subtitle {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: white;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
  opacity: 0;
  font-size: 16px; /* 初始字体大小 */
}
.tslist ul li a:hover img {
  transform: scale(1.05);
}
.tslist ul li a:hover .title {
  transform: translateY(-100%);
  font-size: 24px; /* 主标题字体变大 */
  background-color: #0d7a82; /* 使用指定的蒙版色号作为背景 */
}
.tslist ul li a:hover .subtitle {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  font-size: 20px; /* 悬停时字体变大 */
}
.tslist ul li a:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 122, 130, 0.7); /* 使用指定的蒙版色号 */
  z-index: 1;
  transition: background-color 0.3s ease;
}
.index-notice dl {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}
.index-notice dl dt {
  position: relative;
}
.index-notice dl dt img {
  z-index: 1;
}
.index-notice dl dt h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: white;
  z-index: 10;
}
.index-notice dl dd {
  flex: 1;
  margin-right: 5%;
}
.index-notice dl dd .newsmore {
  text-align: right;
}
.index-notice dl dd .newslist {
  display: flex;
  flex-wrap: wrap;
}
.index-notice dl dd .newslist a {
  padding: 0 30px;
  box-sizing: border-box;
  display: block;
  width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 250%;
  font-size: 18px;
  color: #626262;
}
.index-notice dl dd .newslist a:hover {
  color: #0d7a82;
}
.index-notice dl dd .newsadd {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.index-notice dl dd .newsadd a {
  width: 122px;
  line-height: 35px;
  border: 2px solid #0d7a82;
  text-align: center;
  display: block;
  border-radius: 18px;
  font-size: 16px;
  color: #0d7a82;
}
.index-notice dl dd .newsadd a:hover {
  background-color: #0d7a82;
  color: white;
}
.nlist1 {
  margin-top: 30px;
  background: url(../image/newsbg.png) center top no-repeat;
  align-items: center;
  display: flex;
}
.nlist1 > div {
  width: 50%;
}
.nlist1 .nlist-img {
  text-align: left;
}
.nlist2 {
  margin-top: 30px;
  align-items: center;
  display: flex;
}
.nlist2 > div {
  width: 50%;
}
.nlist2 .nlist-img {
  text-align: left;
}
.nlist2 .nlistcon {
  margin-left: 5%;
}
.nlist-tit {
  display: flex;
  justify-content: space-between;
}
.nlist-tit h3 {
  font-size: 32px;
}
.nlist-tit a {
  margin-top: 0;
}
.nlistcon {
  margin-right: 5%;
}
.nlistcon .nlist-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nlistcon .nlist-tit a {
  margin-top: 0;
  font-size: 16px;
}
.nlistcon a {
  display: block;
  margin-top: 50px;
}
.nlistcon a dl {
  display: flex;
  justify-content: space-between;
}
.nlistcon a dl dt {
  width: 100px;
  height: 100px;
  background-color: #EEEEEE;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nlistcon a dl dt b {
  font-weight: normal;
  font-size: 32px;
}
.nlistcon a dl dt span {
  font-size: 16px;
  color: #9a9a9a;
}
.nlistcon a dl dd {
  margin-left: 20px;
  flex: 1;
}
.nlistcon a dl dd h3 {
  font-size: 21px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.nlistcon a dl dd p {
  font-size: 16px;
  color: #626262;
  line-height: 150%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-ad {
  color: white;
  margin-top: 30px;
}
.index-ad dl {
  display: flex;
  align-items: center;
  height: 290px;
}
.index-ad dl dd {
  margin-left: 30px;
}
.index-ad dl dd h3 {
  font-size: 24px;
}
.index-ad dl dd h4 {
  font-size: 16px;
  margin: 20px 0;
}
.index-ad .but {
  display: flex;
}
.index-ad .but a {
  width: 220px;
  display: block;
  line-height: 60px;
  font-size: 18px;
  text-align: center;
  color: white;
  background-color: #0d7a82;
}
.index-ad .but a:nth-child(2) {
  margin-left: 20px;
  background-color: #f29600;
}
.index-ad .but a:hover {
  opacity: 0.8;
}
.imglist {
  margin-top: 50px;
}
.owl-list1 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.owl-list1 .item {
  display: block;
  margin: 0 10px;
}
.owl-list1 .item img {
  border: 1px solid #eee;
  width: 100%;
}
.owl-list1 .owl-pagination {
  text-align: center;
  margin-top: 20px;
}
.owl-list1 .owl-page {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #cccccc;
  margin-right: 10px;
  *display: inline;
  *zoom: 1;
}
.owl-list1 .owl-pagination .active {
  background-color: #0d7a82;
}
.owl-list2 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.owl-list2 .item {
  display: block;
  padding: 0 5px;
  box-sizing: border-box;
}
.owl-list2 .item img {
  width: 100%;
}
.yqlist {
  padding: 50px 0;
  background-color: #f8f9ff;
}
.linklist {
  margin-top: 30px;
}
.linklist a {
  margin-right: 20px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) and (min-width: 0px) {
  .swiper-container-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    display: none;
  }
  .indexabo {
    flex-direction: column;
    margin-top: 15px;
    padding: 0 10px;
  }
  .indexabo .abo-img {
    width: 100%;
  }
  .indexabo .abo-con {
    width: 100%;
    text-align: center;
  }
  .index-num dl {
    flex-direction: column;
  }
  .index-num dl dt img {
    width: 100%;
  }
  .index-num dl dd {
    flex-wrap: wrap;
  }
  .index-num dl dd div {
    text-align: center;
    width: 50%;
    padding: 20px 10px;
    box-sizing: border-box;
  }
  .index-num dl dd div h3 {
    font-size: 21px;
    margin: 10px 0;
  }
  .index-num dl dd div p {
    font-size: 30px;
    font-weight: bold;
    color: #0d7a82;
  }
  .piclist {
    display: none;
  }
  .mpiclist {
    display: block;
  }
  .tslist ul li {
    width: 100%;
  }
  .index-notice dl {
    flex-direction: column;
  }
  .index-notice dl dt img {
    width: 100%;
  }
  .index-notice dl dd {
    margin-right: 0%;
    width: 100%;
  }
  .index-notice dl dd .newsmore {
    display: none;
  }
  .index-notice dl dd .newslist a {
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .index-notice dl dd .newsadd {
    justify-content: center;
  }
  .nlist1 {
    flex-direction: column;
    padding: 0 30px;
    margin-top: 50px;
  }
  .nlist1 > div {
    width: 100%;
  }
  .nlist1 .nlist-img {
    display: none;
  }
  .nlist2 {
    flex-direction: column;
    padding: 0 30px;
    margin-top: 50px;
  }
  .nlist2 > div {
    width: 100%;
  }
  .nlist2 .nlist-img {
    display: none;
  }
  .nlist2 .nlistcon {
    margin-left: 0%;
  }
  .nlist-tit h3 {
    font-size: 24px;
  }
  .index-ad dl {
    flex-direction: column;
  }
  .index-ad dl dt {
    display: none;
  }
  .index-ad dl dd {
    margin-left: 0px;
  }
  .index-ad dl dd h3 {
    font-size: 20px;
    margin-top: 10px;
  }
  .index-ad dl dd h4 {
    font-size: 16px;
    margin: 20px 0;
  }
  .index-ad .but a {
    width: 50%;
  }
  .index-ad .but a:nth-child(2) {
    margin-left: 0px;
  }
  .owl-list1 .item img {
    width: 100%;
  }
  .owl-list1,
  .owl-list2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .tslist {
    padding-bottom: 0;
  }
}