			/* 模拟PPT的过渡质感 */
			.ppt-card {
				transition: transform 0.3s ease, box-shadow 0.3s ease;
			}

			.ppt-card:hover {
				transform: translateY(-5px);
				box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
			}

			/* 自定义滚动条 */
			::-webkit-scrollbar {
				width: 8px;
			}

			::-webkit-scrollbar-track {
				background: #f1f1f1;
			}

			::-webkit-scrollbar-thumb {
				background: #cbd5e1;
				border-radius: 4px;
			}

			::-webkit-scrollbar-thumb:hover {
				background: #94a3b8;
			}