/* public/css/app.css */

/* 全局样式 */
body {
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    color: #343a40;
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

/* 自定义导航栏样式 */
.navbar-brand {
    font-weight: bold;
}

.breadcrumb {
    background-color: transparent;
    padding-left: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

/* 分页样式 */
.page-link {
    color: #0d6efd;
}

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.alert {
    margin-top: 20px;
}

/* 企业信息卡片样式优化 */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
}

.enterprise-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.stat-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd !important;
}

.data-meta {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 1rem;
    margin: 0 -1rem -1rem -1rem;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .enterprise-header h4 {
        font-size: 1.25rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

/* 热搜药品链接样式优化 */
.popular-drugs-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* 链接之间的间距 */
}

.popular-drugs-links a {
    font-size: 14px;
    color: #666; /* 使用更低调的颜色 */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    padding: 2px 6px;
    white-space: nowrap; /* 防止换行 */
}

.popular-drugs-links a:hover {
    color: #007bff; /* 悬停时变为蓝色 */
    text-decoration: underline; /* 悬停时添加下划线 */
}

/* 移动端优化 */
@media (max-width: 767.98px) {
    .popular-drugs-links a {
        font-size: 12px;
        padding: 1px 4px;
    }
}

/* 自适应容器样式 */
.container {
    width: 100%;  /* 容器全宽 */
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

/* 自适应图片 */
img {
    max-width: 100%;  /* 图片最大宽度为容器宽度 */
    height: auto;  /* 保持图片比例 */
}

/* 自适应按钮和输入框 */
button, input[type="submit"] {
    padding: 10px 20px;  /* 适合移动端的按钮大小 */
    font-size: 1.2rem;  /* 字体大小 */
    border-radius: 5px;  /* 圆角按钮 */
}

input[type="text"] {
    width: 100%;  /* 输入框全宽 */
    padding: 10px;
    font-size: 1rem;
}

/* 移动端汉堡菜单样式 */
.menu-toggle {
    display: block;
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.mobile-nav {
    display: none;  /* 默认隐藏 */
    background-color: #333;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block;  /* 移动端显示导航 */
    }
}
/* 为表格添加滚动效果以适应小屏幕 */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* 增加滚动的平滑度，适用于移动设备 */
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

th, td {
    padding: 8px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    th, td {
        font-size: 14px; /* 缩小文字以适应屏幕 */
    }
}
/* 针对小屏幕设备优化文字大小和表格间距 */
@media (max-width: 768px) {
    th, td {
        padding: 5px;  /* 减少内边距 */
        font-size: 12px;  /* 缩小字体大小 */
    }
}

/* 增加底部页脚的样式，避免被遮挡 */
footer {
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

/* 优化热搜药品链接间距 */
/* 热搜药品链接样式 */
.popular-drugs-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px; /* 适中间距 */
}

.popular-drugs-links a {
    font-size: 14px; /* 适合移动端的字体大小 */
    color: #007bff;
    text-decoration: none;
    padding: 3px 6px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}

.popular-drugs-links a:hover {
    background-color: #e2e6ea; /* 悬停背景颜色 */
}


/* 分页样式 */
.pagination {
    display: flex;
    flex-wrap: wrap;  /* 允许在小屏幕时分页项换行 */
    justify-content: center;  /* 居中显示分页 */
    margin-top: 20px;
    margin-bottom: 20px; /* 增加底部空间 */
}

.page-link {
    color: #0d6efd;
    padding: 5px 10px; /* 增加点击区域的大小 */
    border: 1px solid #ddd; /* 添加边框 */
    border-radius: 5px; /* 增加圆角 */
    margin: 0 5px; /* 增加分页按钮之间的间距 */
}

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff; /* 使活跃的分页项文字为白色 */
}

.page-item.disabled .page-link {
    background-color: #e9ecef;
    color: #6c757d;
}

/* ---- 统一样式：Section 标题与 Chip 标签 ---- */
.section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 999px; /* pill */
    color: #343a40;
    text-decoration: none;
    line-height: 1;
    transition: all 0.15s ease-in-out;
    white-space: nowrap;
}

