.mobile-page {
  --index-unit: min(1px, 0.133333vw);
}

.site-main {
  background: #fff;
}

.news-tabs {
  height: calc(38 * var(--index-unit));
  display: flex;
  justify-content: center;
  gap: calc(100 * var(--index-unit));
  border-bottom: calc(2 * var(--index-unit)) solid #d8d8d8;
  background: #fff;
}

.news-tabs a {
  position: relative;
  height: calc(38 * var(--index-unit));
  display: inline-flex;
  align-items: center;
  font-size: calc(24 * var(--index-unit));
  color: #333;
  background: none;
}

.news-tabs a.is-active {
  color: #009354;
  font-weight: 700;
}

.news-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(4 * var(--index-unit));
  background: #009354;
}

.news-feed {
  padding: calc(32 * var(--index-unit)) calc(28 * var(--index-unit)) calc(58 * var(--index-unit));
}

.feed-item {
  display: block;
  margin-bottom: calc(48 * var(--index-unit));
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 calc(2 * var(--index-unit)) calc(14 * var(--index-unit)) rgba(0, 0, 0, 0.18);
}

.feed-item img {
  width: 100%;
  height: calc(364 * var(--index-unit));
  object-fit: cover;
  background: #eef2f4;
}

.feed-body {
  padding: calc(34 * var(--index-unit)) calc(36 * var(--index-unit)) calc(32 * var(--index-unit));
}

.feed-title {
  font-size: calc(26 * var(--index-unit));
  line-height: 1.5;
  font-weight: 600;
  color: #222;
}

.feed-foot {
  margin-top: calc(34 * var(--index-unit));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feed-foot time {
  position: relative;
  padding-left: calc(30 * var(--index-unit));
  font-size: calc(18 * var(--index-unit));
  font-weight: 400;
  color: #999;
}

.feed-foot time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(17 * var(--index-unit));
  height: calc(17 * var(--index-unit));
  border: calc(2 * var(--index-unit)) solid #999;
  border-radius: 50%;
  transform: translateY(-50%);
}

.feed-foot time::after {
  content: "";
  position: absolute;
  left: calc(8 * var(--index-unit));
  top: calc(50% - calc(5 * var(--index-unit)));
  width: calc(5 * var(--index-unit));
  height: calc(7 * var(--index-unit));
  border-left: calc(2 * var(--index-unit)) solid #999;
  border-bottom: calc(2 * var(--index-unit)) solid #999;
}

.feed-more {
  position: relative;
  padding-right: calc(44 * var(--index-unit));
  font-size: calc(18 * var(--index-unit));
  font-weight: 400;
  color: #777;
}

.feed-more::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: calc(34 * var(--index-unit));
  height: calc(2 * var(--index-unit));
  background: #777;
  transform: translateY(-50%);
}

.feed-more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: calc(10 * var(--index-unit));
  height: calc(10 * var(--index-unit));
  border-top: calc(2 * var(--index-unit)) solid #777;
  border-right: calc(2 * var(--index-unit)) solid #777;
  transform: translateY(-50%) rotate(45deg);
}
