.footer {
    height: 190px;
    background: #19407b;
    position: relative;
    width: 100%;
    /* display: flex; */
  }
  .footer-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 45px;
  }
  .footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .footer-left-title {
    font-size: 16px;
    color: #fff;
    margin-right: 24px;
  }
  .footer-icons {
    display: flex;
    gap: 16px;
  }
  .footer-icon {
    width: 50px;
    height: 50px;
    background: #719fda;
    /* border-radius: 8px; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .footer-icon img {
    width: 50px;
    height: 50px;
  }
  .footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #fff;
    margin-top: 60px;
    /* margin-bottom: 8px; */
  }

  /* 移动端响应式样式 */
  @media screen and (max-width: 768px) {
    .footer {
      height: auto;
      min-height: auto;
      padding: 20px 0;
    }

    .footer-content {
      width: 100%;
      max-width: 100%;
      flex-direction: column;
      align-items: center;
      padding: 20px 15px;
      gap: 20px;
    }

    .footer-left {
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .footer-left-title {
      font-size: 14px;
      margin-right: 0;
      margin-bottom: 5px;
    }

    .footer-icons {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
    }

    .footer-icon img {
      width: 40px;
      height: 40px;
    }

    .footer-bottom {
      font-size: 10px;
      margin-top: 20px;
      padding: 0 15px;
      line-height: 1.6;
      word-break: break-word;
    }
  }

  /* 平板端响应式样式 */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer {
      height: auto;
      min-height: 160px;
    }

    .footer-content {
      width: 100%;
      max-width: 900px;
      padding: 30px 20px;
    }

    .footer-left-title {
      font-size: 15px;
    }

    .footer-icon {
      width: 45px;
      height: 45px;
    }

    .footer-icon img {
      width: 45px;
      height: 45px;
    }

    .footer-bottom {
      font-size: 11px;
      margin-top: 40px;
    }
  }
  