.chip:hover {
    background-color: #eef2f7;
    border-color: #0d6efd;
    color: #0d6efd;
    text-decoration: none;
}

.chip.clickable { cursor: pointer; }

.chip .chip-meta {
    font-size: 12px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .chip { padding: 5px 8px; font-size: 13px; }
}

/* ---- Section 容器与标题分隔 ---- */
.section-block {
    margin-bottom: 1.25rem; /* 区块间距，避免小屏黏连 */
}

@media (max-width: 768px) {
    .section-block { margin-bottom: 1.5rem; }
}

.section-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057; /* 与内容区分但仍低调 */
}

.section-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 1em;
    border-radius: 2px;
    background-color: #0d6efd; /* 与主题色一致 */
    opacity: 0.35; /* 轻强调，不抢内容 */
}

/* ---- 搜索结果页：最近搜索快捷栏视觉区分 ---- */
.search-quickbar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.quickbar-head{width:100%;margin-bottom:6px}
.quickbar-body{display:flex;align-items:center;gap:8px;width:100%}
.quickbar-body .chip-group{flex:1}
.quickbar-body .chip-group{overflow:hidden}
.quickbar-body .quickbar-toggle{margin-left:auto;flex-shrink:0}
.quickbar-body .quickbar-action{margin-left:auto;flex-shrink:0}
.search-section-title{font-size:.95rem;font-weight:600;color:#374151;margin-bottom:6px}
@media (max-width:576px){.search-section-title{font-size:.9rem}}
.search-title{font-size:1.25rem;font-weight:600;color:#1f2937;margin:0 0 .5rem 0}
@media (max-width:768px){.search-title{font-size:1.05rem}}

.quickbar-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 6px 10px;
    white-space: nowrap;
}

.search-quickbar .chip-group {
    gap: 8px 10px;
    flex-wrap: wrap;
}

/* 隐藏快捷栏滚动条（保持版面干净） */
.search-quickbar .chip-group::-webkit-scrollbar { height: 0; }
.search-quickbar .chip-group { scrollbar-width: none; }

.search-quickbar .chip {
    background-color: #f9fafb;
    border-color: #e5e7eb;
}

.search-quickbar .chip:hover {
    background-color: #eef2ff;
    border-color: #6366f1;
    color: #3b82f6;
}

/* 多个快捷栏纵向间距 */
.search-quickbar + .search-quickbar {
    margin-top: 8px;
}

/* 可折叠内容：默认收起以减少拥挤 */
.quickbar-collapsible {
    max-height: 34px;
    height: 34px;
    overflow: hidden;
    flex-wrap: nowrap;
    align-items: center;
}

/* 相关药企默认显示两行 */
#quickbar-related-manufacturers.quickbar-collapsible{
    max-height: 68px;
    height: 68px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.quickbar-collapsible.expanded {
    max-height: none;
    height: auto;
    flex-wrap: wrap;
    overflow: visible;
}

.quickbar-toggle {
    margin-left: auto;
    font-size: 12px;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 999px;
    padding: 4px 10px;
    cursor: pointer;
}

.quickbar-toggle:hover {
    color: #374151;
    border-color: #d1d5db;
}

/* 搜索结果表格：固定列宽 + 单行省略，消除行高不齐问题 */
.search-results-table {
    table-layout: fixed;
    width: 100%;
}

.search-results-table th,
.search-results-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    line-height: 1.6;
}

.search-results-table td a {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 列宽比例（总和 100%） */
.search-results-table th.col-product, .search-results-table td.col-product { width: 20%; }
.search-results-table th.col-manufacturer, .search-results-table td.col-manufacturer { width: 22%; }
.search-results-table th.col-holder, .search-results-table td.col-holder { width: 22%; }
.search-results-table th.col-approval, .search-results-table td.col-approval { width: 16%; }
.search-results-table th.col-dosage, .search-results-table td.col-dosage { width: 10%; }
.search-results-table th.col-spec, .search-results-table td.col-spec { width: 10%; }

/* 针对移动端的分页优化 */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;  /* 允许分页按钮在移动设备上换行 */
    }

    .page-link {
        padding: 8px; /* 移动端的分页按钮稍微增大点击区域 */
        margin: 4px; /* 移动端适中的分页按钮间距 */
        font-size: 14px; /* 缩小分页字体 */
    }
}
/* 热搜药品卡片样式调整 */
.card {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #fff;
    margin-bottom: 0.5rem; /* 减少卡片之间的间距 */
    box-shadow: none; /* 去掉阴影 */
}

