.footer {
    width: 100%;
    background-color: #ECECEC;
}
.footer_center{
    width: 14rem;
    margin: 0 auto;
    padding: 0.8rem 0 0.5rem;
    display: flex;
    justify-content: space-between;
}
/* 左侧 */
.footer_left .footer_logo {
    display: block;
    width: 3.6rem;
    height: 0.9rem;
}
.footer_left .footer_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer_left .share_box {
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
}
.footer_left .share_box > a {
    position: relative;
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.1rem;
    /*overflow: hidden;*/
}
.footer_left .share_box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.footer_left .share_box .qrcode {
    position: absolute;
    left: 50%;
    top: calc(100% + 0.1rem);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: unset;
    transform: translateX(-50%);
}
.footer_left .authority {
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.12rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}
.footer_left .authority img {
    width: 1rem;
    height: 0.3rem;
    margin-left: 0.1rem;
    object-fit: contain;
}
.footer_left .authority a:first-child img {
    margin-left: 0.2rem;
}



/* 右侧 */
.footer_right {
    margin-top: 0.1rem;
    display: flex;
    align-items: flex-start;
}
.footer_right .mode:first-child {
    margin-right: 1.2rem;
}
.footer_right .title {
    font-size: 0.18rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}
.footer_right .items {
    margin-top: 0.15rem;
}
.footer_right .item {
    display: block;
    font-size: 0.14rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 0.4rem;
}
.footer_right .person:hover {
    color: rgb(20,126,251);
}
.footer_right .container {
    display: flex;
}
.footer_right .friendLink .items {
    margin-right: 0.4rem;
}
.footer_right .friendLink .items:last-child {
    margin-right: 0;
}





/* 版权 */
.footer_footer {
    width: 100%;
    height: 0.4rem;
    background: #E5E5E5;
    text-align: center;
    line-height: 0.4rem;
    font-size: 0.12rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    
}
.footer_footer a {
    font-size: 0.12rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}




@media only screen and (max-width:1024px){
    .footer_center{
        width: 100%;
        padding: 0;
        flex-direction: column
    }
    .footer_left{
        width: 100%;
        padding: 15px;
    }
    .footer_right{
        /*display: none;*/
        justify-content: center;
        margin-bottom: 15px;
    }
    .footer_right .mode:first-child{
        display: none;
    }
    .footer_footer{
        height: auto!important;
        padding: 15px;
        font-size: 12px;
    }
    .footer_left .share_box{
        flex-wrap: wrap;
        /*justify-content: center;*/
    }
    .footer_left .share_box > a{
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
        margin-right: 15px;
    }
    .footer_left .authority{
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer_left .authority a{
        width: 33%;
        margin: 15px 0 0;
        height: 30px;
    }
    .footer_left .authority a img{
        margin: 0;
        height: 100%;
        object-fit: contain;
    }
    .footer_left .authority img{
        width: 100%;
        height: auto;
        margin: 0;
    }
    .footer_footer a{
        font-size: 12px;
    }
    .footer_left .share_box .qrcode{
        z-index: 100;
    }
    .footer_right .title{
        font-size: 16px;
    }
    .footer_right .item{
        font-size: 14px;
        line-height: 1.5;
    }
    .person{
        display: none!important;
    }
}