/* ==================================== 分页内容主体样式（新闻列表） ==================================== */
.content-main {
  max-height: 600px;
  overflow: hidden;
}
.content-main .content-news-list {
  height: 40px;
}
.content-main .content-news-list a {
  display: block;
  width: 80%;
  line-height: 40px;
  float: left;
  color: #333;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.content-main .content-news-list a:hover {
  color: #2b479f;
}
.content-main .content-news-list span {
  display: block;
  width: 20%;
  float: right;
  text-align: right;
  font-size: 12px;
  line-height: 40px;
  color: #999;
}
.content-cut {
  text-align: center;
  padding: 20px 0;
}
.content-cut .cut-list {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin: 0 10px;
}
.content-cut .cut-list a {
  font-size: 15px;
  color: #333;
}
.content-cut .cut-list a:hover {
  color: #2b479f;
}
.content-cut .cut-btn {
  width: 60px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #2b479f;
  border-radius: 5px;
}
.content-cut .cut-btn:hover {
  background-color: #eee;
}
.content-cut .cut-input input {
  width: 60px;
  height: 38px;
  border: 1px solid #2b479f;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .content-main {
    max-height: 1350px !important;
    overflow: hidden;
  }
  .content-main .content-news-list {
    height: 80px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #999;
  }
  .content-main .content-news-list a {
    width: 100%;
    line-height: 26px;
    display: -webkit-box;
    white-space: pre-wrap;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .content-main .content-news-list span {
    width: 100%;
    text-align: left;
    line-height: 27px;
  }
}

