:root {
  --bobo-exp-title-size: 36px;
  --bobo-exp-text-size: 18px;
  --bobo-exp-count-size: 76px;
  --bobo-exp-desc-size: 20px;
  --bobo-exp-card-pd: 50px 44px;
  --bobo-exp-item-basis: 33.33%;
  --bobo-exp-p: 100px 0;
 
  --exp-radius: 10px;
  --exp-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --exp-transition: all 0.3s ease;
}

.bobo-experience {
  padding: clamp(30px, 4.166667vw, 80px) 0;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  z-index: 1;
}
.bobo-experience::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  z-index: -1;
}

.bobo-experience .row {
  align-items: center;
}

 
.bobo-experience .tit {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: auto;
  max-width: 420px;
  background: #fff !important;
  padding: var(--bobo-exp-card-pd);
  border-radius: var(--exp-radius);
  box-shadow: var(--exp-shadow);
  color: #222;
}

.bobo-experience .tit .tips {
  margin-right: 35px;
  padding-right: 25px;
  border-right: 2px solid #eee;
  display: none;
}

.bobo-experience .tit .tips .count-title {
  font-size: clamp(36px, 3.96vw, 76px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.bobo-experience .tit .tips .count-desc {
  font-size: clamp(14px, 1.04vw, 20px);
  line-height: 1.5;
  color: #555;
  white-space: nowrap;
}

.bobo-experience .tit img {
  margin-top: 0;
  width: 120px;
  object-fit: contain;
  /* opacity: 0.9; */
}

 
.bobo-experience .list {
  flex: 1;
  margin-left: 70px;
}

.bobo-experience .list h2 {
  font-size: clamp(24px, 1.88vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: #222;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.bobo-experience .list h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.bobo-experience .list ul {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
}

.bobo-experience .list ul li {
  flex: 0;
  flex-basis: var(--bobo-exp-item-basis);
  max-width: var(--bobo-exp-item-basis);
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
  padding: 0 20px;
  transition: var(--exp-transition);
}

 
.bobo-experience .list ul li::before {
  content: "-";
  color: var(--color-primary);
  font-weight: 600;
  margin-right: 8px;
}

.bobo-experience .list ul li p {
  padding-left: 0;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} 

.bobo-experience .list ul li a {
  color: #333;
  font-size:clamp(14px, 0.94vw, 18px);
  text-decoration: none;
  transition: var(--exp-transition);
}

 
.bobo-experience .list ul li:hover a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

 
@media screen and (max-width: 1500px) {
  :root {
    --bobo-exp-title-size: 32px;
    --bobo-exp-text-size: 16px;
    --bobo-exp-p: 85px 0;
  }
  .bobo-experience .list { margin-left: 50px; }
}

@media screen and (max-width: 1280px) {
  :root {
    --bobo-exp-title-size: 28px;
    --bobo-exp-text-size: 15px;
    --bobo-exp-p: 70px 0;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --bobo-exp-item-basis: 50%;
  }
  .bobo-experience .tit {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .bobo-experience .tit .tips {
    border-right: none;
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --bobo-exp-count-size: 56px;
    --bobo-exp-desc-size: 18px;
    --bobo-exp-card-pd: 35px 25px;
  }
  .bobo-experience .list ul li p {
    -webkit-line-clamp: none;
  }
  .bobo-experience .tit {
    margin: 0 auto;
  }
  .bobo-experience .list {
    margin-top: 40px;
    margin-left: 0;
  }
  .bobo-experience .list h2 {
    text-align: center;
  }
  .bobo-experience .list h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .bobo-experience .row {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --bobo-exp-title-size: 24px;
    --bobo-exp-text-size: 14px
  }
}

@media screen and (max-width: 576px) {
  .bobo-experience .row {
    padding: 0 15px;
  }
  .bobo-experience .list ul li {
    flex-basis: 100%;
    max-width: 100%;
  }
}