.footer_con {
  background-color: #ffffff;
  width: 100%;
}
.footer_box {
  max-width: 1288px;
  width: 100%;
  margin: auto;
  padding: 60px 30px;

  .footer_top {
    display: flex;
    align-items: center;
    .logo {
      height: 50px;
      width: auto;
    }

    .nav_box {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;

      .nav_item {
        color: #000b33;
        font-size: 16px;
        margin-left: 40px;
        margin-right: 40px;

        &:hover {
          color: #2b59ff;
        }

        &:last-child {
          margin-right: 0;
        }
      }
    }
  }

  .footer_bottom {
    display: flex;
    padding-top: 40px;
    justify-content: space-between;
    align-items: center;
    .left {
      .text {
        display: flex;
        align-items: center;
        font-size: 16px;
        word-wrap: break-word;
        word-break: break-all;
        line-height: 30px;
        color: #333333;
        img {
          width: 30px;
          height: auto;
          margin-right: 20px;
        }
      }

      .text1 {
        padding-top: 40px;
      }

      .text2 {
        padding-left: 50px;
      }
    }

    .right {
      text-align: center;
      .qr_code {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
      }
    }
  }
}

@media (max-width: 1200px) {
  .footer_box {
    padding: 40px 30px;
  }
}

@media (max-width: 1000px) {
  .footer_box {
    padding: 30px;
    .footer_top {
      .logo {
        height: 50px;
        width: auto;
      }

      .nav_box {
        .nav_item {
          margin-left: 20px;
          margin-right: 20px;
        }
      }
    }
  }
}
@media (max-width: 800px) {
  .footer_box {
    padding: 15px;
    .footer_top {
      .logo {
        height: 50px;
        width: auto;
      }

      .nav_box {
        display: none;
      }
    }
    .footer_bottom {
      padding-top: 30px;
      display: block;
      .left {
        .text1 {
          padding-top: 30px;
        }
      }
      .right {
        width: 100%;
        padding-top: 30px;
        .qr_code {
          margin-left: auto;
          margin-right: auto;
        }
      }
    }
  }
}
@media (max-width: 550px) {
  .footer_box {
    padding: 15px;
    .footer_top {
      .logo {
        height: 40px;
        width: auto;
      }
    }
    .footer_bottom {
      padding-top: 20px;

      .left {
        .text {
          font-size: 14px;
          img {
            width: 20px;
          }
        }
        .text1 {
          padding-top: 20px;
        }
      }
      .right {
        font-size: 14px;
      }
    }
  }
}
