.content .article-list ul {min-height:500px;}

.content .article-list .list-item{
    border-bottom: 1px solid #e8e8e8;
    margin-top: 12px;
}

.content .article-list .list-item a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 0;
    justify-content: space-between;
}

.content .article-list .list-item a:hover{
    color: var(--main-theme-color);
}

.content .article-list .list-item a::before {
    content:"";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background-color: var(--main-theme-color);
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
}

.content .article-list .list-item a:hover::before {
    width: 100%;
}





.content .article-list .list-item a .date {
    margin-right: 20px;
}

.content .article-list .list-item a .date span {
    padding: 0 11px;
    color: var(--main-theme-color);
    position: relative;
    
    white-space: nowrap;
}

.content .article-list .list-item a .date span::before {
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--main-theme-color);
}

.content .article-list .list-item a .date span::after {
    content:"";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--main-theme-color);
}

.content .detail .edit-info span {
    margin: 0 10px;
}

.content .detail .description p {
    margin-bottom: 30px;
    line-height: 1.75;
    font-size: 16px;
}

.content .detail .description p:has(img) {
    text-align: center;
}

.content .detail .description table{margin:0 auto;max-width: -webkit-fill-available;}
.content .pic-list .list-item {
    margin-bottom: 30px;
}

.content .pic-list .list-item .image {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
}

.content .pic-list .list-item .image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}




.content .pic-list .list-item .title {
    padding: 22px;
    background-color: #efefef;
}

.content .pic-list .list-item:hover .image img {
    transform: scale(1.125);
    -webkit-transform: scale(1.125);
    -moz-transform: scale(1.125);
    -ms-transform: scale(1.125);
    -o-transform: scale(1.125);
}

.content .pic-list .list-item:hover .title {
    color: #fff;
    background-color: var(--main-theme-color);
}