.myFooter {
  display: flex;
  padding:25px 40px;
  justify-content: space-between;
  gap: 70px;
  align-items: center;
  background: #0062bb;
}

.myFooter .left {
  border-right: 1px solid #aca190;
  padding:0 60px;
  height: fit-content;
}

.myFooter .left .logo {
  width: 100%;
}

.myFooter .left .logo img {
  width: 100%;
  height: auto;
  max-height: 170px;
  object-fit: contain;
}

.myFooter .right {
  display: flex;
  width: calc((100% - 80px) / 2);
  /*align-items: center;*/
  /* flex: 1; */
  gap: 40px;
}
.myFooter .myContainer{
  width: 100%;
  align-items: center;
  max-width:  100%;
}
.myFooter .right .describe {
  color: #FFF;
  flex: auto;
}

.myFooter .right .describe .title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.8;
}

.myFooter .right .describe .text {
  font-size: 14px;
  line-height: 2.1;
}

.myFooter .right .describe .text p {
  color: inherit;
}

.myFooter .right .describe .text p a {
  color: inherit;
  font-size: inherit;
}
.myFooter .right .qrcode{
  max-width: 200px;
  height: auto;
}

@media (max-width:1440px){
  .myFooter .right {
   flex: 1;

  }
}

@media (max-width: 1024px) {
  .myFooter {
    padding: 60px;
    gap: 30px;
  }
  .myFooter .left {
    width: calc((100% - 30px) / 2);
    padding: 30px 40px;
    border-right: 0;
  }
  .myFooter .right {
    /*width: calc((100% - 30px) / 2);*/
    width: 100%;
  }
  
}

@media (max-width: 768px) {
  .myFooter {
    flex-direction: column;
    gap: 10px;
    padding: 20px 15px;
  }
  .myFooter .left {
    padding: 0 15px;
    border-right: 0;
    width: 100%;
  }
  .myFooter .right {
    width: 100%;
    gap: 15px;
  }
  .myFooter .right .describe .title {
    font-size: 24px;
  }
  .myFooter .right .describe .text a{
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 476px) {
  .myFooter .right .qrcode {
    display: none;
  }
  .myFooter .right {
      flex-direction: column;
  }
  .showtit{font-size: 18px;}
  .pagination a{font-size: 14px;}
}
