
/* Footer 部分 */
footer {
    background: #333333;
    padding-top: 200px;
    padding-bottom: 100px;
}
footer .f_logo{
    text-align: center;
}
footer .f_logo img{
    width: 340px;
}
footer .f_concat {
    text-align: center;
}
footer .f_concat .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 40px;
    padding: 20px 0px;
    width: 85%;
    margin: 30px auto 20px;
    font-size: 28px;
    font-weight: bold;
}
footer .f_concat .phone a{
    color: #fff;
}
footer .f_concat .phone img {
    width: 25px;
    height: 25px;
}
footer .f_concat .click {
    color: #fff;
    font-size: 24px;
    border-bottom: 1px solid #fff;
}
footer .friendLink {
    margin-top: 100px;
    text-align: center;
}
footer .friendLink .fl_title {
    color: #aaa;
    font-size: 22px;
}
footer .friendLink .header_nav {
    margin-top: 20px;
}
footer .friendLink .header_nav li {
}
footer .friendLink .header_nav li a {
    color: #fff;
    line-height: 40px;
    font-size: 20px;
}

/* 媒体查询 - 移动端 */
@media screen and (max-width: 767px) {

    /* Footer 部分 */
    footer {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    footer .f_logo img {
        width: 240px;
    }
    footer .f_concat .phone {
        width: 85%;
        font-size: 20px;
        padding: 12px 0;
    }
    footer .f_concat span {
        font-size: 18px;
    }
    footer .friendLink {
        margin-top: 50px;
    }
    footer .friendLink .fl_title {
        font-size: 18px;
    }
    footer .friendLink .header_nav li a {
        font-size: 16px;
        line-height: 30px;
    }
}