/* 站点通用样式：由原 Tailwind 运行时内联块迁移为纯 CSS */

.nav-link {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}
.nav-link.active {
  color: #ffffff;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #ff8603;
  border-radius: 1px;
}
.nav-link:hover {
  color: #ffffff;
}
.nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 204, 0, 0.5);
  border-radius: 1px;
}

.core-item {
  font-size: 18px;
  color: #ffffff;
  min-width: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-item-val {
  font-size: 10px;
  color: #D1D5DB;
}
.vertical-line {
  width: 2px;
  background-color: #e5e7eb;
  margin: 20px 20px;
  border-radius: 0.5px;
}
.vertical-line-line {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.carousel-item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 700ms ease-in-out;
}
.carousel-item.active {
  opacity: 1;
  z-index: 10;
}
.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 300ms;
}
.carousel-indicator.active {
  background-color: #ffffff;
  transform: scale(1.25);
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms;
  z-index: 20;
}
.carousel-control:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

