@charset "utf-8";
/* CSS comment */

        /* 容器 */
        .download-container {
            max-width: 900px;
            margin: 0 auto;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
			
        }

        /* 标题 */
        .list-title {
            padding: 18px 24px;
            font-size: 20px;
            font-weight: 600;
            color: #333;
            background-color: #fafbfc;
            border-bottom: 1px solid #e8e8e8;
        }

        /* 列表项 */
        .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
        }

        /* 左侧：文件名 + 时间 */
        .file-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .file-name {
            font-size: 14px;
            color: #333;
            font-weight: 500;
			font-family: "Microsoft YaHei", sans-serif;
        }

        .file-time {
            font-size: 12px;
            color: #909399;
			font-family: "Microsoft YaHei", sans-serif;
        }

        /* 下载按钮 */
        .download-btn {
            padding: 8px 16px;
            background-color: #409eff;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            transition: background 0.2s;
			font-family: "Microsoft YaHei", sans-serif;
        }

        .download-btn:link {
            color: #fff;
        }
		
		.download-btn:hover {
            background-color: #66b1ff;
        }

        .download-btn:active {
            background-color: #337ecc;
        }