  /* 底部导航 */
  footer {
    position: relative;
    z-index: 10;
    background: #fff;
    border-top: 1px solid #e9e9e9;
  }

  .footer {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    grid-gap: 30px;
  }

  /* 导航 */
  .footerNav {
    width: calc(100% - 400px);
    display: flex;
    justify-content: space-between;
  }

  .footerNav span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footerNav span .a1 {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    padding: 5px 0px;
    line-height: 2;
  }

  .footerNav span .a2 {
    font-size: 14px;
    color: #333;
    opacity: 0.75;
    line-height: 2;
  }

  @media (max-width:1200px) {
    .footerNav {
      width: 100%;
    }
  }

  @media (max-width:720px) {
    .footerNav {
      display: flex;
      flex-direction: column;
      grid-gap: 20px;
    }

    .footerNav span {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      grid-gap: 0px 15px;
    }

    .footerNav span .a1 {
      width: 100%;
      padding: 0;
    }

    .footer1 .ewm img {
      margin-top: 45px;
    }
  }

  .footerDesc {
    font-size: 14px;
    color: #333;
    line-height: 2;
  }

  .footerDesc b {
    font-weight: 100;
    font-size: 32px;
  }



  .footer .ewm {
    font-size: 16px;
    line-height: 2;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .ewm img {
    width: 120px;
  }

  @media (max-width: 1200px) {
    .footer {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
  }

  /* 备案 */
  .Copyright {
    border-top: 1px solid #e9e9e9;
    background: #fff;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .Copyright a {
    color: #333 !important;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
  }

  .Copyright a p {
    display: block;
    margin: 0 5px;
  }

  .Copyright a:last-child p {
    display: none;
  }

  .Copyright a:hover {
    color: var(--color);
  }

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

    .Copyright a p {
      display: contents;
    }
  }

  @media (max-width: 720px) {}

  .IndexRight {
    position: fixed;
    z-index: 99;
    right: 0;
    bottom: 20vh;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
  }

  .IndexRight>a {
    margin: 1px 0;
    width: 45px;
    height: 45px;
    background: #989898;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .IndexRight>a .icon00 {
    transition: 1s;
  }

  .IndexRight>a .icon00 img {
    width: 100%;
  }

  .IndexRight>a:hover .icon00 {
    background: #2c3035;
    transition: 0.5s;
  }


  .IndexRight .text00 {
    position: absolute;
    z-index: -1;
    right: -145px;
    width: 120px;
    height: 45px;
    background: #2c3035;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.25;
    color: #FFFFFF;
    padding: 5px;
    transition: 0.5s;
  }

  .IndexRight>a:hover .text00 {
    right: 45px;
  }

  .IndexRight .QQ .icon00 {
    background: #3F89C2;
  }

  .IndexRight .message .icon00 {
    background: #169bda;
  }

  .IndexRight .ewm {
    position: relative;
    z-index: 1;
  }

  .IndexRight .ewm .icon00 {
    background: #5BB75F;
  }

  .IndexRight .ewm .text00 {
    height: auto;
  }

  .IndexRight .ewm .text00 img {
    padding: 0px 5px;
    width: 100%;
  }

  @media (max-width: 1200px) {
    .IndexRight {
      display: none;
    }
  }