/* 轮播图样式 */
.swiper {
  width: 80%;
  height: 600px;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.5rem;
  background-color: rgba(72, 61, 139, 0.9);
  padding: 10px 20px;
  border-radius: 5px;
}

/* 亮点部分样式 */
.highlights {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.highlight-item {
  background-color: #ffffff;
  padding: 20px;
  margin: 0px 5px 0px 5px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
  text-decoration: none;
}

.highlight-item a {
  text-decoration: none;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(72, 61, 139, 0.3);
}

.highlight-item h3 {
  color: #483d8b;
  margin-top: 0;
}

/* body {
  font-family: "Roboto Slab", serif;
  background-color: #f0f8ff;
  color: #333;
} */

h2 {
  font-size: 2.5em;
  color: #2980b9;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 1.2em;
  line-height: 1.8;
  margin: 20px 0;
}

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  text-align: center;
}

.contact-info p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .highlights {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .highlight-item {
    width: 100%;
    margin: 5px 0 5px 0;
  }
}
