/* 全局样式 - 高科技极速版 */
html {
    font-size: 90%;
}

:root {
    /* 科技蓝主色调：电光蓝 -> 青色 */
    --primary-gradient: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
    /* 辅助色调：深蓝 -> 紫色 */
    --secondary-gradient: linear-gradient(135deg, #434343 0%, #000000 100%); 
    /* 卡片阴影 - 更锐利、清透 */
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0,0,0,0.02);
    --card-hover-shadow: 0 10px 30px rgba(0, 97, 255, 0.15), 0 5px 15px rgba(0,0,0,0.05);
    /* 背景 - 冷色调科技灰 */
    --bg-gradient: linear-gradient(135deg, #f0f4f8 0%, #d7e1ec 100%);
    /* 导航栏背景 - 深空黑玻璃 */
    --navbar-bg: rgba(15, 23, 42, 0.9);
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    font-family: 'Segoe UI', 'Roboto', 'Microsoft YaHei', sans-serif;
    color: #334155;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* 页面最大宽度限制 */
@media (min-width: 1400px) {
    .container, .container-fluid {
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* 导航栏 - 科技感玻璃拟态 */
.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    padding: 0.8rem 0; /* 紧凑感 */
    transition: all 0.2s ease; /* 极速响应 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1030; /* Bootstrap 默认 navbar z-index，确保下拉菜单不被页面内容遮挡 */
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    /* 亮青色渐变文字 */
    background: linear-gradient(to right, #60efff, #0061ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(96, 239, 255, 0.3);
    letter-spacing: 0.5px;
}

/* 导航栏内的 nav-link：白色文字 */
.navbar .nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
}

.navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.navbar .nav-link.active {
    color: #fff !important;
    background: linear-gradient(90deg, rgba(0, 97, 255, 0.2), rgba(96, 239, 255, 0.1));
    border: 1px solid rgba(96, 239, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 97, 255, 0.15);
}

/* 页面内容区的 nav-tabs：深色文字（Bootstrap 默认行为） */
.nav-tabs .nav-link {
    color: #495057 !important;
    font-weight: 500;
    background: none !important;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    padding: 0.5rem 1rem !important;
    margin: 0;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.nav-tabs .nav-link:hover {
    color: #0d6efd !important;
    background: #f8f9fa !important;
    border-color: #dee2e6 #dee2e6 #fff;
    transform: none !important;
    text-shadow: none !important;
}

.nav-tabs .nav-link.active {
    color: #0d6efd !important;
    background: #fff !important;
    border-color: #dee2e6 #dee2e6 #fff;
    font-weight: 600;
    box-shadow: none !important;
}

/* 卡片样式 - 极速响应 */
.stat-card, .chart-card, .card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.card.mb-3{
    border-radius: 0 10px 10px 10px;
}

.stat-card::before, .chart-card::before, .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.2s;
}

.stat-card:hover, .chart-card:hover, .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-hover-shadow);
    z-index: 10;
}

.stat-card:hover::before, .chart-card:hover::before, .card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 10px 0;
    color: #1e293b;
    letter-spacing: -1px;
    font-family: 'Roboto', sans-serif; /* 数字字体更科技 */
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #334155;
    border-left: 4px solid #0061ff;
    padding-left: 12px;
}

.chart-container {
    position: relative;
    height: 350px;
    max-height: 350px;
}

/* 按钮美化 - 科技蓝 */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 97, 255, 0.3);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052d4 0%, #4364f7 100%);
    box-shadow: 0 6px 20px rgba(0, 97, 255, 0.5);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: #0061ff;
    border-color: #0061ff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 97, 255, 0.3);
}

/* 修复灰色按钮问题 - 次要按钮 */
.btn-secondary {
    background: #64748b;
    border: none;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.2);
}

.btn-secondary:hover {
    background: #475569;
    box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3);
    transform: translateY(-1px);
}

/* 输入框美化 */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    background-color: #f8fafc;
}

.form-control:focus, .form-select:focus {
    background-color: #fff;
    border-color: #0061ff;
    box-shadow: 0 0 0 3px rgba(0, 97, 255, 0.15);
}

/* 表格美化 */
.table {
    margin-bottom: 0;
}

.table thead th {
    border-top: none;
    border-bottom: 2px solid #e2e8f0;
    background-color: #f1f5f9;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 97, 255, 0.03);
}

/* 徽章样式美化 (修复白底白字问题) */
.badge {
    padding: 0.5em 0.8em;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* 自定义科技风徽章 */
.bg-tech-info {
    background: rgba(0, 97, 255, 0.1) !important;
    color: #0061ff !important;
    border: 1px solid rgba(0, 97, 255, 0.2);
}

/* 覆盖 Bootstrap 默认背景色，确保颜色协调 */
.bg-success {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%) !important;
    color: #fff;
}

.bg-warning {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%) !important;
    color: #fff !important; /* 强制白色文字 */
}

