
/* ==========【轮播图】========== */
.carousel-section {
  /* 若需要额外背景，可在此处添加 */
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background-color: #000; /* 图片没加载时可见黑底 */
}
.carousel-item {
  display: none;
  width: 100%;
}
.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.carousel-item.active {
  display: block; /* 仅激活的显示 */
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  z-index: 10;
}
.carousel-control:hover {
  background-color: rgba(0,0,0,0.5);
}
.carousel-control.prev {
  left: 0.5rem;
}
.carousel-control.next {
  right: 0.5rem;
}

/* ==========【FAQ区域】========== */
.faq-section {
  /* 若需要单独设计，可在这里添加 */
}
.faq-item {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.faq-question {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}
.faq-answer {
  font-size: 0.95rem;
  color: #555;
  margin-left: 1.2rem; /* 适当缩进 */
}
.faq-answer li {
  margin-bottom: 0.3rem;
}

/* ==========【客户评价 (Reviews)】========== */
.review-section {
  /* 若需要单独设计，可在这里添加 */
}
.review-item {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.review-user {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.3rem;
}
.review-text {
  font-size: 0.95rem;
  color: #555;
  margin-left: 1.2rem;
}

/* ==========【联系我们 (Contact)】========== */
/* 可在此添加地图或表单等，如需要 */

/* ==========【页脚】========== */
.page-footer {
  background-color: #333;
  color: #ccc;
  padding: 1rem 0;
  text-align: center;
}
.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
}
.footer-nav {
  margin-bottom: 0.5rem;
}
.footer-nav a {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.25rem;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-info {
  line-height: 1.4;
}
