@charset "UTF-8";
.nursing-world-banner-img {
  width: 100%;
  object-fit: fill;
  margin-bottom: 150px;
}

.nursing-news > div:nth-of-type(1), .high-quality-nursing > div:nth-of-type(1) {
  font-size: 40px;
  font-weight: bold;
  font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", serif;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.nursing-news {
  width: 100%;
  padding: 150px 0;
  margin-bottom: 100px;
}
.nursing-news > div:nth-of-type(1) {
  color: var(--font-color);
}
.nursing-news > div:nth-of-type(3) {
  text-align: center;
}
.nursing-news > div:nth-of-type(3) button {
  color: white;
  letter-spacing: 2px;
  padding: 5px 30px;
  border: none;
  border-radius: 20px;
  background-color: var(--font-color);
}

.high-quality-nursing {
  width: 100%;
  padding: 150px 0;
}
.high-quality-nursing > div:nth-of-type(1) {
  color: white;
}
.high-quality-nursing > div:nth-of-type(3) {
  text-align: center;
}

.nursing-world-news {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
 // gap: 20px;
  margin-bottom: 60px;
}
.nursing-world-news > * {
  margin-right: 10px; /* 将 gap 的一半作为 margin */
  margin-left: 10px; /* 将 gap 的一半作为 margin */
}

.nursing-world-news > *:last-child {
  margin-right: 0; /* 移除最后一个子元素的右边距 */
}
.nursing-world-news > div {
  display: grid;
  grid-template-rows: 240px 190px;
  background-color: white;
  width: 350px;
}
.nursing-world-news > div > div {
  display: grid;
  grid-template-rows: 5fr 1fr;
   padding: 25px 15px 15px 15px;
}
.nursing-world-news > div > div > div:nth-of-type(1) {
  margin-top: 15px;
  font-weight: bold;
}
.nursing-world-news > div > div > div:nth-of-type(2) {
  align-self: end;
  color: gray;
}