.wrapper {
  overflow: hidden;
}
[data-scroll-container] {
  will-change: transform;
}
.main {
  width: 100%;
}
.row {
  width: 100%;
  font-size: 3rem;
  position: relative;
  background: #fff;
}
.banner {
  height: 100vh;
}
.row:nth-child(odd) {
  background: #f6f6f6;
}
/* 自定义滚动条样式 */
.c-scrollbar {
  width: 8px;
  background: transparent;
  position: fixed;
  right: 10px;
  top: 0;
  bottom: 0;
}
.c-scrollbar_thumb {
  background: #3498db;
  border-radius: 4px;
}
/* banner */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide .caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
  color: #fff;
  font-size: 2.5rem;
  text-align: left;
  padding: 1rem 2rem;
  border-radius: 8px;
  opacity: 0;
}
.slide .caption h2 {
  font-size: 50px;
  font-family: en_b;
}
.slide .caption p {
  font-size: 20px;
}
.mouse {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(50%, -50%);
}
.slider-bar {
  position: absolute;
  bottom: 30px;
  left: 5%;
  display: flex;
  gap: 12px;
}
.slider-bar span {
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.slider-bar .dot {
  font-size: 17px;
  user-select: none; /* 禁止文字选中 */
  pointer-events: auto; /* 保留点击事件 */
}
.slider-bar .active {
  font-weight: bold;
}
.dot {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  margin: 0 4px;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
}

/* 描边动画框 */
.dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #228e61;
  border-radius: 30px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1; /* 让描边在文字下方 */
}

/* 激活时触发画框动画 */
.dot.active::before {
  transform: scaleX(1);
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}
.slider-controls button {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  pointer-events: all;
  padding: 10px 20px;
  border-radius: 4px;
}
.p1 {
  padding: 50px 0 300px 0;
}
.depar {
  background: url("/ClinicalResearchCenter/img/about_bg.png") top center no-repeat #fff;
  background-size: 106% 106%;
}
.title {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
}
.title h1 {
  font-size: 32px;
  font-weight: bold;
  line-height: 2;
  display: inline-block;
  position: relative;
}
.title h1::before {
  content: "";
  display: block;
  width: 60%;
  height: 6px;
  background: #00683d;
  margin-bottom: 10px;
  border-radius: 6px;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.title a {
  display: inline-block;
  font-size: 14px;
  color: #9e9e9e;
  line-height: 2;
  height: 30px;
  position: relative;
  text-align: center;
  top: 24px;
}
.title a::before {
  content: "";
  display: block;
  width: 150%;
  height: 2px;
  border-radius: 2px;
  background: #d9d9d9;
  margin-bottom: 10px;
  position: absolute;
  right: 0;
  bottom: -10px;
}

.Departments {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  gap: 20px;
}
.Departments-content {
  flex: 1;
  width: 100%;
  position: relative;
}
.Departments-content-text {
  position: absolute;
  width: 80%;
  background: #fff;
  box-shadow: 9px 8px 13px rgb(0 0 0 / 3%);
  bottom: -150px;
  padding: 25px 30px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  z-index: 9;
}
.Departments-content-text h2 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: bold;
}
.Departments-content-text p {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
  color: #bababa;
}
.Departments-content-text a {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  color: #00683d;
  text-decoration: underline;
  line-height: 2;
  text-align: right;
}

.recruit {
  margin: 0 auto;
  font-size: 16px;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 100px;
}
.recruit-lsit {
  width: 100%;
  padding: 20px 0 0 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 9px 8px 13px rgb(0 0 0 / 3%);
}
.recruit-text {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  padding: 0 20px;
}
.recruit-text span {
    display: block;
    width: 72px;
    padding: 5px 0px;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    height: 30px;
    background: #327dd4;
}
.recruit-text h2 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
}
.recruit-item ul {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  gap: 20px;
  font-size: 14px;
}
.recruit-item ul li {
  flex: 0 0 calc(25% - 20px);
}
.recruit-item ul li span {
  display: block;
  color: #9e9e9e;
  float: left;
  margin-right: 20px;
}
.recruit-more {
  display: block;
  background: #ececec;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 2.5;
  border-radius: 0 0 8px 8px;
}
.recruit-text .finish {
  background: #28ac37;
}
.recruit-text .stop {
  background: #d44f32;
}
.recruit-more:hover {
  background: #00683d;
  color: #fff;
}
a.recruit-more:hover .icon {
  fill: white;
}
.recruit-item ul li:nth-last-child(1):nth-child(4n + 1) {
  flex: 0 0 100%;
}

