/* 下载容器 - 方正外框 */
.dl-item {
    clear: both;
    margin: 20px 0;
    border: 1px dashed #c9c9c9;
    background: #fff;
    text-indent: 0;
}

/* 头部区域 */
.dl-header {
    padding: 0 20px;
    line-height: 38px;
    background-color: #f8f8f8;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.dl-header span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: normal;
}

/* 主体区域 */
.dl-body {
    padding: 25px 20px;
    background-color: #fff;
}

/* 第一行：图标和按钮行 */
.dl-action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

/* 图标 */
.dl-icon {
    font-size: 28px;
    line-height: 1;
    display: inline-block;
}

/* 下载按钮 */
.dl-btn {
    display: inline-block;
    min-width: 140px;
    padding: 0 25px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    line-height: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.dl-btn:hover {
    border-color: #aaa;
    text-decoration: underline;
}

/* 不同网盘按钮悬停颜色 */
.dl-btn-baidu:hover {
    border-color: #3c7eff;
    color: #3c7eff;
}
.dl-btn-aliyun:hover {
    border-color: #ff6a00;
    color: #ff6a00;
}
.dl-btn-quark:hover {
    border-color: #2d8cff;
    color: #2d8cff;
}
.dl-btn-chengton:hover {
    border-color: #00a67c;
    color: #00a67c;
}

/* 禁用按钮 */
.dl-btn-disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}
.dl-btn-disabled:hover {
    border-color: #e1e1e1;
    text-decoration: none;
}

/* 第二行：信息行 */
.dl-info-row {
    text-align: center;
}

/* 提取码 */
.dl-pwd {
    display: inline-block;
    font-size: 13px;
    color: #e67e22;
    background: #fef5e8;
    padding: 4px 12px;
    border-radius: 3px;
    margin: 0 5px;
}

/* 下载次数 */
.dl-count {
    display: inline-block;
    font-size: 13px;
    color: #999;
    margin: 0 5px;
}

/* 底部版权区域 */
.dl-footer {
    padding: 8px 20px 10px;
    text-align: center;
    font-size: 12px;
    color: #999;
    background-color: #fff;
    border-top: 1px solid #eee;
}

/* 错误提示 */
.dl-error {
    color: #d32f2f;
    padding: 10px 15px;
    background: #ffebee;
    border-left: 3px solid #d32f2f;
    margin: 15px 0;
}

/* 响应式 */
@media (max-width: 600px) {
    .dl-body {
        padding: 15px;
    }
    .dl-action-row {
        flex-direction: column;
    }
    .dl-btn {
        width: 100%;
        text-align: center;
    }
}