
/* 智慧管理运营 */
.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);
}

.decoration-line {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 1rem 0;
}