 /* 基础下载按钮样式 */
        .disk-download-btn {
            display: inline-block;
            padding: 8px 16px;
            margin: 4px 4px 4px 0;
            border-radius: 4px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 不同网盘的专属样式 */
        .disk-btn-quark {
            background-color: #007bff;
            color: white;
        }
        .disk-btn-quark:hover {
            background-color: #0056b3;
        }

        .disk-btn-xunlei {
            background-color: #ff6700;
            color: white;
        }
        .disk-btn-xunlei:hover {
            background-color: #e05a00;
        }

        .disk-btn-baidu {
            background-color: #2383e2;
            color: white;
        }
        .disk-btn-baidu:hover {
            background-color: #1967b3;
        }

        /* 点击态统一样式 */
        .disk-download-btn:active {
            transform: scale(0.98);
        }