
/* -------------------------------------- */
/* ----------------index----------------- */
/* -------------------------------------- */
/* 排序表头样式 */
.sortable-header {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
}

.sortable-header:hover {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.sortable-header.active {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.sortable-header.active::after {
    content: " ↓";
    font-size: 12px;
}

/* 按钮点击效果 */
.sort-btn {
    cursor: pointer;
    transition: all 0.2s;
}

.sort-btn:active {
    transform: scale(0.95);
}

/*列表名称宽度控制*/
.table-wid {
    width: 70%;
}

@media (max-width: 1280px) {
    .table-wid {
        width: 60%;
    }
}

@media (max-width: 1023px) {
    .table-wid {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .table-wid {
        width: 60%;
    }
}

@media (max-width: 640px) {
    .table-wid {
        width: 75%;
    }
}

@media (max-width: 395px) {
    .table-wid {
        width: 65%;
    }
}

/*名称只显示2行*/
.table-hang {
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
    .sm\:table-cell {
        display: table-cell!important;
    }
}

@media (min-width: 640px) {
    .dd\:table-cell {
        display: table-cell;
    }
}

@media (min-width: 640px) {
    .xd\:table-cell {
        display: table-cell;
    }
}

/* -------------------------------------- */
/* ----------------header---------------- */
/* -------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
  color: #e0e0e0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* 科幻网格背景 */

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 160, 233, 0.08) 0%, transparent 50%);
  background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 0;
  animation: grid-pulse 4s ease-in-out infinite;
}

/* 扫描线效果 */

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.8), transparent);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 40px rgba(0, 240, 255, 0.4);
  animation: scan-line 8s linear infinite;
  pointer-events: none;
  z-index: 9999;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes scan-line {
  0% { transform: translateY(0); opacity: 0.8; }
  50% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0.8; }
}

/* 全息边缘光晕 */

#root {
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

#root::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(0, 240, 255, 0.2);
  pointer-events: none;
  z-index: -1;
  animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
  0%, 100% { box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.2); }
  50% { box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.4); }
}

/* 滚动条样式 */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 15, 0.8);
  border-left: 1px solid rgba(0, 240, 255, 0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.6), rgba(0, 160, 233, 0.8));
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.8), rgba(0, 160, 233, 1));
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

/* 选中文字样式 */

::selection {
  background: rgba(0, 240, 255, 0.3);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

/* 页面标题-公共 */
.page-title-h1 {
    font-size: 20px;
    font-weight: 600;
    color: #00f2ff;
    margin-top: -2rem;
}


/* -------------------------------------- */
/* ----------------footer---------------- */
/* -------------------------------------- */
/* 页脚样式 */
.site-footer {
    background: linear-gradient(180deg, rgba(10, 12, 18, 0.95) 0%, rgba(5, 7, 12, 0.98) 100%);
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    margin-top: 1.5rem;
    padding: 48px 0 24px;
    position: relative;
    overflow: hidden;
}

/* 扫描线效果 */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.6), transparent);
    animation: footer-glow 3s ease-in-out infinite;
}

@keyframes footer-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #00f2ff, #7c4dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-desc {
    font-size: 13px;
    color: #8a93a5;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #00f2ff;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00f2ff, transparent);
}

.footer-links {
    width: 20%;
}
.footer-social {
    width: 20%;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00f2ff;
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: rgba(0, 242, 255, 0.2);
    border-color: #00f2ff;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.social-icon svg {
    color: #00f2ff;
}

.contact-email {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-email a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email a:hover {
    color: #00f2ff;
}

.footer-border {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.3), transparent);
    margin: 14px 0 10px;
}

.footer-notice {
    text-align: center;
    margin-bottom: 16px;
}

.copyright-notice {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.footer-legal {
    text-align: center;
}

.footer-legal a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    margin: 0 6px;
}

.footer-legal a:hover {
    color: #00f2ff;
}

