.deqing_download_list {
    padding: var(--content-gap-lg) 0 var(--content-gap);
    background: #EDEDED;
}

.deqing_download_list_nav {
    display: flex;
    min-width: 100%;
    width: max-content;
}
.deqing_download_list_header{
    width: 100%;
    overflow-x: auto;
}
.deqing_download_list_header::-webkit-scrollbar{
    display: none;
}
.deqing_download_list_nav_item {
    flex: 1;
    min-width: 250px;
    padding: calc(var(--text-gap) + 6px) 0;
    background: #F5F7F9;
    color: var(--primary-color);
    text-align: center;
    font-size: var(--text-flag-size);
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deqing_download_list_nav_item.active {
    background: var(--primary-color);
    color: #fff;
}

.deqing_download_list_content {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--text-gap-sm) * 2);
    margin-top: calc(var(--content-gap-lg) + 5px);
}

.deqing_download_list_content_item {
    position: relative;
    width: calc((100% - var(--text-gap-sm) * 4) / 3);
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(var(--text-gap-sm) * 2);
    padding: var(--content-gap-md) var(--content-gap-md);
}

.deqing_download_list_content_item img {
    width: 15.5%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.deqing_download_list_content_item_title {
    color: #111;
    text-align: center;
    font-size: var(--text-flag-size);
    font-weight: 500;
    line-height: 1.2;
    word-break: break-word;
    height: calc(1.2 * var(--text-flag-size) * 2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.deqing_download_list_content_item_desc {
    color: rgba(17, 17, 17, 0.80);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    word-break: break-word;
    height: calc(1.71 * 14px * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.deqing_download_list_content_item_link {
    color: var(--primary-color);
    font-size: var(--text-size);
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: calc(var(--text-gap-lg) / 2) calc(var(--text-gap-lg) * 2);
    border: 1px solid var(--primary-color);
}

@media screen and (max-width: 992px) {
    .deqing_download_list_content_item {
        width: calc((100% - var(--text-gap-sm) * 2) / 2);
    }
}