.limit > img {
    width: 100%;
    object-fit: fill;
    margin-bottom: 20px;
  }
  .limit .cultural-system {
    margin:0 200px;
    margin-bottom: 130px;
  }
  .limit .cultural-system > div:nth-of-type(1) {
    margin-bottom: 20px;
  }
  .limit .cultural-system > div:nth-of-type(2) {
    display: grid;
    grid-auto-rows: 300px 300px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 20px;
  }
  .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(1), .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(2), .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(3) {
    color: white;
    font-size: 20px;
    overflow: auto;
  }
  .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(1) {
    grid-area: 1/1/3/2;
    padding: 0px 10px 15px 15px; 
    background-color: var(--font-color);
    display: grid;
    grid-template-rows: 1fr 1.2fr;
    <!-- justify-content: center; -->
    <!-- align-items: center; -->
    gap: 10px;
  }
  .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(1) > img {
    width: 248px;
    margin:30px auto;
  }
  .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(2), .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(3) {
    padding: 15px 10px 5px 15px;
    background-color: var(--font-color);
    position: relative;
    <!-- transform: translateY(20px); -->
  }
  .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(2) > div:nth-of-type(1), .limit .cultural-system > div:nth-of-type(2) > div:nth-of-type(3) > div:nth-of-type(1) {
    width: 140px;
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .limit .cultural-activities {
    width: 100%;
    padding: 110px 61px;
  }
  .limit .cultural-activities > div:nth-of-type(3) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    //gap: 20px;
    margin-bottom: 60px;
  }
.limit .cultural-activities > div:nth-of-type(3) > * {
  margin-right: 10px; /* 将 gap 的一半作为 margin */
  margin-left: 10px; /* 将 gap 的一半作为 margin */
}

.limit .cultural-activities > div:nth-of-type(3) > *:last-child {
  margin-right: 0; /* 移除最后一个子元素的右边距 */
}
  .limit .cultural-activities > div:nth-of-type(3) > div {
    margin: 0 30px;
    display: grid;
    grid-template-rows: 240px 1fr;
    background-color: white;
    width: 340px;
    box-shadow: 0 0 5px 5px rgb(225, 225, 225);
  }
  .limit .cultural-activities > div:nth-of-type(3) > div > div {
    display: grid;
    grid-template-rows: 3fr 1fr;
    padding: 15px;
  }
  .limit .cultural-activities > div:nth-of-type(3) > div > div > div:nth-of-type(1) {
    font-weight: bold;
  }
  .limit .cultural-activities > div:nth-of-type(3) > div > div > div:nth-of-type(2) {
    align-self: end;
    color: gray;
  }



  .limit .medical-briefing {
    width: 100%;
    margin-bottom: 50px;
  }
  .limit .medical-briefing > div:nth-of-type(2) {
    padding-right: 61px;
  }
  .limit .medical-briefing > div:nth-of-type(3) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .limit .medical-briefing > div:nth-of-type(3) > div {
    margin: 0 auto;
    width: 545px;
    height: 400px;
    position: relative;
  }
  .limit .medical-briefing > div:nth-of-type(3) > div > img, .limit .medical-briefing > div:nth-of-type(3) > div > ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .limit .medical-briefing > div:nth-of-type(3) > div > img {
    z-index: 1;
  }
  .limit .medical-briefing > div:nth-of-type(3) > div > ul {
    z-index: 2;
    padding: 10px 30px;
    background-color: rgba(1, 131, 59, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .limit .medical-briefing > div:nth-of-type(3) > div > ul li {
    width: 100%;
    display: grid;
    grid-template-columns: 250px 1fr;
    padding: 5px 0;
    border-bottom: 1px solid white;
    color: white;
  }
  .limit .medical-briefing > div:nth-of-type(3) > div > ul li > div:nth-of-type(1) {
    position: relative;
    padding-left: 20px;
    font-size: 23px;
    line-height: 48px;
  }
  .limit .medical-briefing > div:nth-of-type(3) > div > ul li > div:nth-of-type(1)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
  }
  .limit .medical-briefing > div:nth-of-type(3) > div > ul li > div:nth-of-type(2) {
    color: white;
    text-align: end;
    line-height: 48px;
  }
  .limit .cultural-system > div:nth-of-type(1), .limit .cultural-activities > div:nth-of-type(1), .limit .medical-briefing > div:nth-of-type(1) {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: var(--font-color);
    letter-spacing: 2px;
  }
  .limit .cultural-activities > div:nth-of-type(2), .limit .medical-briefing > div:nth-of-type(2) {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 10px;
  }
  .limit .cultural-activities > div:nth-of-type(2) button, .limit .medical-briefing > div:nth-of-type(2) button {
    border-radius: 20px;
    border: none;
    background-color: var(--font-color);
    color: white;
    letter-spacing: 1px;
    padding: 8px 30px;
    margin-bottom: 10px;
  }