.bg-danger {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%) !important;
    color: #fff;
}

.bg-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    color: #fff !important;
}

.bg-secondary {
    background: #94a3b8 !important;
    color: #fff;
}

.modal-backdrop.show {
    opacity: 0.55;
    backdrop-filter: blur(2px);
}

.modal.fade .modal-dialog {
    transform: translateY(10px) scale(0.98);
    transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.modal.show .modal-dialog.modal-dialog-centered {
    transform: translateY(-5vh) scale(1);
}

.modal.show .modal-dialog:not(.modal-dialog-centered) {
    transform: translateY(0) scale(1);
}

.modal-content {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 97, 255, 0.18), 0 6px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(90deg, rgba(0, 97, 255, 0.12), rgba(96, 239, 255, 0.08));
    border-bottom: 1px solid rgba(0, 97, 255, 0.15);
}

.modal-title {
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.5px;
}

.modal-body {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-footer {
    background: rgba(248, 250, 252, 0.85);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.modal .btn {
    border-radius: 8px;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* AI 总结内容样式 */
.ai-summary-content {
    white-space: pre-wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #334155;
    font-size: 0.9rem;
    font-weight: normal;
}
.ai-summary-content h4, .ai-summary-content h5, .ai-summary-content h6 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f172a;
}
.ai-summary-content strong {
    color: #0061ff;
    font-weight: 600;
}
.ai-summary-content em {
    color: #475569;
    font-style: italic;
}
.ai-summary-content ul {
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
}
.ai-summary-content li {
    margin-bottom: 0.25rem;
}

/* AI 助手整体容器 */
.ai-assistant-container {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 16px !important;
    overflow: hidden;
    /* 高度自适应内容，但限制最大高度 */
    height: auto;
    max-height: 85vh; 
    overflow-y: auto;
    /* 粘性定位，跟随滚动 */
    position: sticky;
    top: 80px; 
}

/* AI 面板容器样式 - 优化版 */
.ai-summary-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.9) 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: none; /* 移除内部阴影，由外部容器承担 */
    border-radius: 12px;
    padding: 10px; /* 减少内边距以利用宽度 */
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* 面板悬停时 */
.ai-summary-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.9) 100%);
    border-color: rgba(0, 97, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 97, 255, 0.08);
}

/* 左侧装饰条 */
.ai-summary-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #0061ff, #60efff);
    border-radius: 4px 0 0 4px;
}

/* AI 内容区域自动高度处理 */
.ai-summary-body {
    transition: max-height 0.5s ease-in-out;
    max-height: 300px; /* 默认最大高度 */
    overflow-y: hidden; /* 默认隐藏滚动条，通过展开显示更多 */
    position: relative;
}

/* 展开状态 */
.ai-summary-body.expanded {
    max-height: 80vh; /* 最大不超过视口高度的80% */
    overflow-y: auto;
}

/* 底部渐变遮罩（仅在未展开且内容溢出时显示，通过JS控制类名） */
.ai-summary-body.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

/* 模态框中的 AI 内容字体稍大 */
.modal-body .ai-summary-content {
    font-size: 1rem;
}

/* 科技风页签样式 */
.tech-tabs {
    background: rgb(241 245 249);
    border-radius: 10px 10px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: inline-flex !important;
    width: auto !important;
    gap: 8px;
    margin-bottom: 0 !important;
}

.tech-tabs .nav-item {
    flex: none !important;
}

.tech-tabs .nav-link {
    border-radius: 10px 10px 0 0 !important;
    color: #475569 !important;
    font-weight: 600;
    padding: 10px 30px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid transparent !important;
    letter-spacing: 0.5px;
    background: transparent;
    margin: 0 !important;
}

.tech-tabs .nav-link:hover {
    color: #0061ff !important;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 97, 255, 0.35);    
    transform: translateY(-1px);
}

.tech-tabs .nav-link.active {
    color: #fff !important;
    border-color: transparent !important;
    background: #0061ff;
    box-shadow: 0 4px 15px rgba(0, 97, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.tech-tabs .nav-link.active::after {
    display: none;
}

.tech-tabs .nav-link i {
    transition: transform 0.3s ease;
}

.tech-tabs .nav-link.active i {
    transform: scale(1.1);
}

.tab-content.mt-3 {
        margin-top: 0 !important;
}


/* 竞品分析下拉菜单 - 高 z-index 防止被页面内容遮挡 */
.competitor-dropdown {
    z-index: 9999 !important;
    position: absolute !important;
}

/* 导航栏 dropdown 通用 z-index 保障 */
.navbar .dropdown-menu {
    z-index: 9999;
}

/* 确保导航栏不裁剪下拉菜单 */
.navbar .container-fluid {
    overflow: visible !important;
}
.navbar-collapse {
    overflow: visible !important;
}
.navbar-nav {
    overflow: visible !important;
}

/* Step 2: 列表页采集调试 */
.setup-collect-stage {
    padding-top: 1rem;
}

.setup-collect-intro {
    border: 1px solid rgba(0, 97, 255, 0.12);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.96), rgba(236, 253, 245, 0.92));
    color: #0f4c81;
    line-height: 1.7;
}

