koala-app.css ==================== /* ===== Koala Web 自定义样式 ===== */ .koala-container { display: flex; flex-wrap: wrap; gap: 24px; padding: 24px; background: linear-gradient(135deg, #f9f9f8 0%, #f0f0ec 100%); border-radius: 16px; margin: 24px 0; } .koala-card { flex: 1 1 280px; background: #ffffff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.2s ease, box-shadow 0.2s ease; } .koala-card:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); } .koala-icon { width: 48px; height: 48px; border-radius: 12px; background: #e8f5e9; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; } .koala-title { font-size: 18px; font-weight: 600; color: #2d2d2d; margin-bottom: 8px; } .koala-text { font-size: 14px; line-height: 1.6; color: #666060; } .koala-button { display: inline-block; background: #2d8f4e; color: #ffffff; padding: 10px 24px; border-radius: 24px; text-decoration: none; font-weight: 500; transition: background 0.2s; } .koala-button:hover { background: #237a3f; } .koala-badge { display: inline-block; background: #fff3e0; color: #e65100; padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 500; margin-bottom: 12px; } .koala-divider { height: 1px; background: linear-gradient(to right, transparent, #e0e0d8, transparent); margin: 24px 0; } @media (max-width: 768px) { .koala-container { padding: 16px; gap: 16px; } }