/* 整体容器样式 */
.historic-container {
  padding: 40px 0;
  position: relative;
}

/* 主标题样式 */
.historic-main-title {
  color: #4A3728;
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
}

.historic-subtitle {
  color: #6B5344;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 300;
}

.historic-divider {
  width: 60%;
  margin: 30px auto;
  border-top: 2px solid #8B7355;
  position: relative;
}

.historic-divider::before,
.historic-divider::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #8B7355;
  top: -7px;
  transform: rotate(45deg);
}

.historic-divider::before {
  left: -6px;
}

.historic-divider::after {
  right: -6px;
}

/* 各部分通用样式 */
.historic-section {
  padding: 50px 0;
  border-bottom: 1px solid #E5DDD5;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.historic-section:last-child {
  border-bottom: none;
}

/* 标题样式 */
.section-title {
  color: #4A3728;
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  font-weight: bold;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #8B7355;
  margin: 15px auto;
}

/* 图片容器样式 */
.historic-image-container {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(74, 55, 40, 0.15);
  border: 1px solid #D6C6B4;
  padding: 10px;
  background: #fff;
}

.historic-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.historic-image:hover {
  transform: scale(1.03);
}

.image-caption {
  background: rgba(74, 55, 40, 0.8);
  color: #fff;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
}

/* 内容样式 */
.historic-content {
  padding: 20px;
  position: relative;
}

.historic-content h3 {
  color: #4A3728;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  border-left: 4px solid #8B7355;
  padding-left: 15px;
}

.historic-content p {
  color: #5D4B3C;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* 特色列表样式 */
.historic-features {
  background: #F5F0EA;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  border-left: 4px solid #8B7355;
}

.historic-features h4 {
  color: #4A3728;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.historic-features ul {
  padding-left: 0;
  list-style-type: none;
}

.historic-features li {
  margin-bottom: 12px;
  color: #5D4B3C;
  line-height: 1.6;
}

.feature-label {
  color: #8B7355;
  font-weight: bold;
  margin-right: 8px;
}

/* 视频容器样式 */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 比例 */
  height: 0;
  overflow: hidden;
  margin: 30px 0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(74, 55, 40, 0.15);
  background: #fff;
  border: 1px solid #D6C6B4;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F0EA;
  color: #4A3728;
  font-size: 18px;
}

/* 文化价值部分样式 */
.cultural-content {
  background: #F5F0EA;
  padding: 30px;
  border-radius: 4px;
  margin-top: 20px;
  position: relative;
  border: 1px solid #D6C6B4;
}

.cultural-content p {
  color: #5D4B3C;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.cultural-content p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 确保每个部分依次显示 */
#wanshou {
  animation-delay: 0.2s;
}

#yuwang {
  animation-delay: 0.4s;
}

#fuwenmiao {
  animation-delay: 0.6s;
}

#cultural-value {
  animation-delay: 0.8s;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .historic-main-title {
    font-size: 28px;
  }

  .historic-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .historic-content h3 {
    font-size: 20px;
  }

  .historic-content p {
    font-size: 14px;
  }

  .historic-section {
    padding: 30px 0;
  }

  .historic-divider {
    width: 80%;
  }

  .historic-features {
    padding: 15px;
  }
}

/* 打印样式优化 */
@media print {
  .historic-container {
    padding: 0;
  }

  .historic-section {
    page-break-inside: avoid;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .video-container {
    display: none;
  }

  .historic-image-container,
  .historic-features,
  .cultural-content {
    box-shadow: none;
    border: 1px solid #000;
  }

  .image-caption {
    background: #fff;
    color: #000;
    border-top: 1px solid #000;
  }
}