			.download-module {
				max-width: 1517px;
				margin: 20px auto;
				background: #fff;
				border-radius: 8px;
				box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
			}

			.download-item {
				display: flex;
				justify-content: space-between;
				align-items: center;
				padding: 16px 24px;
				border-bottom: 1px solid #eee;
			}

			/* 添加行hover效果 */
			.download-item:hover {
				background-color: #f8f8f8;
				transition: background-color 0.2s ease;
			}

			.download-item:last-child {
				border-bottom: none;
			}

			.file-info {
				flex-grow: 1;
				display: grid;
				grid-template-columns: 1.5fr repeat(4, 1fr);
				/* 新增名称列 */
				gap: 15px;
			}

			.info-item {
				display: flex;
				flex-direction: column;
			}

			.info-label {
				font-size: 12px;
				color: #666;
				margin-bottom: 4px;
			}

			.info-content {
				font-size: 14px;
				color: #333;
				font-weight: 500;
			}

			.info-content.name {
				color: #2c3e50;
				font-weight: 600;
			}

			.download-btn {
				background: #007bff;
				color: white;
				padding: 8px 20px;
				border: none;
				border-radius: 4px;
				cursor: pointer;
				transition: background 0.3s;
				text-decoration: none;
				/* 去除a标签下划线 */
				display: inline-block;
			}

			.download-btn:hover {
				background: #0056b3;
				cursor: pointer;
			}