/**
 * 电脑端网盘下载链接布局
 * 目的：在电脑端将网盘下载链接显示为一行两个，移动端保持一行一个
 */

/* 默认一行一个（移动端） */
.download-info-direct .info-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
}

/* 电脑端一行两个 */
@media (min-width: 992px) {
    .download-info-direct {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .download-info-direct .info-item {
        width: 48%;
    }
    
    /* 如果只有一个下载链接，则占满整行 */
    .download-info-direct .info-item:only-child {
        width: 100%;
    }
    
    /* 修复最后一行的间距问题 */
    .download-info-direct .info-item:last-child {
        margin-bottom: 0;
    }
    
    /* 如果链接数量为奇数，确保最后一个链接也有正确的间距 */
    .download-info-direct .info-item:nth-last-child(1):nth-child(odd) {
        margin-bottom: 0;
    }
} 