.footer {
    width: 100%;
}

.footer .center {
    width: 18.36rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 上半部分 */
.footer1 {
    width: 100%;
    background: #343F54;
}
.footer1 .center {
    padding: 0.15rem 0;
}
/* 左侧 */
.footer1 .left1 {
    display: flex;
    align-items: center;
}
.footer1 .logo {
    /*width: 2.33rem;*/
    height: 0.37rem;
    margin-right: 2.34rem;
    object-fit: contain;
}
.footer1 .contactss {
    display: flex;
    align-items: center;
}
.footer1 .contactss .item {
    margin-right: 0.6rem;
    display: flex;
    align-items: center;
}
.footer1 .contactss .icon {
    margin-right: 0.1rem;
    height: 0.18rem;
    object-fit: contain;
}
.footer1 .contactss .txt {
    font-size: 0.12rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
}
/* 右侧 */
.footer1 .right1 {
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
}
.footer1 .qrcode {
    width: fit-content;
    margin-left: 0.3rem;
    text-align: center;
}
.footer1 .qrcode img {
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 auto;
    object-fit: contain;
}
.footer1 .qrcode .txt {
    margin-top: 0.1rem;
    font-size: 0.12rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    white-space: nowrap;
}


/* 下半部分 */
.footer2 {
    width: 100%;
    background: #212D45;
}
.footer2 .center {
    padding: 0.35rem 0;
}

/* 左侧 */
.footer2 .left2 {
    display: flex;
    align-items: center;
}
.footer2 .nav {
    position: relative;
    display: block;
    padding: 0 0.17rem;
    font-size: 0.14rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #D9D9D9;
}
.footer2 .nav::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.02rem;
    height: 0.02rem;
    background-color: #fff;
    border-radius: 50%;
}
.footer2 .nav:first-child {
    padding-left: 0;
}
.footer2 .nav:first-child::after {
    display: none;
}
.footer2 .nav:hover {
    font-weight: bold;
}
/* 右侧 */
.footer2 .right2 {
    margin-right: 0.8rem;
    font-size: 0.12rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
}


@media only screen and (max-width: 1800px) {
    .footer .center {
        width: 15rem;
    }
    .footer1 .logo {
        height: 0.45rem;
        margin-right: 1.5rem;
    }
    .footer1 .contactss .item {
        margin-right: 0.4rem;
    }
    .footer1 .contactss .icon {
        height: 18px;
    }
    .footer1 .qrcode img {
        width: 0.8rem;
        height: 0.8rem;
    }
}

@media only screen and (max-width: 1520px) {
    /* 客户说字体有点小，看不清了，所以先适配一下字体，在1500px以下，字体设置成固定大小 */
    .footer1 .contactss .txt {
        font-size: 14px;
    }
    .footer1 .qrcode .txt {
        font-size: 14px;
    }
    .footer2 .nav {
        font-size: 14px;
    }
    .footer2 .right2 {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px){
    footer{
        width: 100%;
    }
    .footer2 .left2{
        /*display: none;*/
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }.footer1{
        width: 100%;
        margin: 0 auto;
    }.footer1 .left1{
        width: 94%;
        height: auto;
        margin: 0 auto;
        margin-bottom: 10px;
    }.footer1 .contactss{
        flex-wrap: wrap;
    }.footer1 .right1{
        margin: 0 auto;
    }.footer .center{
        width: 100%;
        flex-wrap: wrap;
    }.footer2 .right2{
        margin: 0 auto;
    }.footer1 .logo{
        margin-right: 20px !important;
    }.footer1 .contactss .item{
        margin-left: 5px;
        margin-right: 0;
    }.footer2 .nav{
        width: 25%;
        padding-left: 10px;
    }.footer2 .nav:first-child{
        padding-left: 10px;
    }
}



