#touristServicesCarousel .carousel-item p {
  height: 70px;
}

#caseStudiesCarousel .carousel-item p {
  height: 96px;
}

/* 实施效果 */
.effect-card {
  margin-bottom: 2rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.effect-card .effect-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.effect-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  transform: translate(25px, -25px) rotate(45deg);
}

/* 装饰元素 */
.decoration-line {
  height: 3px;
  width: 80px;
  background-color: var(--primary-color);
  margin: 1rem 0;
}

.decoration-dots {
  display: flex;
  margin: 1rem 0;
}

.decoration-dots span {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  margin-right: 5px;
}

/* 智慧管理运营 */
.management-icons-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.management-icons-row::-webkit-scrollbar {
  display: none;
}

.management-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0.75rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
  max-width: 150px;
}

.management-icon-item.active {
  background-color: var(--white);
}

.management-icon-item .icon-wrapper {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.management-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.icon-title {
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}

.decoration-line-sm {
  height: 2px;
  width: 60%;
  background-color: var(--primary-color);
  margin-top: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.management-icon-item.active .decoration-line-sm {
  opacity: 1;
}

.management-content-container {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background-color: var(--white);
}

.management-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateX(30px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.management-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.content-title {
  color: var(--dark-blue);
  white-space: nowrap;
  text-align: center;
}

.content-description {
  margin-bottom: 0;
}

.content-bar {
  height: 5px;
  background-color: var(--light-color);
}

.content-bar > div {
  height: 5px;
  background-color: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .effect-card {
    margin-bottom: 0.9rem;
  }

  .management-icon-item {
    padding: 1rem 0.5rem;
    min-width: 80px;
    max-width: 110px;
  }

  .management-icon {
    font-size: 2rem;
  }

  .icon-title {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .management-icon-item {
    min-width: 90px;
    flex: 0 0 auto;
  }
}