.recruit-item ul li:nth-last-child(2):nth-child(4n + 1),
.recruit-item ul li:nth-last-child(1):nth-child(4n + 2) {
  flex: 0 0 calc(50% - 20px);
}
.team-list {
  width: 100%;
}
.team-list ul {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.team-list ul li {
  flex: 1 1 calc(20% - 20px);
  border: 2px solid #228e61;
  border-radius: 20px 40px 20px 20px;
  padding: 13px 21px;
  height: 70px;
}
.team-list ul li a {
  display: block;
  font-size: 16px;
}
.team-list ul li h2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.team-list ul li p {
  display: block;
  font-size: 14px;
  line-height: 2;
}
.team-list ul li:hover {
  background: #228e61;
  color: #fff;
}

/* 新闻 */
.new-list {
  flex: 1;
  width: 100%;
  min-height: 500px;
}
.new-list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.new-list ul li {
  flex: 0 0 calc(33.33% - 20px);
  padding: 50px 50px;
  background: #fff;
  border-radius: 8px;
  position: relative;
}

.new-list ul li h2 {
  display: block;
  height: 55px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 150px;
}
.new-list ul li p {
  font-size: 16px;
  line-height: 1.5;
  color: #b6b6b6;
}
.date {
  width: 100%;
  border-top: 1px solid #e5e5e5;
  text-align: right;
  margin-top: 20px;
  padding: 20px 0 0 0;
}
.date i {
  font-size: 40px;
  font-style: normal;
  color: #00683d;
}
.new-list ul li a {
  display: block;
  font-size: 14px;
}
.new-list ul li:hover {
  background: #228e61;
  color: #fff;
}
.new-list ul li:hover p {
  color: #fff;
}
.new-list ul li:hover i {
  color: #fff;
}

.download-list {
  flex: 1;
  width: 100%;
  min-height: 500px;
}
.download-list ul {
  width: 100%;
  margin-bottom: 50px;
}
.download-list ul li {
  display: flex;
  justify-content: space-between;
  padding: 40px 40px;
  background: #f5f5f5;
  border-radius: 8px;
  margin: 20px 0;
}
.download-list ul li:hover{
   background: #c2c2c245;
}

.download-title {
  font-size: 24px;
  line-height: 1.2;
  display: flex;
  text-align: center;
  align-items: center;
}
.download-title h2 {
  margin-left: 10px;
  font-weight: 500;
}
.download-btn {
  font-size: 24px;
}
.download-btn a {
  font-size: 20px;
  display: block;
  width: 130px;
  height: 45px;
  border-radius: 80px;
  border: 1px solid #228e61;
  text-align: center;
  line-height: 45px;
  color: #228e61;
}
/* ========== 大桌面/1080p（<1920px） ========== */
@media (max-width: 1920px) {
    .title{
        max-width: 1440px;
    }
    .Departments{
        max-width: 1440px;
    }
}

/* ========== 2K 屏幕（<2560px） ========== */
@media (max-width: 2560px) {
  .warp {
    max-width: 1920px;
    padding: 20px 6%;
  }
  .fonter-min {
    padding: 20px 5%;
  }
    .download-list ul li{
        padding: 20px;
    }
    .download-title h2{
        font-size: 16px;
    }
    .download-btn a{
        font-size: 14px;
    }
}

/* ========== 4K 屏幕（<3840px） ========== */
@media (max-width: 3840px) {
}
/* ==========手机（<768px） ========== */
@media (max-width: 768px) {
    .title{
        width: auto;
    }
    .Departments{
        width: auto;
    }
  .row {
    font-size: 2rem;
  }
  .slide .caption {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
  }
  .slider-controls button {
    font-size: 1.5rem;
    padding: 6px 12px;
  }
  .slide .caption h2 {
    font-size: 30px;
  }
  .slide .caption p {
    font-size: 14px;
  }
  .slider-bar .dot {
    font-size: 12px;
  }
  .dot {
    padding: 10px 20px;
  }
  .mouse {
    bottom: 10%;
    left: 42%;
  }
  .Departments {
    flex-direction: column;
    gap: 170px;
    padding: 10px;
  }
  .p1 {
    padding: 0px 0 200px 0;
  }
  .title h1 {
    font-size: 24px;
  }
  .title a {
    top: 16px;
  }
  .Departments-content-text {
    width: 95%;
    padding: 25px 20px;
  }
  .Departments-content-text p {
    font-size: 12px;
  }
  .Departments-content-text h2 {
    font-size: 20px;
  }
  .recruit-text {
    flex-direction: column;
    margin:0;
  }
  .recruit-text h2 {
    font-size: 16px;
    line-height: 1.5;
  }
  .recruit-more{
  margin-top:0;
}
  .recruit-item ul {
    flex-direction: column;
    gap: 0;
    margin: 5px 20px;
  }
  .recruit-item ul li {
    font-size: 12px;
    line-height: 1.2;
  }
  .recruit-text span {
    width: 83px;
    font-size: 12px;
    line-height: 21px;
    height: 31px;
  }
  .recruit {
    gap: 10px;
    padding-bottom: 50px;
  }
   .team-content .team-list ul li {
    flex: 0 0 calc(50% - 10px);
     padding: 13px 10px;
  }
  .team-list ul li {
    flex: 0 0 calc(50% - 10px);
     padding: 13px 10px;
  }
  .new-list ul {
    flex-direction: column;
  }
  .new-list ul li {
    padding: 20px 20px;
  }
  .team-list ul li h2 {
    font-size: 14px;
  }
  .new-list ul li p {
    font-size: 12px;
  }
  .new-list ul li h2 {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .date i {
    font-size: 26px;
  }
  .download-list ul li {
    padding: 10px 15px;
  }
  .download-title h2 {
    font-size: 14px;
    text-align: left;
        margin: 0 10px;
  }
  .download-btn a {
    font-size: 12px;
    width: 70px;
    height: 40px;
    line-height: 40px;
  }
  .download-list {
    gap: 10px;
    padding: 0 20px;
  }
}

