/* _content/Server/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-0ub1g8931a] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0ub1g8931a] {
    flex: 1;
}

.sidebar[b-0ub1g8931a] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-0ub1g8931a] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 用户信息样式 */
.user-info-header[b-0ub1g8931a] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.welcome-text[b-0ub1g8931a] {
    font-size: 0.9rem;
    opacity: 0.9;
}

.user-name[b-0ub1g8931a] {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.admin-badge[b-0ub1g8931a] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(238, 90, 36, 0.3);
}

.btn-logout[b-0ub1g8931a] {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-logout:hover[b-0ub1g8931a] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 游客信息样式 */
.guest-info[b-0ub1g8931a] {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.9;
}

.btn-login-link[b-0ub1g8931a] {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-login-link:hover[b-0ub1g8931a] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .top-row[b-0ub1g8931a]  a, .top-row[b-0ub1g8931a]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-0ub1g8931a]  a:hover, .top-row[b-0ub1g8931a]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-0ub1g8931a]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* 响应式设计 */
@media (max-width: 768px) {
    .user-info-header[b-0ub1g8931a] {
        gap: 0.5rem;
    }
    
    .welcome-text[b-0ub1g8931a] {
        display: none;
    }
    
    .user-name[b-0ub1g8931a] {
        font-size: 0.9rem;
    }
    
    .admin-badge[b-0ub1g8931a] {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .btn-logout[b-0ub1g8931a], .btn-login-link[b-0ub1g8931a] {
        padding: 0.25rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .top-row[b-0ub1g8931a] {
        height: 3rem;
        padding: 0 1rem;
    }
    
    .user-info-header[b-0ub1g8931a] {
        gap: 0.25rem;
    }
    
    .user-name[b-0ub1g8931a] {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 640.98px) {
    .top-row[b-0ub1g8931a] {
        justify-content: space-between;
    }

    .top-row[b-0ub1g8931a]  a, .top-row[b-0ub1g8931a]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-0ub1g8931a] {
        flex-direction: row;
    }

    .sidebar[b-0ub1g8931a] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-0ub1g8931a] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-0ub1g8931a]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-0ub1g8931a], article[b-0ub1g8931a] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-0ub1g8931a] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-0ub1g8931a] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Server/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-yott0k7ksm] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-yott0k7ksm] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-yott0k7ksm] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-yott0k7ksm] {
    font-size: 1.1rem;
}


.bi[b-yott0k7ksm] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-search-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
}

.bi-heart-fill-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-heart-fill' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z'/%3E%3C/svg%3E");
}

.bi-shop-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-shop' viewBox='0 0 16 16'%3E%3Cpath d='M2.97 1.35A1 1 0 0 1 3.73 1h8.54a1 1 0 0 1 .76.35l2.609 3.044A1.5 1.5 0 0 1 16 5.37v.255a2.375 2.375 0 0 1-4.25 1.458A2.371 2.371 0 0 1 9.875 8 2.37 2.37 0 0 1 8 7.083 2.37 2.37 0 0 1 6.125 8a2.37 2.37 0 0 1-1.875-.917A2.375 2.375 0 0 1 0 5.625V5.37a1.5 1.5 0 0 1 .361-.976l2.61-3.045zm1.78 4.275a1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0 1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0 1.375 1.375 0 1 0 2.75 0V5.37a.5.5 0 0 0-.12-.325L12.27 2H3.73L1.12 5.045A.5.5 0 0 0 1 5.37v.255a1.375 1.375 0 0 0 2.75 0 .5.5 0 0 1 1 0zM1.5 8.5A.5.5 0 0 1 2 9v6h1v-5a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v5h6V9a.5.5 0 0 1 1 0v6h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1V9a.5.5 0 0 1 .5-.5zM4 15h3v-5H4v5zm5-5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-3zm3 0h-2v3h2v-3z'/%3E%3C/svg%3E");
}

.bi-shield-check-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-shield-check' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61.44 61.44 0 0 0-2.837.856.481.481 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.725 10.725 0 0 0 2.287 2.233c.346.244.652.42.893.533.12.057.218.095.293.118a.55.55 0 0 0 .101.025.615.615 0 0 0 .1-.025c.076-.023.174-.061.294-.118.24-.113.547-.29.893-.533a10.726 10.726 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.775 11.775 0 0 1-2.517 2.453 7.159 7.159 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7.158 7.158 0 0 1-1.048-.625 11.777 11.777 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43c.658-.215 1.777-.57 2.887-.87z'/%3E%3Cpath d='M10.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.bi-gear-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z'/%3E%3C/svg%3E");
}

.bi-check-circle-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-check-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
}

.bi-database-gear-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-database-gear' viewBox='0 0 16 16'%3E%3Cpath d='M12.096 6.223A4.92 4.92 0 0 0 13 5.698V7c0 .289-.213.654-.896.812-.832.21-2.031.184-2.912-.029-.088-.006-.154-.064-.154-.143 0-.079.066-.137.154-.143.843-.224 1.846-.186 2.606-.002.66-.27.867-.836.867-1.446V5.698c0 .09.018.225.096.327z'/%3E%3Cpath d='M4.5 2a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-7zm0-1A1.5 1.5 0 0 0 3 2.5v9A1.5 1.5 0 0 0 4.5 13h7a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 11.5 1h-7z'/%3E%3Cpath d='M7.5 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
}

.bi-bell-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-bell' viewBox='0 0 16 16'%3E%3Cpath d='M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2zM8 1.918l-.797.161A4.002 4.002 0 0 0 4 6c0 .628-.134 2.197-.459 3.742-.16.767-.376 1.566-.663 2.258h10.244c-.287-.692-.502-1.49-.663-2.258C10.134 8.197 10 6.628 10 6a4.002 4.002 0 0 0-3.203-3.92L8 1.917zM14.22 12c.223.447.481.801.78 1H1c.299-.199.557-.553.78-1C2.68 10.2 3 6.88 3 6c0-2.42 1.72-4.44 4.005-4.901a1 1 0 1 1 1.99 0A5.002 5.002 0 0 1 13 6c0 .88.32 4.2 1.22 6z'/%3E%3C/svg%3E");
}

.bi-cpu-nav-menu[b-yott0k7ksm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-cpu' viewBox='0 0 16 16'%3E%3Cpath d='M5 0a.5.5 0 0 1 .5.5V2h1V.5a.5.5 0 0 1 1 0V2h1V.5a.5.5 0 0 1 1 0V2h1V.5a.5.5 0 0 1 1 0V2A2.5 2.5 0 0 1 14 4.5h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14v1h1.5a.5.5 0 0 1 0 1H14a2.5 2.5 0 0 1-2.5 2.5v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14h-1v1.5a.5.5 0 0 1-1 0V14A2.5 2.5 0 0 1 2 11.5H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2v-1H.5a.5.5 0 0 1 0-1H2A2.5 2.5 0 0 1 4.5 2V.5A.5.5 0 0 1 5 0zm-.5 3A1.5 1.5 0 0 0 3 4.5v7A1.5 1.5 0 0 0 4.5 13h7a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 11.5 3h-7zM5 6.5A1.5 1.5 0 0 1 6.5 5h3A1.5 1.5 0 0 1 11 6.5v3A1.5 1.5 0 0 1 9.5 11h-3A1.5 1.5 0 0 1 5 9.5v-3zM6.5 6a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3z'/%3E%3C/svg%3E");
}

.nav-item[b-yott0k7ksm] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-yott0k7ksm] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-yott0k7ksm] {
        padding-bottom: 1rem;
    }

    .nav-item[b-yott0k7ksm]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-yott0k7ksm]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-yott0k7ksm]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-yott0k7ksm] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-yott0k7ksm] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-yott0k7ksm] {
        display: none;
    }

    .nav-scrollable[b-yott0k7ksm] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/Server/Components/Pages/AdminSettings.razor.rz.scp.css */
/* Admin Container */
.admin-container[b-pmzujnp44f] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
}

