footer {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/******************************************************************************/

#links {
    margin: 0;
    border-width: 0;
    padding: 2rem 0 1rem 0;

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;


    background: linear-gradient(to bottom, whitesmoke, white);
    box-sizing: border-box;
    box-shadow: 0 0 0.5rem rgb(95,93,93);
}

#links .link {
    margin: 0 0.5rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#links .link img {
    width: 6.5rem;
    height: 6.5rem;

    object-fit: fill;
    object-position: center;
}

#links .link span {
    width: 100%;
    height: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #fff;

    transition-property: all;
    transition-delay: 0s;
    transition-duration: 0.1s;
    transition-timing-function: linear;
}

#links .link:hover span {
    color: #ff8400;
}

/******************************************************************************/

#meta {
    margin: 0;
    border-width: 0;
    padding: .5rem 0;

    width: 100%;

    background: whitesmoke;
}

#meta .meta {
    /* margin: 0 0 0.5rem 0; */
    border-width: 0;
    padding: 0;

    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#meta .meta:last-child {
    margin: 0 0 0 0;
}

#meta .meta a {
    margin: 0 0.5rem;
    border-width: 0;
    padding: 0;

    font-size: 1rem;
    color: #9fa0a0;
    text-decoration: none;
    line-height: 2rem;

    position: relative;
}
/* 动态下划线 */
#meta .meta a::before{
    transition: transform .4s;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ff8400;
    transform: scaleX(0);
    transform-origin: center;
}
#meta .meta a:hover::before{
    transform: scaleX(0.8);
}
#meta #meta-1 a:hover::before{
    transform: scaleX(0);
}
/* 动态下划线 */

#meta #meta-1 a {
    margin: 0 0 0 0;
}

#meta #meta-1 a:after {
    margin: 0;
    border-width: 0;
    padding: 0 0.5rem;

    content: "|";
    color: #9fa0a0 !important;
}

#meta #meta-1 a:last-child:after {
    content: "";
}
