.limit > img {
    width: 100%;
  }
  .limit .clinical-trials .clinical-trials-module>* {
    margin-right: 10px;/* 将 gap 的一半作为 margin */
    margin-left: 10px;/* 将 gap 的一半作为 margin */
  }


  .limit .clinical-trials .clinical-trials-module {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    /* // gap: 20px; */
    margin-bottom: 60px;
  }

  .limit .clinical-trials .clinical-trials-module>div {
    display: grid;
    grid-template-rows: 50px 190px;
    background-color: white;
    width: 350px;
  }
  .limit .clinical-trials > div:nth-of-type(1) {
    color: var(--font-color);
    margin-bottom: 60px;
  }
  .clinical-trials > div:nth-of-type(1), .project-application > div:nth-of-type(1), .successful-display > div:nth-of-type(1), .medical-education > div:nth-of-type(1) {
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
  }
  .limit .clinical-trials .section {
    margin-bottom: 0;
  }

  .limit .clinical-trials .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid #00796b;
    margin-bottom: 15px;
  }
  .limit .clinical-trials .section-title {
    color: #00796b;
    font-size: 18px;
    font-weight: bold;
  }
  .limit .clinical-trials .more-link {
    color: #00796b;
    text-decoration: none;
    font-size: 14px;
  }
  .limit .clinical-trials .item-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .limit .clinical-trials .item-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
  }
  .limit .clinical-trials .item-list li a {
    color: #333;
    text-decoration: none;
  }
  .limit .clinical-trials .item-list li a:hover {
    color: #1a5f95;
    text-decoration: underline;
  }
  .limit .discipline-construction {
    padding-top: 30px;
    padding-bottom: 100px;
  }
  .limit .discipline-construction > div:nth-of-type(1) {
    color: var(--font-color);
    margin-bottom: 60px;
  }
  .limit .discipline-construction .discipline-construction-news {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
   /* // gap: 20px; */
    margin-bottom: 60px;
  }
.limit .discipline-construction .discipline-construction-news > * {
  margin-right: 10px; /* 将 gap 的一半作为 margin */
  margin-left: 10px; /* 将 gap 的一半作为 margin */
}

.limit .discipline-construction .discipline-construction-news > *:last-child {
  margin-right: 0; /* 移除最后一个子元素的右边距 */
}
  .limit .discipline-construction .discipline-construction-news > div {
    display: grid;
    grid-template-rows: 240px 190px;
    background-color: white;
    width: 350px;
    box-shadow: 0 0 5px 5px rgb(225, 225, 225);
  }
  .limit .discipline-construction .discipline-construction-news > div > div {
    display: grid;
    grid-template-rows: 5fr 1fr;
    padding: 25px 15px 15px 15px;
  }
  .limit .discipline-construction .discipline-construction-news > div > div > div:nth-of-type(1) {
    margin-top: 20px;
    font-weight: bold;
  }
  .limit .discipline-construction .discipline-construction-news > div > div > div:nth-of-type(2) {
    align-self: end;
    color: gray;
  }
  .discipline-construction, .project-application, .successful-display, .medical-education {
    width: 100%;
  }
  .discipline-construction > div:nth-of-type(1), .project-application > div:nth-of-type(1), .successful-display > div:nth-of-type(1), .medical-education > div:nth-of-type(1) {
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
  }
  .discipline-construction > div:nth-of-type(2), .project-application > div:nth-of-type(2), .successful-display > div:nth-of-type(2), .medical-education > div:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .discipline-construction > div:nth-of-type(3), .project-application > div:nth-of-type(3), .successful-display > div:nth-of-type(3), .medical-education > div:nth-of-type(3) {
    text-align: center;
  }

  .limit .project-application {
    padding: 160px 0;
    position: relative;
  }
  .limit .project-application > div:nth-of-type(1) {
    color: var(--font-color);
    margin-bottom: 60px;
  }
  .limit .project-application > div:nth-of-type(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .limit .project-application > div:nth-of-type(2) > div {
    width: 450px;
    height: 300px;
    margin: 0 auto;
    position: relative;
  }
  .limit .project-application > div:nth-of-type(2) > div > img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .limit .project-application > div:nth-of-type(2) > div > div {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
    background: linear-gradient(to right, rgb(1, 131, 59), rgba(1, 131, 59, 0));
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
    z-index: 2;
  }
  .limit .project-application > div:nth-of-type(2) > div > div > div {
    position: relative;
    color: white;
    font-size: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .limit .project-application > div:nth-of-type(2) > div > div > div::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 140px;
    background-color: white;
  }
  .limit .successful-display {
    padding: 100px 0;
  }
  .limit .successful-display > div:nth-of-type(1) {
    color: var(--font-color);
    margin-bottom: 60px;
  }
  .limit .successful-display > div:nth-of-type(2) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    padding: 20px 10vw;
  }
  .limit .successful-display > div:nth-of-type(2) > div {
    width: 315px;
    height: 355px;
    margin: 0 auto;
    position: relative;
  }
  .limit .successful-display > div:nth-of-type(2) > div > img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .limit .successful-display > div:nth-of-type(2) > div > div {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    background-color: rgba(1, 131, 59, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    padding: 20px;
    top: 0;
    left: 0;
  }
  .limit .successful-display > div:nth-of-type(2) > div > div > div {
    position: relative;
    color: white;
    font-size: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .limit .successful-display > div:nth-of-type(2) > div > div > div::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 140px;
    background-color: white;
  }
  .limit .medical-education {
    padding: 160px 0;
  }
  .limit .medical-education > div:nth-of-type(1) {
    color: white;
    margin-bottom: 100px;
  }
  .limit .medical-education > div:nth-of-type(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .limit .medical-education > div:nth-of-type(2) > div {
    width: 600px;
    height: 400px;
    margin: 0 auto;
    position: relative;
  }
  .limit .medical-education > div:nth-of-type(2) > div > img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .limit .medical-education > div:nth-of-type(2) > div > div {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    background: linear-gradient(to right, rgb(1, 131, 59), rgba(1, 131, 59, 0));
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    padding: 20px;
  }
  .limit .medical-education > div:nth-of-type(2) > div > div > div {
    position: relative;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 20px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .limit .medical-education > div:nth-of-type(2) > div > div > div::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 140px;
    background-color: white;
  }
