/* 1. 基础重置 - 清除浏览器默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 颜色变量定义 */
:root {
    --primary-color: #ff7200; /* 主色调 - 橙色 */
    --primary-hover: #e66600; /* 主色调悬停色 */
    --primary-light: rgba(255, 114, 0, 0.1); /* 主色调浅色背景 */
    --secondary-color: #333333; /* 辅助色 - 深灰色 */
    --text-primary: #333333; /* 主要文本色 */
    --text-secondary: #666666; /* 次要文本色 */
    --text-light: #999999; /* 浅色文本 */
    --border-color: #e0e0e0; /* 边框色 */
    --border-radius: 8px; /* 默认边框圆角 */
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 默认阴影 */
    --box-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12); /* 悬停阴影 */
    --background-color: #f8f9fa; /* 页面背景色 */
    --card-background: #ffffff; /* 卡片背景色 */
    --success-color: #52c41a; /* 成功色 */
    --pending-color: #faad14; /* 待处理色 */
    --rejected-color: #f5222d; /* 驳回色 */
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    background-color: var(--background-color);
    padding: 0;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 2. 容器样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* 3. 顶部导航栏样式 */
.top-header {
    width: 100%;
}

/* 通用header样式 */
.header {
    width: 100%;
    background-color: var(--card-background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header {
    background-color: var(--card-background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header .container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 0;
    padding: 10px 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.header-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    width: calc(100% - 180px);
    min-width: 0;
    box-sizing: border-box;
}

/* 当前时间显示 - 中国风设计 */

/* 节气和节日显示 */
.solar-term-festival {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #ff7200;
    margin: 5px 0;
    padding: 2px 8px;
    background-color: rgba(255, 114, 0, 0.1);
    border-radius: 12px;
    display: inline-block;
    align-self: center;
}
.current-time {
    font-size: 14px;
    color: #c8102e;
    font-family: 'SimSun', '宋体', serif;
    font-weight: bold;
    padding: 6px;
    border-radius: 0;
    border: none;
    width: 380px !important;
    height: 140px !important;
    text-align: center;
    position: fixed;
    top: 0px;
    right: -20px;
    z-index: 1001;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: none;
}

/* 时间内容 */
.current-time .time-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.current-time .solar-date {
    font-size: 16px;
    font-weight: bold;
    color: #c8102e;
    line-height: 1.2;
}

.current-time .time {
    font-size: 14px;
    color: #333;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    line-height: 1.2;
}

/* 星期几和农历日期容器 */
.current-time .weekday-lunar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 8px;
}

.current-time .weekday {
    font-size: 14px;
    font-weight: bold;
    color: #1a5276;
    line-height: 1.2;
    flex: 1;
    text-align: left;
    white-space: nowrap;
}

.current-time .lunar-date {
    font-size: 14px;
    font-weight: bold;
    color: #1a5276;
    line-height: 1.2;
    flex: 1;
    text-align: right;
    white-space: nowrap;
}

.current-time .countdown {
    font-size: 14px;
    font-weight: bold;
    color: #c8102e;
    line-height: 1.2;
    margin-top: 2px;
}

/* 节气和节日显示 */
.current-time .solar-term-festival {
    font-size: 14px;
    font-weight: bold;
    color: #ff7200;
    line-height: 1.2;
    padding: 2px 10px;
    background-color: rgba(255, 114, 0, 0.1);
    border-radius: 12px;
    margin: 2px 0;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .current-time {
        width: 320px !important;
        font-size: 14px;
        padding: 12px;
    }
    
    .current-time .solar-date {
        font-size: 16px;
    }
    
    .current-time .time {
        font-size: 14px;
    }
    
    .current-time .lunar-date {
        font-size: 14px;
    }
    
    .current-time .activities {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .current-time {
        width: 280px !important;
        font-size: 12px;
        padding: 10px;
    }
    
    .current-time .solar-date {
        font-size: 14px;
    }
    
    .current-time .time {
        font-size: 12px;
    }
    
    .current-time .lunar-date {
        font-size: 12px;
    }
    
    .current-time .activities {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .current-time {
        width: 240px !important;
        font-size: 10px;
        padding: 8px;
    }
    
    .current-time .solar-date {
        font-size: 12px;
    }
    
    .current-time .time {
        font-size: 10px;
    }
    
    .current-time .lunar-date {
        font-size: 10px;
    }
    
    .current-time .activities {
        font-size: 9px;
    }
}

.header-right > * {
    width: 100%;
    box-sizing: border-box;
}

/* 当前筛选条件显示框 */
.active-filters {
    width: 100%;
    margin-top: 10px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.active-filters h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.active-filter-item {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 12px;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.active-filter-item .filter-label {
    margin-right: 2px;
}

.active-filter-item .filter-value {
    margin-right: 5px;
    margin-left: 2px;
}

.active-filter-item .remove-filter {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #999;
    margin-left: 5px;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-filter-item .remove-filter:hover {
    color: #ff0000;
}

.search-container {
    width: 70% !important;
    max-width: 70% !important;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

/* 4. Logo样式 */
.logo-box {
    display: flex;
    align-items: center;
}

.logo-link {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-link:hover {
    color: var(--primary-color);
}

/* 5. 导航菜单样式 */
.main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.nav-item.active {
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
}

.nav-item.active:hover {
    color: var(--primary-color);
    background-color: transparent;
}

/* 6. 搜索框样式 */
.search-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.search-input {
    flex: 1;
    padding: 10px 20px;
    border: 2px solid #ff7200; 
    border-right: none;
    border-radius: 20px 0 0 20px; 
    font-size: 14px;
    outline: none;
    background-color: var(--primary-background);
    box-shadow: var(--box-shadow);
    min-width: 0;
}

.search-input:focus {
    border-color: #ff7200;
    box-shadow: 0 0 0 2px var(--primary-light);
}

.search-btn {
    padding: 10px 25px;
    background-color: #ff7200;
    color: white;
    border: 2px solid #ff7200;
    border-radius: 0 20px 20px 0; 
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: var(--box-shadow);
    white-space: nowrap;
}

/* 批量搜索按钮样式 */
.batch-search-btn {
    padding: 10px 15px;
    background-color: white;
    color: black;
    border: 2px solid #ff7200;
    border-radius: 0 20px 20px 0;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    white-space: nowrap;
    margin-left: 5px;
}

.batch-search-btn:hover {
    background-color: #fff3e6;
    color: #ff7200;
}

/* 批量搜索提示框样式 */
.batch-search-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.batch-search-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.batch-search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 10px 10px 0 0;
}

.batch-search-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.batch-search-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.batch-search-close:hover {
    background-color: #e0e0e0;
    color: #333;
}

.batch-search-modal-body {
    padding: 20px;
}

.batch-search-modal-body p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.batch-search-textarea {
    width: 100%;
    height: 200px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s ease;
}

.batch-search-textarea:focus {
    outline: none;
    border-color: #ff7200;
    box-shadow: 0 0 0 2px rgba(255, 114, 0, 0.1);
}

.batch-search-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 10px 10px;
}

.batch-search-cancel {
    padding: 8px 20px;
    background-color: white;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.batch-search-cancel:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.batch-search-confirm {
    padding: 8px 20px;
    background-color: #ff7200;
    color: white;
    border: 1px solid #ff7200;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.batch-search-confirm:hover {
    background-color: #e66600;
    border-color: #e66600;
}

.search-btn:hover {
    background-color: var(--primary-hover);
}

/* 7. 登录按钮样式 */
.login-btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 114, 0, 0.3);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 114, 0, 0.2);
}

/* 通用按钮样式增强 */
.upload-btn,
.search-btn,
.page-btn,
.filter-btn,
.classify-box,
.filter-option,
.page-jump-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 按钮点击反馈效果 */
.upload-btn:active,
.search-btn:active,
.login-btn:active,
.page-btn:active,
.filter-btn:active,
.classify-box:active,
.filter-option:active,
.page-jump-btn:active {
    transform: scale(0.98);
}

/* 卡片悬停效果增强 */
.result-item {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.result-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 表单元素交互增强 */
input[type="text"],
input[type="number"],
input[type="search"],
select {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-light);
    transform: translateY(-1px);
}

/* 标签页切换动画 */
.category-tabs {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.category-tab {
    padding: 8px 12px;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-tab:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-tab.active {
    transform: translateY(-2px);
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 7. Hero区域样式 */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9500 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.hero-search-btn {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-search-btn:hover {
    background-color: #555555;
}

/* 8. 核心功能区样式 */
.features-section {
    padding: 80px 0;
    background-color: var(--card-background);
}

.features-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: var(--background-color);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 9. 商标类别选择标签样式 */
.category-section {
    padding: 40px 0;
    background-color: var(--card-background);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.upload-btn {
    padding: 6px 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.upload-btn:hover {
    background-color: var(--primary-hover);
}

.category-header h2 {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0;
    text-align: left;
    white-space: nowrap;
    width: 80px;
    font-weight: normal;
    margin-top: 4px;
}

.category-header .category-tabs {
    flex-grow: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.category-filter {
    display: flex;
    align-items: center;
}

.filter-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-right: 10px;
}

.filter-options {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 6px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--card-background);
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.param-item-box {
    background-color: var(--card-background);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.param-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.param-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start; 
}

#param-lei-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100%;
}

.classify-box {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    color: var(--text-primary);
    user-select: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.classify-box:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.classify-box.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

.classify-box.active:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* 筛选选项样式 */
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.filter-group h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.filter-options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-option {
    display: inline-block;
    padding: 6px 12px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-option:hover {
    border-color: #ff7200;
    color: #ff7200;
}

.filter-option.active {
    background-color: #ff7200;
    color: white;
    border-color: #ff7200;
}

.filter-option.select-all {
    border-color: #ff7200;
    color: #ff7200;
}

/* 价格输入框样式 */
.price-input {
    height: 34px;
    width: 80px;
    padding: 6px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--card-background);
}

.price-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-light);
}

/* 搜索筛选框样式 */
.filter-search {
    display: flex;
    align-items: center;
}

.filter-search-input {
    height: 34px;
    width: 200px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--card-background);
}

.filter-search-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-light);
}

/* 价格区间容器样式 */
.price-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 预设价格按钮容器样式 */
.price-presets {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

/* 预设价格按钮样式 */
.price-preset-btn {
    height: 34px;
    padding: 6px 12px;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.price-preset-btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.price-preset-btn:active {
    transform: scale(0.98);
}

.price-preset-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* 调整筛选组样式，确保价格区间和预设按钮在同一行显示 */
.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.filter-group label {
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 4px;
    min-width: 80px;
}

/* 隐藏数字输入框的上下箭头 */
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button,
#param-sq-num-start::-webkit-outer-spin-button,
#param-sq-num-start::-webkit-inner-spin-button,
#param-sq-num-end::-webkit-outer-spin-button,
#param-sq-num-end::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 隐藏Firefox的数字输入框上下箭头 */
#param-sq-num-start,
#param-sq-num-end {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* 10. 商标搜索结果样式 */
.results-section {
    padding: 40px 0;
    background-color: white;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-header h2 {
    font-size: 18px;
    color: #333333;
    margin: 0;
}

.results-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-count {
    font-size: 14px;
    color: #666;
}

.page-btn {
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.page-btn:hover {
    border-color: #ff7200;
    color: #ff7200;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.select-all-btn {
    padding: 4px 8px;
    border: 1px solid #ff7200;
    border-radius: 4px;
    background-color: #fff;
    color: #ff7200;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.select-all-btn:hover {
    background-color: #ff7200;
    color: #fff;
}

.results-filter {
    display: flex;
    align-items: center;
}

.result-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.result-item {
    flex: 0 0 calc(20% - 12px);
    max-width: calc(20% - 12px);
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    border-color: #ff7200;
}

.result-item.selected {
    border-color: #ff7200;
    background-color: #fff3e6;
    box-shadow: 0 0 0 2px rgba(255, 114, 0, 0.2);
}

/* 分页容器样式 */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 分页控件样式 */
.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 每页条数选择器样式 */
.page-size-select {
    padding: 6px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.page-size-select:hover {
    border-color: #ff7200;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 快速分页控件样式 */
.quick-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

/* 快速分页按钮样式 */
.quick-page-btn {
    padding: 6px 10px;
    background-color: white;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    white-space: nowrap;
}

.quick-page-btn:hover:not(.disabled) {
    background-color: #f5f5f5;
    border-color: #ff7200;
    color: #ff7200;
    box-shadow: 0 2px 8px rgba(255, 114, 0, 0.15);
}

.quick-page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 当前页数圆形显示样式 */
.current-page-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ff7200;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(255, 114, 0, 0.2);
    transition: all 0.3s ease;
}

.current-page-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 114, 0, 0.3);
}

/* 页码跳转样式 */
.page-jump {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 页码输入框样式 */
.page-input {
    width: 60px;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    /* 移除上下箭头 */
    -moz-appearance: textfield;
    appearance: textfield;
    transition: all 0.3s ease;
}

.page-input:focus {
    border-color: #ff7200;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 114, 0, 0.1);
}

/* 移除Chrome/Safari/Opera的上下箭头 */
.page-input::-webkit-outer-spin-button,
.page-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 跳转按钮样式 */
.page-jump-btn {
    padding: 8px 15px;
    border: 1px solid #ff7200;
    border-radius: 6px;
    background-color: white;
    color: #ff7200;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-jump-btn:hover {
    background-color: #ff7200;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 114, 0, 0.2);
}

.item-iner-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img-box {
    padding: 4px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
}

.result-logo {
    font-size: 32px;
    margin: 0;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.result-logo img {
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-img-box:hover .result-logo {
    transform: scale(1.1);
    cursor: pointer;
}

.item-img-box:hover .result-logo img {
    transform: scale(1.1);
    cursor: pointer;
}

.item-info {
    padding: 8px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background-color: var(--card-background);
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .result-item {
        flex: 0 0 calc(20% - 12px);
        max-width: calc(20% - 12px);
    }
}

@media (max-width: 1200px) {
    .result-item {
        flex: 0 0 calc(25% - 11.25px);
        max-width: calc(25% - 11.25px);
    }
}

@media (max-width: 992px) {
    .result-item {
        flex: 0 0 calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .search-container {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .result-item {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .nav-list {
        justify-content: center;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    #param-lei-box {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .result-item {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-item {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .category-tabs {
        gap: 5px;
    }
    
    .category-tab {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    #param-lei-box {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .filter-options-list {
        justify-content: flex-start;
    }
}

@media (max-width: 400px) {
    .result-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    #param-lei-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

.item-name {
    margin-bottom: 8px;
}

.cube-item-one {
    width: 100%;
    margin-bottom: 6px;
}

.item-inner-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.item-lei {
    font-size: 12px;
    color: #666;
}

.item-price {
    font-size: 12px;
    color: #ff7200;
    font-weight: 500;
}

.price-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-status-row .item-price {
    margin: 0;
}

.price-status-row .item-status {
    margin: 0;
}

.item-status {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
}

.item-status.success {
    background-color: #e6f7ee;
    color: #36b37e;
}

.item-status.pending {
    background-color: #fff7e6;
    color: #fa8c16;
}

.item-status.rejected {
    background-color: #fff1f0;
    color: #ff4d4f;
}

/* 响应式调整 - 确保每行最多5个容器 */
@media (max-width: 1600px) {
    .result-item-cube-box {
        flex: 0 0 calc(20% - 12px);
        max-width: calc(20% - 12px);
    }
}

@media (max-width: 1200px) {
    .result-item {
        flex: 0 0 calc(25% - 11.25px);
        max-width: calc(25% - 11.25px);
    }
}

@media (max-width: 992px) {
    .result-item {
        flex: 0 0 calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .result-item {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
}

@media (max-width: 576px) {
    .result-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.page-btn {
    padding: 4px 8px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(.disabled) {
    border-color: #ff7200;
    color: #ff7200;
}

.page-btn.active {
    background-color: #ff7200;
    color: white;
    border-color: #ff7200;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-btn.disabled:hover {
    border-color: #ddd;
    color: #666666;
}

/* 11. 常见问题样式 */
.faq-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 30px;
}

.faq-list {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 100%;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-answer {
    padding: 0 20px;
    margin: 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: none;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question {
    background-color: #fff5ee;
    color: #ff7200;
}

/* 12. 页脚样式 */
.footer {
    background-color: #f9f9f9;
    color: #333333;
    padding: 40px 0 20px;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333333;
    font-weight: 500;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666666;
}

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

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

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff7200;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999999;
}

/* 13. 响应式设计 */
@media (max-width: 1600px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 1400px) {
    .nav-list {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .nav-list {
        gap: 15px;
    }
    
    
    .nav-item {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 992px) {
    .top-header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav {
        align-items: flex-start;
        margin-top: 15px;
        width: 100%;
    }
    
    .nav-list {
        gap: 10px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .category-header,
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-header {
        padding: 10px 0;
    }
    
    .logo-link {
        font-size: 24px;
    }
    
    .search-input {
        padding: 8px 15px;
    }
    
    .search-btn {
        padding: 8px 20px;
    }
    
    .category-section,
    .results-section,
    .faq-section,
    .footer {
        padding: 30px 0;
    }
    
    .classify-box {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .result-item {
        padding: 15px;
    }
    
    .result-info h3 {
        font-size: 16px;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .nav-list {
        gap: 8px;
    }
    
    .nav-item {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .filter-options {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}
    
    .nav-item {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    #param-lei-box {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .hero-search {
        max-width: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }


@media (max-width: 768px) {
    .top-header {
        padding: 15px 0;
    }
    
    .logo-link {
        font-size: 20px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #param-lei-box {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-search {
        max-width: 400px;
    }
    
    .features-section,
    .category-section,
    .results-section,
    .faq-section,
    .footer {
        padding: 60px 0;
    }
    
    .features-grid,
    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    #param-lei-box {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-section h1 {
        font-size: 24px;
    }
    
    .hero-search {
        flex-direction: column;
        max-width: 100%;
    }
    
    .hero-search-input,
    .hero-search-btn {
        width: 100%;
    }
    
    .classify-box {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
    }
    
    .result-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .result-btn {
        margin-top: 15px;
    }
}

@media (max-width: 400px) {
    #param-lei-box {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 底部操作窗口样式 */
.bottom-actions {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: all 0.3s ease;
}

.bottom-actions-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-action-btn {
    padding: 12px 24px;
    background-color: #ff7200;
    color: white;
    border: 1px solid #ff7200;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 114, 0, 0.2);
    white-space: nowrap;
}

.bottom-action-btn:hover {
    background-color: #e66600;
    border-color: #e66600;
    box-shadow: 0 4px 12px rgba(255, 114, 0, 0.3);
    transform: translateY(-2px);
}

.bottom-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 114, 0, 0.2);
}

/* 悬浮导航栏样式 */
.base-nav-box {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: transparent;
    border-radius: 10px;
    padding: 10px;
}

#nav-btn-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    color: #333;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #f0f0f0;
}

.nav-btn-item:hover {
    background-color: rgba(240, 240, 240, 0.8);
    color: #ff7200;
}

.nav-btn-item-choosed {
    background-color: rgba(255, 245, 238, 0.8);
    color: #ff7200;
}

.nav-btn-item i {
    font-size: 24px;
    margin-bottom: 3px;
}

.nav-btn-item br {
    margin: 2px 0;
}

/* 响应式设计 */
@media (max-width: 1600px) {
    .base-nav-box {
        top: 120px;
    }
}

@media (max-width: 1400px) {
    .base-nav-box {
        right: 15px;
        top: 100px;
    }
}

@media (max-width: 1200px) {
    .base-nav-box {
        right: 10px;
        top: 90px;
        padding: 8px;
    }
    
    .nav-btn-item {
        width: 55px;
        height: 55px;
    }
    
    .nav-btn-item i {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .base-nav-box {
        right: 5px;
        top: 80px;
        padding: 5px;
    }
    
    .nav-btn-item {
        width: 50px;
        height: 50px;
    }
    
    .nav-btn-item i {
        font-size: 16px;
    }
    
    #nav-btn-box {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .base-nav-box {
        position: fixed;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        width: auto;
        padding: 8px;
    }
    
    #nav-btn-box {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-btn-item {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .base-nav-box {
        right: 5px;
        padding: 5px;
    }
    
    #nav-btn-box {
        gap: 6px;
    }
    
    .nav-btn-item {
        width: 45px;
        height: 45px;
        font-size: 11px;
    }
    
    .nav-btn-item i {
        font-size: 14px;
    }
}

/* 群组选择样式 */
.group-selection-placeholder {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin: 0;
    align-self: center;
}

/* 隐藏筛选组样式 */
.filter-group-hidden {
    display: none;
}

/* 展开/隐藏按钮样式 */
.expand-btn {
    padding: 8px 16px;
    background-color: transparent;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.expand-btn:hover {
    color: #ff7200;
    font-weight: bold;
}

/* 类别群组容器样式 */
.category-group-container {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

/* 类别群组标签样式 */
.category-group-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    min-width: 80px;
    flex-shrink: 0;
}

/* 群组按钮容器样式 */
.group-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

/* 状态筛选容器样式 */
.status-filter-section {
    padding: 20px 0;
    background-color: var(--card-background);
    border-bottom: 1px solid var(--border-color);
}

.status-filter-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.status-filter-options {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.status-filter-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid transparent;
}

.status-filter-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 16px;
    border: 1px solid transparent;
    background-color: transparent;
    font-weight: 500;
}

.status-filter-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.status-filter-btn.active {
    color: white;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(255, 114, 0, 0.3);
}

.status-filter-btn.active:hover {
    color: white;
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .status-filter-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .status-filter-options {
        width: 100%;
        justify-content: flex-start;
    }
    
    .status-filter-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .status-filter-section {
        padding: 15px 0;
    }
    
    .status-filter-options {
        gap: 8px;
    }
    
    .status-filter-btn {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* 消息提示框样式 */
.toast-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-message.show {
    opacity: 1;
    visibility: visible;
}

.toast-message.success {
    background-color: rgba(82, 196, 26, 0.7);
}

.toast-message.error {
    background-color: rgba(245, 34, 45, 0.7);
}

.toast-content {
    display: block;
    text-align: center;
}