/*手机*/
/*@media screen and (max-width:600px){*/
/*    */
/*}*/
.content {
    width: 100%;
    display: flex;
}

nav, .hamburger-box {
    display: none;
}

.menu-list a {
    color: darkgray;
    text-decoration: none;
}

.title {
    display: block;
    width: 77%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    float: left;
    font-size: 16px;
}

.right {
    display: block;
    float: right;
    width: 20%;
    text-align: right;
    font-size: 12px;
    color: darkgrey;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    display: flex;
    font-size: 12px;
    line-height: 12px;
}

.select-menu a {
    color: #e6edf3;
}

/*平板*/
@media screen and (max-width: 960px) {
    nav {
        display: flex;
        height: 50px;
        padding: 5px;
    }

    .hamburger-box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        float: left;
        margin: 0 1%;
        overflow: hidden;
        height: 60px;
    }

    .hamburger-box:before {
        content: " ";
        display: block;
        padding-top: 100%;
    }

    .hamburger {
        width: 35px;
        height: 35px;
        cursor: pointer;
    }

    .hamburger .line {
        display: block;
        width: 100%;
        height: 4px;
        border-radius: 4px;
        background-color: #fff;
        margin-bottom: 8px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #hamburger.active .line:nth-child(1) {
        transform: translateY(12px) rotate(-45deg);
    }

    #hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    #hamburger.active .line:nth-child(3) {
        transform: translateY(-12px) rotate(45deg);
    }

    .article-list {
        margin-top: 0;
        color: #e6edf3;
        width: 100%;
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0;
    }

    .article-list li:first-child {
        padding-top: 0;
    }

    .article-list li:last-child {
        padding-bottom: 0;
    }

    .article-list li {
        padding: 10px;
        width: 95%;
    }

    .article-list li a {
        color: #e6edf3;
        text-decoration: none;
    }

    .menu-list {
        display: none;
        width: 20%;
        text-align: center;
        list-style: none;
        padding: 20px;
        background-color: #161b22;
        position: fixed;
        line-height: 40px;
        height: 100%;
        /*display: flex;*/
        flex-direction: column;
        margin-top: 0;
        border-right: 2px solid darkgrey;
    }

}

/*PC*/
@media screen and (min-width: 960px) {

    .article-list {
        margin-left: 15%;
        font-weight: bold;
        color: #e6edf3;
        width: 75%;
        display: flex;
        flex-direction: column;
        line-height: 40px;
    }

    .article-list li a {
        font-weight: bold;
        color: #e6edf3;
        text-decoration: none;
    }

    .menu-list {
        text-align: center;
        list-style: none;
        padding: 20px;
        background-color: #161b22;
        position: fixed;
        line-height: 40px;
        width: 10%;
        height: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 0;
        border-right: 2px solid darkgrey;
    }
}

body {
    background-color: #0d1117;
    margin: 0;
}
