|
|
@@ -0,0 +1,287 @@
|
|
|
+:root {
|
|
|
+ font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
|
+ color: #1f2937;
|
|
|
+ background: linear-gradient(135deg, #f5f7fb 0%, #e8eef9 100%);
|
|
|
+ line-height: 1.5;
|
|
|
+ font-weight: 400;
|
|
|
+}
|
|
|
+
|
|
|
+* {
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+body {
|
|
|
+ margin: 0;
|
|
|
+ min-width: 320px;
|
|
|
+ min-height: 100vh;
|
|
|
+}
|
|
|
+
|
|
|
+a {
|
|
|
+ color: inherit;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+button {
|
|
|
+ font: inherit;
|
|
|
+}
|
|
|
+
|
|
|
+#app {
|
|
|
+ min-height: 100vh;
|
|
|
+}
|
|
|
+
|
|
|
+.app-shell {
|
|
|
+ max-width: 1080px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 32px 20px 48px;
|
|
|
+}
|
|
|
+
|
|
|
+.app-header {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ gap: 24px;
|
|
|
+ margin-bottom: 28px;
|
|
|
+}
|
|
|
+
|
|
|
+.eyebrow {
|
|
|
+ margin: 0 0 8px;
|
|
|
+ font-size: 13px;
|
|
|
+ font-weight: 700;
|
|
|
+ letter-spacing: 0.08em;
|
|
|
+ text-transform: uppercase;
|
|
|
+ color: #2563eb;
|
|
|
+}
|
|
|
+
|
|
|
+.app-header h1 {
|
|
|
+ margin: 0;
|
|
|
+ font-size: clamp(28px, 5vw, 40px);
|
|
|
+}
|
|
|
+
|
|
|
+.nav {
|
|
|
+ display: flex;
|
|
|
+ gap: 12px;
|
|
|
+ padding: 8px;
|
|
|
+ border-radius: 999px;
|
|
|
+ background: rgba(255, 255, 255, 0.7);
|
|
|
+ backdrop-filter: blur(12px);
|
|
|
+}
|
|
|
+
|
|
|
+.nav a {
|
|
|
+ padding: 10px 16px;
|
|
|
+ border-radius: 999px;
|
|
|
+ color: #4b5563;
|
|
|
+ transition: all 0.2s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.nav a.router-link-active {
|
|
|
+ background: #2563eb;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.app-main {
|
|
|
+ display: grid;
|
|
|
+}
|
|
|
+
|
|
|
+.breadcrumb {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ gap: 8px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ padding: 12px 16px;
|
|
|
+ border-radius: 16px;
|
|
|
+ background: rgba(255, 255, 255, 0.72);
|
|
|
+ color: #64748b;
|
|
|
+}
|
|
|
+
|
|
|
+.breadcrumb-link {
|
|
|
+ color: #2563eb;
|
|
|
+ font-weight: 600;
|
|
|
+}
|
|
|
+
|
|
|
+.breadcrumb-current {
|
|
|
+ color: #0f172a;
|
|
|
+ font-weight: 600;
|
|
|
+}
|
|
|
+
|
|
|
+.breadcrumb-separator {
|
|
|
+ color: #94a3b8;
|
|
|
+}
|
|
|
+
|
|
|
+.panel {
|
|
|
+ padding: 28px;
|
|
|
+ border-radius: 24px;
|
|
|
+ background: rgba(255, 255, 255, 0.82);
|
|
|
+ box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
|
|
|
+}
|
|
|
+
|
|
|
+.panel h2 {
|
|
|
+ margin-top: 0;
|
|
|
+ margin-bottom: 12px;
|
|
|
+ font-size: 28px;
|
|
|
+}
|
|
|
+
|
|
|
+.panel p {
|
|
|
+ margin: 0 0 16px;
|
|
|
+ color: #4b5563;
|
|
|
+}
|
|
|
+
|
|
|
+.actions {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ gap: 12px;
|
|
|
+ margin-top: 24px;
|
|
|
+}
|
|
|
+
|
|
|
+.button {
|
|
|
+ border: 0;
|
|
|
+ border-radius: 12px;
|
|
|
+ padding: 12px 18px;
|
|
|
+ background: #2563eb;
|
|
|
+ color: #fff;
|
|
|
+ cursor: pointer;
|
|
|
+ transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.button:hover {
|
|
|
+ transform: translateY(-1px);
|
|
|
+ box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
|
|
|
+}
|
|
|
+
|
|
|
+.button.secondary {
|
|
|
+ background: #e5edff;
|
|
|
+ color: #1d4ed8;
|
|
|
+}
|
|
|
+
|
|
|
+.card-grid {
|
|
|
+ display: grid;
|
|
|
+ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
|
+ gap: 16px;
|
|
|
+ margin-top: 24px;
|
|
|
+}
|
|
|
+
|
|
|
+.card {
|
|
|
+ padding: 20px;
|
|
|
+ border-radius: 18px;
|
|
|
+ background: #f8fafc;
|
|
|
+}
|
|
|
+
|
|
|
+.link-card {
|
|
|
+ display: block;
|
|
|
+ transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.link-card:hover {
|
|
|
+ transform: translateY(-2px);
|
|
|
+ box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
|
|
|
+}
|
|
|
+
|
|
|
+.card strong {
|
|
|
+ display: block;
|
|
|
+ margin-bottom: 8px;
|
|
|
+ font-size: 15px;
|
|
|
+}
|
|
|
+
|
|
|
+.list-block {
|
|
|
+ display: grid;
|
|
|
+ gap: 14px;
|
|
|
+ margin-top: 24px;
|
|
|
+}
|
|
|
+
|
|
|
+.list-item {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ gap: 20px;
|
|
|
+ padding: 20px;
|
|
|
+ border-radius: 18px;
|
|
|
+ background: #f8fafc;
|
|
|
+ transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
|
+}
|
|
|
+
|
|
|
+.list-item:hover {
|
|
|
+ transform: translateY(-2px);
|
|
|
+ box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
|
|
|
+}
|
|
|
+
|
|
|
+.list-item p {
|
|
|
+ margin: 8px 0 0;
|
|
|
+}
|
|
|
+
|
|
|
+.code {
|
|
|
+ padding: 2px 8px;
|
|
|
+ border-radius: 999px;
|
|
|
+ background: #dbeafe;
|
|
|
+ color: #1d4ed8;
|
|
|
+}
|
|
|
+
|
|
|
+.text-link {
|
|
|
+ color: #2563eb;
|
|
|
+ font-weight: 600;
|
|
|
+}
|
|
|
+
|
|
|
+.login-page {
|
|
|
+ min-height: calc(100vh - 64px);
|
|
|
+ display: grid;
|
|
|
+ place-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.login-card {
|
|
|
+ width: min(100%, 440px);
|
|
|
+ padding: 36px 32px;
|
|
|
+ border-radius: 28px;
|
|
|
+ background: rgba(255, 255, 255, 0.88);
|
|
|
+ box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
|
|
|
+}
|
|
|
+
|
|
|
+.login-card h2 {
|
|
|
+ margin: 0 0 12px;
|
|
|
+ font-size: 32px;
|
|
|
+}
|
|
|
+
|
|
|
+.login-copy {
|
|
|
+ margin: 0 0 20px;
|
|
|
+ color: #4b5563;
|
|
|
+}
|
|
|
+
|
|
|
+.login-form {
|
|
|
+ display: grid;
|
|
|
+ gap: 14px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+}
|
|
|
+
|
|
|
+.input {
|
|
|
+ width: 100%;
|
|
|
+ border: 1px solid #dbe3f1;
|
|
|
+ border-radius: 14px;
|
|
|
+ padding: 14px 16px;
|
|
|
+ background: #fff;
|
|
|
+ color: #111827;
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+
|
|
|
+.input:focus {
|
|
|
+ border-color: #2563eb;
|
|
|
+ box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
|
|
|
+}
|
|
|
+
|
|
|
+@media (max-width: 720px) {
|
|
|
+ .app-header {
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: flex-start;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav {
|
|
|
+ width: 100%;
|
|
|
+ overflow-x: auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .list-item {
|
|
|
+ align-items: flex-start;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+
|
|
|
+ .login-card {
|
|
|
+ padding: 28px 20px;
|
|
|
+ }
|
|
|
+}
|