body { background-color: #070913; color: #a0aec0; font-family: "JetBrains Mono", Consolas, Monaco, monospace; margin: 0; padding: 20px 10px; line-height: 1.6; }
.qxtcs-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; }
/* 核心结构突变：命令行终端式头部 */
.qxtcs-terminal-header { background: #0f1322; border: 1px solid #1e293b; border-radius: 12px 12px 0 0; padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.qxtcs-dots { display: flex; gap: 8px; }
.qxtcs-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.qxtcs-dot-red { background: #ef4444; }
.qxtcs-dot-yellow { background: #f59e0b; }
.qxtcs-dot-green { background: #10b981; }
.qxtcs-term-title { color: #8b5cf6; font-weight: bold; font-size: 14px; letter-spacing: 1px; }
.qxtcs-term-nav { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.qxtcs-term-nav a { color: #a0aec0; text-decoration: none; font-size: 13px; font-weight: bold; transition: color 0.3s; }
.qxtcs-term-nav a:hover, .qxtcs-term-nav a.active { color: #10b981; text-shadow: 0 0 10px rgba(16,185,129,0.5); }
/* 模拟终端机身 */
.qxtcs-terminal-body { background: #0b0e1a; border: 1px solid #1e293b; border-top: none; border-radius: 0 0 12px 12px; padding: 35px; box-shadow: 0 20px 50px rgba(0,0,0,0.6); margin-bottom: 40px; }
.qxtcs-alert-banner { border: 1px dashed #8b5cf6; background: rgba(139,92,246,0.05); padding: 15px 20px; border-radius: 8px; margin-bottom: 30px; font-size: 13px; color: #a78bfa; display: flex; align-items: center; gap: 15px; }
.qxtcs-dashboard-title { font-size: 18px; font-weight: bold; color: #10b981; margin: 40px 0 20px 0; border-bottom: 1px solid #1e293b; padding-bottom: 10px; display: flex; align-items: center; gap: 10px; }
/* 仪表盘多列栅格 */
.qxtcs-db-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.qxtcs-widget { background: #0f1322; border: 1px solid #1e293b; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.qxtcs-widget:hover { border-color: #8b5cf6; box-shadow: 0 0 20px rgba(139,92,246,0.15); transform: translateY(-5px); }
.qxtcs-widget-img { height: 160px; background: #070913; display: flex; align-items: center; justify-content: center; padding: 15px; border-bottom: 1px solid #1e293b; }
.qxtcs-widget-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.qxtcs-widget-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.qxtcs-widget-name { font-size: 15px; font-weight: bold; color: #f3f4f6; margin-bottom: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qxtcs-widget-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; border-top: 1px dashed #1e293b; padding-top: 15px; }
.qxtcs-tag { font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: bold; border: 1px solid transparent; }
.qxtcs-t-auto { background: rgba(16,185,129,0.1); color: #10b981; border-color: rgba(16,185,129,0.3); }
.qxtcs-t-hand { background: rgba(239,68,68,0.1); color: #ef4444; border-color: rgba(239,68,68,0.3); }
.qxtcs-price { color: #ec4899; font-size: 20px; font-weight: bold; }
/* 详情页重构：上下分层模块 */
.qxtcs-detail-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.qxtcs-dt-screen { background: #070913; border: 1px solid #1e293b; border-radius: 12px; padding: 30px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 30px rgba(0,0,0,0.8); }
.qxtcs-dt-screen img { max-width: 100%; border-radius: 8px; }
.qxtcs-dt-panel { background: #0f1322; border: 1px solid #1e293b; border-radius: 12px; padding: 35px; }
.qxtcs-dt-title { font-size: 24px; font-weight: bold; color: #f3f4f6; margin-bottom: 25px; line-height: 1.4; border-bottom: 1px solid #1e293b; padding-bottom: 15px; }
.qxtcs-console-box { background: #070913; border: 1px solid #1e293b; border-radius: 8px; padding: 20px; margin-bottom: 30px; }
.qxtcs-console-line { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; }
.qxtcs-console-label { color: #64748b; }
.qxtcs-console-val { color: #10b981; font-weight: bold; }
.qxtcs-group { margin-bottom: 20px; }
.qxtcs-label { display: block; font-size: 12px; color: #8b5cf6; font-weight: bold; margin-bottom: 8px; text-transform: uppercase; }
.qxtcs-input { width: 100%; box-sizing: border-box; background: #070913; border: 1px solid #1e293b; color: #f3f4f6; padding: 14px 18px; border-radius: 8px; font-size: 15px; outline: none; transition: 0.3s; font-family: inherit; }
.qxtcs-input:focus { border-color: #8b5cf6; box-shadow: 0 0 15px rgba(139,92,246,0.2); }
.qxtcs-btn-action { width: 100%; background: #8b5cf6; color: #fff; border: none; padding: 16px; border-radius: 8px; font-size: 16px; font-weight: bold; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 15px rgba(139,92,246,0.3); font-family: inherit; }
.qxtcs-btn-action:hover { background: #7c3aed; box-shadow: 0 8px 25px rgba(139,92,246,0.5); }
.qxtcs-btn-action:disabled { background: #1e293b; color: #475569; box-shadow: none; cursor: not-allowed; }
.qxtcs-desc-block { background: #0f1322; border: 1px solid #1e293b; border-radius: 12px; padding: 35px; margin-top: 35px; }
.qxtcs-desc-title { font-size: 16px; color: #8b5cf6; font-weight: bold; margin-bottom: 20px; text-transform: uppercase; }
.qxtcs-desc-content { font-size: 14px; color: #94a3b8; line-height: 1.8; }
/* 极客查询面板 */
.qxtcs-q-tabs { display: flex; background: #070913; border: 1px solid #1e293b; border-radius: 8px; padding: 4px; margin-bottom: 35px; }
.qxtcs-q-tabs a { flex: 1; text-align: center; padding: 12px; color: #64748b; font-weight: bold; text-decoration: none; border-radius: 6px; font-size: 13px; transition: 0.3s; }
.qxtcs-q-tabs a.active, .qxtcs-q-tabs a:hover { background: #0f1322; color: #10b981; }
.qxtcs-table { width: 100%; border-collapse: collapse; }
.qxtcs-table th, .qxtcs-table td { padding: 15px; border-bottom: 1px solid #1e293b; text-align: left; }
.qxtcs-table th { color: #64748b; font-size: 12px; text-transform: uppercase; }
.qxtcs-table td { color: #cbd5e1; }
.qxtcs-footer { border-top: 1px solid #1e293b; margin-top: 60px; padding-top: 30px; text-align: center; font-size: 12px; color: #475569; }
@media (max-width: 900px) {
    .qxtcs-detail-split { grid-template-columns: 1fr; }
    .qxtcs-term-nav { display: none; }
    .qxtcs-terminal-body { padding: 20px; }
}