.admin-header[b-pmzujnp44f] {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.admin-title[b-pmzujnp44f] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.gradient-text[b-pmzujnp44f] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-subtitle[b-pmzujnp44f] {
    font-size: 1.125rem;
    color: #636e72;
    margin: 0;
}

/* Access Denied */
.access-denied[b-pmzujnp44f] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.access-denied-content[b-pmzujnp44f] {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.access-denied-content h2[b-pmzujnp44f] {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.access-denied-content p[b-pmzujnp44f] {
    color: #636e72;
    margin-bottom: 2rem;
}

/* Settings Sections */
.admin-content[b-pmzujnp44f] {
    max-width: 1200px;
    margin: 0 auto;
}

.settings-section[b-pmzujnp44f] {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.section-header[b-pmzujnp44f] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-header h3[b-pmzujnp44f] {
    margin: 0;
    color: #2d3436;
    font-weight: 600;
}

/* Area Selector */
.area-selector[b-pmzujnp44f] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.area-selector label[b-pmzujnp44f] {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
    display: block;
    min-width: 100px;
}

.area-selector .form-control[b-pmzujnp44f] {
    flex: 1;
    min-width: 200px;
}

/* Scenes Grid */
.scenes-grid[b-pmzujnp44f] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.scene-card[b-pmzujnp44f] {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.scene-card:hover[b-pmzujnp44f] {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.scene-header[b-pmzujnp44f] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.scene-header h4[b-pmzujnp44f] {
    margin: 0;
    color: #2d3436;
    font-weight: 600;
}

.scene-actions[b-pmzujnp44f] {
    display: flex;
    gap: 0.5rem;
}

.scene-coordinates[b-pmzujnp44f] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.coordinate-item[b-pmzujnp44f] {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.coordinate-label[b-pmzujnp44f] {
    font-weight: 600;
    color: #636e72;
    margin-right: 0.5rem;
}

.coordinate-value[b-pmzujnp44f] {
    font-weight: 700;
    color: #2d3436;
}

.scene-time[b-pmzujnp44f] {
    font-size: 0.875rem;
    color: #636e72;
    font-style: italic;
}

/* Empty State */
.empty-state[b-pmzujnp44f] {
    text-align: center;
    padding: 3rem;
    color: #636e72;
}

.empty-state p[b-pmzujnp44f] {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group[b-pmzujnp44f] {
    margin-bottom: 1.5rem;
}

.form-group label[b-pmzujnp44f] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3436;
}

.form-control[b-pmzujnp44f] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus[b-pmzujnp44f] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row[b-pmzujnp44f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Button Styles */
.btn[b-pmzujnp44f] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-icon[b-pmzujnp44f] {
    font-size: 1rem;
}

.btn-sm[b-pmzujnp44f] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary[b-pmzujnp44f] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover[b-pmzujnp44f] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-success[b-pmzujnp44f] {
    background: linear-gradient(45deg, #00b894, #00a085);
    color: white;
}

.btn-success:hover[b-pmzujnp44f] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.btn-danger[b-pmzujnp44f] {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.btn-danger:hover[b-pmzujnp44f] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary[b-pmzujnp44f] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover[b-pmzujnp44f] {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-outline-primary[b-pmzujnp44f] {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline-primary:hover[b-pmzujnp44f] {
    background: #667eea;
    color: white;
}

.btn-outline-danger[b-pmzujnp44f] {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-outline-danger:hover[b-pmzujnp44f] {
    background: #e74c3c;
    color: white;
}

/* Modal Styles */
.modal-overlay[b-pmzujnp44f] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content[b-pmzujnp44f] {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-pmzujnp44f] {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4[b-pmzujnp44f] {
    margin: 0;
    color: #2d3436;
    font-weight: 600;
}

.btn-close[b-pmzujnp44f] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #636e72;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-close:hover[b-pmzujnp44f] {
    background: #f8f9fa;
    color: #2d3436;
}

.modal-body[b-pmzujnp44f] {
    padding: 1.5rem;
}

.modal-footer[b-pmzujnp44f] {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Alert Styles */
.alert[b-pmzujnp44f] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert-danger[b-pmzujnp44f] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success[b-pmzujnp44f] {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}


/* Responsive Design */
@media (max-width: 768px) {
    .admin-container[b-pmzujnp44f] {
        padding: 1rem;
    }
    
    .admin-title[b-pmzujnp44f] {
        font-size: 2rem;
    }
    
    .section-header[b-pmzujnp44f] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .area-selector[b-pmzujnp44f] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .scenes-grid[b-pmzujnp44f] {
        grid-template-columns: 1fr;
    }
    
    .scene-header[b-pmzujnp44f] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .scene-actions[b-pmzujnp44f] {
        justify-content: center;
    }
    
    .coordinate-item[b-pmzujnp44f] {
        text-align: center;
    }
    
    .form-row[b-pmzujnp44f] {
        grid-template-columns: 1fr;
    }
    
    .modal-footer[b-pmzujnp44f] {
        flex-direction: column;
    }
    
    .modal-footer .btn[b-pmzujnp44f] {
        width: 100%;
    }
}
/* _content/Server/Components/Pages/AIPoolMonitor.razor.rz.scp.css */
/* 页面整体样式 */
.container-fluid[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* 监控头部 */
.monitor-header[b-sd5a0mea9s] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.monitor-header h2[b-sd5a0mea9s] {
    color: white;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-badge[b-sd5a0mea9s] {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-online[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    animation: pulse-success-b-sd5a0mea9s 2s infinite;
}

.status-offline[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    animation: pulse-danger-b-sd5a0mea9s 2s infinite;
}

/* 统计卡片 */
.stat-card[b-sd5a0mea9s] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card[b-sd5a0mea9s]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.8), transparent);
    animation: shimmer-b-sd5a0mea9s 2s infinite;
}

.stat-card:hover[b-sd5a0mea9s] {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon[b-sd5a0mea9s] {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.queue-card .stat-icon[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.active-card .stat-icon[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #00b894, #00a085);
}

.processed-card .stat-icon[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.efficiency-card .stat-icon[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.stat-content[b-sd5a0mea9s] {
    flex: 1;
}

.stat-content h3[b-sd5a0mea9s] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #2d3436;
    background: linear-gradient(135deg, #2d3436, #636e72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content p[b-sd5a0mea9s] {
    margin: 0;
    color: #636e72;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-trend[b-sd5a0mea9s] {
    margin-top: 8px;
}

.trend-up[b-sd5a0mea9s] {
    color: #00b894;
    font-weight: 600;
    font-size: 0.8rem;
}

.trend-down[b-sd5a0mea9s] {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.8rem;
}

.progress-bar[b-sd5a0mea9s] {
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-fill[b-sd5a0mea9s] {
    height: 100%;
    background: linear-gradient(135deg, #00b894, #00a085);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.stat-rate[b-sd5a0mea9s] {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #74b9ff;
    font-weight: 600;
}

.efficiency-indicator[b-sd5a0mea9s] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 8px;
    animation: pulse-b-sd5a0mea9s 2s infinite;
}

.high-efficiency[b-sd5a0mea9s] {
    background: #00b894;
    box-shadow: 0 0 10px rgba(0, 184, 148, 0.5);
}

.medium-efficiency[b-sd5a0mea9s] {
    background: #fdcb6e;
    box-shadow: 0 0 10px rgba(253, 203, 110, 0.5);
}

.low-efficiency[b-sd5a0mea9s] {
    background: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

/* 信息面板 */
.info-panel[b-sd5a0mea9s] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.panel-header[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h5[b-sd5a0mea9s] {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.auto-refresh[b-sd5a0mea9s] {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.countdown-ring[b-sd5a0mea9s] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}

.countdown-fill[b-sd5a0mea9s] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, #00b894, #00b894 50%, transparent 50%);
    border-radius: 50%;
    animation: countdown-b-sd5a0mea9s linear infinite;
}

.panel-content[b-sd5a0mea9s] {
    padding: 25px;
}

.status-grid[b-sd5a0mea9s] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.status-item[b-sd5a0mea9s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.status-label[b-sd5a0mea9s] {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.status-value[b-sd5a0mea9s] {
    font-weight: 700;
    color: #2d3436;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 性能计量器 */
.performance-meter[b-sd5a0mea9s] {
    text-align: center;
}

.meter-title[b-sd5a0mea9s] {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 20px;
    font-size: 1rem;
}

.meter-gauge[b-sd5a0mea9s] {
    width: 120px;
    height: 60px;
    background: conic-gradient(from 180deg, #e74c3c 0deg, #fdcb6e 72deg, #00b894 144deg);
    border-radius: 120px 120px 0 0;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
}

.meter-gauge[b-sd5a0mea9s]::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: -5px;
    background: white;
    border-radius: 100px 100px 0 0;
}

.gauge-fill[b-sd5a0mea9s] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 45px;
    background: #2d3436;
    transform-origin: bottom;
    transform: translate(-50%, -100%) rotate(0deg);
    transition: transform 0.5s ease;
    z-index: 10;
}

.gauge-center[b-sd5a0mea9s] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gauge-value[b-sd5a0mea9s] {
    font-size: 14px;
    font-weight: 700;
    color: #2d3436;
    line-height: 1;
}

.gauge-label[b-sd5a0mea9s] {
    font-size: 8px;
    color: #636e72;
    font-weight: 600;
}

.health-status[b-sd5a0mea9s] {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    display: inline-block;
}

.health-excellent[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
}

.health-good[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.health-warning[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: white;
}

.health-critical[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

/* 快速操作按钮 */
.quick-actions[b-sd5a0mea9s] {
    display: flex;
    gap: 10px;
}

.btn-outline-primary[b-sd5a0mea9s],
.btn-outline-success[b-sd5a0mea9s] {
    border: 2px solid;
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-outline-primary[b-sd5a0mea9s] {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.btn-outline-primary:hover[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-outline-success[b-sd5a0mea9s] {
    border-color: #00b894;
    color: #00b894;
    background: rgba(0, 184, 148, 0.1);
}

.btn-outline-success:hover[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #00b894, #00a085);
    border-color: #00b894;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

/* 表格样式 */
.table[b-sd5a0mea9s] {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
}

.table-dark[b-sd5a0mea9s] {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.table th[b-sd5a0mea9s] {
    border: none;
    padding: 12px 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.table td[b-sd5a0mea9s] {
    border: none;
    padding: 10px 15px;
    vertical-align: middle;
    font-size: 0.9rem;
}

.table-hover tbody tr:hover[b-sd5a0mea9s] {
    background-color: rgba(102, 126, 234, 0.1);
    transition: all 0.2s ease;
}

.badge[b-sd5a0mea9s] {
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 15px;
    font-weight: 600;
}

/* 访问拒绝页面 */
.access-denied[b-sd5a0mea9s] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.denied-content[b-sd5a0mea9s] {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.denied-icon[b-sd5a0mea9s] {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 20px;
    display: block;
}

.denied-content h3[b-sd5a0mea9s] {
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 15px;
}

.denied-content p[b-sd5a0mea9s] {
    color: #636e72;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* 动画效果 */
@keyframes pulse-success-b-sd5a0mea9s {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 184, 148, 0); }
}

@keyframes pulse-danger-b-sd5a0mea9s {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
}

@keyframes shimmer-b-sd5a0mea9s {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse-b-sd5a0mea9s {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes countdown-b-sd5a0mea9s {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .monitor-header[b-sd5a0mea9s] {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .stat-card[b-sd5a0mea9s] {
        padding: 20px;
    }
    
    .stat-content h3[b-sd5a0mea9s] {
        font-size: 2rem;
    }
    
    .panel-content[b-sd5a0mea9s] {
        padding: 20px;
    }
    
    .status-grid[b-sd5a0mea9s] {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .quick-actions[b-sd5a0mea9s] {
        flex-direction: column;
    }
    
    .denied-content[b-sd5a0mea9s] {
        padding: 30px 20px;
        margin: 20px;
    }
}

@media (max-width: 576px) {
    .container-fluid[b-sd5a0mea9s] {
        padding: 15px;
    }
    
    .stat-card[b-sd5a0mea9s] {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .stat-icon[b-sd5a0mea9s] {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .meter-gauge[b-sd5a0mea9s] {
        width: 100px;
        height: 50px;
    }
    
    .gauge-center[b-sd5a0mea9s] {
        width: 35px;
        height: 35px;
    }
}
/* _content/Server/Components/Pages/BuyRecords.razor.rz.scp.css */
/* 筛选面板 */
.filter-panel .card[b-irgu6e9quq] {
    border: none;
    border-radius: 12px;
}

.filter-panel .form-label[b-irgu6e9quq] {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.filter-panel .form-control[b-irgu6e9quq],
.filter-panel .form-select[b-irgu6e9quq] {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.filter-panel .form-control:focus[b-irgu6e9quq],
.filter-panel .form-select:focus[b-irgu6e9quq] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

/* 分组筛选容器 */
.group-filter-container[b-irgu6e9quq] {
    max-height: 250px;
    overflow-y: auto;
}

.group-filter-container .btn-sm[b-irgu6e9quq] {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.group-filter-container .btn-sm:hover[b-irgu6e9quq] {
    transform: scale(1.05);
}

.group-checkboxes[b-irgu6e9quq] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.group-checkboxes .form-check[b-irgu6e9quq] {
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 20px;
    border: 2px solid #e3e6ea;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.group-checkboxes .form-check[b-irgu6e9quq]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.group-checkboxes .form-check:hover[b-irgu6e9quq]::before {
    opacity: 1;
}

.group-checkboxes .form-check:hover[b-irgu6e9quq] {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.group-checkboxes .form-check-input[b-irgu6e9quq] {
    width: 20px;
    height: 20px;
    margin: 0;
    border: 2px solid #adb5bd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.85rem;
    position: relative;
    z-index: 1;
    background-color: white;
}

.group-checkboxes .form-check-input:checked[b-irgu6e9quq] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.group-checkboxes .form-check-input:hover[b-irgu6e9quq] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}

.group-checkboxes .form-check-input:focus[b-irgu6e9quq] {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.group-checkboxes .form-check-label[b-irgu6e9quq] {
    cursor: pointer;
    user-select: none;
    padding: 0.55rem 1rem 0.55rem 0.65rem;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.group-checkboxes .form-check:has(.form-check-input:checked)[b-irgu6e9quq] {
    background: linear-gradient(135deg, #e7f3ff 0%, #cfe2ff 100%);
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.group-checkboxes .form-check:has(.form-check-input:checked) .form-check-label[b-irgu6e9quq] {
    color: #0d6efd;
    font-weight: 600;
}

.group-checkboxes .form-check:has(.form-check-input:checked)[b-irgu6e9quq]::before {
    opacity: 0;
}

/* 添加动画效果 */
@keyframes checkboxPulse-b-irgu6e9quq {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.group-checkboxes .form-check-input:checked[b-irgu6e9quq] {
    animation: checkboxPulse-b-irgu6e9quq 0.4s ease-out;
}

/* 统计卡片 */
.stats-card[b-irgu6e9quq] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stats-card:hover[b-irgu6e9quq] {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #e9ecef;
}

.stats-icon[b-irgu6e9quq] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.stats-icon.bg-primary[b-irgu6e9quq] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-icon.bg-success[b-irgu6e9quq] {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
}

.stats-icon.bg-danger[b-irgu6e9quq] {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.stats-icon.bg-info[b-irgu6e9quq] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stats-icon.bg-warning[b-irgu6e9quq] {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
}

.stats-icon.bg-secondary[b-irgu6e9quq] {
    background: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
}

.stats-content[b-irgu6e9quq] {
    flex: 1;
}

.stats-number[b-irgu6e9quq] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

.stats-label[b-irgu6e9quq] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* 图表面板 */
.chart-panel .card[b-irgu6e9quq] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chart-panel .card-header[b-irgu6e9quq] {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
}

.chart-panel .card-body[b-irgu6e9quq] {
    padding: 1.5rem;
}

/* 批量操作 */
.batch-operations[b-irgu6e9quq] {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.batch-operations .btn[b-irgu6e9quq] {
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* 表格样式 */
.table-responsive[b-irgu6e9quq] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.table[b-irgu6e9quq] {
    margin-bottom: 0;
}

.table thead th[b-irgu6e9quq] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    padding: 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.table tbody tr[b-irgu6e9quq] {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f3f5;
}

.table tbody tr:hover[b-irgu6e9quq] {
    background-color: #f8f9fa;
}

.table tbody td[b-irgu6e9quq] {
    padding: 1rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.table .badge[b-irgu6e9quq] {
    padding: 0.4rem 0.75rem;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* 分页组件 */
.pagination-container[b-irgu6e9quq] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 1rem;
}

.pagination[b-irgu6e9quq] {
    margin-bottom: 0.5rem;
}

.pagination .page-link[b-irgu6e9quq] {
    border: 1px solid #dee2e6;
    color: #495057;
    margin: 0 0.2rem;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
}

.pagination .page-link:hover[b-irgu6e9quq] {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.pagination .page-item.active .page-link[b-irgu6e9quq] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.pagination .page-item.disabled .page-link[b-irgu6e9quq] {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
}

/* 空状态 */
.table tbody td i.bi-inbox[b-irgu6e9quq] {
    color: #dee2e6;
}

/* 玩家名称样式 */
.player-name[b-irgu6e9quq] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 8px;
    font-weight: 500;
    color: #1976d2;
    border: 1px solid #bbdefb;
    transition: all 0.2s ease;
}

.player-name i[b-irgu6e9quq] {
    color: #1976d2;
}

.player-name:hover[b-irgu6e9quq] {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 摊位名称样式 */
.badge.bg-purple[b-irgu6e9quq] {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%) !important;
    color: white;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
}

/* 地图位置样式 */
.location-badge[b-irgu6e9quq] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 8px;
    font-weight: 500;
    color: #e65100;
    border: 1px solid #ffcc80;
    transition: all 0.2s ease;
    max-width: 200px;
}

.location-badge i[b-irgu6e9quq] {
    color: #e65100;
}

.location-badge small[b-irgu6e9quq] {
    color: #bf360c;
    font-weight: 400;
}

.location-badge:hover[b-irgu6e9quq] {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 物品图像样式 */
.item-image[b-irgu6e9quq] {
    width: 191px;
    height: 55px;
    object-fit: contain;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    background: white;
    padding: 2px;
    transition: all 0.3s ease;
    display: block;
}

.item-image:hover[b-irgu6e9quq] {
    transform: scale(1.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-color: #0d6efd;
    cursor: pointer;
}

/* 无图像占位符 */
.no-image[b-irgu6e9quq] {
    width: 191px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 6px;
    color: #adb5bd;
    font-size: 1.5rem;
}

.no-image i[b-irgu6e9quq] {
    opacity: 0.5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .stats-card[b-irgu6e9quq] {
        margin-bottom: 1rem;
    }
    
    .filter-panel .col-md-3[b-irgu6e9quq],
    .filter-panel .col-md-4[b-irgu6e9quq],
    .filter-panel .col-md-2[b-irgu6e9quq] {
        margin-bottom: 1rem;
    }
    
    .batch-operations[b-irgu6e9quq] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .batch-operations > div[b-irgu6e9quq] {
        width: 100%;
    }
    
    .table[b-irgu6e9quq] {
        font-size: 0.85rem;
    }
    
    .stats-number[b-irgu6e9quq] {
        font-size: 1.5rem;
    }
    
    .stats-icon[b-irgu6e9quq] {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* 加载动画 */
.spinner-border[b-irgu6e9quq] {
    width: 3rem;
    height: 3rem;
}

/* 按钮样式增强 */
.btn[b-irgu6e9quq] {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn:hover[b-irgu6e9quq] {
    transform: translateY(-1px);
}

.btn:active[b-irgu6e9quq] {
    transform: translateY(0);
}

.btn-primary[b-irgu6e9quq] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover[b-irgu6e9quq] {
    background: linear-gradient(135deg, #5568d3 0%, #63408a 100%);
}

.btn-success[b-irgu6e9quq] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
}

.btn-success:hover[b-irgu6e9quq] {
    background: linear-gradient(135deg, #0f8676 0%, #2fd46a 100%);
}

.btn-danger[b-irgu6e9quq] {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    border: none;
}

.btn-danger:hover[b-irgu6e9quq] {
    background: linear-gradient(135deg, #d62c3e 0%, #dc4d39 100%);
}

/* 复选框美化 */
.form-check-input[b-irgu6e9quq] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.form-check-input:checked[b-irgu6e9quq] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:focus[b-irgu6e9quq] {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* 标签徽章样式 */
.badge[b-irgu6e9quq] {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.badge.bg-success[b-irgu6e9quq] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
}

.badge.bg-danger[b-irgu6e9quq] {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%) !important;
}

.badge.bg-info[b-irgu6e9quq] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.badge.bg-secondary[b-irgu6e9quq] {
    background: linear-gradient(135deg, #868f96 0%, #596164 100%) !important;
}

/* 滚动条美化 */
.group-filter-container[b-irgu6e9quq]::-webkit-scrollbar {
    width: 6px;
}

.group-filter-container[b-irgu6e9quq]::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 3px;
}

.group-filter-container[b-irgu6e9quq]::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 3px;
}

.group-filter-container[b-irgu6e9quq]::-webkit-scrollbar-thumb:hover {
    background: #868e96;
}

/* 卡片阴影动画 */
.card[b-irgu6e9quq] {
    transition: box-shadow 0.3s ease;
}

.card:hover[b-irgu6e9quq] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}

/* _content/Server/Components/Pages/DataManagement.razor.rz.scp.css */
.data-management-container[b-myytt2x2k8] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 100px);
}

.page-header[b-myytt2x2k8] {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-title[b-myytt2x2k8] {
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-title i[b-myytt2x2k8] {
    color: #3498db;
    margin-right: 15px;
}

.page-subtitle[b-myytt2x2k8] {
    color: #555;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
}

.management-card[b-myytt2x2k8], .progress-card[b-myytt2x2k8], .info-card[b-myytt2x2k8], .ai-price-card[b-myytt2x2k8] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.card-header[b-myytt2x2k8] {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 25px 30px;
    border-bottom: none;
}

.ai-price-card .card-header[b-myytt2x2k8] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.card-header h3[b-myytt2x2k8] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.card-header i[b-myytt2x2k8] {
    margin-right: 10px;
    font-size: 1.2em;
}

.card-header p[b-myytt2x2k8] {
    margin: 12px 0 0 0;
    opacity: 0.95;
    font-size: 1.1rem;
    line-height: 1.4;
}

.card-body[b-myytt2x2k8] {
    padding: 35px;
}

.option-group[b-myytt2x2k8], .ai-option-group[b-myytt2x2k8] {
    margin-bottom: 35px;
}

.form-check[b-myytt2x2k8] {
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check:hover[b-myytt2x2k8] {
    border-color: #4a90e2;
    background: #e3f2fd;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.15);
}

.form-check-input[b-myytt2x2k8] {
    margin-top: 0.4rem;
    transform: scale(1.4);
    margin-right: 12px;
}

.form-check-label[b-myytt2x2k8] {
    margin-left: 8px;
    cursor: pointer;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-text[b-myytt2x2k8] {
    margin-top: 10px;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.action-buttons[b-myytt2x2k8] {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg[b-myytt2x2k8] {
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    min-width: 180px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary[b-myytt2x2k8] {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover:not(:disabled)[b-myytt2x2k8] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #357abd 0%, #2968a3 100%);
}

.btn-primary:disabled[b-myytt2x2k8] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-success[b-myytt2x2k8] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-success:hover:not(:disabled)[b-myytt2x2k8] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

.btn-success:disabled[b-myytt2x2k8] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-danger[b-myytt2x2k8] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-danger:hover[b-myytt2x2k8] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

.progress-info[b-myytt2x2k8] {
    margin-bottom: 25px;
}

.progress-text[b-myytt2x2k8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.status-text[b-myytt2x2k8] {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-numbers[b-myytt2x2k8] {
    color: #666;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    background: #f1f3f4;
    padding: 8px 12px;
    border-radius: 6px;
}

.progress[b-myytt2x2k8] {
    height: 24px;
    border-radius: 12px;
    background-color: #e9ecef;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar[b-myytt2x2k8] {
    border-radius: 12px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
    transition: width 0.6s ease;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 24px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.ai-progress-bar[b-myytt2x2k8] {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.info-list[b-myytt2x2k8] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li[b-myytt2x2k8] {
    padding: 18px 0;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
    line-height: 1.7;
    font-size: 1.05rem;
}

.info-list li:last-child[b-myytt2x2k8] {
    border-bottom: none;
}

.info-list li strong[b-myytt2x2k8] {
    color: #2c3e50;
    font-weight: 700;
}

.spin-animation[b-myytt2x2k8] {
    animation: spin-b-myytt2x2k8 2s linear infinite;
}

@keyframes spin-b-myytt2x2k8 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* AI价格识别特殊样式 */
.ai-price-card[b-myytt2x2k8] {
    border: 1px solid #28a745;
}

.ai-price-card:hover[b-myytt2x2k8] {
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.2);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.ai-price-card .form-check:hover[b-myytt2x2k8] {
    border-color: #28a745;
    background: #e8f5e8;
}

.ai-price-card .bi-robot[b-myytt2x2k8],
.ai-price-card .bi-cpu[b-myytt2x2k8],
.ai-price-card .bi-magic[b-myytt2x2k8] {
    color: #28a745;
}

/* AI进度条动画增强 */
.ai-progress-bar.progress-bar-animated[b-myytt2x2k8] {
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
    animation: progress-bar-stripes 1s linear infinite;
}

.alert[b-myytt2x2k8] {
    border-radius: 12px;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alert i[b-myytt2x2k8] {
    margin-right: 10px;
    font-size: 1.2em;
}

.alert-success[b-myytt2x2k8] {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.alert-danger[b-myytt2x2k8] {
    background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .data-management-container[b-myytt2x2k8] {
        padding: 15px;
    }
    
    .page-title[b-myytt2x2k8] {
        font-size: 2.2rem;
    }
    
    .page-subtitle[b-myytt2x2k8] {
        font-size: 1.1rem;
    }
    
    .card-body[b-myytt2x2k8] {
        padding: 25px 20px;
    }
    
    .btn-lg[b-myytt2x2k8] {
        min-width: 140px;
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .action-buttons[b-myytt2x2k8] {
        gap: 15px;
    }
    
    .progress-text[b-myytt2x2k8] {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* _content/Server/Components/Pages/EquipmentFind.razor.rz.scp.css */
.search-panel[b-1556oqwp4s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
}

.search-panel .form-label[b-1556oqwp4s] {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-panel .form-select[b-1556oqwp4s],
.search-panel .form-control[b-1556oqwp4s] {
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-panel .form-select:focus[b-1556oqwp4s],
.search-panel .form-control:focus[b-1556oqwp4s] {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.btn-primary[b-1556oqwp4s] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-1556oqwp4s] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.btn-primary:disabled[b-1556oqwp4s] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary[b-1556oqwp4s] {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled)[b-1556oqwp4s] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.btn-secondary:disabled[b-1556oqwp4s] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.table[b-1556oqwp4s] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.table-dark[b-1556oqwp4s] {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.table th[b-1556oqwp4s] {
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td[b-1556oqwp4s] {
    border: none;
    padding: 12px 15px;
    vertical-align: middle;
}

/* 包含预览图片的单元格需要更多空间 */
.table td:has(.item-preview)[b-1556oqwp4s] {
    padding: 15px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd)[b-1556oqwp4s] {
    background-color: rgba(102, 126, 234, 0.05);
}

.table-hover tbody tr:hover[b-1556oqwp4s] {
    background-color: rgba(102, 126, 234, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* 表格行高度自适应 */
.table tbody tr[b-1556oqwp4s] {
    height: auto;
}

.sortable[b-1556oqwp4s] {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
}

.sortable:hover[b-1556oqwp4s] {
    background-color: rgba(255, 255, 255, 0.1);
}

.sortable i[b-1556oqwp4s] {
    margin-left: 8px;
    font-size: 12px;
}

/* 排序加载动画 */
.sortable .spinner-border-sm[b-1556oqwp4s] {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 0.1em;
    color: #fff;
    margin-left: 8px;
}

.item-preview[b-1556oqwp4s] {
    width: auto;
    height: auto;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.item-preview:hover[b-1556oqwp4s] {
    z-index: 1000;
    position: relative;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.pagination[b-1556oqwp4s] {
    margin-top: 30px;
}

.page-link[b-1556oqwp4s] {
    border: none;
    border-radius: 8px;
    margin: 0 3px;
    padding: 10px 15px;
    color: #667eea;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link:hover[b-1556oqwp4s] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.active .page-link[b-1556oqwp4s] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link[b-1556oqwp4s] {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.result-info[b-1556oqwp4s] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #667eea;
}

.alert-info[b-1556oqwp4s] {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1), rgba(9, 132, 227, 0.1));
    border: none;
    border-radius: 15px;
    border-left: 4px solid #74b9ff;
    padding: 20px;
}

.input-group[b-1556oqwp4s] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.input-group-text[b-1556oqwp4s] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    font-weight: 600;
}

.input-group .form-control[b-1556oqwp4s] {
    border: none;
    padding: 10px 15px;
}

.input-group .btn-outline-primary[b-1556oqwp4s] {
    border: none;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group .btn-outline-primary:hover[b-1556oqwp4s] {
    background: linear-gradient(45deg, #ee5a24, #d63031);
    transform: scale(1.05);
}

h2[b-1556oqwp4s] {
    color: #2d3436;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h2[b-1556oqwp4s]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.table-responsive[b-1556oqwp4s] {
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .search-panel[b-1556oqwp4s] {
        padding: 20px 15px;
    }
    
    .table th[b-1556oqwp4s],
    .table td[b-1556oqwp4s] {
        padding: 8px;
        font-size: 14px;
    }
    
    .item-preview[b-1556oqwp4s] {
        width: auto;
        height: auto;
    }
    
    .btn[b-1556oqwp4s] {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* 图片放大弹窗 */
.image-modal-overlay[b-1556oqwp4s] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.image-modal-content[b-1556oqwp4s] {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: imageModalSlideIn-b-1556oqwp4s 0.3s ease-out;
}

@keyframes imageModalSlideIn-b-1556oqwp4s {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-header[b-1556oqwp4s] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-modal-header h5[b-1556oqwp4s] {
    margin: 0;
    font-weight: 600;
}

.image-modal-header .btn-close[b-1556oqwp4s] {
    filter: invert(1);
    opacity: 0.8;
}

.image-modal-header .btn-close:hover[b-1556oqwp4s] {
    opacity: 1;
}

.image-modal-body[b-1556oqwp4s] {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.full-size-image[b-1556oqwp4s] {
    max-width: 100%;
    max-height: calc(90vh - 120px);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 梦幻西游价格颜色 */
.price-display[b-1556oqwp4s] {
    color: #ff6b35;
    font-weight: bold;
}

.price-black[b-1556oqwp4s] {
    color: #2d3436;
    font-weight: 600;
}

.price-blue[b-1556oqwp4s] {
    color: #0984e3;
    font-weight: 600;
}

.price-green[b-1556oqwp4s] {
    color: #00b894;
    font-weight: 600;
}

.price-red[b-1556oqwp4s] {
    color: #e74c3c;
    font-weight: 600;
}

.price-purple[b-1556oqwp4s] {
    color: #6c5ce7;
    font-weight: 600;
}

.price-pink[b-1556oqwp4s] {
    color: #fd79a8;
    font-weight: 600;
}

/* AI预测价格颜色样式 - 带有渐变效果和图标标识 */
.ai-price-black[b-1556oqwp4s] {
    color: #2d3436;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #636e72, #2d3436);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-blue[b-1556oqwp4s] {
    color: #0984e3;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-green[b-1556oqwp4s] {
    color: #00b894;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #55a3ff, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-red[b-1556oqwp4s] {
    color: #e74c3c;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-purple[b-1556oqwp4s] {
    color: #6c5ce7;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-pink[b-1556oqwp4s] {
    color: #fd79a8;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #fdcb6e, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* AI价格预测按钮样式 */
.btn-outline-info.btn-sm[b-1556oqwp4s] {
    border: 2px solid #17a2b8;
    color: #17a2b8;
    padding: 4px 8px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0.05));
    backdrop-filter: blur(5px);
}

.btn-outline-info.btn-sm:hover:not(:disabled)[b-1556oqwp4s] {
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-color: #17a2b8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-outline-info.btn-sm:disabled[b-1556oqwp4s] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-outline-info.btn-sm .bi-robot[b-1556oqwp4s]::before {
    background: linear-gradient(135deg, #17a2b8, #138496);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* AI预测价格标识效果 */
.ai-price-black[b-1556oqwp4s]::after,
.ai-price-blue[b-1556oqwp4s]::after,
.ai-price-green[b-1556oqwp4s]::after,
.ai-price-red[b-1556oqwp4s]::after,
.ai-price-purple[b-1556oqwp4s]::after,
.ai-price-pink[b-1556oqwp4s]::after {
    content: "🤖";
    position: absolute;
    top: -8px;
    right: -20px;
    font-size: 12px;
    opacity: 0.7;
    animation: ai-glow-b-1556oqwp4s 2s ease-in-out infinite alternate;
}

@keyframes ai-glow-b-1556oqwp4s {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}


/* 内容链接样式 */
.content-link[b-1556oqwp4s] {
    color: #667eea;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-link:hover[b-1556oqwp4s] {
    color: #764ba2;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}

/* 内容弹窗样式 */
.content-modal-overlay[b-1556oqwp4s] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.content-modal-content[b-1556oqwp4s] {
    background: white;
    border-radius: 15px;
    max-width: 95vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: contentModalSlideIn-b-1556oqwp4s 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes contentModalSlideIn-b-1556oqwp4s {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.content-modal-header[b-1556oqwp4s] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.content-modal-header h5[b-1556oqwp4s] {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.content-modal-header .btn-close[b-1556oqwp4s] {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.content-modal-header .btn-close:hover[b-1556oqwp4s] {
    opacity: 1;
}

.content-modal-body[b-1556oqwp4s] {
    padding: 25px;
    background: #f8f9fa;
    overflow-y: auto;
    flex: 1;
    min-height: 200px;
}

.content-text[b-1556oqwp4s] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    line-height: 1.6;
    font-size: 14px;
    color: #2d3436;
    white-space: pre-wrap;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 装备解析信息样式 */
.goods-data-info[b-1556oqwp4s] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    line-height: 1.6;
    font-size: 14px;
    color: #2d3436;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.goods-data-info .row[b-1556oqwp4s] {
    margin: 0;
}

.goods-data-info .col-4[b-1556oqwp4s],
.goods-data-info .col-6[b-1556oqwp4s] {
    padding: 2px 5px;
    font-size: 13px;
}

.goods-data-info strong[b-1556oqwp4s] {
    color: #495057;
    font-weight: 600;
}

.goods-data-info .text-success[b-1556oqwp4s] {
    color: #28a745 !important;
    font-weight: 600;
}

.goods-data-info .text-danger[b-1556oqwp4s] {
    color: #dc3545 !important;
    font-weight: 600;
}

/* AI提示词区域样式 */
.ai-prompt-section[b-1556oqwp4s] {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-prompt-textarea[b-1556oqwp4s] {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    color: #2d3436;
    background: white;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    width: 100%;
    height: 280px;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ai-prompt-textarea:focus[b-1556oqwp4s] {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.ai-prompt-textarea[b-1556oqwp4s]::placeholder {
    color: #6c757d;
    font-style: italic;
}

/* AI预测区域样式 */
.ai-prediction-section[b-1556oqwp4s] {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-prediction-section .btn-success[b-1556oqwp4s] {
    background: linear-gradient(45deg, #00b894, #00a085);
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.3);
}

.ai-prediction-section .btn-success:hover:not(:disabled)[b-1556oqwp4s] {
    background: linear-gradient(45deg, #00a085, #008f72);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.4);
}

.ai-prediction-section .btn-success:disabled[b-1556oqwp4s] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ai-prediction-result[b-1556oqwp4s] {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #00b894;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prediction-price[b-1556oqwp4s] {
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 4px;
}

.prediction-time[b-1556oqwp4s] {
    font-size: 12px;
    color: #6c757d !important;
}

/* 搜索区域样式 */
.search-section[b-1556oqwp4s] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.section-title[b-1556oqwp4s] {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* 按钮列表容器 */
.btn-list-container[b-1556oqwp4s] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 筛选按钮样式 */
.filter-btn[b-1556oqwp4s] {
    margin: 3px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3436;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 装备类型按钮 */
.btn-outline-secondary.filter-btn[b-1556oqwp4s] {
    border-color: #6c757d;
    color: #495057;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.btn-outline-secondary.filter-btn.active[b-1556oqwp4s] {
    background: linear-gradient(135deg, #495057, #6c757d);
    border-color: #495057;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.4);
}

.btn-outline-secondary.filter-btn:not(.active):hover[b-1556oqwp4s] {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 特效按钮 */
.btn-outline-info.filter-btn[b-1556oqwp4s] {
    border-color: #17a2b8;
    color: #0c5460;
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
}

.btn-outline-info.filter-btn.active[b-1556oqwp4s] {
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-color: #17a2b8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
}

.btn-outline-info.filter-btn:not(.active):hover[b-1556oqwp4s] {
    background: linear-gradient(135deg, #bee5eb, #a6d9e0);
    border-color: #138496;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 特技按钮 */
.btn-outline-warning.filter-btn[b-1556oqwp4s] {
    border-color: #ffc107;
    color: #856404;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
}

.btn-outline-warning.filter-btn.active[b-1556oqwp4s] {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    border-color: #ffc107;
    color: #212529;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.btn-outline-warning.filter-btn:not(.active):hover[b-1556oqwp4s] {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 宝石按钮 */
.btn-outline-success.filter-btn[b-1556oqwp4s] {
    border-color: #28a745;
    color: #155724;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
}

.btn-outline-success.filter-btn.active[b-1556oqwp4s] {
    background: linear-gradient(135deg, #28a745, #218838);
    border-color: #28a745;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.btn-outline-success.filter-btn:not(.active):hover[b-1556oqwp4s] {
    background: linear-gradient(135deg, #c3e6cb, #b1dfbb);
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 装备大类按钮 */
.btn-outline-primary.filter-btn[b-1556oqwp4s] {
    border-color: #007bff;
    color: #004085;
    background: linear-gradient(135deg, #cce7ff, #b3d7ff);
    font-weight: 600;
    font-size: 14px;
}

.btn-outline-primary.filter-btn.active[b-1556oqwp4s] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-color: #007bff;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    font-weight: 700;
}

.btn-outline-primary.filter-btn:not(.active):hover[b-1556oqwp4s] {
    background: linear-gradient(135deg, #b3d7ff, #80c7ff);
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 项链按钮特殊样式 */
.btn-outline-primary.filter-btn[data-type="项链"][b-1556oqwp4s] {
    border-color: #e91e63;
    color: #880e4f;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
}

.btn-outline-primary.filter-btn[data-type="项链"].active[b-1556oqwp4s] {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-color: #e91e63;
    color: white;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.btn-outline-primary.filter-btn[data-type="项链"]:not(.active):hover[b-1556oqwp4s] {
    background: linear-gradient(135deg, #f8bbd9, #f48fb1);
    border-color: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 男性装备按钮样式 */
.btn-outline-secondary.filter-btn[data-type*="男"][b-1556oqwp4s] {
    border-color: #2196F3;
    color: #0d47a1;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    position: relative;
}

.btn-outline-secondary.filter-btn[data-type*="男"][b-1556oqwp4s]:before {
    content: "♂";
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    color: #2196F3;
    font-weight: bold;
}

.btn-outline-secondary.filter-btn[data-type*="男"].active[b-1556oqwp4s] {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border-color: #2196F3;
    color: white;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.btn-outline-secondary.filter-btn[data-type*="男"]:not(.active):hover[b-1556oqwp4s] {
    background: linear-gradient(135deg, #bbdefb, #90caf9);
    border-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 女性装备按钮样式 */
.btn-outline-secondary.filter-btn[data-type*="女"][b-1556oqwp4s] {
    border-color: #FF4081;
    color: #c51162;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    position: relative;
}

.btn-outline-secondary.filter-btn[data-type*="女"][b-1556oqwp4s]:before {
    content: "♀";
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    color: #FF4081;
    font-weight: bold;
}

.btn-outline-secondary.filter-btn[data-type*="女"].active[b-1556oqwp4s] {
    background: linear-gradient(135deg, #FF4081, #E91E63);
    border-color: #FF4081;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.4);
}

.btn-outline-secondary.filter-btn[data-type*="女"]:not(.active):hover[b-1556oqwp4s] {
    background: linear-gradient(135deg, #f8bbd9, #f48fb1);
    border-color: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 等级滑块样式 */
.form-range[b-1556oqwp4s] {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 8px;
}

.form-range[b-1556oqwp4s]::-webkit-slider-thumb {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.form-range[b-1556oqwp4s]::-moz-range-thumb {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* 单选框和复选框样式 */
.form-check-input:checked[b-1556oqwp4s] {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.form-check-input:focus[b-1556oqwp4s] {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

/* 小尺寸表单控件 */
.form-control-sm[b-1556oqwp4s], .form-select-sm[b-1556oqwp4s] {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
}

.form-control-sm:focus[b-1556oqwp4s], .form-select-sm:focus[b-1556oqwp4s] {
    background: rgba(255, 255, 255, 1);
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* 搜索按钮增强样式 */
.btn-lg[b-1556oqwp4s] {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-lg:hover:not(:disabled)[b-1556oqwp4s] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 加载动画 */
.spinner-border-sm[b-1556oqwp4s] {
    width: 1rem;
    height: 1rem;
}

/* 搜索区域动画 */
.search-section[b-1556oqwp4s] {
    animation: slideInUp-b-1556oqwp4s 0.6s ease-out;
}

@keyframes slideInUp-b-1556oqwp4s {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 筛选按钮组动画 */
.btn-list-container .filter-btn[b-1556oqwp4s] {
    animation: fadeInScale-b-1556oqwp4s 0.4s ease-out;
    animation-fill-mode: both;
}

.btn-list-container .filter-btn:nth-child(1)[b-1556oqwp4s] { animation-delay: 0.1s; }
.btn-list-container .filter-btn:nth-child(2)[b-1556oqwp4s] { animation-delay: 0.15s; }
.btn-list-container .filter-btn:nth-child(3)[b-1556oqwp4s] { animation-delay: 0.2s; }
.btn-list-container .filter-btn:nth-child(4)[b-1556oqwp4s] { animation-delay: 0.25s; }
.btn-list-container .filter-btn:nth-child(5)[b-1556oqwp4s] { animation-delay: 0.3s; }

@keyframes fadeInScale-b-1556oqwp4s {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 性别筛选提示样式 */
.search-section small.text-muted[b-1556oqwp4s] {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-style: italic;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

/* 装备类型按钮容器增强 */
.btn-list-container[b-1556oqwp4s] {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 装备类型标题增强 */
.section-title[b-1556oqwp4s] {
    position: relative;
    padding-left: 12px;
}

.section-title[b-1556oqwp4s]:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-modal-content[b-1556oqwp4s] {
        max-width: 95vw;
        max-height: 90vh;
        margin: 10px;
    }
    
    .content-modal-header[b-1556oqwp4s] {
        padding: 15px 20px;
    }
    
    .content-modal-header h5[b-1556oqwp4s] {
        font-size: 1.1rem;
    }
    
    .content-modal-body[b-1556oqwp4s] {
        padding: 20px;
    }
    
    .content-text[b-1556oqwp4s] {
        padding: 15px;
        font-size: 13px;
    }

    .search-section[b-1556oqwp4s] {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .section-title[b-1556oqwp4s] {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .filter-btn[b-1556oqwp4s] {
        font-size: 11px;
        padding: 6px 12px;
        margin: 2px;
    }
    
    .btn-list-container[b-1556oqwp4s] {
        gap: 5px;
        padding: 8px;
    }
    
    .form-control-sm[b-1556oqwp4s], .form-select-sm[b-1556oqwp4s] {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .btn-lg[b-1556oqwp4s] {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* _content/Server/Components/Pages/GoodsFind.razor.rz.scp.css */
.search-panel[b-1o8dcbofzh] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
}

.search-panel .form-label[b-1o8dcbofzh] {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-panel .form-select[b-1o8dcbofzh],
.search-panel .form-control[b-1o8dcbofzh] {
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-panel .form-select:focus[b-1o8dcbofzh],
.search-panel .form-control:focus[b-1o8dcbofzh] {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.btn-primary[b-1o8dcbofzh] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-1o8dcbofzh] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.btn-primary:disabled[b-1o8dcbofzh] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary[b-1o8dcbofzh] {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled)[b-1o8dcbofzh] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.btn-secondary:disabled[b-1o8dcbofzh] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.table[b-1o8dcbofzh] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.table-dark[b-1o8dcbofzh] {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.table th[b-1o8dcbofzh] {
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td[b-1o8dcbofzh] {
    border: none;
    padding: 12px 15px;
    vertical-align: middle;
}

/* 包含预览图片的单元格需要更多空间 */
.table td:has(.item-preview)[b-1o8dcbofzh] {
    padding: 15px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd)[b-1o8dcbofzh] {
    background-color: rgba(102, 126, 234, 0.05);
}

.table-hover tbody tr:hover[b-1o8dcbofzh] {
    background-color: rgba(102, 126, 234, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* 表格行高度自适应 */
.table tbody tr[b-1o8dcbofzh] {
    height: auto;
}

.sortable[b-1o8dcbofzh] {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
}

.sortable:hover[b-1o8dcbofzh] {
    background-color: rgba(255, 255, 255, 0.1);
}

.sortable i[b-1o8dcbofzh] {
    margin-left: 8px;
    font-size: 12px;
}

/* 排序加载动画 */
.sortable .spinner-border-sm[b-1o8dcbofzh] {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 0.1em;
    color: #fff;
    margin-left: 8px;
}

.item-preview[b-1o8dcbofzh] {
    width: auto;
    height: auto;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.item-preview:hover[b-1o8dcbofzh] {
    z-index: 1000;
    position: relative;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.pagination[b-1o8dcbofzh] {
    margin-top: 30px;
}

.page-link[b-1o8dcbofzh] {
    border: none;
    border-radius: 8px;
    margin: 0 3px;
    padding: 10px 15px;
    color: #667eea;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link:hover[b-1o8dcbofzh] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.active .page-link[b-1o8dcbofzh] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link[b-1o8dcbofzh] {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.result-info[b-1o8dcbofzh] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #667eea;
}

.alert-info[b-1o8dcbofzh] {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1), rgba(9, 132, 227, 0.1));
    border: none;
    border-radius: 15px;
    border-left: 4px solid #74b9ff;
    padding: 20px;
}

.input-group[b-1o8dcbofzh] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.input-group-text[b-1o8dcbofzh] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    font-weight: 600;
}

.input-group .form-control[b-1o8dcbofzh] {
    border: none;
    padding: 10px 15px;
}

.input-group .btn-outline-primary[b-1o8dcbofzh] {
    border: none;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group .btn-outline-primary:hover[b-1o8dcbofzh] {
    background: linear-gradient(45deg, #ee5a24, #d63031);
    transform: scale(1.05);
}

h2[b-1o8dcbofzh] {
    color: #2d3436;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h2[b-1o8dcbofzh]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.table-responsive[b-1o8dcbofzh] {
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .search-panel[b-1o8dcbofzh] {
        padding: 20px 15px;
    }
    
    .table th[b-1o8dcbofzh],
    .table td[b-1o8dcbofzh] {
        padding: 8px;
        font-size: 14px;
    }
    
    .item-preview[b-1o8dcbofzh] {
        width: auto;
        height: auto;
    }
    
    .btn[b-1o8dcbofzh] {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* 图片放大弹窗 */
.image-modal-overlay[b-1o8dcbofzh] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.image-modal-content[b-1o8dcbofzh] {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: imageModalSlideIn-b-1o8dcbofzh 0.3s ease-out;
}

@keyframes imageModalSlideIn-b-1o8dcbofzh {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-header[b-1o8dcbofzh] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-modal-header h5[b-1o8dcbofzh] {
    margin: 0;
    font-weight: 600;
}

.image-modal-header .btn-close[b-1o8dcbofzh] {
    filter: invert(1);
    opacity: 0.8;
}

.image-modal-header .btn-close:hover[b-1o8dcbofzh] {
    opacity: 1;
}

.image-modal-body[b-1o8dcbofzh] {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.full-size-image[b-1o8dcbofzh] {
    max-width: 100%;
    max-height: calc(90vh - 120px);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 梦幻西游价格颜色 */
.price-display[b-1o8dcbofzh] {
    color: #ff6b35;
    font-weight: bold;
}

.price-black[b-1o8dcbofzh] {
    color: #2d3436;
    font-weight: 600;
}

.price-blue[b-1o8dcbofzh] {
    color: #0984e3;
    font-weight: 600;
}

.price-green[b-1o8dcbofzh] {
    color: #00b894;
    font-weight: 600;
}

.price-red[b-1o8dcbofzh] {
    color: #e74c3c;
    font-weight: 600;
}

.price-purple[b-1o8dcbofzh] {
    color: #6c5ce7;
    font-weight: 600;
}

.price-pink[b-1o8dcbofzh] {
    color: #fd79a8;
    font-weight: 600;
}


/* 内容链接样式 */
.content-link[b-1o8dcbofzh] {
    color: #667eea;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-link:hover[b-1o8dcbofzh] {
    color: #764ba2;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}

/* 内容弹窗样式 */
.content-modal-overlay[b-1o8dcbofzh] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.content-modal-content[b-1o8dcbofzh] {
    background: white;
    border-radius: 15px;
    max-width: 80vw;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: contentModalSlideIn-b-1o8dcbofzh 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes contentModalSlideIn-b-1o8dcbofzh {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.content-modal-header[b-1o8dcbofzh] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.content-modal-header h5[b-1o8dcbofzh] {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.content-modal-header .btn-close[b-1o8dcbofzh] {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.content-modal-header .btn-close:hover[b-1o8dcbofzh] {
    opacity: 1;
}

.content-modal-body[b-1o8dcbofzh] {
    padding: 25px;
    background: #f8f9fa;
    overflow-y: auto;
    flex: 1;
    min-height: 200px;
}

.content-text[b-1o8dcbofzh] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    line-height: 1.6;
    font-size: 14px;
    color: #2d3436;
    white-space: pre-wrap;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 搜索区域样式 */
.search-section[b-1o8dcbofzh] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.section-title[b-1o8dcbofzh] {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* 搜索按钮增强样式 */
.btn-lg[b-1o8dcbofzh] {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-lg:hover:not(:disabled)[b-1o8dcbofzh] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 加载动画 */
.spinner-border-sm[b-1o8dcbofzh] {
    width: 1rem;
    height: 1rem;
}

/* 搜索区域动画 */
.search-section[b-1o8dcbofzh] {
    animation: slideInUp-b-1o8dcbofzh 0.6s ease-out;
}

@keyframes slideInUp-b-1o8dcbofzh {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-modal-content[b-1o8dcbofzh] {
        max-width: 95vw;
        max-height: 90vh;
        margin: 10px;
    }
    
    .content-modal-header[b-1o8dcbofzh] {
        padding: 15px 20px;
    }
    
    .content-modal-header h5[b-1o8dcbofzh] {
        font-size: 1.1rem;
    }
    
    .content-modal-body[b-1o8dcbofzh] {
        padding: 20px;
    }
    
    .content-text[b-1o8dcbofzh] {
        padding: 15px;
        font-size: 13px;
    }

    .search-section[b-1o8dcbofzh] {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .section-title[b-1o8dcbofzh] {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .btn-lg[b-1o8dcbofzh] {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* _content/Server/Components/Pages/Home.razor.rz.scp.css */
/* Hero Section */
.hero-section[b-htswli7pkm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section[b-htswli7pkm]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content[b-htswli7pkm] {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title[b-htswli7pkm] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text[b-htswli7pkm] {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text[b-htswli7pkm] {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle[b-htswli7pkm] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features[b-htswli7pkm] {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item[b-htswli7pkm] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon[b-htswli7pkm] {
    font-size: 1.25rem;
}

.hero-actions[b-htswli7pkm] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-lg[b-htswli7pkm] {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon[b-htswli7pkm] {
    font-size: 1.2rem;
}

.btn-primary[b-htswli7pkm] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
}

.btn-primary:hover[b-htswli7pkm] {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
}

.btn-outline-light[b-htswli7pkm] {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover[b-htswli7pkm] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

/* Hero Image */
.hero-image[b-htswli7pkm] {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card[b-htswli7pkm] {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: float-b-htswli7pkm 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.card-1[b-htswli7pkm] {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2[b-htswli7pkm] {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3[b-htswli7pkm] {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.card-icon[b-htswli7pkm] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-title[b-htswli7pkm] {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.card-desc[b-htswli7pkm] {
    font-size: 0.875rem;
    opacity: 0.8;
    color: white;
}

@keyframes float-b-htswli7pkm {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features-section[b-htswli7pkm] {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title[b-htswli7pkm] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
}

.section-subtitle[b-htswli7pkm] {
    font-size: 1.125rem;
    color: #636e72;
    margin-bottom: 3rem;
}

.feature-card[b-htswli7pkm] {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    height: 100%;
}

.feature-card:hover[b-htswli7pkm] {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.feature-card-icon[b-htswli7pkm] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h4[b-htswli7pkm] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
}

.feature-card p[b-htswli7pkm] {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section[b-htswli7pkm] {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
}

.stat-item[b-htswli7pkm] {
    padding: 2rem 1rem;
}

.stat-number[b-htswli7pkm] {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label[b-htswli7pkm] {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-htswli7pkm] {
        font-size: 2.5rem;
    }
    
    .hero-features[b-htswli7pkm] {
        gap: 1rem;
    }
    
    .feature-item[b-htswli7pkm] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-actions[b-htswli7pkm] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-lg[b-htswli7pkm] {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .floating-card[b-htswli7pkm] {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .card-icon[b-htswli7pkm] {
        font-size: 1.5rem;
    }
    
    .feature-card[b-htswli7pkm] {
        padding: 2rem 1.5rem;
    }
    
    .feature-card-icon[b-htswli7pkm] {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .section-title[b-htswli7pkm] {
        font-size: 2rem;
    }
    
    .stat-number[b-htswli7pkm] {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title[b-htswli7pkm] {
        font-size: 2rem;
    }
    
    .hero-subtitle[b-htswli7pkm] {
        font-size: 1.125rem;
    }
    
    .hero-features[b-htswli7pkm] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature-item[b-htswli7pkm] {
        justify-content: center;
    }
}
/* _content/Server/Components/Pages/Login.razor.rz.scp.css */
/* Login Container */
.login-container[b-e137f5f2tz] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.login-container[b-e137f5f2tz]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Login Card */
.login-card[b-e137f5f2tz] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 3rem 3rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.login-header[b-e137f5f2tz] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title[b-e137f5f2tz] {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.gradient-text[b-e137f5f2tz] {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text[b-e137f5f2tz] {
    color: #2d3436;
}

.login-subtitle[b-e137f5f2tz] {
    color: #636e72;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
}

/* Form Tabs */
.form-tabs[b-e137f5f2tz] {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 0.25rem;
}

.tab-btn[b-e137f5f2tz] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: #636e72;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active[b-e137f5f2tz] {
    background: white;
    color: #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-btn:hover:not(.active)[b-e137f5f2tz] {
    color: #2d3436;
    background: rgba(255, 255, 255, 0.5);
}

/* Form Styles */
.login-form[b-e137f5f2tz],
.register-form[b-e137f5f2tz] {
    animation: fadeIn-b-e137f5f2tz 0.3s ease-in-out;
}

@keyframes fadeIn-b-e137f5f2tz {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group[b-e137f5f2tz] {
    margin-bottom: 1.5rem;
}

.form-group label[b-e137f5f2tz] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3436;
}

.form-control[b-e137f5f2tz] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus[b-e137f5f2tz] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-login[b-e137f5f2tz] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-login:hover:not(:disabled)[b-e137f5f2tz] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-login:disabled[b-e137f5f2tz] {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-footer[b-e137f5f2tz] {
    text-align: center;
    color: #636e72;
}

.btn-link[b-e137f5f2tz] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border: none;
    background: none;
    padding: 0;
    margin-left: 0.5rem;
}

.btn-link:hover[b-e137f5f2tz] {
    color: #764ba2;
    text-decoration: underline;
}


/* Captcha Styles */
.captcha-group[b-e137f5f2tz] {
    margin-bottom: 1.5rem;
}

.captcha-container[b-e137f5f2tz] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.captcha-input[b-e137f5f2tz] {
    flex: 1;
}

.captcha-image[b-e137f5f2tz] {
    cursor: pointer;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.captcha-image:hover[b-e137f5f2tz] {
    border-color: #667eea;
}

.captcha-image img[b-e137f5f2tz] {
    display: block;
    width: 120px;
    height: 40px;
}

/* Button Styles */
.btn[b-e137f5f2tz] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary[b-e137f5f2tz] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-e137f5f2tz] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary[b-e137f5f2tz] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover[b-e137f5f2tz] {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn:disabled[b-e137f5f2tz] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Alert Styles */
.alert[b-e137f5f2tz] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert-danger[b-e137f5f2tz] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success[b-e137f5f2tz] {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

/* Spinner */
.spinner-border[b-e137f5f2tz] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.125em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border-b-e137f5f2tz 0.75s linear infinite;
}

.spinner-border-sm[b-e137f5f2tz] {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.125em;
}

@keyframes spinner-border-b-e137f5f2tz {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 576px) {
    .login-card[b-e137f5f2tz] {
        padding: 1.5rem 2rem 2rem 2rem;
        margin: 1rem;
        max-width: none;
    }
    
    .login-title[b-e137f5f2tz] {
        font-size: 1.75rem;
    }
    
    .form-tabs[b-e137f5f2tz] {
        margin-bottom: 1.5rem;
    }
    
    .tab-btn[b-e137f5f2tz] {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .captcha-container[b-e137f5f2tz] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image[b-e137f5f2tz] {
        align-self: center;
        margin-top: 0.5rem;
    }
}
/* _content/Server/Components/Pages/PetFind.razor.rz.scp.css */
.search-panel[b-jbfbx480qf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
}

.search-panel .form-label[b-jbfbx480qf] {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-panel .form-select[b-jbfbx480qf],
.search-panel .form-control[b-jbfbx480qf] {
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-panel .form-select:focus[b-jbfbx480qf],
.search-panel .form-control:focus[b-jbfbx480qf] {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.btn-primary[b-jbfbx480qf] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-jbfbx480qf] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.btn-primary:disabled[b-jbfbx480qf] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary[b-jbfbx480qf] {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled)[b-jbfbx480qf] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.btn-secondary:disabled[b-jbfbx480qf] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* 加载动画 */
.spinner-border-sm[b-jbfbx480qf] {
    width: 1rem;
    height: 1rem;
}

/* 技能选择区域 */
.skill-category[b-jbfbx480qf] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.skill-category-label[b-jbfbx480qf] {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.skill-row[b-jbfbx480qf] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.skill-icon-item[b-jbfbx480qf] {
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.skill-icon-item:hover[b-jbfbx480qf] {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.skill-icon-item.selected[b-jbfbx480qf] {
    border-color: #00b894;
    box-shadow: 0 0 0 2px rgba(0, 184, 148, 0.3);
}

.skill-icon-item img[b-jbfbx480qf] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.selected-skills[b-jbfbx480qf] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-height: 50px;
}

.skill-tag[b-jbfbx480qf] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: linear-gradient(45deg, #00b894, #00a085);
    border-radius: 15px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    position: relative;
}

.skill-tag img[b-jbfbx480qf] {
    width: 24px;
    height: 24px;
    border-radius: 3px;
}

.skill-tag .btn-close[b-jbfbx480qf] {
    width: 16px;
    height: 16px;
    font-size: 10px;
    opacity: 0.8;
}

.skill-tag .btn-close:hover[b-jbfbx480qf] {
    opacity: 1;
}

/* 表格样式 */
.table[b-jbfbx480qf] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.table-dark[b-jbfbx480qf] {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.table th[b-jbfbx480qf] {
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td[b-jbfbx480qf] {
    border: none;
    padding: 12px 15px;
    vertical-align: middle;
}

/* 包含预览图片的单元格需要更多空间 */
.table td:has(.item-preview)[b-jbfbx480qf] {
    padding: 15px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd)[b-jbfbx480qf] {
    background-color: rgba(102, 126, 234, 0.05);
}

.table-hover tbody tr:hover[b-jbfbx480qf] {
    background-color: rgba(102, 126, 234, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* 表格行高度自适应 */
.table tbody tr[b-jbfbx480qf] {
    height: auto;
}

.sortable[b-jbfbx480qf] {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
}

.sortable:hover[b-jbfbx480qf] {
    background-color: rgba(255, 255, 255, 0.1);
}

.sortable i[b-jbfbx480qf] {
    margin-left: 8px;
    font-size: 12px;
}

/* 排序加载动画 */
.sortable .spinner-border-sm[b-jbfbx480qf] {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 0.1em;
    color: #fff;
    margin-left: 8px;
}

.item-preview[b-jbfbx480qf] {
    width: auto;
    height: auto;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.item-preview:hover[b-jbfbx480qf] {
    z-index: 1000;
    position: relative;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* 技能图标 */
.skill-list[b-jbfbx480qf] {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
}

.skill-icon[b-jbfbx480qf] {
    border-radius: 3px;
    border: 1px solid #ddd;
    display: block;
}

/* 认证技能样式 */
.skill-icon.renzheng-skill[b-jbfbx480qf] {
    border: 2px solid #ff6b6b !important;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
    position: relative;
    animation: renzheng-glow-b-jbfbx480qf 2s ease-in-out infinite alternate;
}

.skill-icon.renzheng-skill[b-jbfbx480qf]::after {
    content: "认";
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 8px;
    font-weight: bold;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes renzheng-glow-b-jbfbx480qf {
    0% {
        box-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
    }
    100% {
        box-shadow: 0 0 12px rgba(255, 107, 107, 0.8);
    }
}

.skill-more[b-jbfbx480qf] {
    font-size: 10px;
    background: #6c757d;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}

/* 徽章样式 */
.badge[b-jbfbx480qf] {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 15px;
}

/* 分页样式 */
.pagination[b-jbfbx480qf] {
    margin-top: 30px;
}

.page-link[b-jbfbx480qf] {
    border: none;
    border-radius: 8px;
    margin: 0 3px;
    padding: 10px 15px;
    color: #667eea;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link:hover[b-jbfbx480qf] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.active .page-link[b-jbfbx480qf] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link[b-jbfbx480qf] {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.result-info[b-jbfbx480qf] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #667eea;
}

.alert-info[b-jbfbx480qf] {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1), rgba(9, 132, 227, 0.1));
    border: none;
    border-radius: 15px;
    border-left: 4px solid #74b9ff;
    padding: 20px;
}

.input-group[b-jbfbx480qf] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.input-group-text[b-jbfbx480qf] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    font-weight: 600;
}

.input-group .form-control[b-jbfbx480qf] {
    border: none;
    padding: 10px 15px;
}

.input-group .btn-outline-primary[b-jbfbx480qf] {
    border: none;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group .btn-outline-primary:hover[b-jbfbx480qf] {
    background: linear-gradient(45deg, #ee5a24, #d63031);
    transform: scale(1.05);
}

h2[b-jbfbx480qf] {
    color: #2d3436;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h2[b-jbfbx480qf]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.table-responsive[b-jbfbx480qf] {
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .search-panel[b-jbfbx480qf] {
        padding: 20px 15px;
    }
    
    .search-section[b-jbfbx480qf] {
        padding: 15px;
    }
    
    .search-buttons-section[b-jbfbx480qf] {
        padding: 20px 15px;
    }
    
    .search-buttons-section .btn[b-jbfbx480qf] {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .skill-selection[b-jbfbx480qf] {
        max-height: 200px;
    }
    
    .skill-item[b-jbfbx480qf] {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .skill-item img[b-jbfbx480qf] {
        width: 20px;
        height: 20px;
    }
    
    .table th[b-jbfbx480qf],
    .table td[b-jbfbx480qf] {
        padding: 8px;
        font-size: 14px;
    }
    
    .item-preview[b-jbfbx480qf] {
        width: auto;
        height: auto;
    }
    
    
    .btn[b-jbfbx480qf] {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* 图片放大弹窗 */
.image-modal-overlay[b-jbfbx480qf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.image-modal-content[b-jbfbx480qf] {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: imageModalSlideIn-b-jbfbx480qf 0.3s ease-out;
}

@keyframes imageModalSlideIn-b-jbfbx480qf {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-header[b-jbfbx480qf] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-modal-header h5[b-jbfbx480qf] {
    margin: 0;
    font-weight: 600;
}

.image-modal-header .btn-close[b-jbfbx480qf] {
    filter: invert(1);
    opacity: 0.8;
}

.image-modal-header .btn-close:hover[b-jbfbx480qf] {
    opacity: 1;
}

.image-modal-body[b-jbfbx480qf] {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.full-size-image[b-jbfbx480qf] {
    max-width: 100%;
    max-height: calc(90vh - 120px);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 梦幻西游价格颜色 */
.price-display[b-jbfbx480qf] {
    color: #ff6b35;
    font-weight: bold;
}

.price-black[b-jbfbx480qf] {
    color: #2d3436;
    font-weight: 600;
}

.price-blue[b-jbfbx480qf] {
    color: #0984e3;
    font-weight: 600;
}

.price-green[b-jbfbx480qf] {
    color: #00b894;
    font-weight: 600;
}

.price-red[b-jbfbx480qf] {
    color: #e74c3c;
    font-weight: 600;
}

.price-purple[b-jbfbx480qf] {
    color: #6c5ce7;
    font-weight: 600;
}

.price-pink[b-jbfbx480qf] {
    color: #fd79a8;
    font-weight: 600;
}

/* AI预测价格颜色样式 - 带有渐变效果和图标标识 */
.ai-price-black[b-jbfbx480qf] {
    color: #2d3436;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #636e72, #2d3436);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-blue[b-jbfbx480qf] {
    color: #0984e3;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-green[b-jbfbx480qf] {
    color: #00b894;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #55a3ff, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-red[b-jbfbx480qf] {
    color: #e74c3c;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-purple[b-jbfbx480qf] {
    color: #6c5ce7;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-price-pink[b-jbfbx480qf] {
    color: #fd79a8;
    font-weight: 600;
    position: relative;
    background: linear-gradient(135deg, #fdcb6e, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* AI价格预测按钮样式 */
.btn-outline-info.btn-sm[b-jbfbx480qf] {
    border: 2px solid #17a2b8;
    color: #17a2b8;
    padding: 4px 8px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0.05));
    backdrop-filter: blur(5px);
}

.btn-outline-info.btn-sm:hover:not(:disabled)[b-jbfbx480qf] {
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-color: #17a2b8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-outline-info.btn-sm:disabled[b-jbfbx480qf] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-outline-info.btn-sm .bi-robot[b-jbfbx480qf]::before {
    background: linear-gradient(135deg, #17a2b8, #138496);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* AI预测价格标识效果 */
.ai-price-black[b-jbfbx480qf]::after,
.ai-price-blue[b-jbfbx480qf]::after,
.ai-price-green[b-jbfbx480qf]::after,
.ai-price-red[b-jbfbx480qf]::after,
.ai-price-purple[b-jbfbx480qf]::after,
.ai-price-pink[b-jbfbx480qf]::after {
    content: "🤖";
    position: absolute;
    top: -8px;
    right: -20px;
    font-size: 12px;
    opacity: 0.7;
    animation: ai-glow-b-jbfbx480qf 2s ease-in-out infinite alternate;
}

@keyframes ai-glow-b-jbfbx480qf {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

/* 价值等级按钮样式 */

/* 价格范围区域样式 */
.search-section[b-jbfbx480qf] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.section-title[b-jbfbx480qf] {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 搜索按钮区域样式 */
.search-buttons-section[b-jbfbx480qf] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-buttons-section .btn[b-jbfbx480qf] {
    min-width: 150px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.search-buttons-section .btn-primary[b-jbfbx480qf] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.search-buttons-section .btn-primary:hover:not(:disabled)[b-jbfbx480qf] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.5);
}

.search-buttons-section .btn-secondary[b-jbfbx480qf] {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    border: none;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.4);
}

    .search-buttons-section .btn-secondary:hover:not(:disabled)[b-jbfbx480qf] {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(9, 132, 227, 0.5);
    }

/* AI提示词区域样式 */
.ai-prompt-section[b-jbfbx480qf] {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-prompt-textarea[b-jbfbx480qf] {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    color: #2d3436;
    background: white;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    width: 100%;
    height: 280px;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ai-prompt-textarea:focus[b-jbfbx480qf] {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.ai-prompt-textarea[b-jbfbx480qf]::placeholder {
    color: #6c757d;
    font-style: italic;
}

/* AI预测区域样式 */
.ai-prediction-section[b-jbfbx480qf] {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-prediction-section .btn-success[b-jbfbx480qf] {
    background: linear-gradient(45deg, #00b894, #00a085);
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.3);
}

.ai-prediction-section .btn-success:hover:not(:disabled)[b-jbfbx480qf] {
    background: linear-gradient(45deg, #00a085, #008f72);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.4);
}

.ai-prediction-section .btn-success:disabled[b-jbfbx480qf] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ai-prediction-result[b-jbfbx480qf] {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #00b894;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prediction-price[b-jbfbx480qf] {
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 4px;
}

.prediction-time[b-jbfbx480qf] {
    font-size: 12px;
    color: #6c757d !important;
}

/* 内容弹窗样式（复用装备页面样式） */
.content-modal-overlay[b-jbfbx480qf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.content-modal-content[b-jbfbx480qf] {
    background: white;
    border-radius: 15px;
    max-width: 95vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: contentModalSlideIn-b-jbfbx480qf 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes contentModalSlideIn-b-jbfbx480qf {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.content-modal-header[b-jbfbx480qf] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.content-modal-header h5[b-jbfbx480qf] {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.content-modal-header .btn-close[b-jbfbx480qf] {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.content-modal-header .btn-close:hover[b-jbfbx480qf] {
    opacity: 1;
}

.content-modal-body[b-jbfbx480qf] {
    padding: 25px;
    background: #f8f9fa;
    overflow-y: auto;
    flex: 1;
    min-height: 200px;
}

/* 宠物解析信息样式 */
.goods-data-info[b-jbfbx480qf] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    line-height: 1.6;
    font-size: 14px;
    color: #2d3436;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.goods-data-info .row[b-jbfbx480qf] {
    margin: 0;
}

.goods-data-info .col-4[b-jbfbx480qf],
.goods-data-info .col-6[b-jbfbx480qf] {
    padding: 2px 5px;
    font-size: 13px;
}

.goods-data-info strong[b-jbfbx480qf] {
    color: #495057;
    font-weight: 600;
}
/* _content/Server/Components/Pages/PriceApproval.razor.rz.scp.css */
/* 阈值设置面板 */
.threshold-panel[b-hgdtxpm4ue] {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
    margin-bottom: 1.5rem;
}

.threshold-panel .panel-header[b-hgdtxpm4ue] {
    margin-bottom: 20px;
    text-align: center;
}

.threshold-panel .panel-header h5[b-hgdtxpm4ue] {
    margin: 0 0 10px 0;
    font-weight: 700;
    font-size: 1.25rem;
}

.threshold-panel .panel-header small[b-hgdtxpm4ue] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.threshold-panel .form-label[b-hgdtxpm4ue] {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.threshold-panel .form-control[b-hgdtxpm4ue] {
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.threshold-panel .form-control:focus[b-hgdtxpm4ue] {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.threshold-panel .btn-success[b-hgdtxpm4ue] {
    background: linear-gradient(45deg, #00b894, #00a085);
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
    width: 100%;
}

.threshold-panel .btn-success:hover:not(:disabled)[b-hgdtxpm4ue] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

.threshold-panel .btn-success:disabled[b-hgdtxpm4ue] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.threshold-panel .alert[b-hgdtxpm4ue] {
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.threshold-panel .alert-success[b-hgdtxpm4ue] {
    color: #155724;
    background: rgba(212, 237, 218, 0.9);
}

.threshold-panel .alert-danger[b-hgdtxpm4ue] {
    color: #721c24;
    background: rgba(248, 215, 218, 0.9);
}

.search-panel[b-hgdtxpm4ue] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
}

.search-panel .form-label[b-hgdtxpm4ue] {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-panel .form-select[b-hgdtxpm4ue],
.search-panel .form-control[b-hgdtxpm4ue] {
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-panel .form-select:focus[b-hgdtxpm4ue],
.search-panel .form-control:focus[b-hgdtxpm4ue] {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.btn-primary[b-hgdtxpm4ue] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-hgdtxpm4ue] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.btn-primary:disabled[b-hgdtxpm4ue] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary[b-hgdtxpm4ue] {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled)[b-hgdtxpm4ue] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.btn-secondary:disabled[b-hgdtxpm4ue] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.table[b-hgdtxpm4ue] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.table-dark[b-hgdtxpm4ue] {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.table th[b-hgdtxpm4ue] {
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td[b-hgdtxpm4ue] {
    border: none;
    padding: 12px 15px;
    vertical-align: middle;
}

/* 包含预览图片的单元格需要更多空间 */
.table td:has(.item-preview)[b-hgdtxpm4ue] {
    padding: 15px;
    vertical-align: middle;
}

/* 表格行高度自适应 */
.table tbody tr[b-hgdtxpm4ue] {
    height: auto;
}

.table-striped tbody tr:nth-of-type(odd)[b-hgdtxpm4ue] {
    background-color: rgba(102, 126, 234, 0.05);
}

.table-hover tbody tr:hover[b-hgdtxpm4ue] {
    background-color: rgba(102, 126, 234, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.item-preview[b-hgdtxpm4ue] {
    width: auto;
    height: auto;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.item-preview:hover[b-hgdtxpm4ue] {
    z-index: 1000;
    position: relative;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.pagination[b-hgdtxpm4ue] {
    margin-top: 30px;
}

.page-link[b-hgdtxpm4ue] {
    border: none;
    border-radius: 8px;
    margin: 0 3px;
    padding: 10px 15px;
    color: #667eea;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link:hover[b-hgdtxpm4ue] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.active .page-link[b-hgdtxpm4ue] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link[b-hgdtxpm4ue] {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.result-info[b-hgdtxpm4ue] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #667eea;
}

.alert-info[b-hgdtxpm4ue] {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1), rgba(9, 132, 227, 0.1));
    border: none;
    border-radius: 15px;
    border-left: 4px solid #74b9ff;
    padding: 20px;
}

h2[b-hgdtxpm4ue] {
    color: #2d3436;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h2[b-hgdtxpm4ue]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* 图片放大弹窗 */
.image-modal-overlay[b-hgdtxpm4ue] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.image-modal-content[b-hgdtxpm4ue] {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: imageModalSlideIn-b-hgdtxpm4ue 0.3s ease-out;
}

@keyframes imageModalSlideIn-b-hgdtxpm4ue {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-header[b-hgdtxpm4ue] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-modal-header h5[b-hgdtxpm4ue] {
    margin: 0;
    font-weight: 600;
}

.image-modal-header .btn-close[b-hgdtxpm4ue] {
    filter: invert(1);
    opacity: 0.8;
}

.image-modal-header .btn-close:hover[b-hgdtxpm4ue] {
    opacity: 1;
}

.image-modal-body[b-hgdtxpm4ue] {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.full-size-image[b-hgdtxpm4ue] {
    max-width: 100%;
    max-height: calc(90vh - 120px);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 梦幻西游价格颜色 */
.price-display[b-hgdtxpm4ue] {
    color: #ff6b35;
    font-weight: bold;
}

.price-black[b-hgdtxpm4ue] {
    color: #2d3436;
    font-weight: 600;
}

.price-blue[b-hgdtxpm4ue] {
    color: #0984e3;
    font-weight: 600;
}

.price-green[b-hgdtxpm4ue] {
    color: #00b894;
    font-weight: 600;
}

.price-red[b-hgdtxpm4ue] {
    color: #e74c3c;
    font-weight: 600;
}

.price-purple[b-hgdtxpm4ue] {
    color: #6c5ce7;
    font-weight: 600;
}

.price-pink[b-hgdtxpm4ue] {
    color: #fd79a8;
    font-weight: 600;
}

/* 审批按钮组 */
.btn-group .btn-sm[b-hgdtxpm4ue] {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success[b-hgdtxpm4ue] {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover:not(:disabled)[b-hgdtxpm4ue] {
    background-color: #218838;
    border-color: #1e7e34;
    transform: scale(1.05);
}

.btn-danger[b-hgdtxpm4ue] {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover:not(:disabled)[b-hgdtxpm4ue] {
    background-color: #c82333;
    border-color: #bd2130;
    transform: scale(1.05);
}

.btn:disabled[b-hgdtxpm4ue] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 徽章样式 */
.badge[b-hgdtxpm4ue] {
    font-size: 0.75em;
    padding: 0.375em 0.75em;
    border-radius: 0.5rem;
    font-weight: 600;
}

.spinner-border-sm[b-hgdtxpm4ue] {
    width: 1rem;
    height: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-panel[b-hgdtxpm4ue] {
        padding: 20px 15px;
    }
    
    .table th[b-hgdtxpm4ue],
    .table td[b-hgdtxpm4ue] {
        padding: 8px;
        font-size: 14px;
    }
    
    .item-preview[b-hgdtxpm4ue] {
        width: 30px;
        height: 30px;
    }
    
    .btn[b-hgdtxpm4ue] {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .btn-group .btn-sm[b-hgdtxpm4ue] {
        padding: 2px 6px;
        font-size: 10px;
    }
}
/* _content/Server/Components/Pages/PriceMonitor.razor.rz.scp.css */
/* 继承装备搜索页面的基础样式 */
.search-panel[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
}

.search-panel .form-label[b-hz6v6gkudr] {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-panel .form-select[b-hz6v6gkudr],
.search-panel .form-control[b-hz6v6gkudr] {
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-panel .form-select:focus[b-hz6v6gkudr],
.search-panel .form-control:focus[b-hz6v6gkudr] {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.btn-primary[b-hz6v6gkudr] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-hz6v6gkudr] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.btn-secondary[b-hz6v6gkudr] {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled)[b-hz6v6gkudr] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.btn-success[b-hz6v6gkudr] {
    background: linear-gradient(45deg, #00b894, #00a085);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.btn-success:hover:not(:disabled)[b-hz6v6gkudr] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

h2[b-hz6v6gkudr] {
    color: #2d3436;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h2[b-hz6v6gkudr]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* 统计卡片 */
.stats-card[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.stats-card:hover[b-hz6v6gkudr] {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.stats-number[b-hz6v6gkudr] {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-label[b-hz6v6gkudr] {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 标签页样式 */
.nav-tabs[b-hz6v6gkudr] {
    border-bottom: 2px solid #e9ecef;
}

.nav-tabs .nav-link[b-hz6v6gkudr] {
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 15px 25px;
    margin-right: 5px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-tabs .nav-link:hover[b-hz6v6gkudr] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.nav-tabs .nav-link.active[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link.active .badge[b-hz6v6gkudr] {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

/* 表格样式 */
.table[b-hz6v6gkudr] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.table-dark[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.table th[b-hz6v6gkudr] {
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td[b-hz6v6gkudr] {
    border: none;
    padding: 12px 15px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd)[b-hz6v6gkudr] {
    background-color: rgba(102, 126, 234, 0.05);
}

.table-hover tbody tr:hover[b-hz6v6gkudr] {
    background-color: rgba(102, 126, 234, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.table-warning[b-hz6v6gkudr] {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.table-warning:hover[b-hz6v6gkudr] {
    background-color: rgba(255, 193, 7, 0.2) !important;
}

/* 价格颜色 */
.price-display[b-hz6v6gkudr] {
    color: #ff6b35;
    font-weight: bold;
}

.price-black[b-hz6v6gkudr] {
    color: #2d3436;
    font-weight: 600;
}

.price-blue[b-hz6v6gkudr] {
    color: #0984e3;
    font-weight: 600;
}

.price-green[b-hz6v6gkudr] {
    color: #00b894;
    font-weight: 600;
}

.price-red[b-hz6v6gkudr] {
    color: #e74c3c;
    font-weight: 600;
}

.price-purple[b-hz6v6gkudr] {
    color: #6c5ce7;
    font-weight: 600;
}

.price-pink[b-hz6v6gkudr] {
    color: #fd79a8;
    font-weight: 600;
}

/* 预览图片 */
.item-preview[b-hz6v6gkudr] {
    width: auto;
    height: auto;
    max-width: 50px;
    max-height: 50px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.item-preview:hover[b-hz6v6gkudr] {
    z-index: 1000;
    position: relative;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
    transform: scale(1.1);
}

/* 分页控件 */
.pagination[b-hz6v6gkudr] {
    margin-top: 30px;
}

.page-link[b-hz6v6gkudr] {
    border: none;
    border-radius: 8px;
    margin: 0 3px;
    padding: 10px 15px;
    color: #667eea;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link:hover[b-hz6v6gkudr] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.active .page-link[b-hz6v6gkudr] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link[b-hz6v6gkudr] {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

/* 图片弹窗 */
.image-modal-overlay[b-hz6v6gkudr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.image-modal-content[b-hz6v6gkudr] {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: imageModalSlideIn-b-hz6v6gkudr 0.3s ease-out;
}

@keyframes imageModalSlideIn-b-hz6v6gkudr {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-header[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-modal-header h5[b-hz6v6gkudr] {
    margin: 0;
    font-weight: 600;
}

.image-modal-header .btn-close[b-hz6v6gkudr] {
    filter: invert(1);
    opacity: 0.8;
}

.image-modal-header .btn-close:hover[b-hz6v6gkudr] {
    opacity: 1;
}

.image-modal-body[b-hz6v6gkudr] {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.full-size-image[b-hz6v6gkudr] {
    max-width: 100%;
    max-height: calc(90vh - 200px);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-text[b-hz6v6gkudr] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    line-height: 1.6;
    font-size: 14px;
    color: #2d3436;
    white-space: pre-wrap;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* 规则分组样式 */
.rule-group[b-hz6v6gkudr] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.rule-group-header[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rule-group-header h6[b-hz6v6gkudr] {
    margin: 0;
    font-weight: 600;
}

.form-check-input:checked[b-hz6v6gkudr] {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.form-check-input:focus[b-hz6v6gkudr] {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

/* 开关样式 */
.form-check-input:checked[type=checkbox][b-hz6v6gkudr] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* 搜索区域样式 */
.section-title[b-hz6v6gkudr] {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* 按钮组样式 */
.btn-group .btn-sm[b-hz6v6gkudr] {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
}

.btn-sm[b-hz6v6gkudr] {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    white-space: nowrap;
    min-width: 70px;
}

.btn-sm i[b-hz6v6gkudr] {
    font-size: 12px;
}

/* 状态图标 */
.bi-envelope-exclamation[b-hz6v6gkudr] {
    font-size: 1.2rem;
}

.bi-envelope-open[b-hz6v6gkudr] {
    font-size: 1.2rem;
}

/* 警告提示 */
.alert[b-hz6v6gkudr] {
    border-radius: 15px;
    padding: 20px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-info[b-hz6v6gkudr] {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1), rgba(9, 132, 227, 0.1));
    border-left: 4px solid #74b9ff;
}

.alert-warning[b-hz6v6gkudr] {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 149, 0, 0.1));
    border-left: 4px solid #ffc107;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-panel[b-hz6v6gkudr] {
        padding: 20px 15px;
    }
    
    .stats-card[b-hz6v6gkudr] {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .stats-number[b-hz6v6gkudr] {
        font-size: 2rem;
    }
    
    .table th[b-hz6v6gkudr],
    .table td[b-hz6v6gkudr] {
        padding: 8px;
        font-size: 14px;
    }
    
    .item-preview[b-hz6v6gkudr] {
        max-width: 40px;
        max-height: 40px;
    }
    
    .btn[b-hz6v6gkudr] {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .nav-tabs .nav-link[b-hz6v6gkudr] {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    h2[b-hz6v6gkudr] {
        font-size: 1.5rem;
    }
    
    .stats-number[b-hz6v6gkudr] {
        font-size: 1.8rem;
    }
    
    .nav-tabs .nav-link[b-hz6v6gkudr] {
        padding: 10px 15px;
        margin-right: 2px;
    }
    
    .image-modal-content[b-hz6v6gkudr] {
        max-width: 95vw;
        max-height: 95vh;
        margin: 10px;
    }
    
    .image-modal-body[b-hz6v6gkudr] {
        padding: 15px;
    }
}

/* 编辑弹窗样式 */
.modal-overlay[b-hz6v6gkudr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.modal-content[b-hz6v6gkudr] {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn-b-hz6v6gkudr 0.3s ease-out;
}

@keyframes modalSlideIn-b-hz6v6gkudr {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.modal-header h5[b-hz6v6gkudr] {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.modal-header .btn-close[b-hz6v6gkudr] {
    filter: invert(1);
    opacity: 0.8;
    padding: 0.5rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

.modal-header .btn-close:hover[b-hz6v6gkudr] {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.modal-body[b-hz6v6gkudr] {
    padding: 25px;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.modal-body .form-label[b-hz6v6gkudr] {
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-body .text-danger[b-hz6v6gkudr] {
    color: #e74c3c !important;
}

.modal-body .form-control[b-hz6v6gkudr],
.modal-body .form-select[b-hz6v6gkudr] {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.modal-body .form-control:focus[b-hz6v6gkudr],
.modal-body .form-select:focus[b-hz6v6gkudr] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: #fff;
}

.modal-body textarea.form-control[b-hz6v6gkudr] {
    resize: vertical;
    min-height: 80px;
}

.modal-footer[b-hz6v6gkudr] {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-footer .btn[b-hz6v6gkudr] {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    min-width: 100px;
}

.modal-footer .btn-secondary[b-hz6v6gkudr] {
    background: #6c757d;
    border: none;
    color: white;
}

.modal-footer .btn-secondary:hover:not(:disabled)[b-hz6v6gkudr] {
    background: #5a6268;
    transform: translateY(-1px);
}

.modal-footer .btn-primary[b-hz6v6gkudr] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
}

.modal-footer .btn-primary:hover:not(:disabled)[b-hz6v6gkudr] {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal-footer .btn:disabled[b-hz6v6gkudr] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .modal-content[b-hz6v6gkudr] {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header[b-hz6v6gkudr] {
        padding: 15px 20px;
    }
    
    .modal-header h5[b-hz6v6gkudr] {
        font-size: 1.1rem;
    }
    
    .modal-body[b-hz6v6gkudr] {
        padding: 20px;
    }
    
    .modal-footer[b-hz6v6gkudr] {
        padding: 15px 20px;
        flex-direction: column-reverse;
    }
    
    .modal-footer .btn[b-hz6v6gkudr] {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .server-selection-panel[b-hz6v6gkudr] {
        min-height: 70vh;
        padding: 20px;
    }
    
    .server-selection-content[b-hz6v6gkudr] {
        padding: 30px;
    }
    
    .server-card[b-hz6v6gkudr] {
        margin-bottom: 15px;
    }
}

/* 区服选择界面样式 */
.server-selection-panel[b-hz6v6gkudr] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.server-selection-content[b-hz6v6gkudr] {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 800px;
}

.server-selection-content h3[b-hz6v6gkudr] {
    color: #2d3436;
    font-weight: 700;
    margin-bottom: 30px;
}

.server-card[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.server-card:hover[b-hz6v6gkudr] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.server-card .server-name[b-hz6v6gkudr] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white !important;
}

.server-card .server-info[b-hz6v6gkudr] {
    opacity: 0.95;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95) !important;
}

.server-card .server-info small[b-hz6v6gkudr] {
    color: rgba(255, 255, 255, 0.95) !important;
}

.server-card .text-muted[b-hz6v6gkudr] {
    color: rgba(255, 255, 255, 0.95) !important;
}

.current-server-info[b-hz6v6gkudr] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #667eea;
}

.current-server-info h5[b-hz6v6gkudr] {
    color: #2d3436;
    margin: 0;
}

.current-server-info .badge[b-hz6v6gkudr] {
    font-size: 0.9em;
    padding: 8px 16px;
}

/* 增强版区服选择界面样式 */
.enhanced-server-card[b-hz6v6gkudr] {
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    overflow: hidden;
}

.enhanced-server-card[b-hz6v6gkudr]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-server-card:hover[b-hz6v6gkudr]::before {
    opacity: 1;
}

.enhanced-server-card:hover[b-hz6v6gkudr] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.enhanced-server-card .server-icon[b-hz6v6gkudr] {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.enhanced-server-card .server-icon i[b-hz6v6gkudr] {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.enhanced-server-card .server-name[b-hz6v6gkudr] {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.enhanced-server-card .server-info[b-hz6v6gkudr] {
    position: relative;
    z-index: 2;
    opacity: 0.95;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 15px;
}

.enhanced-server-card .server-info i[b-hz6v6gkudr] {
    color: rgba(255, 255, 255, 0.8) !important;
}

.enhanced-server-card .server-actions[b-hz6v6gkudr] {
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-server-card:hover .server-actions[b-hz6v6gkudr] {
    opacity: 1;
}

.enhanced-server-card .server-actions i[b-hz6v6gkudr] {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 快速操作区域样式 */
.server-selection-content .card[b-hz6v6gkudr] {
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.server-selection-content .card-body[b-hz6v6gkudr] {
    border-radius: 20px;
}

.server-selection-content .input-group-text[b-hz6v6gkudr] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px 0 0 10px;
}

.server-selection-content .form-control[b-hz6v6gkudr],
.server-selection-content .form-select[b-hz6v6gkudr] {
    border: 2px solid #e9ecef;
    border-radius: 0;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.server-selection-content .form-control:focus[b-hz6v6gkudr],
.server-selection-content .form-select:focus[b-hz6v6gkudr] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
}

.server-selection-content .btn[b-hz6v6gkudr] {
    border-radius: 0 10px 10px 0;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.server-selection-content .btn:hover[b-hz6v6gkudr] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 空状态样式 */
.empty-state[b-hz6v6gkudr] {
    padding: 60px 20px;
}

.empty-state i[b-hz6v6gkudr] {
    opacity: 0.6;
}

/* 现有区服标题样式 */
.existing-servers h4[b-hz6v6gkudr] {
    color: #2d3436;
    font-weight: 600;
}

.existing-servers .badge[b-hz6v6gkudr] {
    font-size: 0.8rem;
    padding: 6px 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .enhanced-server-card[b-hz6v6gkudr] {
        margin-bottom: 20px;
    }
    
    .server-selection-content .col-md-6[b-hz6v6gkudr] {
        margin-bottom: 20px;
    }
    
    .server-selection-content .input-group[b-hz6v6gkudr] {
        flex-direction: column;
    }
    
    .server-selection-content .input-group .btn[b-hz6v6gkudr] {
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .server-selection-content .input-group-text[b-hz6v6gkudr] {
        border-radius: 10px 10px 0 0;
    }
    
    .server-selection-content .form-control[b-hz6v6gkudr],
    .server-selection-content .form-select[b-hz6v6gkudr] {
        border-radius: 0 0 10px 10px;
    }
}
/* _content/Server/Components/Pages/PurchaseSettings.razor.rz.scp.css */
/* 区服选择面板 */
.server-selection-panel[b-u8g0wk7f55] {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.server-selection-content[b-u8g0wk7f55] {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 区服卡片 */
.server-card[b-u8g0wk7f55] {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.server-card:hover[b-u8g0wk7f55] {
    border-color: #198754;
    box-shadow: 0 8px 16px rgba(25, 135, 84, 0.15);
    transform: translateY(-5px);
}

.server-card[b-u8g0wk7f55]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #198754, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.server-card:hover[b-u8g0wk7f55]::before {
    transform: scaleX(1);
}

.server-icon[b-u8g0wk7f55] {
    font-size: 3rem;
    color: #198754;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.server-card:hover .server-icon[b-u8g0wk7f55] {
    transform: scale(1.1);
}

.server-name[b-u8g0wk7f55] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.server-info[b-u8g0wk7f55] {
    color: #6c757d;
    font-size: 0.9rem;
}

.server-actions[b-u8g0wk7f55] {
    margin-top: 0.5rem;
    color: #198754;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.server-card:hover .server-actions[b-u8g0wk7f55] {
    opacity: 1;
}

/* 当前区服信息 */
.current-server-info[b-u8g0wk7f55] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 统计卡片 */
.stats-card[b-u8g0wk7f55] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stats-card:hover[b-u8g0wk7f55] {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stats-number[b-u8g0wk7f55] {
    font-size: 2.5rem;
    font-weight: bold;
    color: #198754;
    margin-bottom: 0.5rem;
}

.stats-label[b-u8g0wk7f55] {
    font-size: 1rem;
    color: #6c757d;
}

/* 表格样式优化 */
.table[b-u8g0wk7f55] {
    margin-bottom: 0;
}

.table thead th[b-u8g0wk7f55] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table tbody tr[b-u8g0wk7f55] {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover[b-u8g0wk7f55] {
    background-color: #f8f9fa;
}

/* 模态框样式 */
.modal-backdrop[b-u8g0wk7f55] {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content[b-u8g0wk7f55] {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header[b-u8g0wk7f55] {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 1.25rem 1.5rem;
}

.modal-header .btn-close[b-u8g0wk7f55] {
    filter: brightness(0) invert(1);
}

.modal-title[b-u8g0wk7f55] {
    font-weight: 600;
}

.modal-body[b-u8g0wk7f55] {
    padding: 1.5rem;
}

.modal-footer[b-u8g0wk7f55] {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

/* 表单样式 */
.form-label[b-u8g0wk7f55] {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control:focus[b-u8g0wk7f55],
.form-select:focus[b-u8g0wk7f55] {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* 按钮样式增强 */
.btn[b-u8g0wk7f55] {
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn:hover[b-u8g0wk7f55] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-success[b-u8g0wk7f55] {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover[b-u8g0wk7f55] {
    background-color: #157347;
    border-color: #146c43;
}

/* 空状态样式 */
.empty-state[b-u8g0wk7f55] {
    padding: 4rem 2rem;
}

.empty-state i[b-u8g0wk7f55] {
    opacity: 0.3;
}

/* 标签页样式 */
.nav-tabs[b-u8g0wk7f55] {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link[b-u8g0wk7f55] {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.nav-tabs .nav-link:hover[b-u8g0wk7f55] {
    color: #198754;
    border-color: transparent;
}

.nav-tabs .nav-link.active[b-u8g0wk7f55] {
    color: #198754;
    border-bottom: 3px solid #198754;
    background-color: transparent;
}

/* 卡片样式 */
.card[b-u8g0wk7f55] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.card-header[b-u8g0wk7f55] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0 !important;
}

.card-body[b-u8g0wk7f55] {
    padding: 1.5rem;
}

/* 徽章样式 */
.badge[b-u8g0wk7f55] {
    padding: 0.4em 0.8em;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .server-selection-content[b-u8g0wk7f55] {
        padding: 0 0.5rem;
    }

    .stats-number[b-u8g0wk7f55] {
        font-size: 2rem;
    }

    .modal-dialog[b-u8g0wk7f55] {
        margin: 0.5rem;
    }

    .table-responsive[b-u8g0wk7f55] {
        font-size: 0.9rem;
    }

    .btn-group .btn[b-u8g0wk7f55] {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* 输入组样式增强 */
.input-group-text[b-u8g0wk7f55] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.input-group .btn[b-u8g0wk7f55] {
    z-index: 2;
}

/* 动画效果 */
@keyframes fadeIn-b-u8g0wk7f55 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.server-card[b-u8g0wk7f55],
.stats-card[b-u8g0wk7f55],
.card[b-u8g0wk7f55] {
    animation: fadeIn-b-u8g0wk7f55 0.3s ease;
}

/* 分组容器样式 */
.group-container[b-u8g0wk7f55] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.group-container:hover[b-u8g0wk7f55] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #0d6efd;
}

.group-header[b-u8g0wk7f55] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid #dee2e6;
}

.group-header h5[b-u8g0wk7f55] {
    color: #212529;
    font-weight: 600;
}

.group-header .text-muted[b-u8g0wk7f55] {
    color: #6c757d !important;
}

.group-body[b-u8g0wk7f55] {
    padding: 0;
}

.group-body .table[b-u8g0wk7f55] {
    margin-bottom: 0;
}

.group-body .table thead th[b-u8g0wk7f55] {
    background-color: #fafafa;
    font-size: 0.9rem;
    padding: 0.75rem;
}

.group-body .table tbody td[b-u8g0wk7f55] {
    padding: 0.875rem 0.75rem;
}

/* 分组价格调整输入框 */
.group-header input[type="number"][b-u8g0wk7f55] {
    border-color: #ced4da;
    transition: all 0.2s ease;
}

.group-header input[type="number"]:focus[b-u8g0wk7f55] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.group-header .btn-primary[b-u8g0wk7f55] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.375rem 1rem;
}

.group-header .btn-primary:hover[b-u8g0wk7f55] {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(13, 110, 253, 0.3);
}


/* _content/Server/Components/Pages/RemoteControl.razor.rz.scp.css */
/* ===== 容器 ===== */
.remote-control-container[b-21cg872wry] {
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    color: #fff;
    overflow: hidden;
}

.remote-control-container.fullscreen[b-21cg872wry] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.remote-control-container.fullscreen .scripts-sidebar[b-21cg872wry] {
    z-index: 10000;
}

/* ===== 列表视图容器（电脑列表和报警列表并排） ===== */
.list-view-container[b-21cg872wry] {
    display: flex;
    width: 100%;
    height: 100vh;
    gap: 0;
}

/* ===== 电脑列表区域 ===== */
.computer-list-section[b-21cg872wry] {
    flex: 2;
    padding: 40px;
    overflow-y: auto;
    border-right: 2px solid #3a3a3a;
}

.computer-list-section h3[b-21cg872wry] {
    font-size: 32px;
    margin-bottom: 30px;
    color: #4CAF50;
}

/* ===== 报警列表区域 ===== */
.alarm-list-section[b-21cg872wry] {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    background: #1a1a1a;
}

.alarm-list-section h3[b-21cg872wry] {
    font-size: 32px;
    margin-bottom: 30px;
    color: #ff5722;
}

.alarm-list-container[b-21cg872wry] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alarm-item[b-21cg872wry] {
    background: #2a2a2a;
    border: 2px solid #ff5722;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    animation: alarmPulse-b-21cg872wry 2s ease-in-out infinite;
}

.alarm-item:hover[b-21cg872wry] {
    background: #333;
    border-color: #ff7043;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

/* 停止通知样式（蓝色边框，不闪烁） */
.alarm-item-notification[b-21cg872wry] {
    border-color: #2196F3;
    animation: none;
}

.alarm-item-notification:hover[b-21cg872wry] {
    border-color: #42A5F5;
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

/* 确认对话框样式（黄色边框，闪烁） */
.alarm-item-confirm[b-21cg872wry] {
    border-color: #FFC107;
    animation: confirmPulse-b-21cg872wry 2s ease-in-out infinite;
}

.alarm-item-confirm:hover[b-21cg872wry] {
    border-color: #FFD54F;
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

@keyframes confirmPulse-b-21cg872wry {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    }
}

@keyframes alarmPulse-b-21cg872wry {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
    }
}

.alarm-item-top[b-21cg872wry] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}

.alarm-computer[b-21cg872wry] {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alarm-id[b-21cg872wry] {
    color: #ff7043;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.alarm-type-badge[b-21cg872wry] {
    background: #ff5722;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.alarm-item-notification .alarm-type-badge[b-21cg872wry] {
    background: #2196F3;
}

.alarm-item-confirm .alarm-type-badge[b-21cg872wry] {
    background: #FFC107;
    color: #000;
}

.alarm-item-msg[b-21cg872wry] {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    word-wrap: break-word;
    min-height: 42px; /* 保证两行高度 */
}

.alarm-item-actions[b-21cg872wry] {
    display: flex;
    gap: 10px;
}

.alarm-btn[b-21cg872wry] {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
}

.alarm-btn-continue[b-21cg872wry] {
    background: #4CAF50;
    color: white;
}

.alarm-btn-continue:hover[b-21cg872wry] {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
}

.alarm-btn-continue:active[b-21cg872wry] {
    transform: translateY(0);
}

.alarm-btn-delete[b-21cg872wry] {
    background: #f44336;
    color: white;
}

.alarm-btn-delete:hover[b-21cg872wry] {
    background: #da190b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.5);
}

.alarm-btn-delete:active[b-21cg872wry] {
    transform: translateY(0);
}

.alarm-btn-delete-full[b-21cg872wry] {
    flex: 1;
    width: 100%;
}

.alarm-btn-confirm[b-21cg872wry] {
    background: #4CAF50;
    color: white;
}

.alarm-btn-confirm:hover[b-21cg872wry] {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
}

.alarm-btn-confirm:active[b-21cg872wry] {
    transform: translateY(0);
}

.alarm-btn-cancel[b-21cg872wry] {
    background: #FFC107;
    color: #000;
}

.alarm-btn-cancel:hover[b-21cg872wry] {
    background: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.5);
}

.alarm-btn-cancel:active[b-21cg872wry] {
    transform: translateY(0);
}

.computer-grid[b-21cg872wry] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.computer-card[b-21cg872wry] {
    background: #2a2a2a;
    border: 2px solid #3a3a3a;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.computer-card:hover[b-21cg872wry] {
    border-color: #4CAF50;
    background: #333;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.computer-header[b-21cg872wry] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.computer-header h4[b-21cg872wry] {
    margin: 0;
    color: #fff;
    font-size: 20px;
}

.online-badge[b-21cg872wry] {
    background: #4CAF50;
    color: white;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: bold;
}

.computer-info p[b-21cg872wry] {
    margin: 8px 0;
    color: #aaa;
    font-size: 14px;
}

/* 手机卡片样式 */
.phone-card[b-21cg872wry] {
    border-color: #2196F3;
}

.phone-card:hover[b-21cg872wry] {
    border-color: #42A5F5;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
}

.phone-badge[b-21cg872wry] {
    background: #2196F3;
}

/* ===== 远程控制主界面 ===== */
.remote-control-main[b-21cg872wry] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

/* ===== 全屏退出按钮（可拖拽） ===== */
.fullscreen-exit-btn[b-21cg872wry] {
    position: fixed;
    z-index: 10001;
    cursor: move;
    user-select: none;
    transition: none; /* 拖拽时不使用过渡 */
}

.fullscreen-exit-btn button[b-21cg872wry] {
    width: 50px;
    height: 50px;
    background: rgba(244, 67, 54, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: move;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

.fullscreen-exit-btn button:hover[b-21cg872wry] {
    background: #f44336;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(244, 67, 54, 0.6);
}

.fullscreen-exit-btn button:active[b-21cg872wry] {
    transform: scale(0.95);
}

/* ===== 画面质量控制 ===== */
.quality-control[b-21cg872wry] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #3a3a3a;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    min-width: 200px;
}

.quality-control label[b-21cg872wry] {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.quality-slider[b-21cg872wry] {
    flex: 1;
    height: 6px;
    background: #4a4a4a;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.quality-slider[b-21cg872wry]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4CAF50;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.quality-slider[b-21cg872wry]::-webkit-slider-thumb:hover {
    background: #45a049;
    transform: scale(1.2);
}

.quality-slider[b-21cg872wry]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4CAF50;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.quality-slider[b-21cg872wry]::-moz-range-thumb:hover {
    background: #45a049;
    transform: scale(1.2);
}

.quality-value[b-21cg872wry] {
    color: #4CAF50;
    font-weight: bold;
    font-size: 14px;
    min-width: 35px;
    text-align: right;
}

/* ===== 控制头部 ===== */
.control-header[b-21cg872wry] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #2a2a2a;
    border-bottom: 2px solid #3a3a3a;
    flex-wrap: wrap;
}

.control-header h4[b-21cg872wry] {
    flex: 1;
    margin: 0;
    color: #4CAF50;
    font-size: 20px;
}

.btn-action[b-21cg872wry] {
    padding: 10px 20px;
    background: #3a3a3a;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-action:hover[b-21cg872wry] {
    background: #4a4a4a;
    border-color: #4CAF50;
}

.btn-action.active[b-21cg872wry] {
    background: #4CAF50;
    border-color: #4CAF50;
}

.control-switch[b-21cg872wry] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #3a3a3a;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.control-switch:hover[b-21cg872wry] {
    background: #4a4a4a;
}

.control-switch input[type="checkbox"][b-21cg872wry] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.control-switch span[b-21cg872wry] {
    color: #fff;
    font-size: 14px;
}

/* ===== 控制内容区 ===== */
.control-content[b-21cg872wry] {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* ===== 视频区域 ===== */
.video-section[b-21cg872wry] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 0; /* 电脑模式下不需要padding */
}

/* 画面和控制按钮的容器 */
.video-and-controls[b-21cg872wry] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* 电脑模式不需要gap */
    /* 默认：电脑模式，填满整个空间 */
    width: 100%;
    height: 100%;
}

.video-control-wrapper[b-21cg872wry] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none; /* 移除默认的焦点轮廓 */
    background: #000;
    /* 默认：电脑屏幕，填满整个可用空间，不要圆角 */
    width: 100%;
    height: 100%;
}

.video-control-wrapper:focus[b-21cg872wry] {
    /* 获得焦点时的样式提示 */
    box-shadow: inset 0 0 0 3px rgba(76, 175, 80, 0.5), 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* 手机模式：给video-and-controls添加样式 */
.video-and-controls:has(.phone-screen)[b-21cg872wry] {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 20px; /* 手机模式添加padding */
    gap: 15px; /* 手机模式需要gap分隔画面和按钮 */
}

/* 手机画面：高度优先，固定显示区域，保持比例 */
.video-control-wrapper.phone-screen[b-21cg872wry] {
    max-height: 75vh;
    max-width: none;
    width: auto;
    height: 75vh;
    border-radius: 8px; /* 手机模式添加圆角 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-frame[b-21cg872wry] {
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
    object-fit: fill; /* 默认：电脑画面填满容器，不保持比例 */
    /* 禁用浏览器默认拖拽 */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none; /* 图片本身不接收事件 */
}

/* 手机画面：保持横纵比例 */
.video-control-wrapper.phone-screen .video-frame[b-21cg872wry] {
    object-fit: contain;
}

.control-disabled-overlay[b-21cg872wry] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* 轻微的灰色遮罩 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none; /* 不阻挡鼠标事件 */
}

.control-disabled-overlay p[b-21cg872wry] {
    color: #fff;
    font-size: 18px;
    margin: 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.6;
}

.control-disabled-overlay .hint[b-21cg872wry] {
    color: #ccc;
    font-size: 14px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.5;
}

.video-placeholder[b-21cg872wry] {
    text-align: center;
    color: #666;
}

.video-placeholder p[b-21cg872wry] {
    font-size: 20px;
    margin: 10px 0;
}

.video-placeholder .hint[b-21cg872wry] {
    font-size: 14px;
    color: #555;
}

/* ===== 侧边栏 ===== */
.scripts-sidebar[b-21cg872wry] {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background: rgba(42, 42, 42, 0.98);
    border-left: 2px solid #3a3a3a;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    z-index: 100;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.scripts-sidebar.hidden[b-21cg872wry] {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.scripts-sidebar.visible[b-21cg872wry] {
    transform: translateX(0);
    opacity: 1;
}

.sidebar-header[b-21cg872wry] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #333;
    border-bottom: 2px solid #3a3a3a;
}

.sidebar-header h5[b-21cg872wry] {
    margin: 0;
    color: #4CAF50;
    font-size: 18px;
}

.btn-close-sidebar[b-21cg872wry] {
    width: 32px;
    height: 32px;
    background: #3a3a3a;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-close-sidebar:hover[b-21cg872wry] {
    background: #f44336;
    transform: rotate(90deg);
}

/* ===== 脚本列表 ===== */
.scripts-list[b-21cg872wry] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.script-card[b-21cg872wry] {
    background: #333;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s;
}

.script-card:hover[b-21cg872wry] {
    border-color: #4CAF50;
    background: #3a3a3a;
}

.script-header[b-21cg872wry] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.player-name[b-21cg872wry] {
    font-weight: bold;
    color: #fff;
    font-size: 16px;
}

.status-badge[b-21cg872wry] {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.status-badge.running[b-21cg872wry] {
    background: #4CAF50;
    color: white;
}

.status-badge.stopped[b-21cg872wry] {
    background: #f44336;
    color: white;
}

.script-info[b-21cg872wry] {
    margin-bottom: 12px;
}

.script-info p[b-21cg872wry] {
    margin: 6px 0;
    font-size: 13px;
    color: #aaa;
}

.script-log[b-21cg872wry] {
    background: #2a2a2a;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    border-left: 3px solid #2196F3;
}

.script-log strong[b-21cg872wry] {
    display: block;
    margin-bottom: 8px;
    color: #2196F3;
    font-size: 13px;
}

.log-content[b-21cg872wry] {
    font-size: 12px;
    color: #999;
    margin: 0;
    word-wrap: break-word;
    max-height: 60px;
    overflow-y: auto;
    font-family: 'Consolas', 'Monaco', monospace;
}

.script-actions[b-21cg872wry] {
    display: flex;
    gap: 10px;
}

.btn-start[b-21cg872wry], .btn-stop[b-21cg872wry] {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-start[b-21cg872wry] {
    background: #4CAF50;
    color: white;
}

.btn-start:hover[b-21cg872wry] {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.4);
}

.btn-stop[b-21cg872wry] {
    background: #f44336;
    color: white;
}

.btn-stop:hover[b-21cg872wry] {
    background: #da190b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(244, 67, 54, 0.4);
}

/* ===== 空消息 ===== */
.empty-message[b-21cg872wry] {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-message p[b-21cg872wry] {
    margin: 8px 0;
}

.empty-message .hint[b-21cg872wry] {
    font-size: 14px;
    color: #555;
}

/* ===== 滚动条 ===== */
.computer-list-section[b-21cg872wry]::-webkit-scrollbar,
.alarm-list-section[b-21cg872wry]::-webkit-scrollbar,
.scripts-list[b-21cg872wry]::-webkit-scrollbar,
.log-content[b-21cg872wry]::-webkit-scrollbar {
    width: 8px;
}

.computer-list-section[b-21cg872wry]::-webkit-scrollbar-track,
.alarm-list-section[b-21cg872wry]::-webkit-scrollbar-track,
.scripts-list[b-21cg872wry]::-webkit-scrollbar-track,
.log-content[b-21cg872wry]::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.computer-list-section[b-21cg872wry]::-webkit-scrollbar-thumb,
.alarm-list-section[b-21cg872wry]::-webkit-scrollbar-thumb,
.scripts-list[b-21cg872wry]::-webkit-scrollbar-thumb,
.log-content[b-21cg872wry]::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 4px;
}

.computer-list-section[b-21cg872wry]::-webkit-scrollbar-thumb:hover,
.alarm-list-section[b-21cg872wry]::-webkit-scrollbar-thumb:hover,
.scripts-list[b-21cg872wry]::-webkit-scrollbar-thumb:hover,
.log-content[b-21cg872wry]::-webkit-scrollbar-thumb:hover {
    background: #5a5a5a;
}

/* ===== 响应式 ===== */
@media (max-width: 1400px) {
    .scripts-sidebar[b-21cg872wry] {
        width: 360px;
    }
}

@media (max-width: 1200px) {
    .scripts-sidebar[b-21cg872wry] {
        width: 90%;
        max-width: 500px;
    }
    
    /* 在中等屏幕上，列表视图改为垂直排列 */
    .list-view-container[b-21cg872wry] {
        flex-direction: column;
    }
    
    .computer-list-section[b-21cg872wry],
    .alarm-list-section[b-21cg872wry] {
        flex: none;
        height: 50vh;
        border-right: none;
    }
    
    .computer-list-section[b-21cg872wry] {
        border-bottom: 2px solid #3a3a3a;
    }
}

@media (max-width: 768px) {
    .scripts-sidebar[b-21cg872wry] {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        right: 0;
        border-left: none;
        border-top: 2px solid #3a3a3a;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .scripts-sidebar.hidden[b-21cg872wry] {
        transform: translateY(100%);
    }
    
    .scripts-sidebar.visible[b-21cg872wry] {
        transform: translateY(0);
    }
    
    .computer-list-section[b-21cg872wry],
    .alarm-list-section[b-21cg872wry] {
        padding: 20px;
    }
    
    .computer-list-section h3[b-21cg872wry],
    .alarm-list-section h3[b-21cg872wry] {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* ===== Android专属控制按钮（画面下方） ===== */
.android-controls-bottom[b-21cg872wry] {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-android-action[b-21cg872wry] {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-android-action:hover[b-21cg872wry] {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
}

.btn-android-action:active[b-21cg872wry] {
    transform: translateY(-1px);
}

/* ===== 动画 ===== */
@keyframes fadeIn-b-21cg872wry {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown-b-21cg872wry {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* _content/Server/Components/Pages/StallList.razor.rz.scp.css */
.search-panel[b-e1gnmrc0te] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
}

.search-panel .form-label[b-e1gnmrc0te] {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-panel .form-select[b-e1gnmrc0te],
.search-panel .form-control[b-e1gnmrc0te] {
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-panel .form-select:focus[b-e1gnmrc0te],
.search-panel .form-control:focus[b-e1gnmrc0te] {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 1);
}

.search-panel .form-control:disabled[b-e1gnmrc0te] {
    background: rgba(255, 255, 255, 0.5);
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.search-panel .form-control:disabled[b-e1gnmrc0te]::placeholder {
    color: #adb5bd;
}

/* 时间筛选相关样式 */
.form-check-input:checked[b-e1gnmrc0te] {
    background-color: #667eea;
    border-color: #667eea;
}

.form-check-label[b-e1gnmrc0te] {
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer;
}

.search-panel .input-group-text[b-e1gnmrc0te] {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #667eea;
    font-weight: 600;
}

.search-panel .form-control:disabled + .input-group-text[b-e1gnmrc0te] {
    background: rgba(255, 255, 255, 0.5);
    color: #6c757d;
}

.btn-primary[b-e1gnmrc0te] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-e1gnmrc0te] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.btn-primary:disabled[b-e1gnmrc0te] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary[b-e1gnmrc0te] {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
    min-width: 140px;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled)[b-e1gnmrc0te] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.btn-secondary:disabled[b-e1gnmrc0te] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* 大按钮样式 */
.btn-lg[b-e1gnmrc0te] {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-lg:hover:not(:disabled)[b-e1gnmrc0te] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 加载动画 */
.spinner-border-sm[b-e1gnmrc0te] {
    width: 1rem;
    height: 1rem;
}

.table[b-e1gnmrc0te] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.table-dark[b-e1gnmrc0te] {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.table th[b-e1gnmrc0te] {
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td[b-e1gnmrc0te] {
    border: none;
    padding: 12px 15px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd)[b-e1gnmrc0te] {
    background-color: rgba(102, 126, 234, 0.05);
}

.table-hover tbody tr:hover[b-e1gnmrc0te] {
    background-color: rgba(102, 126, 234, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.sortable[b-e1gnmrc0te] {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
}

.sortable:hover[b-e1gnmrc0te] {
    background-color: rgba(255, 255, 255, 0.1);
}

.sortable i[b-e1gnmrc0te] {
    margin-left: 8px;
    font-size: 12px;
}

/* 排序加载动画 */
.sortable .spinner-border-sm[b-e1gnmrc0te] {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 0.1em;
    color: #fff;
    margin-left: 8px;
}

.badge[b-e1gnmrc0te] {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 15px;
}

.pagination[b-e1gnmrc0te] {
    margin-top: 30px;
}

.page-link[b-e1gnmrc0te] {
    border: none;
    border-radius: 8px;
    margin: 0 3px;
    padding: 10px 15px;
    color: #667eea;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link:hover[b-e1gnmrc0te] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.active .page-link[b-e1gnmrc0te] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link[b-e1gnmrc0te] {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.result-info[b-e1gnmrc0te] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #667eea;
}

.alert-info[b-e1gnmrc0te] {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1), rgba(9, 132, 227, 0.1));
    border: none;
    border-radius: 15px;
    border-left: 4px solid #74b9ff;
    padding: 20px;
}

.alert-warning[b-e1gnmrc0te] {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border: none;
    border-radius: 15px;
    border-left: 4px solid #ffc107;
    padding: 20px;
}

.input-group[b-e1gnmrc0te] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.input-group-text[b-e1gnmrc0te] {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    font-weight: 600;
}

.input-group .form-control[b-e1gnmrc0te] {
    border: none;
    padding: 10px 15px;
}

.input-group .btn-outline-primary[b-e1gnmrc0te] {
    border: none;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group .btn-outline-primary:hover[b-e1gnmrc0te] {
    background: linear-gradient(45deg, #ee5a24, #d63031);
    transform: scale(1.05);
}

h2[b-e1gnmrc0te] {
    color: #2d3436;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

h2[b-e1gnmrc0te]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.table-responsive[b-e1gnmrc0te] {
    border-radius: 15px;
    overflow: hidden;
}

/* 摊位详情弹窗 */
.stall-details-overlay[b-e1gnmrc0te] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.stall-details-modal[b-e1gnmrc0te] {
    background: white;
    border-radius: 20px;
    max-width: 95vw;
    max-height: 95vh;
    width: 1600px;
    height: 85vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn-b-e1gnmrc0te 0.3s ease-out;
}

@keyframes modalSlideIn-b-e1gnmrc0te {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stall-details-header[b-e1gnmrc0te] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: between;
    align-items: center;
}

.stall-details-header h4[b-e1gnmrc0te] {
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.stall-details-header .btn-close[b-e1gnmrc0te] {
    filter: invert(1);
    opacity: 0.8;
}

.stall-details-header .btn-close:hover[b-e1gnmrc0te] {
    opacity: 1;
}

.stall-details-body[b-e1gnmrc0te] {
    padding: 25px;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
    overflow-x: visible;
    height: calc(85vh - 80px);
}

.stall-basic-info[b-e1gnmrc0te] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #667eea;
}

.section-title[b-e1gnmrc0te] {
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i[b-e1gnmrc0te] {
    color: #667eea;
    font-size: 1.2em;
}

/* 物品网格 - 垂直布局 */
.goods-grid[b-e1gnmrc0te] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.goods-card-vertical[b-e1gnmrc0te] {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.goods-card-vertical:hover[b-e1gnmrc0te] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.goods-image-container[b-e1gnmrc0te] {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
    height: 280px;
}

.goods-image[b-e1gnmrc0te] {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.goods-info[b-e1gnmrc0te] {
    width: 100%;
}

.goods-name[b-e1gnmrc0te] {
    font-weight: 600;
    color: #2d3436;
    font-size: 16px;
    margin-bottom: 8px;
}

.goods-price[b-e1gnmrc0te] {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.goods-special[b-e1gnmrc0te] {
    color: #6c5ce7;
    font-size: 12px;
    margin-bottom: 3px;
}

.goods-stats[b-e1gnmrc0te] {
    color: #636e72;
    font-size: 12px;
}

.goods-stats span[b-e1gnmrc0te] {
    margin-right: 10px;
}

/* 宠物网格 - 垂直布局 */
.pets-grid[b-e1gnmrc0te] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pet-card-vertical-new[b-e1gnmrc0te] {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    border-left: 4px solid #00b894;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pet-card-vertical-new:hover[b-e1gnmrc0te] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.pet-image-container-new[b-e1gnmrc0te] {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
    height: 280px;
}

.pet-image-full[b-e1gnmrc0te] {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.pet-info-new[b-e1gnmrc0te] {
    width: 100%;
}

.pet-header-new[b-e1gnmrc0te] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pet-name-new[b-e1gnmrc0te] {
    font-weight: 600;
    color: #2d3436;
    font-size: 18px;
}

.pet-type-badge-new[b-e1gnmrc0te] {
    flex-shrink: 0;
}

.pet-price-new[b-e1gnmrc0te] {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.pet-basic-info-new[b-e1gnmrc0te] {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.pet-level-new[b-e1gnmrc0te], .pet-growth-new[b-e1gnmrc0te] {
    color: #636e72;
    font-size: 14px;
}

.pet-aptitude-new[b-e1gnmrc0te] {
    margin-bottom: 10px;
}

.aptitude-row-new[b-e1gnmrc0te] {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #636e72;
    font-size: 13px;
    margin-bottom: 3px;
}

.pet-skills-new[b-e1gnmrc0te] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.skills-label-new[b-e1gnmrc0te] {
    color: #636e72;
    font-size: 13px;
    font-weight: 600;
}

.skill-icons-new[b-e1gnmrc0te] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.item-image[b-e1gnmrc0te] {
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.item-image img[b-e1gnmrc0te] {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    display: block;
}

.no-image[b-e1gnmrc0te] {
    color: #6c757d;
    font-size: 24px;
}

.item-info[b-e1gnmrc0te] {
    flex: 1;
    min-width: 0;
}

.item-name[b-e1gnmrc0te] {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 5px;
    font-size: 16px;
}

.item-price[b-e1gnmrc0te] {
    color: #e17055;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.item-special[b-e1gnmrc0te] {
    color: #6c5ce7;
    font-size: 12px;
    margin-bottom: 3px;
}

.item-stats[b-e1gnmrc0te] {
    color: #636e72;
    font-size: 12px;
}

.item-stats span[b-e1gnmrc0te] {
    margin-right: 10px;
}

.pet-level[b-e1gnmrc0te], .pet-growth[b-e1gnmrc0te] {
    color: #636e72;
    font-size: 12px;
    margin-bottom: 3px;
}

.pet-aptitude[b-e1gnmrc0te] {
    color: #636e72;
    margin-bottom: 8px;
}

.pet-skills[b-e1gnmrc0te] {
    margin-top: 8px;
}

.skill-icons[b-e1gnmrc0te] {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 5px;
}

.skill-mini-icon[b-e1gnmrc0te] {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #ddd;
    object-fit: contain;
    flex-shrink: 0;
}

.skill-more-mini[b-e1gnmrc0te] {
    font-size: 10px;
    background: #6c757d;
    color: white;
    padding: 1px 4px;
    border-radius: 8px;
    margin-left: 2px;
}

/* 按钮样式 */
.btn-sm[b-e1gnmrc0te] {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.btn-outline-primary[b-e1gnmrc0te] {
    border-color: #667eea;
    color: #667eea;
}

.btn-outline-primary:hover[b-e1gnmrc0te] {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

/* 图片放大弹窗 */
.image-modal-overlay[b-e1gnmrc0te] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.image-modal-content[b-e1gnmrc0te] {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: imageModalSlideIn-b-e1gnmrc0te 0.3s ease-out;
}

@keyframes imageModalSlideIn-b-e1gnmrc0te {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-header[b-e1gnmrc0te] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-modal-header h5[b-e1gnmrc0te] {
    margin: 0;
    font-weight: 600;
}

.image-modal-header .btn-close[b-e1gnmrc0te] {
    filter: invert(1);
    opacity: 0.8;
}

.image-modal-header .btn-close:hover[b-e1gnmrc0te] {
    opacity: 1;
}

.image-modal-body[b-e1gnmrc0te] {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.full-size-image[b-e1gnmrc0te] {
    max-width: 100%;
    max-height: calc(90vh - 200px);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.goods-content-debug[b-e1gnmrc0te] {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #667eea;
    max-height: 200px;
    overflow-y: auto;
}

.goods-content-debug h6[b-e1gnmrc0te] {
    color: #667eea;
    margin-bottom: 10px;
    font-weight: 600;
}

.content-text[b-e1gnmrc0te] {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 10px;
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #495057;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* 物品解析信息样式 */
.goods-data-info[b-e1gnmrc0te] {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #667eea;
    max-height: 400px;
    overflow-y: auto;
}

.goods-data-info .row[b-e1gnmrc0te] {
    margin-bottom: 8px;
}

.goods-data-info .col-6[b-e1gnmrc0te],
.goods-data-info .col-4[b-e1gnmrc0te] {
    padding: 4px 8px;
    background: white;
    border-radius: 5px;
    margin-bottom: 4px;
    font-size: 13px;
    border: 1px solid #e9ecef;
}

.goods-data-info strong[b-e1gnmrc0te] {
    color: #667eea;
    font-weight: 600;
}

.goods-data-info .mt-2[b-e1gnmrc0te] {
    background: white;
    border-radius: 5px;
    padding: 8px;
    margin-top: 8px !important;
    font-size: 13px;
    border: 1px solid #e9ecef;
}

.goods-data-info .mt-2 strong[b-e1gnmrc0te] {
    color: #667eea;
    font-weight: 600;
}

/* 梦幻西游价格颜色 */
.price-display[b-e1gnmrc0te] {
    color: #ff6b35;
    font-weight: bold;
}

.price-black[b-e1gnmrc0te] {
    color: #2d3436;
    font-weight: 600;
}

.price-blue[b-e1gnmrc0te] {
    color: #0984e3;
    font-weight: 600;
}

.price-green[b-e1gnmrc0te] {
    color: #00b894;
    font-weight: 600;
}

.price-red[b-e1gnmrc0te] {
    color: #e74c3c;
    font-weight: 600;
}

.price-purple[b-e1gnmrc0te] {
    color: #6c5ce7;
    font-weight: 600;
}

.price-pink[b-e1gnmrc0te] {
    color: #fd79a8;
    font-weight: 600;
}

@media (max-width: 768px) {
    .search-panel[b-e1gnmrc0te] {
        padding: 20px 15px;
    }
    
    .table th[b-e1gnmrc0te],
    .table td[b-e1gnmrc0te] {
        padding: 8px;
        font-size: 14px;
    }
    
    .btn[b-e1gnmrc0te] {
        padding: 8px 16px;
        font-size: 14px;
    }

    .stall-details-modal[b-e1gnmrc0te] {
        width: 95vw;
        max-height: 95vh;
    }

    .stall-details-body[b-e1gnmrc0te] {
        padding: 15px;
    }

    .goods-grid[b-e1gnmrc0te] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .goods-card-vertical[b-e1gnmrc0te] {
        padding: 12px;
    }

    .goods-image-container[b-e1gnmrc0te] {
        height: 220px;
        overflow: hidden;
    }

    .goods-image[b-e1gnmrc0te] {
        max-height: 100%;
        max-width: 100%;
    }

    .pets-grid[b-e1gnmrc0te] {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .pet-card-vertical-new[b-e1gnmrc0te] {
        padding: 12px;
    }

    .pet-image-container-new[b-e1gnmrc0te] {
        height: 220px;
        overflow: hidden;
    }

    .pet-image-full[b-e1gnmrc0te] {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }

    .pet-basic-info-new[b-e1gnmrc0te] {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .aptitude-row-new[b-e1gnmrc0te] {
        gap: 10px;
    }
}
/* _content/Server/Components/Pages/TransactionHistory.razor.rz.scp.css */
/* 筛选面板 */
.filter-panel .card[b-8k4we1ewb0] {
    border: none;
    border-radius: 12px;
}

.filter-panel .form-label[b-8k4we1ewb0] {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.filter-panel .form-control[b-8k4we1ewb0],
.filter-panel .form-select[b-8k4we1ewb0] {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.filter-panel .form-control:focus[b-8k4we1ewb0],
.filter-panel .form-select:focus[b-8k4we1ewb0] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

/* 分组筛选容器 */
.group-filter-container[b-8k4we1ewb0] {
    max-height: 250px;
    overflow-y: auto;
}

.group-filter-container .btn-sm[b-8k4we1ewb0] {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.group-filter-container .btn-sm:hover[b-8k4we1ewb0] {
    transform: scale(1.05);
}

.group-checkboxes[b-8k4we1ewb0] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.group-checkboxes .form-check[b-8k4we1ewb0] {
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 20px;
    border: 2px solid #e3e6ea;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.group-checkboxes .form-check[b-8k4we1ewb0]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.group-checkboxes .form-check:hover[b-8k4we1ewb0]::before {
    opacity: 1;
}

.group-checkboxes .form-check:hover[b-8k4we1ewb0] {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.group-checkboxes .form-check-input[b-8k4we1ewb0] {
    width: 20px;
    height: 20px;
    margin: 0;
    border: 2px solid #adb5bd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.85rem;
    position: relative;
    z-index: 1;
    background-color: white;
}

.group-checkboxes .form-check-input:checked[b-8k4we1ewb0] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.group-checkboxes .form-check-input:hover[b-8k4we1ewb0] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}

.group-checkboxes .form-check-input:focus[b-8k4we1ewb0] {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.group-checkboxes .form-check-label[b-8k4we1ewb0] {
    cursor: pointer;
    user-select: none;
    padding: 0.55rem 1rem 0.55rem 0.65rem;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.group-checkboxes .form-check:has(.form-check-input:checked)[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #e7f3ff 0%, #cfe2ff 100%);
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.group-checkboxes .form-check:has(.form-check-input:checked) .form-check-label[b-8k4we1ewb0] {
    color: #0d6efd;
    font-weight: 600;
}

.group-checkboxes .form-check:has(.form-check-input:checked)[b-8k4we1ewb0]::before {
    opacity: 0;
}

/* 添加动画效果 */
@keyframes checkboxPulse-b-8k4we1ewb0 {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.group-checkboxes .form-check-input:checked[b-8k4we1ewb0] {
    animation: checkboxPulse-b-8k4we1ewb0 0.4s ease-out;
}

/* 统计卡片 */
.stats-card[b-8k4we1ewb0] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stats-card:hover[b-8k4we1ewb0] {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #e9ecef;
}

.stats-icon[b-8k4we1ewb0] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.stats-icon.bg-primary[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-icon.bg-success[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
}

.stats-icon.bg-danger[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.stats-icon.bg-info[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stats-icon.bg-warning[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
}

.stats-icon.bg-secondary[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
}

.stats-content[b-8k4we1ewb0] {
    flex: 1;
}

.stats-number[b-8k4we1ewb0] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

.stats-label[b-8k4we1ewb0] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* 图表面板 */
.chart-panel .card[b-8k4we1ewb0] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chart-panel .card-header[b-8k4we1ewb0] {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
}

.chart-panel .card-body[b-8k4we1ewb0] {
    padding: 1.5rem;
}

.chart-panel .btn-group .btn-check:checked + .btn[b-8k4we1ewb0] {
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

/* 批量操作 */
.batch-operations[b-8k4we1ewb0] {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.batch-operations .btn[b-8k4we1ewb0] {
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* 表格样式 */
.table-responsive[b-8k4we1ewb0] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.table[b-8k4we1ewb0] {
    margin-bottom: 0;
}

.table thead th[b-8k4we1ewb0] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    padding: 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.table tbody tr[b-8k4we1ewb0] {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f3f5;
}

.table tbody tr:hover[b-8k4we1ewb0] {
    background-color: #f8f9fa;
}

.table tbody td[b-8k4we1ewb0] {
    padding: 1rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.table .badge[b-8k4we1ewb0] {
    padding: 0.4rem 0.75rem;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* 分页组件 */
.pagination-container[b-8k4we1ewb0] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 1rem;
}

.pagination[b-8k4we1ewb0] {
    margin-bottom: 0.5rem;
}

.pagination .page-link[b-8k4we1ewb0] {
    border: 1px solid #dee2e6;
    color: #495057;
    margin: 0 0.2rem;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
}

.pagination .page-link:hover[b-8k4we1ewb0] {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.pagination .page-item.active .page-link[b-8k4we1ewb0] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.pagination .page-item.disabled .page-link[b-8k4we1ewb0] {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
}

/* 空状态 */
.table tbody td i.bi-inbox[b-8k4we1ewb0] {
    color: #dee2e6;
}

/* 玩家名称样式 */
.player-name[b-8k4we1ewb0] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 8px;
    font-weight: 500;
    color: #1976d2;
    border: 1px solid #bbdefb;
    transition: all 0.2s ease;
}

.player-name i[b-8k4we1ewb0] {
    color: #1976d2;
}

.player-name.transaction-player[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #f57c00;
    border-color: #ffcc80;
}

.player-name.transaction-player i[b-8k4we1ewb0] {
    color: #f57c00;
}

.player-name:hover[b-8k4we1ewb0] {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .stats-card[b-8k4we1ewb0] {
        margin-bottom: 1rem;
    }
    
    .filter-panel .col-md-3[b-8k4we1ewb0],
    .filter-panel .col-md-4[b-8k4we1ewb0],
    .filter-panel .col-md-2[b-8k4we1ewb0] {
        margin-bottom: 1rem;
    }
    
    .batch-operations[b-8k4we1ewb0] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .batch-operations > div[b-8k4we1ewb0] {
        width: 100%;
    }
    
    .table[b-8k4we1ewb0] {
        font-size: 0.85rem;
    }
    
    .stats-number[b-8k4we1ewb0] {
        font-size: 1.5rem;
    }
    
    .stats-icon[b-8k4we1ewb0] {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* 加载动画 */
.spinner-border[b-8k4we1ewb0] {
    width: 3rem;
    height: 3rem;
}

/* 按钮样式增强 */
.btn[b-8k4we1ewb0] {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn:hover[b-8k4we1ewb0] {
    transform: translateY(-1px);
}

.btn:active[b-8k4we1ewb0] {
    transform: translateY(0);
}

.btn-primary[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #5568d3 0%, #63408a 100%);
}

.btn-success[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
}

.btn-success:hover[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #0f8676 0%, #2fd46a 100%);
}

.btn-danger[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    border: none;
}

.btn-danger:hover[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #d62c3e 0%, #dc4d39 100%);
}

/* 复选框美化 */
.form-check-input[b-8k4we1ewb0] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.form-check-input:checked[b-8k4we1ewb0] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:focus[b-8k4we1ewb0] {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* 标签徽章样式 */
.badge[b-8k4we1ewb0] {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.badge.bg-success[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
}

.badge.bg-danger[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%) !important;
}

.badge.bg-info[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.badge.bg-secondary[b-8k4we1ewb0] {
    background: linear-gradient(135deg, #868f96 0%, #596164 100%) !important;
}

/* 滚动条美化 */
.group-filter-container[b-8k4we1ewb0]::-webkit-scrollbar {
    width: 6px;
}

.group-filter-container[b-8k4we1ewb0]::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 3px;
}

.group-filter-container[b-8k4we1ewb0]::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 3px;
}

.group-filter-container[b-8k4we1ewb0]::-webkit-scrollbar-thumb:hover {
    background: #868e96;
}

/* 卡片阴影动画 */
.card[b-8k4we1ewb0] {
    transition: box-shadow 0.3s ease;
}

.card:hover[b-8k4we1ewb0] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}

/* _content/Server/Components/Shared/StallDetailModal.razor.rz.scp.css */
.stall-details-overlay[b-1tmnfsg3a8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.stall-details-modal[b-1tmnfsg3a8] {
    background: white;
    border-radius: 20px;
    max-width: 95vw;
    max-height: 95vh;
    width: 1600px;
    height: 85vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn-b-1tmnfsg3a8 0.3s ease-out;
}

@keyframes modalSlideIn-b-1tmnfsg3a8 {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stall-details-header[b-1tmnfsg3a8] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: between;
    align-items: center;
}

.stall-details-header h4[b-1tmnfsg3a8] {
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.stall-details-header .btn-close[b-1tmnfsg3a8] {
    filter: invert(1);
    opacity: 0.8;
}

.stall-details-header .btn-close:hover[b-1tmnfsg3a8] {
    opacity: 1;
}

.stall-details-body[b-1tmnfsg3a8] {
    padding: 25px;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
    overflow-x: visible;
    height: calc(85vh - 80px);
}

.stall-basic-info[b-1tmnfsg3a8] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #667eea;
}

.section-title[b-1tmnfsg3a8] {
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i[b-1tmnfsg3a8] {
    color: #667eea;
    font-size: 1.2em;
}

.goods-grid[b-1tmnfsg3a8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.goods-card-vertical[b-1tmnfsg3a8] {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.goods-card-vertical:hover[b-1tmnfsg3a8] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.goods-image-container[b-1tmnfsg3a8] {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
    height: 280px;
}

.goods-image[b-1tmnfsg3a8] {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.goods-info[b-1tmnfsg3a8] {
    width: 100%;
}

.goods-name[b-1tmnfsg3a8] {
    font-weight: 600;
    color: #2d3436;
    font-size: 16px;
    margin-bottom: 8px;
}

.goods-price[b-1tmnfsg3a8] {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.goods-special[b-1tmnfsg3a8] {
    color: #6c5ce7;
    font-size: 12px;
    margin-bottom: 3px;
}

.goods-stats[b-1tmnfsg3a8] {
    color: #636e72;
    font-size: 12px;
}

.goods-stats span[b-1tmnfsg3a8] {
    margin-right: 10px;
}

.pets-grid[b-1tmnfsg3a8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pet-card-vertical-new[b-1tmnfsg3a8] {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    border-left: 4px solid #00b894;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pet-card-vertical-new:hover[b-1tmnfsg3a8] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.pet-image-container-new[b-1tmnfsg3a8] {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
    height: 280px;
}

.pet-image-full[b-1tmnfsg3a8] {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.pet-info-new[b-1tmnfsg3a8] {
    width: 100%;
}

.pet-header-new[b-1tmnfsg3a8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pet-name-new[b-1tmnfsg3a8] {
    font-weight: 600;
    color: #2d3436;
    font-size: 18px;
}

.pet-type-badge-new[b-1tmnfsg3a8] {
    flex-shrink: 0;
}

.pet-price-new[b-1tmnfsg3a8] {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.pet-basic-info-new[b-1tmnfsg3a8] {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.pet-level-new[b-1tmnfsg3a8], .pet-growth-new[b-1tmnfsg3a8] {
    color: #636e72;
    font-size: 14px;
}

.pet-aptitude-new[b-1tmnfsg3a8] {
    margin-bottom: 10px;
}

.aptitude-row-new[b-1tmnfsg3a8] {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #636e72;
    font-size: 13px;
    margin-bottom: 3px;
}

.aptitude-row-new span[b-1tmnfsg3a8] {
    flex: 1;
    text-align: center;
}

.pet-skills-new[b-1tmnfsg3a8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.skills-label-new[b-1tmnfsg3a8] {
    color: #636e72;
    font-size: 13px;
    font-weight: 600;
}

.skill-icons-new[b-1tmnfsg3a8] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.item-image[b-1tmnfsg3a8] {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.item-image img[b-1tmnfsg3a8] {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.no-image[b-1tmnfsg3a8] {
    color: #adb5bd;
    font-size: 24px;
}

.item-info[b-1tmnfsg3a8] {
    text-align: center;
}

.item-name[b-1tmnfsg3a8] {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 5px;
    font-size: 14px;
}

.item-price[b-1tmnfsg3a8] {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-special[b-1tmnfsg3a8] {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
}

.item-stats[b-1tmnfsg3a8] {
    font-size: 12px;
    color: #495057;
}

.item-stats span[b-1tmnfsg3a8] {
    margin-right: 10px;
}

.pet-level[b-1tmnfsg3a8], .pet-growth[b-1tmnfsg3a8] {
    font-size: 12px;
    color: #495057;
    margin-bottom: 4px;
}

.pet-aptitude[b-1tmnfsg3a8] {
    font-size: 11px;
    color: #6c757d;
}

.pet-skills[b-1tmnfsg3a8] {
    margin-top: 8px;
}

.skill-icons[b-1tmnfsg3a8] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    align-items: center;
}

.skill-mini-icon[b-1tmnfsg3a8] {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 1px solid #ddd;
    display: block;
}

/* 认证技能样式（迷你版本） */
.skill-mini-icon.renzheng-skill[b-1tmnfsg3a8] {
    border: 2px solid #ff6b6b !important;
    box-shadow: 0 0 6px rgba(255, 107, 107, 0.4);
    position: relative;
    animation: renzheng-glow-mini-b-1tmnfsg3a8 2s ease-in-out infinite alternate;
}

.skill-mini-icon.renzheng-skill[b-1tmnfsg3a8]::after {
    content: "认";
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 6px;
    font-weight: bold;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes renzheng-glow-mini-b-1tmnfsg3a8 {
    0% {
        box-shadow: 0 0 6px rgba(255, 107, 107, 0.4);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.7);
    }
}

.skill-more-mini[b-1tmnfsg3a8] {
    font-size: 10px;
    background: #6c757d;
    color: white;
    padding: 2px 4px;
    border-radius: 8px;
    margin-left: 2px;
}

.btn-sm[b-1tmnfsg3a8] {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

.btn-outline-primary[b-1tmnfsg3a8] {
    color: #667eea;
    border-color: #667eea;
}

.btn-outline-primary:hover[b-1tmnfsg3a8] {
    background-color: #667eea;
    border-color: #667eea;
    color: white;
}

.image-modal-overlay[b-1tmnfsg3a8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1070;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.image-modal-content[b-1tmnfsg3a8] {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: imageModalSlideIn-b-1tmnfsg3a8 0.3s ease-out;
}

@keyframes imageModalSlideIn-b-1tmnfsg3a8 {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-header[b-1tmnfsg3a8] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-modal-header h5[b-1tmnfsg3a8] {
    margin: 0;
    font-weight: 600;
}

.image-modal-header .btn-close[b-1tmnfsg3a8] {
    filter: invert(1);
    opacity: 0.8;
}

.image-modal-header .btn-close:hover[b-1tmnfsg3a8] {
    opacity: 1;
}

.image-modal-body[b-1tmnfsg3a8] {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.full-size-image[b-1tmnfsg3a8] {
    max-width: 100%;
    max-height: calc(90vh - 120px);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.goods-content-debug[b-1tmnfsg3a8] {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    max-height: 400px;
    overflow-y: auto;
}

.goods-content-debug h6[b-1tmnfsg3a8] {
    color: #495057;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.content-text[b-1tmnfsg3a8] {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    line-height: 1.4;
    font-size: 12px;
    color: #495057;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
    max-height: 300px;
    overflow-y: auto;
}

.goods-data-info[b-1tmnfsg3a8] {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    font-size: 13px;
    line-height: 1.5;
}

.goods-data-info .row[b-1tmnfsg3a8] {
    margin-bottom: 8px;
}

.goods-data-info .col-6[b-1tmnfsg3a8],
.goods-data-info .col-4[b-1tmnfsg3a8] {
    padding: 2px 5px;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    min-height: 24px;
}

.goods-data-info strong[b-1tmnfsg3a8] {
    color: #495057;
    margin-right: 5px;
}

.goods-data-info .mt-2[b-1tmnfsg3a8] {
    margin-top: 10px !important;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #667eea;
}

.goods-data-info .mt-2 strong[b-1tmnfsg3a8] {
    color: #2d3436;
    font-weight: 600;
}

/* 梦幻西游价格颜色 */
.price-display[b-1tmnfsg3a8] {
    color: #ff6b35;
    font-weight: bold;
}

.price-black[b-1tmnfsg3a8] {
    color: #2d3436;
    font-weight: 600;
}

.price-blue[b-1tmnfsg3a8] {
    color: #0984e3;
    font-weight: 600;
}

.price-green[b-1tmnfsg3a8] {
    color: #00b894;
    font-weight: 600;
}

.price-red[b-1tmnfsg3a8] {
    color: #e74c3c;
    font-weight: 600;
}

.price-purple[b-1tmnfsg3a8] {
    color: #6c5ce7;
    font-weight: 600;
}

.price-pink[b-1tmnfsg3a8] {
    color: #fd79a8;
    font-weight: 600;
}

/* AI预测价格样式 */
.ai-price[b-1tmnfsg3a8], .ai-price-pet[b-1tmnfsg3a8] {
    font-size: 0.85rem;
    margin-top: 4px;
}

.ai-price-black[b-1tmnfsg3a8] {
    color: #2d3436;
    font-weight: 500;
    opacity: 0.8;
}

.ai-price-black[b-1tmnfsg3a8]::after {
    content: " 🤖";
    opacity: 0.6;
}

.ai-price-blue[b-1tmnfsg3a8] {
    color: #0984e3;
    font-weight: 500;
    opacity: 0.9;
}

.ai-price-blue[b-1tmnfsg3a8]::after {
    content: " 🤖";
    opacity: 0.7;
}

.ai-price-green[b-1tmnfsg3a8] {
    color: #00b894;
    font-weight: 500;
}

.ai-price-green[b-1tmnfsg3a8]::after {
    content: " 🤖";
    opacity: 0.8;
}

.ai-price-red[b-1tmnfsg3a8] {
    color: #e74c3c;
    font-weight: 600;
    animation: ai-glow-b-1tmnfsg3a8 2s ease-in-out infinite alternate;
}

.ai-price-red[b-1tmnfsg3a8]::after {
    content: " 🤖";
    animation: ai-glow-b-1tmnfsg3a8 2s ease-in-out infinite alternate;
}

.ai-price-purple[b-1tmnfsg3a8] {
    color: #6c5ce7;
    font-weight: 600;
    animation: ai-glow-b-1tmnfsg3a8 2s ease-in-out infinite alternate;
}

.ai-price-purple[b-1tmnfsg3a8]::after {
    content: " 🤖";
    animation: ai-glow-b-1tmnfsg3a8 2s ease-in-out infinite alternate;
}

.ai-price-pink[b-1tmnfsg3a8] {
    color: #fd79a8;
    font-weight: 700;
    animation: ai-glow-b-1tmnfsg3a8 1.5s ease-in-out infinite alternate;
    text-shadow: 0 0 10px rgba(253, 121, 168, 0.3);
}

.ai-price-pink[b-1tmnfsg3a8]::after {
    content: " 🤖";
    animation: ai-glow-b-1tmnfsg3a8 1.5s ease-in-out infinite alternate;
}

@keyframes ai-glow-b-1tmnfsg3a8 {
    from {
        opacity: 0.8;
        filter: brightness(1);
    }
    to {
        opacity: 1;
        filter: brightness(1.2);
    }
}

@media (max-width: 768px) {
    .stall-details-modal[b-1tmnfsg3a8] {
        width: 95vw;
        max-height: 95vh;
    }

    .stall-details-body[b-1tmnfsg3a8] {
        padding: 15px;
    }

    .goods-grid[b-1tmnfsg3a8] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .goods-card-vertical[b-1tmnfsg3a8] {
        padding: 12px;
    }

    .goods-image-container[b-1tmnfsg3a8] {
        height: 220px;
        overflow: hidden;
    }

    .goods-image[b-1tmnfsg3a8] {
        max-height: 100%;
        max-width: 100%;
    }

    .pets-grid[b-1tmnfsg3a8] {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .pet-card-vertical-new[b-1tmnfsg3a8] {
        padding: 12px;
    }

    .pet-image-container-new[b-1tmnfsg3a8] {
        height: 220px;
        overflow: hidden;
    }

    .pet-image-full[b-1tmnfsg3a8] {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }

    .pet-basic-info-new[b-1tmnfsg3a8] {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .aptitude-row-new[b-1tmnfsg3a8] {
        gap: 10px;
    }
    
    .ai-price[b-1tmnfsg3a8], .ai-price-pet[b-1tmnfsg3a8] {
        font-size: 0.75rem;
        margin-top: 3px;
    }
}
