/* .news-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;

  .news-card {
    display: flex;
    width: 50%;

    .news-number {
      font-size: 38px;
      font-weight: bold;
      color: #BEBEBE;
    }
  }

  .news-content {
    .news-title {
      margin-left: 5px;
    }

    .text {
      margin-left: 5px;
      width: 600px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .news-title-content {
      color: #0088cc;
      cursor: pointer;

      &:hover {
        color: rgb(42, 100, 150);
      }
    }

  }
} */

html {
  font-size: 16px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.chinese-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  /* margin-bottom: 50px; */
  margin-top: 30px;
}

.news-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.news-number {
  background: #0f5697;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 15px 25px;
  display: inline-block;
  border-radius: 0 0 12px 0;
  min-width: 80px;
  text-align: center;
}

.news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  color: #1a3a8f;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.news-date i {
  margin-right: 8px;
}

.news-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.news-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.news-title a:hover {
  color: #1a3a8f;
}

.news-excerpt {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 0 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more {
  display: inline-block;
  color: #1a3a8f;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  align-self: flex-start;
}

.read-more:hover {
  border-bottom-color: #1a3a8f;
  padding-right: 10px;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.2s;
}

.read-more:hover i {
  transform: translateX(4px);
}

.news-highlight {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.news-highlight .news-number {
  font-size: 2.2rem;
  padding: 20px 30px;
}

.news-highlight .news-content {
  padding: 35px;
}

.news-highlight .news-title {
  font-size: 1.7rem;
}

/* .footer {
  text-align: center;
  padding: 30px 0;
  color: #666;
  font-size: 0.95rem;
  border-top: 1px solid #eaeaea;
  margin-top: 30px;
}

.logo {
  color: #1a3a8f;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
} */

@media (max-width: 900px) {
  .news-highlight {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .chinese-title {
    font-size: 2.2rem;
  }

  .news-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-highlight .news-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  .chinese-title {
    font-size: 1.8rem;
  }

  .news-content {
    padding: 20px;
  }

  .news-title {
    font-size: 1.25rem;
  }
}

.my_h1 {
  margin: 20px auto;
  /* width: 800px; */
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  /* font-family: "仿宋", "FangSong", serif; */
}

.text-indent {
  text-indent: 20px;
  margin-bottom: 8px;
  line-height: 2.5;
  /* font-family: "仿宋", "FangSong", serif;
      font-size: 14pt; */
  letter-spacing: 2px
}