* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "新宋体";
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(34, 33, 42, 0.5) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0;
}

.particle:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 60px; height: 60px; left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { width: 100px; height: 100px; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { width: 70px; height: 70px; left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { width: 90px; height: 90px; left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { width: 50px; height: 50px; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { width: 80px; height: 80px; left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { width: 60px; height: 60px; left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { width: 100px; height: 100px; left: 90%; animation-delay: 1.5s; }
.particle:nth-child(10) { width: 70px; height: 70px; left: 15%; animation-delay: 3.5s; }
.particle:nth-child(11) { width: 90px; height: 90px; left: 35%; animation-delay: 0.5s; }
.particle:nth-child(12) { width: 50px; height: 50px; left: 55%; animation-delay: 2.8s; }
.particle:nth-child(13) { width: 80px; height: 80px; left: 75%; animation-delay: 4.2s; }
.particle:nth-child(14) { width: 60px; height: 60px; left: 85%; animation-delay: 1.8s; }
.particle:nth-child(15) { width: 100px; height: 100px; left: 65%; animation-delay: 3.2s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: red;
}

.top {
    background-color: #22212a;
    height: 35px;
    padding: 0 10px;
}

.top-inner {
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    color: #ccc;
    font-size: 13px;
}

.top-right {
    display: flex;
    align-items: center;
}

.top-right a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    padding: 0 12px;
    border-right: 1px solid #444;
    transition: color 0.2s;
}

.top-right a:last-child {
    border-right: none;
    padding-right: 0;
}

.top-right a:hover {
    color: #ff6600;
}

.main {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header {
    background: url(header.jpg) no-repeat center top;
    background-size: cover;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15px;
}

.header-stats {
    display: flex;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 4px;
}

.header-stats div {
    color: #fff;
    font-size: 13px;
}

.header-stats span {
    color: #ff6600;
    font-weight: bold;
    margin-left: 3px;
}

table {
    width: 100%;
    border-spacing: 1px;
    background-color: #22212a;
}

.tables th,
.tables td {
    padding: 5px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tables tr td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tables th {
    color: #fff;
    background-color: rgba(34, 33, 42, 0.95);
}

.tables tr td {
    background-color: rgba(255, 255, 255, 0.95);
}

.th td {
    background-color: #ffff00 !important;
}

.th:hover td,
.wk:hover td {
    background-color: #fff !important;
}

.wk td {
    background-color: #ffff99 !important;
}

td:nth-of-type(8),
td:nth-of-type(4),
td:nth-of-type(5),
td:nth-of-type(7),
td:nth-of-type(2) {
    text-align: center;
}

.footer {
    padding: 20px 10px;
    background-color: #22212a;
    color: #ccc;
    line-height: 24px;
    font-size: 12px;
    text-align: center;
    margin: 0;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    background-color: #fff;
}

.card {
    width: 25%;
    background-color: #fff;
    border: none;
    padding: 20px 15px;
    transition: all 0.3s;
    position: relative;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.card:nth-child(4n) {
    border-right: none;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s;
}

.card:hover::before {
    background-color: #ff6600;
}

.card:hover {
    background-color: #fffcf9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.card-title {
    font-size: 14px;
    font-weight: bold;
    color: #22212a;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.card-desc {
    font-size: 12px;
    color: #666;
    line-height: 18px;
    margin-bottom: 10px;
}

.card-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: space-between;
}

.card-btn {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    font-size: 12px;
    padding: 5px 15px;
    text-decoration: none;
    margin-top: 10px;
}

.card-btn:hover {
    background-color: #e55b00;
    color: #fff;
}

.page-title {
    background-color: #22212a;
    color: #fff;
    font-size: 14px;
    padding: 12px 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title h2 {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

.back-btn {
    background-color: #ff6600;
    color: #fff;
    font-size: 12px;
    padding: 5px 15px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.back-btn:hover {
    background-color: #e55b00;
    color: #fff;
}

.section {
    background-color: #fff;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #eee;
}

.section-title {
    font-size: 14px;
    font-weight: bold;
    color: #22212a;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6600;
}

.text-content {
    font-size: 13px;
    color: #333;
    line-height: 22px;
}

.text-content p {
    margin-bottom: 10px;
}

.text-content ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.text-content li {
    margin-bottom: 5px;
}

.search-panel {
    position: fixed;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(34, 33, 42, 0.8);
    border-radius: 4px 0 0 4px;
    padding: 12px;
    z-index: 9999;
    width: 200px;
    margin-right: -750px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-panel h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #22212a;
    text-align: center;
    font-weight: bold;
}

.search-input {
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 13px;
}

.search-input:focus {
    outline: none;
    border-color: #22212a;
}

.filter-group {
    margin-bottom: 8px;
}

.filter-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #666;
}

.filter-select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    background-color: #fff;
}

.filter-select:focus {
    outline: none;
    border-color: #22212a;
}

.search-btn {
    width: 100%;
    padding: 8px;
    background: #22212a;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
}

.search-btn:hover {
    background: #e55b00;
}

.reset-btn {
    width: 100%;
    padding: 6px;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 5px;
}

.reset-btn:hover {
    background: #e0e0e0;
}

.panel-toggle {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 28px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    display: none;
}

.panel-toggle:hover {
    background: #e55b00;
}

.search-panel.collapsed {
    transform: translate(210px, -50%);
}

.search-panel.collapsed .panel-toggle {
    left: -28px;
    border-radius: 0 4px 4px 0;
}

.result-count {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}