.gbc-app {
--gbc-brand: #2563eb; --gbc-brand-strong: #1d4ed8; --gbc-brand-deep: #1e40af; --gbc-brand-soft: #eff6ff; --gbc-brand-tint: #dbeafe; --gbc-ink-900: #0f172a; --gbc-ink-700: #334155; --gbc-ink-500: #64748b; --gbc-ink-300: #94a3b8; --gbc-paper: #f8fafc; --gbc-card: #ffffff;
--gbc-line: #e2e8f0; --gbc-accent: #dc2626; --gbc-accent-soft: #fef2f2; --gbc-ok: #16a34a; --gbc-ok-soft: #f0fdf4; --gbc-gold: #fcd34d; --gbc-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
--gbc-radius: 14px;
font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
} .gbc-fab {
position: fixed;
bottom: 28px;
right: 28px;
z-index: 99990;
display: flex;
align-items: center;
gap: 9px;
padding: 13px 20px;
border: none;
border-radius: 999px;
background: var(--gbc-brand);
color: #fff;
font-size: 15px;
font-weight: 600;
letter-spacing: 0.02em;
cursor: pointer;
box-shadow: var(--gbc-shadow);
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.gbc-app[data-fab-position="left"] .gbc-fab { right: auto; left: 28px; }
.gbc-fab:hover { transform: translateY(-2px); background: var(--gbc-brand-strong); box-shadow: 0 16px 46px rgba(37, 99, 235, 0.32); }
.gbc-fab:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.45); outline-offset: 2px; }
.gbc-fab-ico { display: inline-flex; align-items: center; color: #fff; }
.gbc-fab-label { line-height: 1; } .gbc-overlay {
position: fixed;
inset: 0;
z-index: 100000;
background: rgba(15, 23, 42, 0.52);
backdrop-filter: blur(3px);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.gbc-overlay[hidden] { display: none; }
.gbc-modal {
width: 100%;
max-width: 720px;
max-height: 92vh;
background: var(--gbc-paper);
border-radius: var(--gbc-radius);
box-shadow: var(--gbc-shadow);
display: flex;
flex-direction: column;
overflow: hidden;
animation: gbc-pop 0.22s ease;
}
@keyframes gbc-pop {
from { opacity: 0; transform: translateY(14px) scale(0.98); }
to { opacity: 1; transform: none; }
} .gbc-modal-head {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 24px;
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
color: #fff;
}
.gbc-head-kicker {
margin: 0 0 4px;
font-size: 11px;
letter-spacing: 0.24em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.72);
}
.gbc-head-title { margin: 0; font-size: 20px; font-weight: 700; letter-spacing: 0.01em; }
.gbc-close {
border: none;
background: rgba(255, 255, 255, 0.14);
color: #fff;
width: 34px;
height: 34px;
border-radius: 50%;
cursor: pointer;
font-size: 14px;
line-height: 1;
transition: background 0.15s ease;
}
.gbc-close:hover { background: rgba(255, 255, 255, 0.26); } .gbc-modal-body {
flex: 1;
overflow-y: auto;
padding: 8px 24px 16px;
}
.gbc-sec {
background: var(--gbc-card);
border: 1px solid var(--gbc-line);
border-radius: 12px;
padding: 16px 18px;
margin-top: 14px;
}
.gbc-sec-title {
margin: 0 0 14px;
font-size: 13px;
font-weight: 700;
color: var(--gbc-brand-strong);
letter-spacing: 0.04em;
display: flex;
align-items: center;
justify-content: space-between;
} .gbc-grid { display: grid; gap: 12px; }
.gbc-grid-2 { grid-template-columns: repeat(2, 1fr); }
.gbc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.gbc-grid-4 { grid-template-columns: repeat(4, 1fr); margin-top: 12px; } .gbc-field { display: flex; flex-direction: column; gap: 6px; }
.gbc-field-label { font-size: 12px; color: var(--gbc-ink-500); }
.gbc-input {
width: 100%;
box-sizing: border-box;
border: 1px solid var(--gbc-line);
border-radius: 8px;
padding: 10px 12px;
font-size: 14px;
color: var(--gbc-ink-900);
background: #fff;
transition: border-color 0.15s ease, box-shadow 0.15s ease;
font-family: inherit;
}
.gbc-input:focus { outline: none; border-color: var(--gbc-brand); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14); }
.gbc-num { font-variant-numeric: tabular-nums; text-align: right; }
.gbc-input::placeholder { color: var(--gbc-ink-300); } .gbc-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 12px; }
.gbc-seg {
display: inline-flex;
background: #f1f5f9;
border-radius: 9px;
padding: 3px;
gap: 2px;
}
.gbc-seg-btn {
border: none;
background: transparent;
padding: 8px 16px;
border-radius: 7px;
font-size: 13px;
font-weight: 600;
color: var(--gbc-ink-500);
cursor: pointer;
transition: all 0.15s ease;
font-family: inherit;
}
.gbc-seg-btn.is-active { background: #fff; color: var(--gbc-brand-strong); box-shadow: 0 1px 4px rgba(15, 23, 42, 0.14); } .gbc-limit {
font-size: 14px;
font-weight: 700;
color: var(--gbc-ink-700);
font-variant-numeric: tabular-nums;
padding: 11px 12px;
border: 1px dashed #cbd5e1;
border-radius: 8px;
background: var(--gbc-brand-soft);
}
.gbc-warn {
margin-top: 12px;
padding: 10px 12px;
border-radius: 8px;
background: var(--gbc-accent-soft);
color: var(--gbc-accent);
font-size: 13px;
font-weight: 600;
} .gbc-subgroup { display: flex; flex-direction: column; gap: 10px; }
.gbc-subgroup-title {
font-size: 12px;
font-weight: 700;
color: var(--gbc-ink-700);
letter-spacing: 0.04em;
padding-bottom: 4px;
border-bottom: 1px solid var(--gbc-line);
}
.gbc-note {
font-size: 12px;
color: #1e40af;
background: var(--gbc-brand-soft);
border: 1px dashed #bfdbfe;
border-radius: 8px;
padding: 8px 12px;
margin-top: 12px;
} .gbc-disclaimer {
margin-top: 12px;
font-size: 12px;
line-height: 1.7;
color: var(--gbc-ink-500);
text-align: center;
padding: 10px 12px;
background: #f8fafc;
border: 1px solid var(--gbc-line);
border-radius: 8px;
} .gbc-btn {
border: none;
border-radius: 9px;
padding: 11px 18px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.15s ease;
font-family: inherit;
}
.gbc-btn:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.45); outline-offset: 2px; }
.gbc-btn-brand { background: var(--gbc-brand); color: #fff; }
.gbc-btn-brand:hover { background: var(--gbc-brand-strong); }
.gbc-btn-ghost { background: transparent; color: var(--gbc-brand-strong); border: 1px solid var(--gbc-line); }
.gbc-btn-ghost:hover { background: var(--gbc-brand-soft); border-color: var(--gbc-brand); }
.gbc-btn-block { width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; }
.gbc-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.gbc-btn-ai { font-size: 15px; line-height: 1; } .gbc-add {
border: none;
background: transparent;
color: var(--gbc-brand-strong);
font-size: 12px;
font-weight: 600;
cursor: pointer;
padding: 0;
font-family: inherit;
}
.gbc-add:hover { text-decoration: underline; }
.gbc-extras { display: flex; flex-direction: column; gap: 10px; }
.gbc-extra-row { display: grid; grid-template-columns: 1fr 130px 34px; gap: 10px; align-items: center; }
.gbc-extra-del {
border: none;
background: transparent;
color: var(--gbc-ink-300);
cursor: pointer;
font-size: 16px;
padding: 4px;
}
.gbc-extra-del:hover { color: var(--gbc-accent); } .gbc-table-wrap { overflow-x: auto; }
.gbc-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.gbc-table th {
text-align: left;
font-weight: 600;
color: var(--gbc-ink-500);
font-size: 12px;
padding: 8px 10px;
border-bottom: 1px solid var(--gbc-line);
}
.gbc-table td { padding: 9px 10px; border-bottom: 1px solid var(--gbc-paper); color: var(--gbc-ink-700); }
.gbc-table tr:last-child td { border-bottom: none; }
.gbc-ta-r { text-align: right !important; }
.gbc-num { font-variant-numeric: tabular-nums; }
.gbc-row-over td { color: var(--gbc-accent); font-weight: 600; }
.gbc-row-over td:first-child::after { content: "（超标）"; font-size: 11px; font-weight: 400; } .gbc-total {
margin-top: 14px;
padding: 16px 18px;
border-radius: 10px;
background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
color: #fff;
}
.gbc-total-main { display: flex; align-items: baseline; justify-content: space-between; }
.gbc-total-label { font-size: 13px; color: rgba(255, 255, 255, 0.72); }
.gbc-total-amount {
font-size: 30px;
font-weight: 800;
color: #fff;
font-variant-numeric: tabular-nums;
letter-spacing: 0.01em;
}
.gbc-total-amount::before { content: "¥"; font-size: 20px; font-weight: 700; margin-right: 3px; opacity: 0.85; }
.gbc-total-caps { margin-top: 6px; font-size: 12px; color: var(--gbc-gold); letter-spacing: 0.04em; } .gbc-analyze { background: transparent; border: 1px dashed var(--gbc-line); }
.gbc-analysis-out { margin-top: 14px; font-size: 13px; line-height: 1.7; color: var(--gbc-ink-700); white-space: pre-wrap; }
.gbc-analysis-out h4 { margin: 12px 0 4px; font-size: 13px; color: var(--gbc-brand-strong); } .gbc-actions {
display: flex;
gap: 10px;
padding: 14px 24px;
border-top: 1px solid var(--gbc-line);
background: var(--gbc-card);
}
.gbc-actions .gbc-btn { flex: 1; } .gbc-toast {
position: absolute;
bottom: 84px;
left: 50%;
transform: translateX(-50%);
background: var(--gbc-ink-900);
color: #fff;
padding: 10px 18px;
border-radius: 8px;
font-size: 13px;
box-shadow: var(--gbc-shadow);
white-space: nowrap;
}
.gbc-toast[hidden] { display: none; } .gbc-loading { display: inline-block; animation: gbc-spin 0.9s linear infinite; }
@keyframes gbc-spin { to { transform: rotate(360deg); } } @media (max-width: 640px) {
.gbc-fab { bottom: 18px; right: 18px; padding: 11px 16px; font-size: 14px; }
.gbc-app[data-fab-position="left"] .gbc-fab { right: auto; left: 18px; }
.gbc-overlay { padding: 8px; }
.gbc-modal { max-height: 96vh; }
.gbc-grid-3, .gbc-grid-4 { grid-template-columns: repeat(2, 1fr); }
.gbc-grid-2 { grid-template-columns: 1fr; }
.gbc-total-amount { font-size: 24px; }
.gbc-actions { flex-wrap: wrap; }
.gbc-actions .gbc-btn { flex: 1 1 30%; }
}
@media (prefers-reduced-motion: reduce) {
.gbc-fab, .gbc-modal, .gbc-btn { transition: none; animation: none; }
}.wp-copy-protected {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
} .wp-copy-protected input,
.wp-copy-protected textarea {
-webkit-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
} @media print {
body {
display: none !important;
}
} .wp-copy-rights-tooltip {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 15px 25px;
border-radius: 5px;
font-size: 14px;
z-index: 999999;
pointer-events: none;
opacity: 0;
animation: fadeInOut 2s ease-in-out;
} .wp-copy-rights-watermark {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999;
opacity: 0.1;
transform: rotate(-45deg);
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
white-space: nowrap;
user-select: none;
} @keyframes fadeInOut {
0% { opacity: 0; transform: translate(-50%, -60%); }
10% { opacity: 1; transform: translate(-50%, -50%); }
90% { opacity: 1; transform: translate(-50%, -50%); }
100% { opacity: 0; transform: translate(-50%, -40%); }
} @media screen and (max-width: 768px) {
.wp-copy-rights-tooltip {
width: 80%;
max-width: 300px;
font-size: 12px;
padding: 10px 15px;
text-align: center;
}
.wp-copy-rights-watermark {
font-size: 16px;
}
}:root { --primary: #2563eb;
--primary-dark: #1d4ed8;
--primary-soft: #eff6ff; --danger: #dc2626;
--danger-soft: #fef2f2;
--warning: #d97706;
--warning-soft: #fffbeb;
--success: #15803d;
--success-soft: #f0fdf4;
--info: #0e7490;
--info-soft: #ecfeff;
--live: #c2410c;
--live-soft: #fff7ed; --bg: #f6f7f9;
--bg-card: #ffffff;
--bg-hover: #f4f6f8;
--border: #e5e7eb;
--border-strong: #d1d5db;
--text-main: #1f2937;
--text-sub: #6b7280;
--text-mute: #9ca3af; --cv1: linear-gradient(135deg, #475569 0%, #334155 100%);
--cv2: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
--cv3: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
--cv4: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
--cv5: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
--cv6: linear-gradient(135deg, #155e75 0%, #164e63 100%);
--cv7: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
--cv8: linear-gradient(135deg, #9d174d 0%, #831843 100%); --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.04);
--shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
--shadow-md: 0 2px 8px 0 rgba(0,0,0,0.06);
--shadow-lg: 0 8px 24px 0 rgba(0,0,0,0.08); --radius-sm: 5px;
--radius: 8px;
--radius-md: 10px;
--radius-lg: 14px; --space-1: 4px;
--space-2: 8px;
--space-3: 12px;
--space-4: 16px;
--space-5: 20px;
--space-6: 24px;
--space-8: 32px;
--space-10: 40px;
--space-12: 48px; --font-sans: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
--dur-fast: 120ms;
--dur: 200ms;
--dur-slow: 320ms;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: clip; }
body {
font-family: var(--font-sans);
font-size: 15px;
line-height: 1.65;
background: var(--bg);
color: var(--text-main);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--primary); color: #fff; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } } .navbar {
background: rgba(255,255,255,0.92);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.navbar-inner {
max-width: 1240px;
margin: 0 auto;
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 17px;
color: var(--text-main);
flex-shrink: 0;
}
.logo-icon {
width: 36px; height: 36px;
border-radius: var(--radius-sm);
background: var(--primary);
color: #fff;
display: flex; align-items: center; justify-content: center;
font-size: 16px; font-weight: 700;
}
.logo-text {
display: flex;
flex-direction: column;
justify-content: center;
line-height: 1.2;
}
.logo-text small {
display: block;
font-size: 11px;
font-weight: 400;
color: var(--text-sub);
letter-spacing: 0.5px;
margin-top: 2px;
line-height: 1.1;
}
.logo-img {
height: 38px;
width: auto;
max-width: 160px;
object-fit: contain;
border-radius: 4px;
}
.nav-links {
display: flex;
gap: 2px;
flex: 1;
justify-content: center;
min-width: 0;
overflow-x: auto;
scrollbar-width: none; padding-top: 12px;
margin-top: -12px;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
position: relative;
padding: 8px 0;
margin: 0 10px;
font-size: 14px;
font-weight: 500;
color: var(--text-sub);
transition: color var(--dur-fast) var(--ease-out);
white-space: nowrap;
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-links a.active::after {
content: "";
position: absolute;
left: 2px;
right: 2px;
bottom: -1px;
height: 2px;
border-radius: 2px;
background: var(--primary);
} .nav-badge {
position: absolute;
top: -5px;
right: -2px;
font-size: 9px;
line-height: 1;
font-weight: 600;
color: #fff;
background: #e47470;
padding: 2px 5px;
border-radius: 999px;
white-space: nowrap;
pointer-events: none;
}
.nav-right {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.search-box {
display: flex;
align-items: center;
gap: 7px;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 7px 12px;
background: var(--bg);
width: 160px;
transition: .2s;
}
.search-box:focus-within { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.search-box input {
border: none; background: none; outline: none;
flex: 1; font-size: 14px; color: var(--text-main);
font-family: inherit;
}
.search-box input::placeholder { color: var(--text-mute); }
.search-box svg { color: var(--text-mute); flex-shrink: 0; } .btn-publish {
display: inline-flex;
align-items: center;
gap: 5px;
background: var(--primary);
color: #fff;
padding: 8px 12px;
border-radius: var(--radius);
font-size: 14px;
font-weight: 600;
white-space: nowrap;
transition: all .18s;
border: none;
cursor: pointer;
}
.btn-publish:hover { background: var(--primary-dark); }
.btn-publish:active { transform: scale(0.97); } .nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 40px;
height: 40px;
padding: 9px;
background: none;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
cursor: pointer;
flex-shrink: 0;
}
.nav-toggle span {
display: block;
height: 2px;
width: 100%;
background: var(--text-main);
border-radius: 2px;
transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } .nav-mobile {
display: none;
flex-direction: column;
padding: 8px 16px 16px;
border-top: 1px solid var(--border);
background: var(--bg-card);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
padding: 12px 8px;
border-radius: var(--radius-sm);
font-size: 15px;
font-weight: 500;
color: var(--text-main);
text-decoration: none;
}
.nav-mobile a.active { color: var(--primary); background: var(--primary-soft); font-weight: 600; }
.nav-mobile .nav-badge { display: none; } .publish-modal-mask {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
width: 100%; height: 100%;
background: rgba(15,23,42,0.5);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
opacity: 0;
visibility: hidden;
transition: opacity .2s, visibility .2s;
}
.publish-modal-mask.open { opacity: 1; visibility: visible; }
.publish-modal {
background: #fff;
border-radius: var(--radius-lg);
width: 100%;
max-width: 520px;
max-height: 86vh;
overflow-y: auto;
box-shadow: var(--shadow-lg);
padding: 28px 30px;
position: relative;
transform: translateY(12px);
transition: transform .22s;
}
.publish-modal-mask.open .publish-modal { transform: translateY(0); }
.publish-modal-close {
position: absolute;
top: 14px;
right: 16px;
width: 32px; height: 32px;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: var(--text-sub);
font-size: 20px;
line-height: 1;
transition: .15s;
border: none;
background: none;
cursor: pointer;
}
.publish-modal-close:hover { background: var(--bg-hover); color: var(--text-main); }
.publish-modal h2 {
font-size: 20px;
font-weight: 700;
color: var(--text-main);
margin-bottom: 16px;
padding-right: 28px;
}
.publish-modal .publish-modal-body {
font-size: 15px;
line-height: 1.8;
color: var(--text-sub);
white-space: pre-wrap;
word-break: break-word;
}
.publish-modal .publish-modal-body p { margin-bottom: 12px; }
.publish-modal-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.publish-modal-actions a,
.publish-modal-actions button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 10px 18px;
border-radius: var(--radius);
font-size: 14px;
font-weight: 600;
transition: .15s;
text-decoration: none;
}
.publish-modal-actions .btn-primary { background: var(--primary); color: #fff; }
.publish-modal-actions .btn-primary:hover { background: var(--primary-dark); }
.publish-modal-actions .btn-ghost { background: var(--bg); color: var(--text-sub); border: 1px solid var(--border); }
.publish-modal-actions .btn-ghost:hover { border-color: var(--border-strong); color: var(--text-main); } .publish-modal--form { max-width: 680px; }
.publish-modal-sub { font-size: 13px; color: var(--text-sub); margin: -8px 0 18px; line-height: 1.6; }
.publish-form .pf-block {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 16px;
margin-bottom: 20px;
}
.pf-title {
grid-column: 1 / -1;
font-size: 14px;
font-weight: 700;
color: var(--text-main);
margin: 0 0 10px;
padding-bottom: 6px;
border-bottom: 1px solid var(--border);
}
.pf-title small { font-weight: 400; color: var(--text-sub); font-size: 12px; }
.pf-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.pf-full { grid-column: 1 / -1; }
.pf-field > span { font-size: 13px; color: var(--text-main); font-weight: 500; }
.pf-field > span em { color: #e11d48; font-style: normal; }
.pf-field input,
.pf-field textarea,
.pf-field select {
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 9px 12px;
font-size: 14px;
font-family: inherit;
background: #fff;
color: var(--text-main);
width: 100%;
box-sizing: border-box;
}
.pf-field input:focus,
.pf-field textarea:focus,
.pf-field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.pf-field textarea { resize: vertical; }
.pf-radios, .pf-checks { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.pf-radio, .pf-check { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-main); cursor: pointer; }
.pf-radio input, .pf-check input { width: auto; margin: 0; }
.pf-actions { margin-top: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
.pf-actions button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 10px 22px;
border-radius: var(--radius);
font-size: 14px;
font-weight: 600;
cursor: pointer;
border: none;
transition: .15s;
}
.pf-actions .btn-primary { background: var(--primary); color: #fff; }
.pf-actions .btn-primary:hover { background: var(--primary-dark); }
.pf-actions .btn-primary:disabled { opacity: .6; cursor: not-allowed; }
.pf-actions .btn-ghost { background: var(--bg); color: var(--text-sub); border: 1px solid var(--border); }
.pf-actions .btn-ghost:hover { border-color: var(--border-strong); color: var(--text-main); }
.pf-contact { margin-top: 14px; font-size: 13px; color: var(--text-sub); }
.pf-contact a { color: var(--primary); text-decoration: none; }
.pf-message { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius); font-size: 14px; line-height: 1.6; }
.pf-message.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.pf-message.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
@media (max-width: 520px) {
.publish-form .pf-block { grid-template-columns: 1fr; }
} .hero {
background: #eef4ff;
padding: 56px 24px 64px;
border-bottom: 1px solid var(--border);
}
.hero-inner {
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
display: flex;
gap: 36px;
align-items: center;
}
.hero-main {
flex: 1;
min-width: 0;
}
.hero-ads {
flex: 0 0 480px;
max-width: 480px;
}
.hero h1 {
font-size: clamp(28px, 4vw, 38px);
font-weight: 700;
color: var(--text-main);
letter-spacing: -0.5px;
margin-bottom: 12px;
line-height: 1.25;
}
.hero h1 .accent { color: var(--primary); }
.hero p {
font-size: 16px;
color: var(--text-sub);
margin-bottom: 32px;
max-width: 680px;
}
.hero-stats {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.stat {
flex: 1;
min-width: 108px;
max-width: 180px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 10px 16px;
box-shadow: var(--shadow-sm);
}
.stat b {
display: block;
font-size: 18px;
font-weight: 700;
color: var(--primary);
font-feature-settings: "tnum";
}
.stat span {
font-size: 11px;
color: var(--text-sub);
} .ad-carousel {
position: relative;
border-radius: var(--radius-md);
overflow: hidden;
aspect-ratio: 16 / 9;
background: #fff;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border);
}
.ad-slide {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
opacity: 0;
transition: opacity .5s ease;
display: block;
}
.ad-slide.active { opacity: 1; }
.ad-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.ad-dots {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 6px;
z-index: 2;
}
.ad-dot {
width: 8px;
height: 8px;
border-radius: 4px;
background: rgba(255,255,255,.65);
cursor: pointer;
transition: all .25s;
}
.ad-dot.active {
width: 20px;
background: #fff;
} .container {
max-width: 1240px;
margin: 0 auto;
padding: 32px 24px 80px;
} .archive-head { margin-bottom: 20px; }
.archive-head h1 { font-size: 24px; margin: 0 0 6px; color: var(--text-main); }
.archive-desc { color: var(--text-sub); font-size: 14px; }
.archive-intro {
font-size: 15px;
line-height: 1.8;
color: var(--text-main);
margin: 0;
padding: 14px 20px;
background: var(--primary-soft);
border-left: 4px solid var(--primary);
border-radius: var(--radius);
} .filter-bar {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 14px;
flex-wrap: wrap;
}
.filter-bar + .filter-bar {
margin-top: -6px;
margin-bottom: 24px;
}
.filter-label {
font-size: 12px;
font-weight: 600;
color: var(--text-sub);
padding-right: 4px;
flex-shrink: 0;
}
.chips {
display: flex;
gap: 6px;
flex-wrap: wrap;
flex: 1;
min-width: 0;
}
.chip {
padding: 4px 11px;
border-radius: 999px;
background: var(--bg-card);
border: 1px solid var(--border);
font-size: 12px;
font-weight: 500;
color: var(--text-sub);
cursor: pointer;
transition: all .15s;
white-space: nowrap;
text-decoration: none;
display: inline-block;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active {
background: var(--primary);
color: #fff;
border-color: var(--primary);
}
.chip.specialty {
font-size: 11px;
padding: 3px 9px;
}
.sort-select {
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 7px 14px;
background: var(--bg-card);
font-size: 13px;
color: var(--text-main);
font-family: inherit;
cursor: pointer;
} .filter-panel {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 6px 20px;
margin-bottom: 24px;
box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.fp-row {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 12px 0;
}
.fp-row + .fp-row { border-top: 1px dashed var(--border); }
.fp-row-last { align-items: center; }
.fp-label {
font-size: 13px;
font-weight: 600;
color: var(--text-main);
flex-shrink: 0;
width: 76px;
line-height: 26px;
}
.fp-opts {
display: flex;
align-items: center;
gap: 4px 6px;
flex-wrap: wrap;
flex: 1;
min-width: 0;
}
.fp-opt {
padding: 3px 12px;
border-radius: 6px;
font-size: 13px;
color: var(--text-sub);
line-height: 20px;
white-space: nowrap;
text-decoration: none;
transition: all .15s;
}
.fp-opt:hover { color: var(--primary); background: var(--primary-soft); }
.fp-opt.active {
background: var(--primary);
color: #fff;
font-weight: 500;
}
.fp-kw-form {
display: flex;
align-items: center;
gap: 10px;
flex: 1;
min-width: 0;
}
.fp-kw-input {
flex: 1;
max-width: 340px;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 7px 14px;
font-size: 13px;
font-family: inherit;
color: var(--text-main);
background: var(--bg-card);
outline: none;
}
.fp-kw-input:focus { border-color: var(--primary); }
.fp-kw-btn {
border: none;
border-radius: var(--radius);
background: var(--primary);
color: #fff;
font-size: 13px;
font-weight: 500;
padding: 8px 22px;
cursor: pointer;
font-family: inherit;
transition: opacity .15s;
}
.fp-kw-btn:hover { opacity: .88; }
@media (max-width: 720px) {
.filter-panel { padding: 2px 14px; }
.fp-label { width: 100%; line-height: 24px; }
.fp-row { flex-direction: column; gap: 6px; }
} .grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 18px;
}
.card {
background: var(--bg-card);
border-radius: var(--radius);
overflow: hidden;
border: 1px solid var(--border);
box-shadow: var(--shadow);
transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
display: flex;
flex-direction: column;
}
.card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
border-color: var(--border-strong);
} .cover {
position: relative;
overflow: hidden;
min-height: 158px;
display: flex;
flex-direction: column;
text-decoration: none;
color: #fff;
} .cover.cv1 { background: var(--cv1); }
.cover.cv2 { background: var(--cv2); }
.cover.cv3 { background: var(--cv3); }
.cover.cv4 { background: var(--cv4); }
.cover.cv5 { background: var(--cv5); }
.cover.cv6 { background: var(--cv6); }
.cover.cv7 { background: var(--cv7); }
.cover.cv8 { background: var(--cv8); }
.cover-auto {
position: relative;
z-index: 1;
flex: 1;
display: flex;
flex-direction: column;
padding: 12px 14px 14px;
} .cover-flag {
align-self: flex-start;
display: inline-block;
padding: 3px 10px;
border-radius: 6px;
font-size: 11px;
font-weight: 700;
line-height: 1.5;
white-space: nowrap;
background: #fff;
color: #1f2937;
box-shadow: 0 1px 4px rgba(0, 0, 0, .16);
}
.cover-flag.urgent   { color: #dc2626; }
.cover-flag.soon     { color: #d97706; }
.cover-flag.normal   { color: #1f2937; }
.cover-flag.ongoing  { color: #059669; }
.cover-flag.past     { background: rgba(17, 24, 39, .78); color: #fff; }
.cover-flag.pdf      { color: #dc2626; letter-spacing: .5px; } .cover-mid {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 8px 2px 2px;
}
.cover-org {
font-size: 11.5px;
line-height: 1.5;
color: rgba(255, 255, 255, .92);
margin-bottom: 7px;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
max-width: 100%;
}
.cover-headline {
font-size: 14.5px;
font-weight: 800;
line-height: 1.5;
letter-spacing: .2px;
text-shadow: 0 1px 3px rgba(0, 0, 0, .22);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.cover-sub {
margin-top: 8px;
font-size: 11.5px;
color: rgba(255, 255, 255, .88);
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
max-width: 100%;
} .cover-content {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
padding: 10px 12px;
display: flex;
flex-direction: column;
justify-content: space-between;
color: #fff;
}
.cover-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 6px;
}
.cover-cat {
display: inline-block;
padding: 2px 7px;
border-radius: 4px;
background: rgba(255,255,255,0.95);
color: var(--text-main);
font-size: 11px;
font-weight: 600;
backdrop-filter: blur(8px);
line-height: 1.5;
}
.cover-badge {
display: inline-flex;
align-items: center;
gap: 2px;
padding: 2px 7px;
border-radius: 4px;
font-size: 10px;
font-weight: 600;
backdrop-filter: blur(8px);
line-height: 1.5;
white-space: nowrap;
}
.cover-badge.urgent { background: var(--danger); color: #fff; }
.cover-badge.soon { background: rgba(255,255,255,0.95); color: var(--warning); }
.cover-badge.normal { background: rgba(255,255,255,0.85); color: var(--text-main); }
.cover-badge.past { background: rgba(0,0,0,0.55); color: #fff; }
.cover-badge.ongoing { background: var(--success); color: #fff; }
.card-body {
padding: 12px 14px 14px;
flex: 1;
display: flex;
flex-direction: column;
} .card-title {
font-size: 15px;
font-weight: 700;
line-height: 1.45;
color: var(--text-main);
margin-bottom: 10px;
letter-spacing: 0;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--primary); }
.card-title {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.tags {
display: flex;
gap: 4px;
flex-wrap: wrap;
margin-bottom: 8px;
min-height: 18px;
}
.tag {
display: inline-block;
padding: 3px 8px;
border-radius: 4px;
font-size: 12px;
font-weight: 500;
line-height: 1.4;
white-space: nowrap;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
.tag-blue { background: var(--primary-soft); color: var(--primary); }
.tag-purple { background: #f3e8ff; color: #7e22ce; }
.tag-green { background: var(--success-soft); color: var(--success); }
.tag-orange { background: var(--warning-soft); color: var(--warning); }
.tag-red { background: var(--danger-soft); color: var(--danger); }
.tag-gray { background: #f3f4f6; color: var(--text-sub); }
.meta {
display: flex;
flex-direction: column;
gap: 4px;
margin-bottom: 8px;
flex: 1;
}
.meta-row {
display: flex;
align-items: center;
gap: 5px;
font-size: 11px;
color: var(--text-sub);
line-height: 1.4;
}
.meta-row svg { flex-shrink: 0; color: var(--text-mute); width: 11px; height: 11px; }
.meta-row .label { color: var(--text-mute); white-space: nowrap; }
.meta-row b { color: var(--text-main); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.meta-row.urgent { color: var(--danger); font-weight: 600; }
.meta-row.urgent b { color: var(--danger); }
.source-row {
border-top: 1px dashed var(--border);
padding-top: 6px;
margin-top: 2px;
font-size: 11px;
}
.source-row svg { color: #7e22ce; }
.source-link {
color: #7e22ce;
font-weight: 500;
transition: .15s;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.source-link:hover { color: #581c87; text-decoration: underline; }
.live-row {
border-top: 1px dashed var(--border);
padding-top: 6px;
margin-top: 2px;
font-size: 11px;
}
.live-row .live-tag {
background: var(--live-soft);
color: var(--live);
padding: 1px 6px;
border-radius: 4px;
font-weight: 600;
font-size: 10px;
margin-left: 4px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
display: inline-block;
}
.card-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 8px;
border-top: 1px solid var(--border);
margin-top: auto;
}
.views {
display: flex;
align-items: center;
gap: 3px;
font-size: 10px;
color: var(--text-mute);
}
.btn-apply {
background: var(--primary);
color: #fff;
padding: 4px 10px;
border-radius: 6px;
font-size: 11px;
font-weight: 600;
transition: all .15s;
display: inline-block;
white-space: nowrap;
}
.btn-apply:hover { background: var(--primary-dark); } @media (max-width: 1080px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .grid { grid-template-columns: 1fr; } } .single-wrap {
max-width: 1240px;
margin: 0 auto;
padding: 32px 24px 80px;
display: grid;
grid-template-columns: 1fr 340px;
gap: 32px;
}
.single-content {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 36px 40px;
}
.single-title {
font-size: 28px;
font-weight: 700;
color: var(--text-main);
line-height: 1.35;
margin-bottom: 16px;
letter-spacing: -0.3px;
}
.single-cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.single-cat-chip {
display: inline-block;
padding: 4px 10px;
border-radius: 6px;
font-size: 12px;
font-weight: 600;
text-decoration: none;
transition: opacity var(--dur-fast, .15s);
}
.single-cat-chip:hover { opacity: .85; }
.single-cat-chip--solid { background: var(--primary); color: #fff; }
.single-cat-chip--soft { background: var(--primary-soft); color: var(--primary); }
.single-meta-top {
display: flex;
align-items: center;
gap: 16px;
padding-bottom: 20px;
border-bottom: 1px solid var(--border);
margin-bottom: 24px;
font-size: 13px;
color: var(--text-sub);
}
.single-meta-top span { display: inline-flex; align-items: center; gap: 5px; }
.single-meta-top b { color: var(--text-main); font-weight: 500; }
.single-content .entry-content {
font-size: 15.5px;
line-height: 1.8;
color: var(--text-main);
}
.single-content .entry-content p { margin-bottom: 16px; }
.single-content .entry-content h2 {
font-size: 20px;
font-weight: 600;
color: var(--text-main);
margin: 28px 0 12px;
}
.single-content .entry-content h3 {
font-size: 17px;
font-weight: 600;
color: var(--text-main);
margin: 20px 0 10px;
} .single-sidebar {
position: sticky;
top: 80px;
align-self: start;
}
.info-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 22px;
box-shadow: var(--shadow-sm);
}
.info-card h3 {
font-size: 16px;
font-weight: 700;
color: var(--text-main);
margin-bottom: 16px;
padding-bottom: 12px;
border-bottom: 1px solid var(--border);
}
.info-card ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.info-card li {
display: flex;
flex-direction: column;
gap: 4px;
}
.info-card li span {
font-size: 12px;
color: var(--text-sub);
font-weight: 500;
}
.info-card li b {
font-size: 14px;
color: var(--text-main);
font-weight: 500;
word-break: break-all;
}
.info-card .urgent-text { color: var(--danger); font-weight: 600; }
.info-card .live-platform {
background: var(--live-soft);
color: var(--live);
padding: 4px 10px;
border-radius: var(--radius-sm);
font-size: 12px;
display: inline-block;
width: fit-content;
font-weight: 600;
}
.info-card .source-link {
color: var(--primary);
font-weight: 500;
font-size: 13px;
}
.btn-apply-sidebar {
display: block;
text-align: center;
background: var(--primary);
color: #fff;
padding: 12px 20px;
border-radius: var(--radius);
font-size: 14px;
font-weight: 600;
margin-top: 18px;
transition: .15s;
}
.btn-apply-sidebar:hover { background: var(--primary-dark); } .btn-pdf {
display: block;
width: 100%;
text-align: center;
background: var(--danger);
color: #fff;
padding: 12px 20px;
border-radius: var(--radius);
font-size: 14px;
font-weight: 600;
margin-top: 18px;
transition: .15s;
border: none;
cursor: pointer;
text-decoration: none;
}
.btn-pdf:hover { background: #b91c1c; transform: translateY(-1px); }
.btn-pdf-download { background: var(--primary); margin-top: 10px; }
.btn-pdf-download:hover { background: var(--primary-dark); } .btn-pdf-missing { opacity: .74; cursor: not-allowed; }
.btn-pdf-missing:hover { background: var(--danger); opacity: 1; transform: none; } .btn-apply-sidebar.btn-apply-secondary {
background: #fff;
color: var(--primary);
border: 1.5px solid var(--primary);
margin-top: 10px;
}
.btn-apply-sidebar.btn-apply-secondary:hover {
background: var(--primary-soft);
color: var(--primary-dark);
} @media print {
.navbar, .single-sidebar, .post-nav, .footer, .btn-pdf, .tags { display: none !important; }
.single-wrap { display: block; max-width: 100%; padding: 0; }
.single-content { box-shadow: none; border: none; max-width: 100%; padding: 0; }
body { background: #fff; }
} .footer {
background: var(--bg-card);
border-top: 1px solid var(--border);
padding: 28px 24px;
text-align: center;
color: var(--text-sub);
font-size: 12px;
}
.footer-line {
margin: 0 0 6px;
line-height: 1.6;
font-size: 12px;
}
.footer-line a { color: var(--text-sub); text-decoration: none; }
.footer-line a:hover { color: var(--primary); text-decoration: underline; }
.footer-line:last-child { margin-bottom: 0; } @media (max-width: 1080px) { .nav-links, .search-box { display: none; }
.nav-toggle { display: flex; }
.nav-right { margin-left: auto; }
.single-wrap { grid-template-columns: 1fr; }
.single-sidebar { position: static; }
.hero-inner { gap: 24px; }
.hero-ads { flex-basis: 380px; max-width: 380px; }
}
@media (max-width: 860px) {
.navbar-inner { padding: 12px 16px; gap: 12px; }
.hero { padding: 36px 18px 44px; }
.hero-inner { flex-direction: column; align-items: stretch; gap: 24px; padding: 0 18px; }
.hero-ads { flex: none; max-width: none; }
.container { padding: 24px 18px 60px; }
.grid { grid-template-columns: 1fr; }
.filter-bar { flex-direction: column; align-items: stretch; }
.single-content { padding: 24px 20px; }
.single-title { font-size: 22px; }
} #fdy-results { position: relative; min-height: 120px; }
#fdy-results.fdy-loading { opacity: .45; pointer-events: none; transition: opacity .2s ease; }
.fdy-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.fdy-pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 38px;
height: 38px;
padding: 0 12px;
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text-main);
background: var(--bg-card);
font-size: 14px;
text-decoration: none;
transition: all .2s ease;
}
.fdy-pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.fdy-pagination .page-numbers.current { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; cursor: default; }
.fdy-pagination .page-numbers.dots { border: none; background: transparent; min-width: auto; padding: 0 4px; } .about-page { max-width: 860px; }
.about-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 40px 44px;
box-shadow: var(--shadow-sm);
}
.about-title { font-size: 26px; margin: 0 0 24px; color: var(--text-main); }
.about-section { margin-bottom: 28px; }
.about-section:last-child { margin-bottom: 0; }
.about-section h2 {
font-size: 18px;
margin: 0 0 10px;
color: var(--text-main);
padding-left: 12px;
border-left: 3px solid var(--primary);
}
.about-body { font-size: 15px; line-height: 1.9; color: var(--text-sub); }
.about-body p { margin-bottom: 12px; }
.about-empty { color: var(--text-sub); }
@media (max-width: 860px) {
.about-card { padding: 24px 20px; }
.about-title { font-size: 22px; }
} .calendar-page { max-width: 1100px; }
.cal-month-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.cal-month-tab {
display: flex;
flex-direction: column;
align-items: center;
padding: 8px 14px;
border-radius: 8px;
background: var(--bg-card);
border: 1px solid var(--border);
text-decoration: none;
min-width: 60px;
transition: .15s;
}
.cal-month-tab .cn { font-size: 14px; font-weight: 600; color: var(--text-main); }
.cal-month-tab .en { font-size: 11px; color: var(--text-sub); margin-top: 2px; }
.cal-month-tab:hover { border-color: var(--primary); }
.cal-month-tab.active { background: var(--primary); border-color: var(--primary); }
.cal-month-tab.active .cn { color: #fff; }
.cal-month-tab.active .en { color: rgba(255,255,255,.85); } .cal-month-tab.has-events { position: relative; border-color: var(--primary); }
.cal-month-tab .cnt {
position: absolute;
top: -6px; right: -6px;
min-width: 18px; height: 18px;
padding: 0 5px;
border-radius: 9px;
background: #ef4444;
color: #fff;
font-size: 11px;
line-height: 18px;
text-align: center;
font-weight: 600;
}
.cal-month-tab.active .cnt { background: #fff; color: var(--primary); }
.cal-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 14px; }
.cal-nav-title { font-size: 17px; font-weight: 700; color: var(--text-main); text-align: center; }
.cal-nav-sub { display: block; font-size: 12px; font-weight: 400; color: var(--text-sub); margin-top: 3px; } .cal-legend { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }
.cal-legend-item { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-sub); }
.cal-legend-item i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; }
.cal-nav-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px; height: 34px;
border-radius: 8px;
background: var(--primary);
color: #fff;
font-size: 18px;
text-decoration: none;
transition: .15s;
}
.cal-nav-btn:hover { background: var(--primary-dark); }
.cal-grid-wrap {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
margin-bottom: 28px;
}
.cal-grid { width: 100%; border-collapse: collapse; table-layout: fixed; }
.cal-grid th {
background: #f8fafc;
padding: 10px 6px;
font-size: 13px;
font-weight: 600;
color: var(--text-sub);
border-bottom: 1px solid var(--border);
text-align: center;
}
.cal-cell {
border: 1px solid #eef2f7;
vertical-align: top;
padding: 8px 8px 10px;
height: 96px;
cursor: pointer;
transition: background .15s;
}
.cal-cell:hover { background: #f8fafc; }
.cal-cell.cal-out { background: #fafbfc; cursor: default; }
.cal-cell.cal-out:hover { background: #fafbfc; }
.cal-cell.cal-out .cal-daynum { color: #cbd5e1; }
.cal-daynum { font-size: 13px; color: var(--text-main); display: block; margin-bottom: 6px; }
.cal-cell.cal-today { background: var(--primary-soft); }
.cal-cell.cal-cell-active { box-shadow: inset 0 0 0 2px var(--primary); }
.cal-event {
display: block;
font-size: 12px;
padding: 3px 6px;
border-radius: 4px;
border-left: 3px solid;
margin-bottom: 4px;
text-decoration: none;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
transition: .15s;
}
.cal-event:hover { filter: brightness(.96); }
.cal-more { font-size: 11px; color: var(--text-sub); }
.cal-detail-area { margin-top: 8px; }
.cal-detail-title {
display: flex;
align-items: center;
font-size: 15px;
font-weight: 600;
color: var(--text-main);
margin-bottom: 14px;
}
.cal-detail-bar {
display: inline-block;
width: 5px; height: 18px;
background: var(--primary);
border-radius: 3px;
margin-right: 8px;
}
.cal-detail-card { border-radius: 10px; padding: 16px 18px; margin-bottom: 14px; }
.cal-detail-name { font-size: 15px; font-weight: 600; text-decoration: none; display: block; margin-bottom: 10px; }
.cal-detail-name:hover { text-decoration: underline; }
.cal-detail-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13px; color: var(--text-main); }
.cal-empty-tip { color: var(--text-sub); padding: 12px 0; }
@media (max-width: 860px) {
.cal-month-tab { min-width: 52px; padding: 6px 10px; }
.cal-cell { height: 70px; padding: 5px; }
.cal-event { font-size: 11px; }
.cal-detail-meta { gap: 6px 14px; }
} .meta-row.fee-row .fee-val { font-weight: 700; }
.meta-row.fee-row .fee-val.free { color: #059669; }
.meta-row.fee-row .fee-val.paid { color: #dc2626; } .lp-sec { margin-bottom: 60px; }
.lp-sec-head { margin-bottom: 28px; text-align: center; }
.lp-sec-title { font-size: 26px; font-weight: 700; color: var(--text-main); letter-spacing: -0.3px; }
.lp-sec-accent { color: var(--primary); }
.lp-sec-sub { margin-top: 8px; font-size: 14px; color: var(--text-sub); }
.lp-more { font-size: 13.5px; color: var(--primary); font-weight: 500; }
.lp-more:hover { text-decoration: underline; }
.lp-more-wrap { text-align: center; margin-top: 24px; } .lp-services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
.lp-service {
--pc: var(--primary);
--pc-soft: var(--primary-soft);
display: flex;
flex-direction: column;
gap: 8px;
padding: 22px 22px 20px;
background: var(--bg-card);
border: 1px solid var(--border);
border-top: 3px solid var(--pc);
border-radius: var(--radius-md);
text-decoration: none;
color: inherit;
transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.lp-service:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-training    { --pc: #10b981; --pc-soft: #ecfdf5; }
.lp-journal     { --pc: #3b82f6; --pc-soft: #eff6ff; }
.lp-project     { --pc: #f59e0b; --pc-soft: #fffbeb; }
.lp-award       { --pc: #e11d48; --pc-soft: #fff1f2; }
.lp-public-live { --pc: #8b5cf6; --pc-soft: #f5f3ff; }
.lp-news        { --pc: #14b8a6; --pc-soft: #f0fdfa; }
.lp-service-top {
display: flex;
align-items: center;
justify-content: space-between;
}
.lp-service-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px; height: 44px;
border-radius: 10px;
background: var(--pc-soft);
color: var(--pc);
}
.lp-service-icon svg { width: 22px; height: 22px; }
.lp-service-arrow { font-size: 16px; color: var(--text-mute); transition: transform var(--dur) var(--ease-out), color var(--dur) var(--ease-out); }
.lp-service:hover .lp-service-arrow { transform: translateX(3px); color: var(--pc); }
.lp-service-name { font-size: 17px; font-weight: 700; color: var(--text-main); }
.lp-service-desc { font-size: 13px; line-height: 1.7; color: var(--text-sub); flex: 1; }
.lp-service-count { font-size: 12.5px; color: var(--text-mute); } .lp-subnav {
display: flex;
align-items: center;
gap: 10px;
margin-top: 20px;
font-size: 13.5px;
color: var(--text-sub);
}
.lp-subnav-link { color: var(--text-sub); }
.lp-subnav-link:hover { color: var(--primary); }
.lp-subnav-sep { color: var(--text-mute); } .lp-latest .more-wrap { display: none; } .lp-spec-chips {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.lp-spec-chip {
padding: 7px 14px;
border: 1px solid var(--border);
border-radius: 999px;
background: var(--bg-card);
color: var(--text-main);
font-size: 13px;
text-decoration: none;
transition: border-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.lp-spec-chip:hover { border-color: var(--primary); color: var(--primary); } .lp-cta {
background: var(--primary);
border-radius: var(--radius-lg);
padding: 36px 40px;
margin-bottom: 8px;
}
.lp-cta-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.lp-cta-title { font-size: 20px; font-weight: 700; color: #fff; }
.lp-cta-sub { margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.82); }
.lp-cta-btn {
flex: none;
padding: 11px 22px;
border-radius: 8px;
background: #fff;
color: var(--primary);
font-size: 14.5px;
font-weight: 600;
border: none;
cursor: pointer;
transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.lp-cta-btn:hover { background: #f0f5ff; transform: translateY(-1px); }
@media (max-width: 860px) {
.lp-services-grid { grid-template-columns: 1fr; }
.lp-cta { padding: 28px 24px; }
.lp-cta-inner { flex-direction: column; align-items: flex-start; }
.lp-cta-btn { width: 100%; text-align: center; }
} .lp-hot-head { text-align: center; margin-bottom: 28px; }
.lp-hot-title { font-size: 26px; font-weight: 700; color: var(--text-main); letter-spacing: -0.3px; }
.lp-hot-accent { color: var(--primary); }
.lp-hot-sub { margin-top: 8px; font-size: 14px; color: var(--text-sub); }
.lp-hot-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.lp-hot-card {
display: flex;
flex-direction: column;
gap: 8px;
padding: 20px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
text-decoration: none;
color: inherit;
transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.lp-hot-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-hot-tags { display: flex; align-items: center; gap: 6px; }
.lp-hot-cat {
padding: 2px 8px;
border-radius: 4px;
background: var(--primary-soft);
color: var(--primary);
font-size: 11.5px;
font-weight: 600;
}
.lp-hot-flag {
padding: 2px 8px;
border-radius: 4px;
background: var(--danger-soft);
color: var(--danger);
font-size: 11.5px;
font-weight: 600;
}
.lp-hot-name {
font-size: 15px;
font-weight: 600;
color: var(--text-main);
line-height: 1.55;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.lp-hot-meta {
display: flex;
flex-direction: column;
gap: 3px;
font-size: 12.5px;
color: var(--text-sub);
flex: 1;
}
.lp-hot-link { font-size: 13px; color: var(--primary); font-weight: 500; }
@media (max-width: 1080px) {
.lp-hot-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
.lp-hot-title { font-size: 21px; }
.lp-hot-grid { grid-template-columns: 1fr; }
} .pf-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.pf-tab {
padding: 8px 16px;
border: 1px solid var(--border);
border-radius: 8px;
background: var(--bg-card);
color: var(--text-main);
font-size: 13.5px;
font-weight: 600;
font-family: inherit;
cursor: pointer;
transition: .15s;
}
.pf-tab:hover { border-color: var(--primary); color: var(--primary); }
.pf-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.pf-grid {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 16px;
}
.pf-tax { margin: 2px 0 12px; }
.pf-tax-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
@media (max-width: 600px) { .pf-grid { grid-template-columns: 1fr; } } .lp-links {
margin: 28px 0 0;
}
.lp-links-title { font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 14px; }
.lp-links-list { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.lp-link {
font-size: 13.5px;
color: var(--text-sub);
text-decoration: none;
transition: color var(--dur) var(--ease-out);
}
.lp-link:hover { color: var(--primary); } body.home .container { padding-bottom: 44px; } .fdy-toast {
position: fixed;
left: 50%;
bottom: 44px;
z-index: 9999;
max-width: min(92vw, 420px);
padding: 12px 22px;
border-radius: 10px;
background: rgba(23, 34, 51, .94);
color: #fff;
font-size: 14px;
line-height: 1.6;
text-align: center;
box-shadow: 0 12px 32px rgba(15, 23, 42, .26);
opacity: 0;
transform: translate(-50%, 12px);
pointer-events: none;
transition: opacity .22s ease, transform .22s ease;
}
.fdy-toast.show { opacity: 1; transform: translate(-50%, 0); } .screen-reader-text {
border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
height: 1px; width: 1px; margin: -1px; overflow: hidden;
padding: 0; position: absolute !important; word-wrap: normal !important;
}
.skip-link {
position: absolute; left: -9999px; top: 0; z-index: 100000;
background: var(--primary); color: #fff; padding: 10px 18px;
border-radius: 0 0 8px 0; font-size: 14px; text-decoration: none;
}
.skip-link:focus { left: 0; } .fdy-actions-bar {
display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
}
.fdy-share { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.fdy-share-label { font-size: 13px; color: var(--text-sub); }
.fdy-share-btn {
display: inline-flex; align-items: center; gap: 4px;
padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px;
background: var(--bg-card); color: var(--text-main);
font-size: 12.5px; font-weight: 500; cursor: pointer; text-decoration: none;
transition: border-color var(--dur-fast), color var(--dur-fast);
}
.fdy-share-btn:hover { border-color: var(--primary); color: var(--primary); } .search-box { position: relative; }
.search-hot {
position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 50;
display: none; padding: 12px 14px;
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.search-box:focus-within .search-hot { display: block; }
.search-hot-label { font-size: 11px; color: var(--text-mute); margin-bottom: 8px; }
.search-hot-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.search-hot-chips a {
padding: 3px 10px; border-radius: 999px; font-size: 12px;
background: var(--bg-hover); color: var(--text-sub); text-decoration: none;
transition: all var(--dur-fast);
}
.search-hot-chips a:hover { background: var(--primary-soft); color: var(--primary); } .fdy-related { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.fdy-related-title { font-size: 17px; font-weight: 700; color: var(--text-main); margin-bottom: 16px; }
.fdy-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fdy-related-item {
display: flex; flex-direction: column; gap: 4px;
padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius);
background: var(--bg-card); text-decoration: none;
transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.fdy-related-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.fdy-related-date { font-size: 11px; color: var(--text-mute); }
.fdy-related-name { font-size: 14px; font-weight: 500; color: var(--text-main); line-height: 1.5; }
@media (max-width: 640px) { .fdy-related-grid { grid-template-columns: 1fr; } }  .jf-result-head {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 12px;
margin: 16px 2px 14px;
flex-wrap: wrap;
}
.jf-result-count { font-size: 14px; color: var(--text-sub); }
.jf-result-count b { color: var(--primary); font-size: 16px; font-weight: 700; }
.jf-result-tip { font-size: 12px; color: var(--text-mute); } .jf-bar {
display: flex;
align-items: flex-start;
gap: 14px;
flex-wrap: wrap;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 14px 16px;
box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.jf-filters { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; min-width: 0; }
.jf-filter { position: relative; }
.jf-trigger {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 12px;
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--bg-card);
color: var(--text-main);
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
white-space: nowrap;
}
.jf-trigger:hover { border-color: var(--primary); }
.jf-filter.open .jf-trigger { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.jf-caret { color: var(--text-mute); flex-shrink: 0; }
.jf-label { font-weight: 600; color: var(--text-main); }
.jf-count {
display: inline-flex; align-items: center; justify-content: center;
min-width: 18px; height: 18px; padding: 0 5px;
border-radius: 9px; font-size: 11px; font-weight: 600;
background: var(--bg-hover); color: var(--text-sub);
}
.jf-count.has { background: var(--primary); color: #fff; }
.jf-value { color: var(--text-sub); max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.jf-value.has-value { color: var(--primary); font-weight: 600; }
.jf-filter.is-disabled .jf-trigger { opacity: .45; cursor: not-allowed; background: var(--bg-hover); }
.jf-dropdown {
position: absolute; top: calc(100% + 6px); left: 0; z-index: 60;
min-width: 200px; max-height: 280px; overflow-y: auto;
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); box-shadow: var(--shadow-lg);
padding: 8px;
}
.jf-opt {
display: flex; align-items: center; gap: 8px;
padding: 7px 10px; border-radius: 6px; cursor: pointer;
font-size: 13px; color: var(--text-main);
transition: background var(--dur-fast);
}
.jf-opt:hover { background: var(--primary-soft); }
.jf-opt input { width: 15px; height: 15px; margin: 0; accent-color: var(--primary); cursor: pointer; }
.jf-opt span { flex: 1; }
.jf-actions { display: flex; gap: 8px; flex-shrink: 0; align-self: center; }
.jf-btn {
padding: 8px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
cursor: pointer; transition: all var(--dur-fast);
}
.jf-btn-reset { border: 1px solid var(--border); background: var(--bg-card); color: var(--text-sub); }
.jf-btn-reset:hover { border-color: var(--border-strong); color: var(--text-main); }
.jf-btn-search { background: var(--primary); color: #fff; border: 1px solid var(--primary); }
.jf-btn-search:hover { background: var(--primary-dark); } .jf-quick { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 14px 2px 6px; }
.jf-quick-label { font-size: 13px; font-weight: 600; color: var(--text-main); }
.jf-quick-list { display: flex; flex-wrap: wrap; gap: 8px; }
.jf-quick-tag {
padding: 5px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 500;
border: 1px solid var(--border); background: var(--bg-card); color: var(--text-sub);
cursor: pointer; transition: all var(--dur-fast);
}
.jf-quick-tag:hover { border-color: var(--primary); color: var(--primary); }
.jf-quick-tag.active { background: var(--primary); border-color: var(--primary); color: #fff; } .journal-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.journal-card {
display: flex; flex-direction: column;
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius-md); padding: 18px 18px 16px;
box-shadow: var(--shadow-sm);
transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.journal-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.journal-card.jc-foreign { border-top: 3px solid #7c3aed; }
.journal-card.jc-domestic { border-top: 3px solid var(--primary); }
.jc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.jc-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.jc-badge {
display: inline-block; padding: 3px 9px; border-radius: 5px;
font-size: 12px; font-weight: 600; line-height: 1.4; white-space: nowrap;
}
.jc-badge-level { background: var(--primary-soft); color: var(--primary); }
.jc-foreign .jc-badge-level { background: #f3e8ff; color: #7e22ce; }
.jc-badge-sub { background: #f3f4f6; color: var(--text-sub); }
.jc-fav {
flex-shrink: 0; padding: 4px 10px; border-radius: 6px;
border: 1px solid var(--border); background: var(--bg-card);
color: var(--text-sub); font-size: 12px; font-weight: 500; cursor: pointer;
transition: all var(--dur-fast); white-space: nowrap;
}
.jc-fav:hover { border-color: #f59e0b; color: #d97706; }
.jc-fav.is-fav { border-color: #f59e0b; color: #d97706; background: var(--warning-soft); }
.jc-name { font-size: 16px; font-weight: 700; color: var(--text-main); line-height: 1.4; margin: 0 0 12px; }
.jc-name a:hover { color: var(--primary); }
.jc-meta { list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1; margin: 0; }
.jc-meta li { display: flex; align-items: baseline; gap: 8px; font-size: 13px; line-height: 1.5; }
.jc-meta li span { flex: none; width: 68px; color: var(--text-mute); font-size: 12px; }
.jc-meta li b { color: var(--text-main); font-weight: 500; word-break: break-all; }
.jc-meta .fee-free { color: #059669; font-weight: 600; }
.jc-meta .fee-paid { color: #dc2626; font-weight: 600; }
.jc-meta .warn-bad { color: #dc2626; font-weight: 600; }
.jc-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.jc-update { font-size: 11.5px; color: var(--text-mute); }
.jc-actions { display: flex; gap: 8px; margin-top: 10px; }
.jc-btn {
flex: 1; text-align: center; padding: 8px 10px; border-radius: var(--radius);
font-size: 13px; font-weight: 600; text-decoration: none; transition: all var(--dur-fast);
}
.jc-btn-outline { border: 1.5px solid var(--primary); color: var(--primary); background: #fff; }
.jc-btn-outline:hover { background: var(--primary-soft); }
.jc-btn-primary { background: var(--primary); color: #fff; border: 1.5px solid var(--primary); }
.jc-btn-primary:hover { background: var(--primary-dark); }
@media (max-width: 1080px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .journal-grid { grid-template-columns: 1fr; } }
.jf-empty { grid-column: 1/-1; text-align: center; padding: 48px 20px; color: var(--text-sub); font-size: 14px; }
.jf-empty a { color: var(--primary); } .jf-favs { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); }
.jf-favs-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.jf-favs-title { font-size: 20px; font-weight: 700; color: var(--text-main); }
.jf-favs-accent { color: #f59e0b; }
.jf-favs-clear { font-size: 13px; color: var(--text-sub); cursor: pointer; padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border); background: var(--bg-card); }
.jf-favs-clear:hover { color: var(--danger); border-color: var(--danger); }
.jf-favs-tip { font-size: 12.5px; color: var(--text-mute); margin-bottom: 16px; }
.jf-favs-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.jf-favs-empty { color: var(--text-mute); font-size: 13px; padding: 24px; text-align: center; border: 1px dashed var(--border); border-radius: var(--radius); }
@media (max-width: 1080px) { .jf-favs-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .jf-favs-list { grid-template-columns: 1fr; } } .jc-detail-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; } .news-section { max-width: 960px; margin: 0 auto; }
.news-head { margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.news-title { font-size: 24px; font-weight: 700; color: var(--text-main); }
.news-accent { color: var(--primary); }
.news-sub { font-size: 13.5px; color: var(--text-sub); margin-top: 6px; }
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-item {
display: flex; align-items: flex-start; gap: 16px;
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius); padding: 16px 18px;
transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.news-item:hover { border-color: var(--primary); box-shadow: 0 2px 10px rgba(37,99,235,0.08); transform: translateY(-1px); } .news-item-date { flex-shrink: 0; }
.news-item-date p {
width: 56px; min-height: 56px; margin: 0;
background: var(--primary-soft); border-radius: 8px;
display: flex; flex-direction: column; align-items: center; justify-content: center;
color: var(--primary); line-height: 1.15;
}
.news-item-date p span:first-child { font-size: 12px; font-weight: 600; }
.news-item-date p span:last-child { font-size: 22px; font-weight: 700; margin-top: 2px; } .news-item-content { flex: 1; min-width: 0; }
.news-item-title { font-size: 16px; font-weight: 600; color: var(--text-main); line-height: 1.5; margin: 0 0 6px; }
.news-item-title a { color: inherit; text-decoration: none; }
.news-item:hover .news-item-title a { color: var(--primary); }
.news-item-header { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-mute); margin-bottom: 6px; flex-wrap: wrap; }
.news-item-desc { font-size: 13.5px; color: var(--text-sub); line-height: 1.7; margin: 0; }
.news-origin { color: var(--primary); font-weight: 600; white-space: nowrap; }
.news-origin:hover { text-decoration: underline; } .news-item-meta {
display: flex; align-items: center; justify-content: space-between; gap: 10px;
margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--border);
font-size: 12px; color: var(--text-mute); flex-wrap: wrap;
}
.news-item-meta-left { display: flex; align-items: center; gap: 8px; }
.news-item-meta-right { display: flex; align-items: center; gap: 8px; }
.news-share { color: var(--text-sub); text-decoration: none; transition: color var(--dur-fast); }
.news-share:hover { color: var(--primary); }
.news-type { padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; line-height: 1.5; }
.news-type-manual { background: #f3f4f6; color: var(--text-sub); }
.news-type-rss { background: #eef6ff; color: #1d4ed8; }
.news-type-wechat { background: #f0fdf4; color: #15803d; }
.news-type-ai { background: #faf5ff; color: #7e22ce; }
.news-empty { text-align: center; padding: 60px 20px; color: var(--text-sub); font-size: 14px; } .news-section .pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.news-section .pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.news-section .pagination .page-numbers {
display: inline-flex; align-items: center; justify-content: center;
min-width: 34px; height: 34px; padding: 0 10px; border-radius: var(--radius);
border: 1px solid var(--border); background: var(--bg-card); color: var(--text-main);
font-size: 13px; text-decoration: none; transition: .15s;
}
.news-section .pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.news-section .pagination .page-numbers.current { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; } .news-detail { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 30px; }
.news-detail-head { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.news-detail-title { font-size: 22px; font-weight: 700; color: var(--text-main); line-height: 1.5; }
.news-detail-meta { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 12px; color: var(--text-mute); flex-wrap: wrap; }
.news-detail-content { font-size: 15px; line-height: 1.9; color: var(--text-main); }
.news-detail-actions { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.news-btn-apply {
display: inline-flex; align-items: center; padding: 10px 22px; border-radius: var(--radius);
background: var(--primary); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none;
transition: background var(--dur-fast);
}
.news-btn-apply:hover { background: var(--primary-dark); color: #fff; }
@media (max-width: 720px) {
.news-detail { padding: 20px 18px; }
.news-item { gap: 12px; padding: 14px 14px; }
.news-item-date p { width: 46px; min-height: 46px; }
.news-item-date p span:last-child { font-size: 18px; }
.news-item-title { font-size: 15px; }
} .fdy-empty {
text-align: center;
padding: 60px 20px;
color: var(--text-sub);
}
.fdy-empty h1 { font-size: 22px; font-weight: 700; color: var(--text-main); margin: 0 0 12px; }
.fdy-empty p { font-size: 15px; margin: 0 0 20px; }
.btn-post {
display: inline-flex; align-items: center; padding: 10px 24px; border-radius: var(--radius);
background: var(--primary); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none;
transition: background var(--dur-fast, .15s);
}
.btn-post:hover { background: var(--primary-dark); color: #fff; }