<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">main{
    min-height: 600px;
}
.info-top{
    display: grid;
    grid-template-columns: 73% 25%;
    grid-column-gap: 2%;
}
.info-top a{
    display: inline-block;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}
.info-top a:hover{
    text-decoration: none;
}
.info-top__cate a{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.8);
    background: white;
    color: black;
}
.info-top__create a{
    box-shadow: 0 1px 3px 0 rgba(244, 120, 32, 0.8);
    background: #f47820;
    color: white;
}
.info-top a.active{
    box-shadow: 0 1px 3px 0 rgba(9, 111, 244, 0.8);
    background: #0e7cf4;
    color: white;
}
.chat-room{
    box-shadow: 0 1px 3px 0 rgba(71, 57, 244, 0.8)!important;
    background: #5026f4!important;
    color: white!important;
}
.avatar {
    width: 50px;
    height: 50px;
    background-color: #f39c12;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}
.avatar-small{
    width: 25px;
    height: 25px;
    background-color: #f39c12;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}
.list-post{
    display: table-row-group;
}
.post-item {
    display: table;
    table-layout: fixed;
    border-top: 1px solid #e0e0e0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.post-item &gt; div {
    display: table-cell;
    vertical-align: top;
    padding: 15px 15px;
}
.post-item__type{
    width: 100px;
    height: 80px;
    font-size: 14px;
}
.post-item__thumb{
    width: 80px;
}
.post-item__info-title{
    font-size: 20px;
    color: #f47820;
    font-weight: 700;
}
.post-item__info-title:hover{
    text-decoration: none;
}
.post-item__info-desc{
    font-size: 12px;
    color: #76818d;
}
.post-item__views{
    width: 150px;
    font-size: 14px;
    color: #76818d;
}
.post-item__update-time{
    font-size: 14px;
    color: #76818d;
}
.post-item__author{
    width: 60px;
}
@media only screen and (max-width: 768px) {
    .post-item__info,.post-item__views{
        display: block!important;
    }
    .post-item__info{
        padding-bottom: 0!important;
    }
    .post-item__views{
        padding-top: 0!important;
        width: 100%!important;
    }
    .post-item__update-time{
        display: none!important;
    }
    .post-item__views div{
        display: inline!important;
    }
    .post-item__views div:first-child::after{
        content: "\00A0\00B7\20";
        color: #76818d;
    }
    .post-item__thumb{
        vertical-align: middle!important;
    }
}
@media only screen and (max-width: 500px) {
    .post-item &gt; div {
        padding: 10px 10px;
    }
    .avatar {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .post-item__thumb {
        width: 55px;
    }
    .post-item__type {
        width: 65px;
        font-size: 12px;
    }
    .post-item__info-title {
        font-size: 16px;
    }
}</pre></body></html>