.card-body {
    padding: 0.5rem; /* 进一步减少内边距 */
}

.card-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem; /* 减少标题与内容的间距 */
}

.card-text {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.15rem; /* 减少行间距 */
}

.card-text small.text-muted {
    font-size: 0.8rem;
    font-weight: bold;
    font-style: italic;
    color: #666;
}

/* 移动端优化 */
@media (max-width: 767.98px) {
    .card-body {
        padding: 0.4rem; /* 移动端更小的内边距 */
    }

    .card-title {
        font-size: 0.95rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .card-text small.text-muted {
        font-size: 0.75rem;
    }
}

/* 卡片左对齐布局 */
.card-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左对齐 */
    gap: 1rem; /* 卡片间距 */
}

.card {
    width: 100%; /* 卡片宽度占满容器 */
    max-width: 100%; /* 防止卡片超出容器 */
    text-align: left; /* 文字左对齐 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    background-color: #fff;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.card-text small {
    font-size: 0.85rem;
    color: #888;
}

.card-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.card-link:hover {
    text-decoration: underline;
}

/* 移动端优化 */
@media (max-width: 767.98px) {
    .card {
        padding: 0.75rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.85rem;
    }
}

/* 卡片表头样式 */
.card-text small.text-muted {
    font-size: 0.85rem;
    font-weight: bold;
    font-style: italic;
    color: #666;
}

.card-text {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* 移动端优化 */
@media (max-width: 767.98px) {
    .card-text small.text-muted {
        font-size: 0.8rem;
    }

    .card-text {
        font-size: 0.85rem;
    }
}

/* 现代化企业信息卡片样式 */
.enterprise-info-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* —— Manufacturer 页面移动端优化 —— */
.manufacturer-page .enterprise-name{margin-bottom:1rem}
.manufacturer-page .enterprise-name{text-align:left}
.manufacturer-page .search-section-title{margin:8px 0 6px;border-bottom:1px solid #eef2f7;padding-bottom:4px}
.manufacturer-page .section-block{margin-top:8px;margin-bottom:10px}
.manufacturer-page .card.enterprise-card-simple{margin-top:6px}
.manufacturer-page .card-header-simple{padding:.6rem .75rem}
.manufacturer-page .share-card{border:none;border-radius:12px;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.manufacturer-page .share-card .share-input{flex:1;min-width:200px;max-width:420px}
@media (max-width:576px){.manufacturer-page .share-card .share-input{max-width:100%}}
.manufacturer-page .share-card .share-btn{border-color:#e5e7eb}
.manufacturer-page #qrCodeBox{border:1px dashed #e5e7eb;border-radius:8px;background:#f8fafc}
@media (max-width:576px){
  .manufacturer-page .share-card .share-input{background-color:#F5F7FA}
}
@media (min-width:768px){
  .manufacturer-page .share-card .col-12 .share-label{display:inline-block;margin-right:8px;margin-bottom:0}
  .manufacturer-page .share-card .col-12 .share-input{display:inline-block;width:auto;max-width:420px;background-color:#E9ECEF}
}
@media (max-width:576px){
  .manufacturer-page .enterprise-name{font-size:1.25rem}
  .manufacturer-page .verification-section{padding:.75rem 1rem;gap:10px}
  .manufacturer-page .verify-chip{font-size:.8rem;padding:.35em .7em}
  .manufacturer-page .actions .btn-sm{padding:.35rem .55rem}
  .manufacturer-page .card.enterprise-card-simple{margin:0 -.5rem}
}
.section-toggle{white-space:nowrap}
.detail-meta{display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.meta-badge{background:#eef2ff;color:#374151;border:1px solid #c7d2fe;border-radius:999px;font-size:12px;padding:.35em .6em}
@media (max-width:576px){.meta-badge{font-size:11px;padding:.3em .55em}}

.enterprise-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.card-header-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none;
    position: relative;
}

.card-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.data-completeness-badge .progress {
    border-radius: 10px;
    overflow: hidden;
}

.data-completeness-badge .progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* 企业标题区域 */
.enterprise-title-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.enterprise-title-section:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%) !important;
}

.status-indicators .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.status-indicators .badge:hover {
    transform: scale(1.05);
}

/* 现代化信息项 */
.info-item-modern {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-item-modern:hover {
    border-color: rgba(102, 126, 234, 0.3) !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.info-item-modern:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-item-modern:hover .icon-wrapper {
    transform: scale(1.1);
}

/* 统计卡片现代化样式 */
.stat-card-modern {
    background: #ffffff !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.stat-icon {
    transition: all 0.3s ease;
}

.stat-card-modern:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.5px;
}

/* 联系方式现代化样式 */
.contact-item-modern {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.contact-item-modern:hover {
    background: #f8f9fa !important;
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item-modern:hover .contact-icon {
    transform: scale(1.1);
}

.contact-action .btn {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-action .btn:hover {
    transform: scale(1.1);
}

/* 数据来源区域 */
.data-source-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.data-source-section:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%) !important;
}

/* 证书网格样式 */
.certificates-grid .badge {
    display: inline-block;
    margin: 2px;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.certificates-grid .badge:hover {
    transform: scale(1.05);
}

/* 业务范围内容 */
.business-scope-content {
    position: relative;
}

.business-scope-content::-webkit-scrollbar {
    width: 4px;
}

.business-scope-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.business-scope-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.business-scope-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .enterprise-info-card {
        margin: 0 -15px;
        border-radius: 0 !important;
    }
    
    .card-header-modern {
        border-radius: 0 !important;
    }
    
    .info-item-modern {
        margin-bottom: 0.75rem;
    }
    
    .stat-card-modern {
        margin-bottom: 1rem;
    }
    
    .contact-item-modern {
        margin-bottom: 0.75rem;
    }
    
    .icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .enterprise-title-section h4 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-icon i {
        font-size: 1.2rem !important;
    }
    
    .info-item-modern .flex-grow-1 {
        font-size: 0.9rem;
    }
    
    .contact-item-modern .flex-grow-1 {
        font-size: 0.9rem;
    }
}

/* 搜索按钮样式优化 */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* 反馈弹窗样式（与站点风格统一、大气简洁） */
#feedbackModal .modal-dialog { max-width: 720px; }
#feedbackModal .modal-content { border-radius: 14px; border: 1px solid #e9ecef; box-shadow: 0 16px 40px rgba(0,0,0,.12); }
#feedbackModal .modal-header { border-bottom: 1px solid #eef2f7; padding: 1rem 1.25rem; }
#feedbackModal .modal-title { font-weight: 700; color: #1f1f1f; }
#feedbackModal .form-label { font-weight: 600; color: #374151; font-size: 0.95rem; }
#feedbackModal .form-control, #feedbackModal .form-select { border-radius: 10px; }
#feedbackModal .form-text { color: #6c757d; }
#feedbackModal .modal-footer { border-top: 1px solid #eef2f7; }
#feedbackModal .btn-primary { background: linear-gradient(135deg,#0d6efd,#0056b3); border: none; box-shadow: 0 8px 18px rgba(13,110,253,.25); font-weight: 600; }
#feedbackModal .btn-primary:hover { filter: brightness(1.02); }
#feedbackModal .btn-secondary { background: #f8f9fa; color: #374151; border: 1px solid #e5e7eb; }
.modal-backdrop.show { background: rgba(255,255,255,.35); backdrop-filter: saturate(120%) blur(2px); }
#feedbackModal textarea.form-control { min-height: 180px; }

/* 认证入口按钮样式 */
.btn-verify {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    color: #fff;
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-verify:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
}

.btn-verify-outline {
    background: #ffffff;
    color: #22c55e;
    border: 1px solid #22c55e;
    transition: all 0.2s ease;
}

.btn-verify-outline:hover {
    background: #22c55e;
    color: #fff;
}

/* 认证信息区块样式 */
.verification-section {
    background: linear-gradient(135deg, #eef2ff, #ecfdf5);
    border: 1px solid #c7d2fe;
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
    font-size: 0.9rem;
}

.verification-section .status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #065f46;
    font-weight: 600;
}

.verification-section .actions {
    display: flex;
    gap: 6px;
}

.verification-section .badge {
    font-size: 0.85rem;
    padding: 0.5em 0.9em;
    border-radius: 999px;
}

.verify-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.45em 0.9em;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: transparent;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
}

.verify-chip.completed {
    border-color: #22c55e;
    color: #16a34a;
}

.verify-chip.pending {
    border-color: #c7d2fe;
    color: #6b7280;
}

.verify-time {
    color: #64748b;
    font-size: 0.85rem;
}

.verification-section .actions .btn-sm {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
}

.enterprise-card-simple {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
}

.card-header-simple {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-bottom: 1px solid #e5e7eb;
    padding: 0.8rem 1rem;
}

.card-body-simple {
    padding: 1rem 1.25rem;
}

/* 企查查电话标签增强可读性 */
.phone-badge {
    background-color: #eef2ff !important;
    color: #1f2937 !important;
    border: 1px solid #c7d2fe !important;
}

/* 认证表单标签字体缩小 */
#claimPanel .form-label {
    font-size: 0.85rem;
    color: #4b5563;
}

/* 认证表单分区标题 */
.form-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0.25rem 0 0.75rem 0;
    padding-left: 10px;
    border-left: 3px solid #3b82f6;
}

.form-section-title.auth { border-left-color: #3b82f6; }
.form-section-title.enterprise { border-left-color: #22c55e; }

/* 搜索框样式优化 */
.form-control {
    height: 38px; /* 设置固定高度 */
    padding: 6px 12px; /* 调整内边距 */
    line-height: 1.5; /* 确保文本垂直居中 */
}

.btn {
    height: 38px; /* 设置固定高度 */
    padding: 6px 12px; /* 调整内边距 */
    line-height: 1.5; /* 确保文本垂直居中 */
    white-space: nowrap; /* 防止按钮文字换行 */
}

.btn-sm {
    padding: 0.45rem 0.5rem 0.3rem; /* 增加下边距，使文字稍微偏下 */
    font-size: 0.8rem; /* 字体比正文稍小 */
    vertical-align: middle; /* 确保按钮垂直居中 */
}

/* 企业信息卡片 - 简约AI风格优化版 */
.enterprise-card-simple {
    border: 1px solid #e8f0fe;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.enterprise-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.enterprise-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

/* 卡片头部优化 */
.card-header-simple {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.enterprise-name {
    color: #1a202c;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    /* 添加页面标题优化 */
    h1.text-center {
        background: linear-gradient(135deg, #2d3748, #4a5568);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    h1.text-center::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #007bff, #0056b3);
        border-radius: 2px;
    }
    
    /* 优化警告和信息提示 */
    .alert {
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .alert::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: currentColor;
    }
    
    .alert-warning {
        background: linear-gradient(135deg, #fff8e1, #ffecb3);
        color: #e65100;
        border-left: 4px solid #ff9800;
    }
    
    .alert-info {
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        color: #0277bd;
        border-left: 4px solid #2196f3;
    }
    
    /* 优化搜索结果统计 */
    .d-flex.justify-content-center p {
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        padding: 1rem 2rem;
        border-radius: 25px;
        border: 1px solid #e9ecef;
        color: #6c757d;
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        margin: 0;
    }
    
    /* 添加加载动画效果 */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .enterprise-card-simple {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .table-responsive {
        animation: fadeInUp 0.8s ease-out;
    }
    
    /* 优化按钮样式 */
    .btn-link {
        color: #007bff;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
    }
    
    .btn-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #007bff;
        transition: width 0.3s ease;
    }
    
    .btn-link:hover::after {
        width: 100%;
    }
    
    .btn-link:hover {
        color: #0056b3;
        transform: translateY(-1px);
    }
    
    /* 优化面包屑导航 */
    .breadcrumb {
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        border: 1px solid #e9ecef;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .breadcrumb-item a {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    
    .breadcrumb-item a:hover {
        color: #0056b3;
    }
    
    .breadcrumb-item.active {
        color: #6c757d;
        font-weight: 500;
    }
    
    /* 添加滚动条美化 */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #0056b3, #004085);
    }
    
    /* 优化表格行的悬停效果 */
    .table tbody tr {
        position: relative;
    }
    
    .table tbody tr::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: #007bff;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .table tbody tr:hover::before {
        transform: scaleY(1);
    }
    
    /* 添加焦点状态优化 */
    .info-item:focus-within,
    .stat-card:focus-within,
    .contact-item:focus-within {
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        outline: none;
    }
    
    /* 优化文本选择 */
    ::selection {
        background: rgba(0, 123, 255, 0.2);
        color: #2d3748;
    }
    
    ::-moz-selection {
        background: rgba(0, 123, 255, 0.2);
        color: #2d3748;
    }
    
    /* 添加打印样式优化 */
    @media print {
        .enterprise-card-simple {
            box-shadow: none;
            border: 1px solid #000;
        }
        
        .stat-card,
        .info-item,
        .contact-item {
            box-shadow: none;
            border: 1px solid #ccc;
        }
        
        .table {
            border-collapse: collapse;
        }
        
        .table th,
        .table td {
            border: 1px solid #000;
        }
    }

/* 基础信息区域 - 全新现代化设计 */
.section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a202c;
    position: relative;
    padding: 16px 24px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    text-align: center;
    letter-spacing: 1px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.7;
}

/* 信息项容器 - 现代卡片设计 */
.info-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

/* 标题区域 - 独立的标题栏 */
.info-label {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: #2d3748;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px;
    margin: 0;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-label::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* 内容区域 - 清晰的内容展示 */
.info-value {
    padding: 20px;
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    background: #ffffff;
    min-height: 60px;
    display: flex;
    align-items: center;
}

/* 联系方式区域优化 */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.12);
    border-color: #667eea;
}

.contact-label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 16px;
    margin: 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    padding: 16px;
    color: #2d3748 !important;
    font-size: 1.05rem;
    font-weight: 500;
    display: block;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #667eea !important;
}

/* 经营范围特殊样式 */
.scope-text {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed #cbd5e0;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
}

.scope-text::before {
    content: '📋';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.6;
}

/* 徽章优化 */
.info-value .badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.info-value small {
    color: #718096;
    font-size: 0.9rem;
    margin-left: 8px;
    font-style: italic;
}

/* 信息区域容器 */
.info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.stats-section {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
    border: 1px solid #90cdf4;
}

.stat-icon i {
    font-size: 1.5rem;
}

.stat-number {
    background: linear-gradient(135deg, #2b6cb0, #2c5282);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stat-label {
    color: #718096;
    font-weight: 500;
}

.stat-breakdown {
    color: #a0aec0;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* 联系信息优化 */
.contact-section {
    background: linear-gradient(135deg, #f7fafc, #ffffff);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    margin-top: 1.5rem;
}

.contact-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.contact-label {
    color: #718096;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.contact-value {
    color: #007bff;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: #0056b3;
}

/* 数据来源优化 */
.data-meta {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
    margin-top: 1.5rem;
}

/* 表格优化 */
.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f0fe;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 2px solid #007bff;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1rem 0.75rem;
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background: linear-gradient(135deg, #f8faff, #ffffff);
    transform: scale(1.01);
}

.table tbody td {
    padding: 1rem 0.75rem;
    border-color: #f1f5f9;
    vertical-align: middle;
}

.table tbody td a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.table tbody td a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 分页优化 */
.pagination {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-link {
    border: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
    color: #007bff;
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-color: #007bff;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .enterprise-name {
        font-size: 1.5rem;
    }
    
    .card-header-simple,
    .card-body-simple {
        padding: 1rem;
    }
    
    .info-section,
    .stats-section,
    .contact-section {
        padding: 1rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .data-completeness {
        margin-top: 1rem;
        text-align: center;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.75rem 0.5rem;
    }
}
}
.navbar{position:sticky;top:0;z-index:1020}
.navbar,footer{padding-top:env(safe-area-inset-top);padding-bottom:env(safe-area-inset-bottom)}
@media (max-width:768px){.breadcrumb{overflow-x:auto;white-space:nowrap;-webkit-overflow-scrolling:touch}}
@media (max-width:768px){.input-group{width:100%}}
.navbar-toggler{padding:.5rem .75rem}
.navbar-collapse{transition:height .2s ease}
.navbar .container-fluid{padding-left:20px;padding-right:20px}
@media (max-width:576px){.navbar .container-fluid{padding-left:12px;padding-right:12px}}
.breadcrumb{padding:.35rem 0;margin-bottom:.6rem}
.breadcrumb.container{padding-left:20px;padding-right:20px}
@media (max-width:576px){.breadcrumb.container{padding-left:12px;padding-right:12px}}
.manufacturer-page.container{padding-left:20px;padding-right:20px}
@media (max-width:576px){.manufacturer-page.container{padding-left:12px;padding-right:12px}}
.breadcrumb-item{font-size:.95rem}
@media (max-width:576px){.breadcrumb-item{font-size:.9rem}}
.breadcrumb .breadcrumb-item.active{max-width:60vw;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.drug-card{border:1px solid #e5e7eb;border-radius:14px;box-shadow:0 8px 20px rgba(16,24,40,.06);padding:12px;background:#fff}
.drug-card{border:none;box-shadow:0 1px 6px rgba(16,24,40,.06);padding:10px}
.drug-card-header{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:8px}
.drug-card-title{font-size:1rem;font-weight:700;color:#0d6efd;text-decoration:none}
.drug-card-title:hover{color:#0056b3}
.drug-badge{background:transparent;color:#6b7280;border:none;border-radius:999px;padding:0;font-size:.78rem;white-space:nowrap}
.drug-chip-group{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:8px}
.drug-chip{display:inline-flex;align-items:center;border:none;border-radius:6px;padding:0;font-size:.85rem;color:#374151;text-decoration:none;background:transparent}
.drug-chip:hover{border-color:#c7d2fe;color:#0d6efd}
.drug-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:10px}
.drug-tag{display:inline-block;border:none;border-radius:999px;padding:0;font-size:.8rem;color:#6b7280;background:transparent}
.drug-actions{display:flex;justify-content:flex-end}
@media (max-width:576px){.drug-card{padding:8px}.drug-card-title{font-size:.95rem}.drug-badge{font-size:.72rem}.drug-chip{font-size:.8rem}.drug-tag{font-size:.75rem}}
.drug-actions .btn-primary{background:transparent;border:none;color:#0d6efd;padding:0;height:auto;line-height:1.2;box-shadow:none}
.drug-actions .btn-primary:hover{color:#0056b3}
@media (max-width:576px){
  .drug-card{border-left:none !important;border-right:none !important;border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb;box-shadow:none;padding:8px 0}
  .enterprise-card-simple{border-left:none !important;border-right:none !important;border-radius:8px}
  .drug-card{border-radius:0}
}
.manufacturer-page .verification-section{background:#f8fafc !important;border:1px solid #eef2f7 !important}
.manufacturer-page .verification-section{border-radius:12px;padding:.6rem .75rem}
.manufacturer-page .verification-section .status{display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.manufacturer-page .verification-section .actions{margin-left:auto;display:flex;gap:6px;align-items:center}
.manufacturer-page .verify-chip{font-size:.8rem;padding:.3em .6em}
.manufacturer-page .verify-time{font-size:.8rem}
.manufacturer-page .card-header-simple{padding:.6rem .75rem}
.search-page .section-block{margin-top:8px;margin-bottom:10px}
.search-page .search-section-title{margin:8px 0 6px}
.search-page .search-quickbar{margin:0}
.search-page .search-section-title{border-bottom:1px solid #eef2f7;padding-bottom:4px}
.search-page .card-container{margin-top:6px}
@media (max-width:576px){
  .search-page .drug-card{margin:6px 0;padding:10px 12px}
}
.search-page .drug-card-header{margin-bottom:6px}
.manufacturer-page .share-card .card-body{padding:.75rem 0}