


















.download-notice {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 15px;
}





/* 简单下载按钮样式 - 内联样式优先 */
.download-container {
    margin: 30px 0;
    padding: 0;
}

.download-container h3 {
    color: #28a745;
    text-align: center;
    margin-bottom: 15px;
}

.download-container .download-link {
    display: block;
    text-align: center;
    margin: 15px 0;
}

/* 确保没有其他下载按钮样式 */
a[class*='download'] {
    all: unset;
}


/* 唯一文件下载区域样式 */
.file-download-box {
    background: #f8f9fa;
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
    position: relative;
}

.file-download-box:before {
    content: '唯一下载区域';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #28a745;
    color: white;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.download-title {
    color: #28a745;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.file-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-row {
    margin: 10px 0;
    display: flex;
}

.info-row .label {
    color: #495057;
    font-weight: bold;
    min-width: 100px;
}

.info-row .value {
    color: #212529;
    flex: 1;
}

.download-button-container {
    text-align: center;
    margin: 20px 0;
}

.download-file-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    min-width: 200px;
}

.download-file-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.download-note {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-top: 15px;
}

/* 确保这是唯一的下载按钮样式 */
a[class*='download']:not(.download-file-btn) {
    display: none !important;
}
