/*# sourceMappingURL=blog.css.map */
*{
    color: #292b2d;
}
.select-container{
    height: fit-content;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 1px 0 0 #eaeaea;
    padding: 2vh;
}
.blog-container{
    padding-inline: 14vw;
    background-color: #fff;
}
.select-box{
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.select-box .select-title{
    font-size: 18px;
    font-weight: bold;
}
.select-box .opr-list{
    display: flex;
    gap: 20px;
}
.blog-contain{
    background: white;
    margin-top: 1px;
}
#blogList{
    display: block;
    margin: auto;
}
.card-item{
    display: flex;
}
.card-item{
    height: 20vh;
    min-height: 180px;
    overflow: hidden;
    box-sizing: border-box;
    gap: 15px;
    padding: 18px 0px;
    box-shadow: 0 1px 0 0 #eaeaea;
}
.card-item .card-item-img{
    height: 100%;
    width: 250px;
    min-width: 250px;
}
.card-item .card-item-img img{
    height: 100%;
    width: 100%;
}
.card-item-content {
    padding: 10px 0px;
    display: grid;
}
h2.card-item-title {
    font-weight: 700;
    overflow: hidden;
    height: fit-content;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 超过两行显示省略号 */
    -webkit-box-orient: vertical;
}
.card-item-remark{
    font-size: 16px;
    color: #494747;
    overflow: hidden;
    height: fit-content;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card-item-desc{
    display: flex;
    align-items: center;
}
.card-item-desc *{
    position: relative;
    font-size: 14px;
    color: #333;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 20px;
}
#page{
    margin: 20px auto 30px;
    width: fit-content;
}
.date-line-tipc{
    height: 16px;
    margin: auto 10px;
    width: 1px;
    border-left: 1px solid #333;
}

.blog-contain{
    background: white;
    margin-top: 1px;
}
.blog-content{
    margin: auto;
    padding: 50px 0px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 1px;
}
.blog-content .blog-time{
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin: 20px 0px;
    display: block;
}
.spilt-pop-title{
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin: 25px 0px;
}


@media screen and (max-width: 600px) {
    .blog-container{
        padding-inline: 6vw;
    }
    #blogList{
        grid-template-columns: 1fr!important;
    }
    .blog-content{
        padding: 0px 10px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 900px) {
    .blog-container{
        padding-inline: 6vw;
    }
    #blogList{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0px 10px;
    }
    .card-item .card-item-img {
        height: 275px;
        width: 100%;
        min-width: 250px;
    }
    .card-item{
        display: grid;
        width: 100%;
        height: auto;
    }
    .card-item-content {
        gap: 10px;
    }
    .card-item-content{
        padding: unset;
    }
}
img{
    max-width: 100%;
}
