@charset "utf-8";
.news {
  width: 1200px;
  margin: 55px auto 0;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .news {
    width: 100%;
    padding: 15px;
  }
}
.news .news-title {
  display: flex;
  align-items: center;
}
.news .news-title .title-text {
  font-size: 22px;
  font-family: SourceHanSansSC;
  font-weight: bold;
  color: #009AD6;
  line-height: 24px;
  flex-shrink: 0;
}
@media (min-width: 461px) {
  .news .news-title .title-text {
    width: 246px;
    min-width: 246px;
    margin-right: 26px;
  }
}
@media (min-width: 768px) {
  .news .news-title .title-text {
    width: 326px;
    min-width: 326px;
    margin-right: 37px;
  }
}
@media (max-width: 460px) {
  .news .news-title .title-text {
    margin-right: 20px;
  }
}
.news .news-title .title-line {
  flex: 1;
  height: 2px;
  background: #C9C9C9;
}
.news .news-content .news-item {
  display: flex;
  padding: 20px 0;
  cursor: pointer;
}
.news .news-content .news-item:first-child {
  margin-top: 10px;
}
.news .news-content .news-item:hover {
  background-color: #F5F5F5;
}
@media (max-width: 460px) {
  .news .news-content .news-item {
    flex-direction: column;
  }
}
.news .news-content .news-item .item-img {
  width: 100%;
}
@media (min-width: 461px) {
  .news .news-content .news-item .item-img {
    width: 246px;
    min-width: 246px;
    margin-right: 26px;
  }
}
@media (min-width: 768px) {
  .news .news-content .news-item .item-img {
    width: 326px;
    min-width: 326px;
    margin-right: 37px;
  }
}
.news .news-content .news-item .item-img .ni-img {
  width: 100%;
}
.news .news-content .news-item .item-text {
  flex: 1;
  font-family: SourceHanSansCN;
  padding-bottom: 35px;
  border-bottom: 1px solid #C9C9C9;
  overflow: hidden;
}
@media (max-width: 460px) {
  .news .news-content .news-item .item-text {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.news .news-content .news-item .item-text .ni-title {
  font-size: 20px;
  font-weight: 600;
  color: #303030;
  line-height: 26px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news .news-content .news-item .item-text .ni-content {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 400;
  color: #606060;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news .news-content .news-item .item-text .ni-date {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #606060;
  line-height: 24px;
}
@media (max-width: 460px) {
  .news .news-content .news-item .item-text .ni-date {
    margin-top: 14px;
  }
}
.news .news-content .pagination {
  margin: 60px 0 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #303030;
  line-height: 26px;
}
.news .news-content .pagination .page-input {
  height: 28px;
  background: #FFFFFF;
  border: 1px solid #DCDCDC;
  text-align: center;
  font-size: 16px;
  outline: none;
  width: 68px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .news .news-content .pagination .page-input {
    font-size: 14px;
    height: 26px;
    line-height: 24px;
    width: 58px;
  }
}
@media (max-width: 460px) {
  .news .news-content .pagination .page-input {
    font-size: 12px;
    width: 38px;
    height: 24px;
    line-height: 22px;
  }
}
.news .news-content .pagination .page-ul {
  display: flex;
}
.news .news-content .pagination .page-ul .page-li {
  cursor: pointer;
  margin-left: 6px;
  padding: 0 16px;
  font-size: 16px;
  box-sizing: border-box;
  height: 28px;
  border: 1px solid #DCDCDC;
}
.news .news-content .pagination .page-ul .page-li.active,
.news .news-content .pagination .page-ul .page-li:hover {
  background: #009AD6;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .news .news-content .pagination .page-ul .page-li {
    font-size: 14px;
    height: 26px;
    line-height: 24px;
    padding: 0 10px;
  }
}
@media (max-width: 460px) {
  .news .news-content .pagination .page-ul .page-li {
    font-size: 12px;
    height: 24px;
    line-height: 22px;
    padding: 0 6px;
  }
}
