  /* 底部导航 */
  footer {
    background: var(--color2);
    position: relative;
    padding: 0 var(--container);
  }

  .footer1 {
    padding: 45px 0 30px;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    justify-content: space-between;
  }

  .footerLogo {
    width: 120px;
    height: 50px;
  }

  .footerLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
  }

  .footerNav {
    width: calc(100% - 550px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 240px;
  }

  .footerNav a {
    color: #797979;
    font-family: Arial;
    font-size: 16px;
    font-weight: 700;
    line-height: 14px;
  }

  .footerSearch {
    border: 1px solid #C0C0C0;
    height: 50px;
    width: 430px;
    display: flex;
    position: relative;
    align-items: center;
  }

  .footerSearch::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(/assets/img/search_1.png) no-repeat center;
    background-size: contain;
    left: 20px;
  }

  .footerSearchInput {
    background: #fff0;
    width: calc(100% - 125px);
    height: 100%;
    padding-left: 50px;
    outline: none;
  }


  .footerSubButn {
    width: 125px;
    height: 100%;
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
    font-family: Arial;
    font-size: 16px;
    font-weight: 900;
    line-height: 14px;
  }

  .footer2 {
    padding-top: 30px;
    padding-bottom: 45px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .footerDesc {
    color: #565656;
    font-family: Arial;
    font-size: 16px;
    line-height: 2;
  }

  /* 社交媒体 */
  .footerIcon {
    display: flex;
    grid-gap: 30px;
  }

  .footerIcon .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footerIcon .item .icon {
    display: flex;
    align-items: center;
    grid-gap: 5px;
  }

  .footerIcon .item .icon img {
    width: 26px;
    height: 26px;
  }

  .footerIcon .item .ewm {
    display: none;
    position: absolute;
    width: 100px;
    top: -120px;
    padding: 10px;
    background: #fff;
    border-radius: 2px;
  }

  .footerIcon .item .ewm img {
    width: 100%;
  }

  .footerIcon .item:hover .ewm {
    display: flex;
    justify-content: center;
  }

  .footerIcon .item .ewm i {
    position: absolute;
    bottom: -14px;
    color: #fff;
  }

  @media (max-width:1440px) {
    .footerNav {
      padding: 0;
    }
  }

  @media (max-width:1200px) {
    .footerSearch {
      height: 40px;
      width: 240px;
    }

    .footerSubButn {
      width: 75px;
      font-size: 14px;
    }

    .footerSearchInput {
      width: calc(100% - 75px);
      padding-left: 30px;
    }

    .footerNav {
      width: calc(100% - 240px);
    }

    .footerSearch::after {
      left: 8px;
      width: 15px;
      height: 15px;
    }
  }

  @media (max-width:900px) {

    .footer1,
    .footer2 {
      flex-wrap: wrap;
      grid-gap: 30px;
    }


    .footerNav {
      flex-wrap: wrap;
      grid-gap: 15px 10px;
    }

    .footerNav,
    .footerSearch,
    .footerIcon,
    .footerDesc {
      width: 100%;
    }
  }

  @media (max-width:720px) {
    .footerIcon {
      flex-wrap: wrap;
      grid-gap: 15px 0;
    }

    .footerIcon .item {
      width: 50%;
    }
  }

  /* 备案 */
  .Copyright {
    background: #E8E3E0;
    padding: 15px var(--container);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 5px;
  }

  .Copyright,
  .Copyright a {
    color: #686868;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: center;
  }


  @media (max-width: 1200px) {
    .Copyright a {
      font-size: 14px;
      display: contents;
    }
  }