body {
  background: #FFF;
}
a {
  text-decoration: none;
  color: inherit;
}
.list-box .title {
  font-size: 32px;
  font-weight: 700;
  margin: 65px 0 6px;
}
.list-box .list {
  margin-top: 45px;
}
.list-box .list.news-list {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.list-box .list.news-list .item {
  width: calc(50% - 6px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 18px;
  border-radius: 12px;
  background: #f7f7f7;
  gap: 12px;
}
.list-box .list.news-list .item img {
  display: none;
}
.list-box .list.news-list .item:hover .new-title {
  color: var(--base-color);
}
.list-box .list.news-list .item .new-title {
  font-size: 20px;
  color: #000;
}
.list-box .list.news-list .item .new-title:before {
  display: none !important;
}
.list-box .list.news-list .item .new-title:hover {
  text-decoration: none;
}
.list-box .list.news-list .item .news-img {
  width: 235px;
  height: 100px;
  border-radius: 6px;
  gap: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.list-box .list.news-list .item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.list-box .list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e5e5e5;
}
.list-box .list .item .new-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list-box .list .item .new-title a {
  color: #5f6464;
  font-size: 16px;
}
.list-box .list .item .new-title a:hover {
  color: var(--base-color);
}
.list-box .list .item .new-title.is_red {
  color: #f75e3b;
}
.list-box .list .item .new-title:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--base-color);
  flex-shrink: 0;
}
.list-box .list .item .date {
  color: #797979;
  font-size: 16px;
  flex-shrink: 0;
}
article * {
  line-height: 28px;
}
article h1 {
  line-height: 42px;
  text-align: center;
}
article .date {
  text-align: center;
  font-size: 16px;
  color: #797979;
}
@media screen and (max-width: 960px) {
  .list-box .list.news-list .item {
    flex-direction: column;
  }
  .list-box .list.news-list .item .new-title {
    font-size: 16px;
    max-width: 100%;
  }
  .list-box .list.news-list .item .news-img {
    width: 100%;
    height: auto;
  }
  .list-box .list.news-list .item .news-img img {
    display: block;
    width: 100%;
  }
  .list-box .list.news-list .item .date {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .list-box .list .item .new-title {
    width: 300px;
  }
  .list-box .list .item .new-title p {
    font-size: 14px;
  }
  .list-box .list .item .date {
    font-size: 14px;
  }
  .list-box .title {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .list-box .list.news-list {
    display: block;
  }
  .list-box .list.news-list .item {
    width: 100%;
    margin-bottom: 14px;
  }
  .list-box .list.news-list .item .new-title {
    width: 100%;
  }
  .list-box .list .item .new-title {
    width: 220px;
  }
}
/*# sourceMappingURL=article.css.map */