.footerImage {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footerPrivacy {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 16px;
}
.footerPrivacy a {
  color: #595959;
  text-decoration: none;
}
.error-message {
  color: red;
  text-align: left;
  margin-top: 5px;
}
.iconBox {
  align-items: center;
  margin-bottom: 50px;
}
.iconBox .cards {
  padding: 20px;
}
.iconBox .cards h2 {
  margin-bottom: 20px;
}
.iconBox .cards p {
  line-height: 30px;
}
.iconBox .cards .img {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.iconBox .cards .img img {
  width: 160px;
  height: 48px;
}
.iconBox .cards .iconImages {
  text-align: center;
}
.iconBox .cards .iconImages img {
  width: 100%;
  max-width: 300px;
}
.titleBox {
  color: #595959;
}
.titleBox h2 {
  font-size: 45px;
  text-align: center;
  flex: 1;
}
.faq-box .faq-container {
  max-width: 900px;
  margin: auto;
}
.faq-box .faq-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  padding-top: 60px;
  color: #1b1b1b;
}
.faq-box .faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.faq-box .faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-box .faq-question:hover {
  background: #f1f4f8;
}
.faq-box .faq-icon {
  transition: 0.3s;
  font-size: 20px;
}
.faq-box .faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-box .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}
.faq-box .faq-answer p {
  padding: 10px 0 20px 0;
  line-height: 1.7;
  color: #555;
}
/* 手机屏幕（小于768px） */
@media screen and (max-width: 767px) {
  .iconBox .cards .iconImages {
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */