section {
  /* background-color: rgba(253, 175, 192, 0.5); */
  width: 48%;
  max-width: 740px;
  min-height: 100vh;
  margin: 8rem auto 1rem auto;
  text-align: center;
}

section > h1 {
  color: rgb(255 131 140);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 2px 2px 0 #fff; /* 保留原来的阴影 */
  font-size: 43px;
  margin-bottom: 2rem;
}

section a {
  text-decoration: none;
}

#box-article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

article {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 2px rgba(255, 255, 255, 0.25);
  text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 15px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);
}

article h1 {
  color: rgb(255 131 140);
  font-size: 2rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 1px 1px 0 #fff; /* 保留原来的阴影 */
}
article p {
  color: rgb(180, 90, 98);
  text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 15px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);
}

article:hover {
  background-color: rgba(233, 233, 233, 0.7);
}

.pagination {
  margin-top: 1rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 15px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);
}

.pagination span {
  padding: 0.2rem;
  color: rgb(255, 79, 108);
}
.pagination a {
  padding: 0.2rem;
  color: rgb(255, 79, 108);
}

@media screen and (max-width: 500px) {
  section {
    width: 100%;
    margin: 7rem auto 1rem auto;
    padding: 0 1rem;
  }
  section > h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  article {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.75);
  }
  article h1 {
    font-size: 28px;
  }
}
