/* 角色展示区域容器 */
.character-showcase {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

#character-container {
  width: 800px;
  height: 450px;
  background: rgba(38, 18, 12, 0.62);
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#character-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#character-container img.active {
  opacity: 1;
}

.character-content {
  width: 400px;
  height: 450px;
  background: rgba(38, 18, 12, 0.62);
  margin: 0;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.character-info {
  padding: 40px;
  color: white;
}

.character-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.character-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

.character-more {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #ffd700;
  font-size: 16px;
  padding: 8px 15px;
  border: 1px solid #ffd700;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.character-more:hover {
  background: #ffd700;
  color: #000;
  opacity: 1;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
/* 轮播图控制按钮 */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* 轮播图指示器 */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ffd700;
  transform: scale(1.2);
}

/* 响应式调整 */
@media (max-width: 1280px) {
  .character-showcase {
    width: 95%;
    flex-direction: column;
    align-items: center;
  }

  #character-container,
  .character-content {
    width: 100%;
  }

  .character-content {
    height: auto;
    min-height: 250px;
  }
}
.information-more {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #ffd700;
  font-size: 16px;
  padding: 8px 15px;
  border: 1px solid #ffd700;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.information:hover {
  background: #ffd900;
  color: #000;
  opacity: 1;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}