/* 证书下载按钮样式 */
.certificate-download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
    font-size: 16px;
    box-sizing: border-box;
    width: auto;
    max-width: 100%;
    text-align: center;
}

.certificate-download-btn:hover {
    background: linear-gradient(135deg, #00d4ff, #0080ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
    color: white;
    text-decoration: none;
}

/* 在产品映射详情页中的样式 */
.cloudlode-ar-mirror-display .certificate-download-section {
    margin: 30px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .certificate-download-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .cloudlode-ar-mirror-display .certificate-download-section {
        margin: 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .certificate-download-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}