.watt-archive {
    padding: 3.125em 0 6.125em 0;
}

.watt-archive__content {
    display: flex;
    flex-direction: column;

    gap: 2.5em;
}

.watt-archive__content-article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    padding-bottom: 3em;
    border-bottom: 1px solid rgba(135, 150, 165, 0.075);
}

.watt-archive__content-article-detail {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.watt-archive__content-article-thumbnail {
    width: 45%;
    height: 100%;
}

.watt-archive__content-article-detail-title-link{
    font-size: 1.2em;
    line-height: 1.6em;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watt-archive__content-article-detail-excerpt {
    font-size: 0.8125em;
    line-height: 2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.watt-archive__content-article-detail-excerpt p {
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(0,0,0,0.6);
}


.watt-archive__content-article-detail-info-time {
    font-size: 0.75em;
    line-height: 1.4em;
    color: rgba(0,0,0,0.6);
}

.watt-archive__content-article-thumbnail-img {
    width: 100%;
    height: 20em;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0,0,0, 0.03);
    transition: transform .5s ease;
}

.watt-archive__content-article-thumbnail-img:hover {
    transform: scale(1.01);
}

/*fenye*/
.watt-pagenav {
    display: flex;
    justify-content:center
}
.watt-pagenav .page-numbers {
    color: #ffffff;
    position:relative;
    display:inline-block;
    margin:0 16px 0 0;
    padding:8px 14px;
    border-radius:4px;
    background:var(--watt-gray-light);
    font-size:12px
}
.watt-pagenav .page-numbers.current,.page-numbers:hover{
    background:var(--watt-blue-light);
    color: #ffffff;
}
.watt-pagenav .page-numbers:last-child{
    margin:0
}

@media(max-width: 800px) {
    .watt-archive__content-article-thumbnail-img {
        height: 12em;
    }
}