.home-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
    position: relative;
}

/* 品牌标识样式 */
.home-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-logo {
    color: #4361ee;
}

.home-navbar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 0 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    width: 100%;
    max-width: none;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
    z-index: 30;
}

.home-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.home-title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.home-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-welcome {
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.home-logout-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-logout-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.home-logout-btn svg {
    flex-shrink: 0;
}

.home-main-content {
    flex: 1;
    display: flex;
    margin: 15px 0;
    gap: 15px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.home-left-column {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding-right: 5px;
    position: relative;
    z-index: 15;
}

.home-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 20;
    isolation: isolate;
}

.home-card:hover {
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.45);
    z-index: 25;
}

.home-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.home-card-title {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.home-card-actions {
    display: flex;
    gap: 6px;
}

.home-card-refresh-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4361ee;
}

.home-card-refresh-btn:hover {
    background: rgba(67, 97, 238, 0.2);
    transform: rotate(90deg);
}

.home-stats-card {
    flex: 1;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.home-stat-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 12px;
    align-items: center;
}

.home-stat-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.home-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.home-stat-icon.home-stat-primary {
    background: rgba(67, 97, 238, 0.1);
    color: #4361ee;
}

.home-stat-icon.home-stat-success {
    background: rgba(6, 214, 160, 0.1);
    color: #06d6a0;
}

.home-stat-icon.home-stat-danger {
    background: rgba(239, 71, 111, 0.1);
    color: #ef476f;
}

.home-stat-icon.home-stat-warning {
    background: rgba(255, 209, 102, 0.1);
    color: #ffd166;
}

.home-stat-info {
    display: flex;
    flex-direction: column;
}

.home-stat-value {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
}

.home-stat-primary {
    color: #4361ee;
}

.home-stat-success {
    color: #06d6a0;
}

.home-stat-danger {
    color: #ef476f;
}

.home-stat-warning {
    color: #ffd166;
}

.home-stat-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.home-progress-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.home-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.home-progress-label, .home-progress-percent {
    font-size: 13px;
    font-weight: 500;
}

.home-progress-percent {
    color: #4361ee;
    font-weight: 600;
}

.home-uptime-display {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.home-uptime-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 12px 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-uptime-value {
    font-size: 20px;
    font-weight: 700;
    color: #4361ee;
    margin-bottom: 3px;
}

.home-uptime-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.home-config-card {
    flex: 1;
}

.home-config-content {
    margin-top: 12px;
}

.home-config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.home-config-label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.home-config-input-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-config-input-group input {
    flex: 1;
}

.home-select, .home-input-number {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: all 0.3s ease;
}

.home-select:focus, .home-input-number:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.home-input-number {
    width: 140px;
}

.home-config-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.home-right-column {
    width: 75%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 15;
}

.home-table-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.home-table-card:hover {
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.45);
    z-index: 25;
}

.home-table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(248, 249, 250, 0.9);
}

.home-table-actions-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.home-table-actions-group:last-child {
    margin-left: auto;
}

