
.footer {
    width: 100%;
    /* background: #0059AB; */
    background-image: url('../images/common/f_bgc.png');
    background-size: cover;
    position: relative;
    z-index: 11;
}
.footer_center{
    width: 15rem;
    margin: 0 auto;
    padding: 1.74rem 0 0.3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* 左侧 */
.f_left {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.f_left::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.46rem;
    width: 100%;
    height: 0.01rem;
    background: rgba(255, 255, 255, 0.4);
}
.f_left .item {
    /*width: 1.7rem;*/
    /*padding-right: 0.7rem;*/
    flex: 0 0 auto;
    width: calc(20% - 0.4rem);
    min-width: 1.8rem;
    padding-right: 0;
    text-align: left;
}
.f_left .item:last-child {
    flex: 0 0 auto;
    width: calc(20% - 0.4rem);
    min-width: 1.8rem;
    padding-right: 0;
}
.f_left .item .tit {
    padding-bottom: 0.2rem;
    font-size: 0.2rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
}
.f_left .item .link {
    /*height: 1.7rem;*/
    margin-top: 0.15rem;
    /*overflow-y: auto;*/
}
.f_left .item .link::-webkit-scrollbar {
    width: 4px;
    height: 1px;
}
.f_left .item .link::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(97, 184, 179, 0.1);
    background: #c4c4c4;
}
.f_left .item .link::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(87, 175, 187, 0.1);
    border-radius: 10px;
    background: #ededed;
}


.f_left .item .link > a {
    display: block;
    /*width: 0.9rem;*/
    font-size: 0.16rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    color: #FFFFFF;
    line-height: 0.4rem;
    word-wrap: break-word;
    word-break: break-word;
}
.f_left .item .link > a:hover {
    font-weight: bold;
}

/* 右侧 */
.f_right {
    width: 100%;
    flex-shrink: 0;
}
.f_right .title {
    padding-bottom: 0.2rem;
    font-size: 0.2rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.4);
}
.f_right .infos {
    margin-top: 0.2rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.f_right .infos .left {
    width: 100%;
}
.f_right .infos .item {
    display: flex;
    align-items: center;
}
.f_right .infos .icon {
    width: 0.24rem;
    height: 0.24rem;
    margin-right: 0.12rem;
    object-fit: contain;
}
.f_right .infos .txt {
    font-size: 0.16rem;
    color: #FFFFFF;
    line-height: 0.3rem;
}
.f_right .infos .code {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.4rem;
}
.f_right .infos .code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* 版权信息 */
.footer_footer {
    width: 100%;
    height: 0.6rem;
    /* border-top: 0.01rem solid #CCCCCC; */
    font-size: 0.14rem;
    color: #CCCCCC;
    text-align: center;
    line-height: 0.6rem;
    background-color: #03539D;
}
.footer_footer a {
    font-size: 0.14rem;
    color: #CCCCCC;
    line-height: 0.6rem;
}

@media only screen and (max-width: 1024px){
    .footer{
    }
    .footer_center{
        width: 100%;
    }
    .f_left{
        display: none;
    }
    .f_right{
        margin:auto;
    }
    .footer_footer{
        line-height: 0.4rem;
        padding-top: 6px;
        font-size: 12px;
        height: 1rem;
    }
    .footer_footer a{
        line-height: normal;
        font-size: 12px;
    }
    .f_right .title{
        font-size: 12px;
    }
    .f_right .infos .txt{
        font-size: 12px;
        line-height: 0.4rem;
    }
}