/*
 * @Author: fegq
 * @Date: 2021-09-25 12:06:33
 * @LastEditors: fegq
 * @LastEditTime: 2021-09-25 12:07:39
 * @Description: This is a check online status!
 * @Version: 0.0.1
 */

body,
p {
    margin: 0;
    padding: 0;
}

.online {
    position: fixed;
    top: -100px;
    width: 100%;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    color: #fff;
    background: #D32D2D;
    text-align: center;
    transition: all .5s;
}

.online i {
    margin-right: 10px;
    color: #fff;
}

.online.active {
    position: relative;
    top: 0;
}

@media all and (max-width: 768px) {
    .online {
        font-size: 12px;
    }

    .online a {
        margin: 0 5px;
    }
}