/* ====news==== */
.news-item {
  padding: 5px 30px 25px;
  background-color: #f7f7f7;
  border-radius: 20px;
}

.news-item li {
  border-bottom: 1px solid #d4d4d4;
  padding: 20px 0;
}

.news-item li:last-child,
.tags-page li:last-child {
  border: 0;
}

.news-item li article {
  display: flex;
  /* justify-content: space-between; */
}

.news-item li .news-icon {
  text-align: center;
  height: 160px;
  width: 305px;
}

.news-item li .news-icon img {
  /* height: 180px; */
  max-width: 100%;
}

.news-item li article .news-main {
  width: 100%;
  margin-left: 15px;
  position: relative;
  min-height: 100px;
}
.news-item li article .news-main>h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  /*display: -webkit-box;*/
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-item li article .news-main>h2>a {
  font-size: 20px;
  color: #f25b61;
  font-weight: normal;
}

.news-item li article .news-main p {
  font-size: 13px;
  /*line-height: 28px;*/
  color: #363537;
}

.news-item li article .new-content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #363537;
}
.news-item li article .new-content p {
  color: #666 !important;
}
.news-item li article .news-main>time {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #999;
  position: absolute;
  right: 0;
  bottom: 0;
}

.news-item li article .news-main>h2>a:hover {
  color: #5ca6ff;
}

.more {
  border: 0;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  color: #fff;
  background-color: rgb(234, 104, 94);
}

.more img {
  width: 25px;
  height: 25px;
  display: none;
}

.more:hover {
  background-color: rgb(248, 130, 122);
}

@media (max-width: 567px) {
  .news-item li article .news-main>time {
    position: relative;
  }
  .news-item li .news-icon {
    width: 100%;
    text-align: center;
  }

  .news-item li article .news-main {
    width: 100%;
  }

  .news-item li .news-icon img {
    width: auto;
    /* height: 100%; */
    max-height: 100%;
  }

  .news-item {
    padding: 8px;
    border: 1px solid #fff;
    border-radius: 18px;
  }

  .news-item li {
    padding: 8px 0;
  }

  .news-item li article {
    flex-wrap: wrap;
  }

  .news-item li article .news-main>h2>a {
    font-size: 16px;
  }

  .news-item li article .news-main>h2 {
    line-height: 16px;
    padding: 5px 0;
  }

  .news-item li article .news-main>p {
    font-size: 14px;
    line-height: 16px;
  }
}

/* Detail */
.news-detail-c {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 50px;
  background-color: #f7f7f7;
}

.news-detail-c h1 {
  font-size: 24px;
  color: #f25b61;
  font-weight: normal;
  text-align: center;
  margin-bottom: 0px;
}

.release-time {
  padding: 10px 0;
  text-align: right;
  color: #363537;
}

.news-detail-c p {
  color: #363537;
}
.news-detail-c img {
  max-width: 100%;
  height: auto;
}
.news-detail-c .tags-content {
  display: flex;
  margin-top: 30px;
}

.news-detail-c .tags-content .tags {
  display: flex;
}

.news-detail-c .tags-content span {
  font-weight: 700;
  font-size: 18px;
  margin-right: -8px;
  color: #363537;
}

.news-detail-c .tags-content li a {
  color: #f25b61;
  padding: 0 8px;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 567px) {
  .news-detail-c h1 {
    font-size: 18px;
  }
  .news-detail-c img {
    width: 100%;
    height: auto;
  }
  .news-detail-c p {
    line-height: 18px;
  }

  .tags-content li a {
    font-size: 14px;
  }

  .tags-content .tags {
    flex-wrap: wrap;
  }
}

/* Tags */
.tags-page li {
  color: #fff;
  padding: 20px 20px;
  background: #f7f7f7;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 25px;
}

.tags-page li a {
  padding-top: 6px;
  color: #f25b61;
  display: flex;
  font-size: 18px;
}

.tags-page li a:hover {
  color: #5ca6ff;
}

.tags-page li .time {
  color: #586c77;
  float: right;
}