.home-table-filters {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-table-batch-actions {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.home-btn {
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.home-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.home-btn-default {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.home-btn-secondary {
    padding: 8px 14px;
    border: 1px solid #6c757d;
    background: white;
    color: #6c757d;
}

.home-btn-primary {
    padding: 8px 16px;
    border: none;
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    color: white;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.home-btn-primary:hover {
    background: linear-gradient(90deg, #3a0ca3, #4361ee);
    box-shadow: 0 6px 16px rgba(67, 97, 238, 0.4);
}

.home-btn-danger {
    padding: 8px 14px;
    border: none;
    background: linear-gradient(90deg, #ef476f, #d12d54);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 71, 111, 0.3);
}

.home-btn-danger:hover {
    background: linear-gradient(90deg, #d12d54, #ef476f);
    box-shadow: 0 6px 16px rgba(239, 71, 111, 0.4);
}

.home-table-container {
    flex: 1;
    overflow: auto;
    border-radius: 0 0 12px 12px;
    border-top: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(67, 97, 238, 0.4) rgba(0, 0, 0, 0.05);
}

.home-table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.home-table-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.home-table-container::-webkit-scrollbar-thumb {
    background: rgba(67, 97, 238, 0.4);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.home-table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(67, 97, 238, 0.7);
}

.home-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
}

.home-table-header {
    background: rgba(67, 97, 238, 0.05);
    position: sticky;
    top: 0;
}

.home-table-cell {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    
}

.home-table-header .home-table-cell {
    font-weight: 600;
    color: #444;
    background: rgba(67, 97, 238, 0.08);
}

.home-table-row {
    transition: background-color 0.2s ease;
}

.home-table-row:hover {
    background-color: rgba(67, 97, 238, 0.03);
}

.home-table-row:last-child .home-table-cell {
    border-bottom: none;
}

.home-status {
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    min-width: 40px;
    transition: all 0.3s ease;
}

.home-status-success {
    background: linear-gradient(135deg, #06d6a0, #05b78f);
    color: white;
    box-shadow: 0 2px 8px rgba(6, 214, 160, 0.4);
}

.home-status-danger {
    background: linear-gradient(135deg, #ef476f, #d12d54);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 71, 111, 0.4);
}

.home-request-count {
    padding: 5px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.home-request-count-zero {
    background-color: #eceff1;
    color: #90a4ae;
}

.home-request-count-low {
    background-color: #e3f2fd;
    color: #1976d2;
}

.home-request-count-medium {
    background-color: #e8f5e9;
    color: #388e3c;
}

.home-request-count-high {
    background-color: #fff3e0;
    color: #f57c00;
}

.home-last-access, .home-create-time {
    padding: 5px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.home-last-access.never {
    background-color: #ffebee;
    color: #c62828;
}

.home-last-access.accessed {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.home-create-time {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.home-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(248, 249, 250, 0.9);
}

.home-pagination-info {
    font-size: 13px;
    color: #666;
}

.home-pagination-controls {
    display: flex;
    gap: 6px;
}

.home-pagination-btn {
    padding: 6px 12px;
    min-width: 32px;
    border-radius: 6px;
    font-size: 13px;
}

.home-pagination-active {
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    color: white;
    border-color: #4361ee;
    box-shadow: 0 4px 8px rgba(67, 97, 238, 0.3);
}

.home-pagination-size {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.home-select-small {
    padding: 6px;
    border-radius: 4px;
    font-size: 13px;
}

.home-footer {
    margin: 0 -15px -15px -15px;
    width: calc(100% + 30px);
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.9) 0%, rgba(10, 10, 30, 0.95) 100%);
    color: #e0e0ff;
    font-weight: 500;
    text-align: center;
    padding: 15px 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-top: 1px solid rgba(100, 100, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
    z-index: 30;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 -5px 15px rgba(0, 0, 0, 0.5);
}

.home-footer-text {
    margin: 0;
    font-size: 13px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    background: linear-gradient(90deg, #ffffff, #a0a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.home-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.home-footer-info {
    flex: 1;
    text-align: left;
}

.home-footer-links {
    display: flex;
    gap: 20px;
}

.home-footer-link {
    color: #a0a0ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    position: relative;
    padding: 5px 0;
}

.home-footer-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(160, 160, 255, 0.8);
}

.home-footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    transition: width 0.3s ease;
}

.home-footer-link:hover::after {
    width: 100%;
}

.home-footer-copyright {
    flex: 1;
    text-align: right;
    font-size: 12px;
    opacity: 0.8;
}

.home-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.home-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(67, 97, 238, 0.5);
    border-radius: 3px;
}

.home-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(67, 97, 238, 0.8);
}

.home-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(67, 97, 238, 0.5) transparent;
}

/* 加载弹窗样式 */
.home-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.home-loading-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px 35px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.home-loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #4361ee;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.home-loading-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* 顶部提示框样式 */
.home-toast-container {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideDown 0.3s ease forwards, slideUp 0.3s ease 2.7s forwards;
    min-width: 300px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.home-toast-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    font-weight: 500;
    color: #fff;
}

.home-toast-message {
    flex: 1;
    margin-right: 12px;
    font-size: 13px;
}

.home-toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-toast-close:hover {
    opacity: 0.8;
}

/* 不同类型提示框的颜色 */
.home-toast-container.success {
    background: linear-gradient(90deg, #06d6a0, #05b78f);
}

.home-toast-container.error {
    background: linear-gradient(90deg, #ef476f, #d12d54);
}

.home-toast-container.warning {
    background: linear-gradient(90deg, #ffd166, #ffb037);
    color: #333 !important;
}

.home-toast-container.info {
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
}

.home-toast-container.warning .home-toast-close {
    color: #333;
}

@keyframes slideDown {
    to {
        top: 20px;
    }
}

@keyframes slideUp {
    to {
        top: -60px;
    }
}

.home-pagination-ellipsis {
    padding: 0.4rem 0.6rem;
    margin: 0 0.2rem;
    color: #6c757d;
    pointer-events: none;
    user-select: none;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .home-main-content {
        flex-direction: column;
    }

    .home-left-column, .home-right-column {
        width: 100%;
    }

    .home-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .home-container {
        padding: 10px;
    }

    .home-navbar {
        padding: 0 15px;
    }

    .home-navbar-content {
        flex-direction: column;
        gap: 12px;
        height: auto;
        padding: 12px 0;
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-table-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-table-actions-group:last-child {
        margin-left: 0;
    }

    .home-table-filters, .home-table-batch-actions {
        margin: 5px 0;
    }

    .home-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .home-footer-info,
    .home-footer-copyright {
        text-align: center;
        flex: none;
    }

    .home-footer-links {
        justify-content: center;
    }

    .home-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .home-pagination-controls {
        justify-content: center;
    }

    .home-pagination-size {
        justify-content: center;
    }
}

.home-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.home-search-container {
    flex: 1;
    max-width: 300px;
    margin: 0 15px;
}

.home-search-box {
    display: flex;
    align-items: center;
    background: rgba(240, 240, 240, 0.8);
    border-radius: 20px;
    padding: 4px 4px 4px 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.home-search-box:focus-within {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.home-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: 13px;
    outline: none;
    color: #333;
}

.home-search-input::placeholder {
    color: #999;
}

.home-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4361ee;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.home-search-btn:hover {
    background: #3a0ca3;
    transform: scale(1.05);
}

/* 分组设置样式 */
.home-group-card {
    flex: 1;
}

.home-group-content {
    margin-top: 15px;
}

.home-group-add {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.home-group-add .home-input-number {
    flex: 1;
    width: auto;
}

.home-group-list {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 5px;
}

.home-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.home-group-item:hover {
    background-color: rgba(67, 97, 238, 0.05);
    border-radius: 6px;
}

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

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

.home-group-actions {
    display: flex;
    gap: 5px;
}

.home-filter-text {
    font-size: 13px;
    color: #666;
    background-color: rgba(67, 97, 238, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    font-weight: 500;
    border: 1px solid rgba(67, 97, 238, 0.2);
}

/* 美化滚动条 */
.home-group-list::-webkit-scrollbar {
    width: 6px;
}

.home-group-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.home-group-list::-webkit-scrollbar-thumb {
    background: rgba(67, 97, 238, 0.4);
    border-radius: 3px;
}

.home-group-list::-webkit-scrollbar-thumb:hover {
    background: rgba(67, 97, 238, 0.7);
}

/* 调整表格操作栏以适应新元素 */
.home-table-filters {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .home-filter-text {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* 批量操作按钮样式 */
.home-batch-operations-container {
    position: relative;
    display: flex;
    align-items: center;
}

.home-batch-operations-btn {
    position: relative;
    background: linear-gradient(90deg, #6f42c1, #5a32a3);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
    padding: 8px 16px 8px 14px;
}

.home-batch-operations-btn:hover {
    background: linear-gradient(90deg, #5a32a3, #6f42c1);
    box-shadow: 0 6px 16px rgba(111, 66, 193, 0.4);
}

.home-batch-info-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 添加脉冲动画效果 */
.home-batch-operations-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #6f42c1, #5a32a3);
    z-index: -1;
    animation: home-pulse 2s infinite;
}

@keyframes home-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .home-batch-info-badge {
        display: none;
    }

    .home-batch-operations-btn {
        padding: 8px 12px;
    }
}

/* 筛选与批量操作面板样式 */
.home-filter-batch-card {
    flex: 1;
}

.home-filter-batch-content {
    margin-top: 15px;
}

.home-filter-section, .home-batch-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.home-filter-section:last-child, .home-batch-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.home-filter-title, .home-batch-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333;
}

.home-filter-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.home-filter-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-filter-label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.home-filter-item .home-select,
.home-filter-item .home-input-number {
    width: 100%;
}

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

.home-batch-info {
    margin-bottom: 15px;
}

.home-batch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.home-batch-actions .home-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    justify-content: flex-start;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .home-filter-actions {
        flex-direction: column;
    }

    .home-batch-actions .home-btn {
        width: 100%;
    }
}

.home-table-cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 600px; /* 可根据实际需要调整宽度 */
}