.banner-btns-container {
    display: flex;
    flex-direction: row;
    justify-content: center; /* 改用居中对齐，比 space-around 更稳定 */
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 15px;
    position: relative; /* 添加定位属性 */
}

/* 针对大屏幕 */
@media (min-width: 1200px) {
    .banner-btns-container {
        max-width: 1200px;
    }
    .banner-btn {
        width: 200px; /* 固定宽度 */
        height: 60px; /* 固定高度 */
        margin: 10px; /* 固定间距 */
    }
}

/* 针对中等屏幕 */
@media (min-width: 768px) and (max-width: 1199px) {
    .banner-btns-container {
        max-width: 960px;
    }
    .banner-btn {
        width: 180px; /* 固定宽度 */
        height: 50px; /* 固定高度 */
        margin: 8px; /* 固定间距 */
    }
}

/* 针对小屏幕 */
@media (max-width: 767px) {
    .banner-btns-container {
        max-width: 100%;
    }
    .banner-btn {
        width: 160px; /* 固定宽度 */
        height: 40px; /* 固定高度 */
        margin: 6px; /* 固定间距 */
    }
}

.banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* 添加定位属性 */
    overflow: hidden; /* 防止子元素溢出 */
}

.banner-btn img {
    width: 28px; /* 固定宽度 */
    height: auto; /* 保持图片比例 */
    margin-right: 8px; /* 固定间距 */
}

.banner-btn span {
    font-size: 16px; /* 固定字体大小 */
    line-height: 20px; /* 固定行高 */
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #2a2a82; /* 根据截图的背景色调整 */
  color: white;
}

footer {
  background-color: #2a2a82; /* 根据截图的背景色调整 */
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
  margin: 10px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold; /* 加粗标题 */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #444;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 12px;
}

.banner-img-2 {
  width: 50%;
  max-width: 700px; /* 可根据需要调整 */
  height: 500px; /* 保持宽高比 */
}

/*客服*/
.customer-service {
    background-color: #f77452;
    color: white !important;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
  }
  .customer-service span {
    color: white !important;
  }
  .customer-service:hover {
    background-color: #2b6fce;
  }

