/* 文件路径: blacklist_system/style.css (最终修复版) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;700&display=swap');

body, html { margin: 0; padding: 0; width: 100%; height: 100%; font-family: 'Noto Sans SC', sans-serif; background-color: #f0f8ff; overflow-x: hidden; overflow-y: auto; }
.background-gradient { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: linear-gradient(135deg, #e0f7fa, #b3e5fc, #e0f7fa); background-size: 200% 200%; animation: gradient-flow 15s ease infinite; }
@keyframes gradient-flow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.container { display: flex; flex-direction: column; justify-content: flex-start; align-items: center; min-height: 100vh; text-align: center; padding: 60px 20px; box-sizing: border-box; color: #333; animation: fadeIn 1.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
h1 { font-size: 3.5rem; font-weight: 300; margin: 0 0 20px 0; letter-spacing: 2px; background: linear-gradient(90deg, #0077b6, #ade8f4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent; animation: pulse-glow 4s ease-in-out infinite; }
@keyframes pulse-glow { 0% { text-shadow: 0 0 5px rgba(173, 216, 230, 0.4); } 50% { text-shadow: 0 0 15px rgba(173, 216, 230, 0.7); } 100% { text-shadow: 0 0 5px rgba(173, 216, 230, 0.4); } }
.description { font-size: 1.2rem; font-weight: 400; line-height: 1.8; max-width: 700px; color: #2a6f97; margin: 0 auto 40px auto; }
.blacklist-container { background: rgba(255, 255, 255, 0.45); padding: 30px; border-radius: 16px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); text-align: left; width: 100%; max-width: 800px; margin-bottom: 30px; box-sizing: border-box; }
.blacklist-container h2 { font-size: 1.8rem; font-weight: 700; color: #0077b6; margin: 0 0 25px 0; text-align: center; }
.blacklist-search-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.blacklist-search-form input[type="text"], .blacklist-search-form select { width: 100%; padding: 12px 15px; font-family: inherit; font-size: 1rem; color: #333; background-color: rgba(255, 255, 255, 0.7); border: 1px solid #b3e5fc; border-radius: 8px; box-sizing: border-box; transition: all 0.2s ease-in-out; }
.blacklist-search-form input[type="text"]::placeholder { color: #5a8ca7; opacity: 0.8; }
.blacklist-search-form input[type="text"]:focus, .blacklist-search-form select:focus { outline: none; border-color: #0077b6; background-color: #fff; box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1); }
.search-actions { grid-column: 1 / -1; display: flex; justify-content: center; gap: 15px; margin-top: 10px; }
.btn-glow { display: inline-block; padding: 12px 28px; font-size: 1rem; font-weight: 700; text-decoration: none; border-radius: 50px; transition: all 0.3s ease-in-out; border: 2px solid transparent; cursor: pointer; }
.btn-glow.primary { background-color: #0077b6; color: #fff; box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2); }
.btn-glow.primary:hover { background-color: #028fcc; box-shadow: 0 6px 20px rgba(0, 119, 182, 0.3); transform: translateY(-3px); }
.btn-glow.secondary { background-color: transparent; color: #0077b6; border-color: #0077b6; }
.btn-glow.secondary:hover { background-color: rgba(0, 119, 182, 0.1); transform: translateY(-3px); }
.blacklist-results { margin-top: 20px; min-height: 50px; }
#results-placeholder { font-size: 1rem; color: #5a8ca7; text-align: center; padding: 20px; border: 2px dashed #b3e5fc; border-radius: 8px; font-style: italic; transition: opacity 0.3s; }
.result-item { background: rgba(255, 255, 255, 0.6); padding: 20px; border-radius: 12px; margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid rgba(255, 255, 255, 0.8); }
.result-item p { margin: 0 0 12px 0; font-size: 0.95rem; line-height: 1.6; color: #334155; }
.result-item p:last-of-type { margin-bottom: 5px; }
.result-item strong { font-weight: 700; color: #0077b6; margin-right: 8px; display: inline-block; min-width: 90px; }
.result-item a { color: #015c8c; text-decoration: none; font-weight: 600; border-bottom: 1px dotted #015c8c; transition: all 0.2s; }
.result-item a:hover { color: #028fcc; border-bottom-style: solid; }
.evidence-content { background-color: rgba(224, 247, 250, 0.6); border: 1px solid #b3e5fc; border-radius: 6px; padding: 12px; margin-top: 10px; font-size: 0.9rem; line-height: 1.7; white-space: pre-wrap; word-break: break-all; color: #1e3a8a; }
.types-filter-container { grid-column: 1 / -1; padding-top: 15px; margin-top: 5px; border-top: 1px solid rgba(179, 229, 252, 0.7); }
.filter-label { font-weight: 700; color: #0077b6; margin-bottom: 10px; display: block; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px 15px; }
.checkbox-group label { display: flex; align-items: center; cursor: pointer; background-color: rgba(255, 255, 255, 0.6); padding: 5px 12px; border-radius: 20px; border: 1px solid #b3e5fc; font-size: 0.9rem; color: #334155; transition: all 0.2s; }
.checkbox-group label:hover { background-color: rgba(224, 247, 250, 1); border-color: #0077b6; }
.checkbox-group input[type="checkbox"] { margin-right: 8px; accent-color: #0077b6; transform: scale(1.1); }
.checkbox-group input[type="checkbox"]:checked + span { font-weight: 600; color: #0077b6; }
@media (max-width: 768px) { h1 { font-size: 2.5rem; } .description { font-size: 1rem; } .container { padding: 40px 15px; } .blacklist-container { padding: 20px; } .blacklist-container h2 { font-size: 1.5rem; } .search-actions { flex-direction: column; } .btn-glow { width: 100%; } .result-item strong { min-width: auto; } }