.title {
  text-align: center;
}

.tit-z1 {
  font-size: 36px;
  font-weight: bold;
  color: #2e3133;
}

.contactus-about {
  width: 100%;
  height: 420px;
  background-image: url('../image/information.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

/* 资讯信息 */
.infoHead {
  max-width: 1200px;
  margin: 0 auto;
  height: 290px;
  display: flex;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 80px;
  /* box-shadow: 0px 5px 20px 0px rgba(4, 0, 0, 0.08);
    border-radius:4px; */

  animation: fadeShow 0.5s ease-in;
  transition: all 0.25s ease-in;
}

.infoHead:hover {
  transform: translateY(-20px);
}

@keyframes fadeShow {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 动画 */

.infoHead_img {
  /* max-width: 500px; */
  border-radius: 4px;
}

.infoHead_img img {
  /* width: 500px; */
  height: 100%;
  border-radius: 4px;
}

.infoHead_detail {
  max-width: 675px;
  padding: 24px 0px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.infoHead_detail h3 {
  font-size: 24px;
  color: #2e3133;
  margin-bottom: 31px;
}

.infoHead_detail p {
  color: #5c6266;
  font-size: 16px;
}

.infoBot {
  display: flex;
  /* padding-right: 20px; */
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;

  color: #8a9499;
}

.moreLink {
  display: inline-block;
  width: 128px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #0094e1;
  border-radius: 4px;
}

.moreLink span {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.infoBody {
  width: 100%;
}

/* 列表 */
.infoBody li {
  width: 100%;
  height: 198px;
}

.liNew_info {
  max-width: 1200px;
  height: 198px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  border-top: 1px solid #ebf1f5;
  border-bottom: 1px solid #ebf1f5;
  padding: 24px 0px;
  box-sizing: border-box;
}

.infoBody li:hover {
  background-color: #0094e1;
  color: #ffffff;
  box-sizing: border-box;
}

.infoBody li:hover .dateShow {
  border: 2px solid #fff;
  color: #ffffff;
}

.infoBody li:hover .splitLine {
  background-color: #fff;
}

.infoBody li:hover span {
  color: #fff;
}

.dateShow {
  width: 140px;
  height: 128px;
  border: 2px solid #0094e1;
  border-radius: 4px;
  margin-top: 11px;
  color: #0094e1;
  box-sizing: border-box;
  padding: 20px 24px 24px 24px;
}

.dateShow h3 {
  font-size: 19px;
}

.dateShow .splitLine {
  width: 32px;
  height: 3px;
  background: #0094e1;
  margin: 16px 0 24px 0;
}

.dateShow span {
  font-size: 18px;
  color: #0094e1;
}

.newInfo {
  width: 753px;
  margin-top: 23px;
  padding: 0px 24px;
  box-sizing: border-box;
}

.newInfo h3 {
  font-size: 20px;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newInfo .newInfoShort {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newImage {
  /* width: 260px;
    height: 150px; */

  border-radius: 4px;
}

.newImage img {
  width: 260px;
  height: 100%;
  transition: all 0.25s ease-in;
}

.newImage:hover img {
  transform: scale(1.2);
}

#demo-laypage-pn-hide {
  margin-top: 64px;
  text-align: center;
  margin-bottom: 80px;
}

/* 以下是媒体查询部分 */
@media screen and (max-width: 1024px) {
  .liNew_info .dateShow h3 {
    font-size: 16px;
  }
  .newImage img {
    width: 100%;
    height: 100%;
    transition: none;
  }
  .infoBot {
    margin-top: 28px;
  }
  .infoHead_detail h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .infoHead_detail {
    padding: 14px 14px 0px 14px;
  }
  .infoHead_detail p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .liNew_info .dateShow {
    display: none;
  }
  .liNew_info .newInfo p {
    display: none;
  }
  .newInfo {
    /* width: 753px; */
    width: 50%;
    margin-top: 23px;
    padding: 0px 6px;
    box-sizing: border-box;
  }
  .newInfo h3 {
    font-size: 16px;
  }
  .newImage {
    order: -1;
  }
  .newImage:hover img {
    transform: none;
  }
  .infoHead {
    flex-direction: column;
    padding-top: 14px;
  }
  .infoHead_img {
    max-width: 100%;
    height: 100%;
    padding: 14px 14px 14px;
    box-sizing: border-box;
  }
  .infoHead_img img {
    width: 100%;
    height: 100%;
  }

  .infoBot {
    margin-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
  }
}
