footer {
  width: 100%;
  /* height: 3.84rem; */
  background: #434343;
  /*padding-bottom: .58rem;*/
}

footer .foot {
  background: #222;
  padding: .55rem 0 .26rem;
}

footer .main {
  display: flex;
  /*align-items: flex-end;*/
  justify-content: space-between;
}

footer .left {
  width: 4.11rem;
}

.footLogo {
  width: 2.65rem;
  height: .47rem;
  margin-bottom: .4rem;
}

.footContact h3 {
  font-weight: 400;
  font-size: 0.21rem;
  color: #878787;
  margin-bottom: .14rem;
}

.footContact p {
  font-weight: 400;
  font-size: 0.12rem;
  color: #878787;
  line-height: 0.14rem;
  margin-bottom: .13rem;
}

.footContact a {
  font-weight: 400;
  font-size: 0.12rem;
  color: #878787;
}

.shareBox {
  margin-top: .4rem;
  display: flex;
  gap: .18rem;
}

.shareBox a {
  width: .32rem;
  height: .32rem;
}

footer .right {
  /*padding-bottom: .32rem;*/
  /*padding-bottom: .45rem;*/
  margin-top: .87rem;
  display: flex;
  /*gap: .6rem;*/
  gap: .4rem
}

.footNav a {
  font-weight: 400;
  font-size: 0.12rem;
  color: #878787;
  line-height: 0.2rem;
}

.footNav a.tit {
  font-size: 0.21rem;
  line-height: 1;
  margin-bottom: .19rem;
}

.footB{
     background: #434343;
     height: .58rem;
}

.footB .main{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footB .main .right{
    display: flex;
    margin: 0;
    align-items: center;
}

.footB a{
    font-size: .14rem;
    opacity: .8;
    color: #fff;
}

.backTop {
  position: fixed;
  right: 0;
  bottom: 4.14rem;
  bottom: 10vh;
  width: 0.63rem;
  height: 0.62rem;
  width: 0.4rem;
  height: 0.4rem;
  background: #505050;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
}

.backTop img {
  /*width: .34rem;*/
}

@media screen and (max-width:1024px){
    footer{
        overflow: hidden;
    }
    footer .left{
        width: 100%;
    }
    footer .right{
        display: none;
    }
    .footContact h3{
        font-size: .28rem;
    }
    .footContact p,
    .footContact a{
        font-size: .24rem;
        line-height: 1.2;
    }
    .shareBox a{
        width: .5rem;
        height: .5rem;
    }
    .footB{
        height: auto;
    }
    .footB .main{
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
        padding: .2rem 0;
        gap: .2rem;
    }
    .footB a{
        font-size: .24rem;
        text-align: center;
    }
}