.setup-collect-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.9fr);
    gap: 20px;
    align-items: start;
}

.setup-collect-main,
.setup-collect-side {
    min-width: 0;
}

.setup-collect-main {
    display: grid;
    gap: 16px;
}

.setup-collect-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    padding: 16px;
}

.setup-collect-panel--toggle {
    padding-bottom: 12px;
}

.setup-collect-panel--side {
    position: sticky;
    top: 88px;
}

.setup-collect-side-head {
    margin-bottom: 14px;
}

.setup-mode-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(0, 97, 255, 0.1);
    color: #0052d4;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.setup-mode-badge.is-vendor {
    background: rgba(14, 165, 233, 0.12);
    color: #0369a1;
}

.setup-collect-side-tip {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.65;
}

.setup-collect-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.setup-collect-panel-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.2px;
}

.setup-collect-panel-subtitle {
    margin-top: 4px;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
}

.setup-mode-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.setup-mode-switch .form-check {
    margin: 0;
    padding: 12px 14px 12px 40px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 14px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.setup-mode-switch .form-check:hover {
    border-color: rgba(0, 97, 255, 0.28);
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 97, 255, 0.08);
}

.setup-mode-switch .form-check-input {
    margin-top: 0.15rem;
    margin-left: -1.35rem;
}

.setup-mode-switch .form-check-label {
    font-weight: 600;
    color: #1e293b;
}

.setup-collect-textarea {
    min-height: 132px;
    line-height: 1.65;
    resize: vertical;
}

.setup-vendor-list {
    max-height: 320px;
    overflow: auto;
    padding-right: 4px;
}

.setup-search-entries-list {
    max-height: 480px;
    overflow: auto;
    padding-right: 4px;
}

.crawl-search-entries-list {
    max-height: 420px;
    overflow: auto;
    padding-right: 4px;
}

.crawl-search-entry {
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    margin-bottom: 10px !important;
    background: linear-gradient(180deg, #ffffff, #f8fbff) !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.crawl-search-entry:last-child {
    margin-bottom: 0 !important;
}

.crawl-search-entry .fw-semibold {
    color: #475569 !important;
    letter-spacing: 0.2px;
}

.crawl-search-entry .form-control {
    background: #fff;
}

.crawl-search-entry .btn-outline-danger {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.setup-vendor-entry {
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    border-radius: 14px !important;
    padding: 14px !important;
    margin-bottom: 12px !important;
    background: linear-gradient(180deg, #ffffff, #f8fbff) !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.setup-vendor-entry:last-child {
    margin-bottom: 0 !important;
}

.setup-vendor-entry .fw-semibold {
    color: #475569 !important;
    letter-spacing: 0.2px;
}

.setup-vendor-entry .form-control {
    background: #fff;
}

.setup-vendor-entry .btn-outline-danger {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.setup-search-entry {
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    border-radius: 14px !important;
    padding: 14px !important;
    margin-bottom: 12px !important;
    background: linear-gradient(180deg, #ffffff, #f8fbff) !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.setup-search-entry:last-child {
    margin-bottom: 0 !important;
}

.setup-search-entry .fw-semibold {
    color: #475569 !important;
    letter-spacing: 0.2px;
}

.setup-search-entry .form-control {
    background: #fff;
}

.setup-search-entry .btn-outline-danger {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.setup-collect-side-grid {
    display: grid;
    gap: 14px;
}

.setup-side-field {
    padding: 12px;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.setup-side-field .form-label {
    color: #334155;
    margin-bottom: 0.45rem;
}

.setup-side-note {
    color: #475569;
    font-size: 0.84rem;
    line-height: 1.7;
}

.setup-collect-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.setup-collect-actions .btn {
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.setup-collect-actions .btn-warning {
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22);
}

.setup-collect-summary {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(148, 163, 184, 0.35);
    display: grid;
    gap: 10px;
}

.setup-summary-item {
    display: grid;
    gap: 4px;
}

.setup-summary-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #64748b;
}

.setup-summary-value {
    font-size: 0.88rem;
    color: #0f172a;
    line-height: 1.6;
}

.setup-collect-result {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.setup-collect-result-head {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

@media (max-width: 1199.98px) {
    .setup-collect-workspace {
        grid-template-columns: 1fr;
    }

    .setup-collect-panel--side {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .setup-mode-switch {
        grid-template-columns: 1fr;
    }

    .setup-collect-panel-head {
        flex-direction: column;
        align-items: stretch;
    }

    .setup-vendor-entry .row > div {
        margin-bottom: 8px;
    }
}
