.detail_cont {
    padding: 50px 0;
}

.detail_head {
    padding-bottom: 40px;
    border-bottom: 1px solid #BBBBBB;
    margin-bottom: 40px;
}

.detail_head .category_badge {
    margin-bottom: 16px;
}

.detail_head .detail_title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

.download_file_wrap {
    margin-bottom: 20px;
}

.download_file_wrap .file_acc_btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.download_file_wrap .file_acc_btn .icon {
    display: flex;
    width: 20px;
    opacity: 0.8;
    transform: rotate(90deg);
    transition: 0.5s;
}

.download_file_wrap .file_acc_btn.active .icon {
    transform: rotate(-90deg);
}

.download_file_wrap .download_list {
    margin-top: 8px;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
}

.download_file_wrap .list_item {
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
    align-items: center;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    gap: 12px;
}

.download_file_wrap .list_item:hover {
    background-color: #F8F8F8;
}

.download_file_wrap .list_item .icon {
    display: flex;
    width: 12px;
    /* margin-top: 4px; */
    flex-shrink: 0;
}

.detail_list_wrap {
    padding-top: 40px;
    border-top: 1px solid #BBBBBB;
    margin-top: 40px;
}

.pagination {
    margin-top: 40px;
}

.detail_banner_wrap {
    margin-top: 40px;
}

@media screen and (max-width:1023px) {
    .detail_cont {
        padding: 32px 0;
    }

    .detail_head {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .detail_head .detail_title {
        font-size: 24px;
    }

    .detail_list_wrap {
        padding-top: 32px;
        margin-top: 32px;
    }

    .detail_banner_wrap {
        margin-top: 32px;
    }
}