/* 响应式 */
@media (max-width: 512px) {
    .site-footer {
        padding: 32px 0 20px;
        margin-top: 40px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-email {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    /* 快速链接和合作伙伴并排显示 */
    .footer-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-info {
        grid-column: span 2;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .footer-links.partner-links {
        text-align: right;
    }
    
    .footer-links .footer-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-links.partner-links .footer-title::after {
        left: auto;
        right: 0;
    }
    
    .footer-social {
        grid-column: span 2;
        text-align: center;
        /* 默认样式（大于等于1024px时正常显示） */
        display: block;
    }
    
    .footer-legal a {
        display: inline-block;
        margin: 4px 6px;
    }
}
@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .footer-links, .footer-links.partner-links {
        text-align: center;
    }
    
    .footer-links .footer-title::after,
    .footer-links.partner-links .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .footer-social {
        grid-column: span 1;
    }
    
    .footer-legal a:not(:last-child)::after {
        display: none;
    }
}
/* 网站信息区域 - 设置最小高度与其他列对齐 */
.footer-info {
    width: 40%;
    padding-left: 150px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

/* 屏幕宽度小于1532px时 */
@media (max-width: 1532px) {
  .footer-info {
    padding-left: 130px;
  }
}

/* 屏幕宽度小于1280px时 */
@media (max-width: 1280px) {
  .footer-info {
    padding-left: 60px;
  }
}

/* 屏幕宽度小于1024px时 */
@media (max-width: 1024px) {
  .footer-info {
    padding-left: 0;
  }
}

/* 屏幕宽度小于768px时调整比例 */
@media (max-width: 768px) {
    .footer-social {
        display: none;
    }
    .footer-info {
        width: 54%;
        padding-left: 75px;
    }
    .footer-links {
        width: 23%;
    }
}

/* 屏幕宽度小于640px时 */
@media (max-width: 640px) {
  .footer-info {
    padding-left: 45px;
  }
}

/* 屏幕宽度小于512px时 */
@media (max-width: 512px) {
  .footer-info {
    margin: 0 auto;
    padding: 0;
  }
  .footer-links {
        display: none;
    }
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #00f2ff, #7c4dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-desc {
    font-size: 13px;
    color: #8a93a5;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-license {
    margin-top: auto;
    padding-top: 8px;
}

.license-item {
    font-size: 12px;
    color: #6b7280;
    margin: 2px 0;
    line-height: 1.4;
}

.license-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.license-item a:hover {
    color: #00f2ff;
}

.beian-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* 响应式调整 */
@media (max-width: 512px) {
    .footer-info {
        min-height: auto;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-license {
        margin-top: 8px;
    }
    
    .license-item a {
        justify-content: center;
    }
}


/* -------------------------------------- */
/* -----------single-resource------------ */
/* -------------------------------------- */
/* 弹窗内部隐藏扫描线效果 - 避免与全局扫描线叠加 */
.modal-content::before,
.modal-content::after,
.modal-overlay::before,
.modal-overlay::after {
    display: none !important;
}

/* 确保弹窗内的任何元素都不产生扫描线动画 */
.modal-content * {
    animation: none !important;
}

/* 如果弹窗内有任何带有 scan-line 动画的伪元素，全部禁用 */
.modal-content [class*="scan"],
.modal-content [class*="line"] {
    animation: none !important;
}


/* -------------------------------------- */
/* -------------page-donate-------------- */
/* -------------------------------------- */
.don-wid {
    width: 220px;
}

@media (max-width: 1024px) {
    .don-1024 {
        width: 95%;
    }
}


/* -------------------------------------- */
/* --------------page-join--------------- */
/* -------------------------------------- */
.join-wid {
    width: 840px;
}
.join-hei {
    height: 320px;
}
.join-btn {
    width: 162px;
    margin: 1rem auto;
}
.cyber-button {
    transition: all 0.2s ease;
    cursor: pointer;
}
.cyber-button:hover {
    transform: translateY(-2px);
}
.cyber-button:active {
    transform: scale(0.98);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .join-wid {
        width: 680px;
    }
    .join-hei {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .join-wid {
        width: 580px;
        margin: auto;
    }
    .flex-col {
        flex-direction: column;
    }
    
    .glass-effect {
        padding: 24px !important;
    }
}

@media (max-width: 768px) {
    .join-wid {
        width: 380px;
    }
    .join-640{
        flex-direction: column-reverse;
    }
}
@media (max-width: 512px) {
    .join-wid {
        width: 320px;
    }
}


/* -------------------------------------- */
/* -------------page-submit-------------- */
/* -------------------------------------- */
/* 表单元素焦点效果 */
.cyber-input:focus,
.cyber-select:focus,
.cyber-textarea:focus {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* 下拉箭头自定义 */
.cyber-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300f2ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* 按钮通用样式 */
.cyber-button {
    transition: all 0.2s ease;
    cursor: pointer;
}

.cyber-button:hover {
    transform: translateY(-2px);
}

.cyber-button:active {
    transform: scale(0.98);
}

/* 确保输入框文字清晰可见 */
.cyber-input, .cyber-select, .cyber-textarea {
    background-color: rgba(15, 25, 35, 0.95) !important;
    color: #f0f0f0 !important;
    border: 1px solid rgba(0, 242, 255, 0.4) !important;
}
.cyber-input::placeholder, 
.cyber-select::placeholder, 
.cyber-textarea::placeholder {
    color: #8a9bb5 !important;
}

.but-top {
    margin-top: 0px;
}

.sub-pad {
    padding: 1.5rem;
}

/* 响应式调整 */
@media (min-width: 1024px) {
    .but-top{
        margin-top: 110px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .flex-col {
        flex-direction: column;
    }
}


/* -------------------------------------- */
/* -------------report-modal------------- */
/* -------------------------------------- */
#report-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.report-modal-container {
    background: #1a1a2e;
    border: 1px solid rgba(0,240,255,0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(0,240,255,0.2);
}
.report-modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,240,255,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.report-modal-header h3 {
    margin: 0;
    color: #00f2ff;
}
.report-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}
.report-modal-body {
    padding: 20px;
}
.report-form-group {
    margin-bottom: 20px;
}
.report-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
}
.report-reason-options label {
    display: inline-block;
    margin-right: 20px;
    font-weight: normal;
}
.report-input, .report-textarea {
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(0,240,255,0.3);
    border-radius: 6px;
    color: #fff;
}
.report-input:focus, .report-textarea:focus {
    outline: none;
    border-color: #00f2ff;
}
.required {
    color: #ff6b6b;
}
.report-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}
.report-form-actions .button {
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
}
.report-form-actions .button-primary {
    background: linear-gradient(135deg, #00f2ff, #2d7aff);
    border: none;
    color: #fff;
}
.report-form-actions .button-primary:hover {
    opacity: 0.9;
}
.report-form-actions .report-cancel {
    background: transparent;
    border: 1px solid rgba(0,240,255,0.3);
    color: #ccc;
}


/* -------------------------------------- */
/* --------------search-panel------------ */
/* -------------------------------------- */
/* 搜索面板样式 */
.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
}

.search-panel.hidden {
    display: none;
}

.search-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.search-panel-container {
    margin-top: 220px;
    position: relative;
    width: 90%;
    max-width: 700px;
    background: linear-gradient(135deg, #0f172a 0%, #0a0f1a 100%);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 242, 255, 0.1);
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

.search-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
}

.search-panel-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00f2ff, #7c4dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.05);
}

.search-panel-form {
    padding: 24px;
}

.search-panel-fields {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* 分类下拉框 */
.search-category-select {
    flex: 0 0 130px;
}

.search-category-select select {
    width: 100%;
    height: 48px;
    padding: 0 32px 0 16px;
    background-color: rgba(15, 25, 35, 0.95);
    color: #f0f0f0;
    border: 1px solid rgba(0, 242, 255, 0.4);
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300f2ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    transition: all 0.2s;
}

.search-category-select select:hover {
    border-color: rgba(0, 242, 255, 0.6);
}

.search-category-select select:focus {
    outline: none;
    border-color: #00f2ff;
    box-shadow: 0 0 0 2px rgba(0, 242, 255, 0.2);
}

/* 搜索输入框 */
.search-input-wrapper {
    flex: 1;
}

.search-input-wrapper input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background-color: rgba(15, 25, 35, 0.95);
    color: #f0f0f0;
    border: 1px solid rgba(0, 242, 255, 0.4);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: #00f2ff;
    box-shadow: 0 0 0 2px rgba(0, 242, 255, 0.2);
}

.search-input-wrapper input::placeholder {
    color: #6b7280;
}

/* 搜索按钮 */
.search-submit-btn {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 24px;
    background: linear-gradient(135deg, #00f2ff, #2d7aff);
    border: none;
    border-radius: 12px;
    color: #0a0c12;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.search-submit-btn:active {
    transform: translateY(0);
}

.search-panel-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 小屏幕响应式 */
@media (max-width: 640px) {
    .search-panel {
        margin-top: 235px;
    }
    .search-panel-container {
        width: 92%;
        margin: 0 16px;
    }
    
    .search-panel-header {
        padding: 16px 20px;
    }
    
    .search-panel-form {
        padding: 20px;
    }
    
    .search-panel-fields {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-category-select {
        flex: auto;
        width: 100%;
    }
    
    .search-category-select select,
    .search-input-wrapper input,
    .search-submit-btn {
        height: 44px;
    }
    
    .search-input-wrapper {
        flex: auto;
        width: 100%;
    }
    
    .search-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .search-panel-footer {
        padding: 12px 20px;
    }
}

/* 中等屏幕：隐藏按钮文字 */
@media (min-width: 641px) and (max-width: 900px) {
    .search-category-select {
        flex: 0 0 110px;
    }
    
    .search-submit-btn span {
        display: none;
    }
    
    .search-submit-btn {
        padding: 0 16px;
    }
}


/* -------------------------------------- */
/* -------------sidebar-right------------ */
/* -------------------------------------- */