body {
  margin: 0;
  background: rgba(250, 250, 250, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

body a {
  text-decoration: none;
}

.news-list-title-container {
  display: flex;
}

.news-list-title-home {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(127, 127, 127, 1);
}

.news-list-title-cur-nav {
  margin-left: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(25, 25, 25, 1);
}

.news-list-banner-container {
  width: 100%;
  height: 240px;
  position: relative;
}

.news-list-banner {
  width: 100%;
  height: 100%;
}

.news-list-container {
  margin-top: -46px;
  z-index: 1;
  width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.news-list-title-wrapper {
  width: 100%;
  height: 80px;
  border-radius: 8px 8px 0px 0px;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(217, 217, 217, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  box-sizing: border-box;
}

.news-list-content-wapper {
  width: 100%;
  min-height: 500px;
  border-radius: 0px 0px 8px 8px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
  box-sizing: border-box;
}

.news-list-nav-container {
  display: flex;
}

.news-list-title-item {
  margin-left: 12px;
  min-width: 80px;
  height: 34px;
  border-radius: 2px;
  background: rgba(237, 242, 247, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  box-sizing: border-box;

  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: rgba(25, 25, 25, 1);
}

.news-list-title-item.on {
  background: rgba(0, 83, 165, 1);
  color: rgba(255, 255, 255, 1);
}

.news-list-item {
  width: 100%;
  min-height: 184px;
  height: 184px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.news-list-item a {
  width: 100%;
  height: 100%;
  display: flex;
}

.news-list-item-img {
  width: 312px;
  height: 100%;
  border-radius: 0.87px;
}

.news-list-item-img img {
  width: 100%;
  height: 100%;
}

.news-list-item-content {
  position: relative;
  margin-left: 24px;
  width: calc(100% - 336px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.news-list-item-title {
  width: 100%;

  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: rgba(25, 25, 25, 1);
}

.news-list-item-descrip {
  width: 100%;
  margin-top: 20px;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(127, 127, 127, 1);
}

.news-list-item-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top: 20px;

  display: flex;
  justify-content: space-between;
}

.news-list-item-more {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 83, 165, 1);
}

.news-list-footer-right {
  display: flex;
}

.news-list-item-date {
  margin-left: 20px;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(191, 191, 191, 1);
}

.news-list-divider {
  margin: 40px 0;
  width: calc(100% - 2px);
  height: 0px;
  border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.news-list-empty-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-list-page {
  width: 100%;
  height: 28px;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.m-news-list-nav-container {
  display: none;
}

.m-news-list-item-more-icon {
  display: none;
}

@media (max-width: 768px) {
  body {
    background: rgba(242, 245, 247, 1);
  }

  .news-list-banner-container {
    height: 98px;
  }

  .news-list-container {
    width: 100%;
    margin-top: 0;
  }

  .news-list-nav-container {
    display: none;
  }

  .news-list-title-wrapper {
    height: 46px;
    padding: 8px 12px;
  }

  .news-list-title-home {
    font-size: 14px;
    line-height: 22px;
  }

  .news-list-title-cur-nav {
    font-size: 14px;
    line-height: 22px;
  }

  .m-news-list-nav-container {
    display: block;
  }

  .m-news-list-nav {
    height: 30px;
    border-radius: 2px;
    background: rgba(0, 83, 165, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;

    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: rgba(255, 255, 255, 1);
  }

  .m-news-list-nav option {
    background-color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(25, 25, 25, 1);
  }

  .news-list-content-wapper {
    background: rgba(242, 245, 247, 1);
    border: none;
    height: auto;
    padding: 19px 16px 0 16px;
  }

  .news-list-item {
    height: auto;
    min-height: auto;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 1);
  }

  .news-list-item a {
    flex-direction: column;
  }

  .news-list-item-img {
    width: 100%;
    height: 202px;
  }

  .news-list-item-content {
    width: 100%;
    margin-left: 0;
    padding: 12px;
    box-sizing: border-box;
  }

  .news-list-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .news-list-item-descrip {
    margin-top: 4px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

    font-size: 12px;
    line-height: 20px;
  }

  .news-list-item-footer {
    position: static;
    margin-top: 9px;
    flex-direction: row-reverse;
  }

  .news-list-item-more {
    font-size: 14px;
    line-height: 22px;
    display: flex;
  }

  .m-news-list-item-more-icon {
    display: block;
    margin-left: 4px;
  }

  .news-list-item-date {
    margin-left: 8px;
    font-size: 12px;
    line-height: 20px;
  }

  .news-list-divider {
    display: none;
  }
}
