html {
            box-sizing: border-box;

        }
        *, *:before, *:after {
            box-sizing: inherit;
        }

@font-face {
    font-family: 'FZYouSong';
    src: url(/static/WenDingPLMingTi-1.woff2);
}
body {
    background-color: #000; 
    color: #fff; 
    font-family: "FZYouSong"; 
    line-height: 0; 
    margin: 0;
    padding: 20px 20px 80px 20px;
}

h1 {
    text-align: center;
    font-size: 2.2em; 
    font-weight: normal;
    margin-bottom: 20px;
}

ul {
    list-style-type: none; 
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

li {
    margin: 1px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    white-space: nowrap;
    text-overflow: clip;
}

a {
    color: #ffffff;
    text-decoration: none; 
}
a:hover {
    text-decoration: underline; 
}
a::after {
    color: #ffffff;
    text-decoration: none;
}
.text-title{
    font-size: 1.6em; 
    word-break: break-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.published-date {
    font-size: 1.4em; 
}
.text-description {
    font-size: 1em;
    color: #ccc;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.hide{
    margin-top: 100px;
}
.blog-header {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #000;
    font-size: 0.9em;
    color: #aaa;
}

@media screen and (max-width: 600px) {
    html{
        width: 100%;
        overflow-x: hidden;

    }
    body {
        overflow-x: hidden;
        padding: 15px 15px 70px 15px;
    }

    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .text-title {
        font-size: 1.3em; 
    }

    .published-date {
        font-size: 0.9em; 
        padding-left: 0;
        margin-top: 5px;
    }

    .text-description {
        font-size: 0.8em;
    }
    footer{
        text-align: center;
    }
}
