/* ========== 需求大厅页面样式 ========== */

/* 覆盖Banner主题色 - 深蓝到天蓝 */
:root {
    --banner-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0ea5e9 100%);
    --banner-glow-color: rgba(14, 165, 233, 0.3);
    --banner-btn-primary-bg: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --banner-btn-primary-shadow: rgba(59, 130, 246, 0.4);
    --banner-btn-primary-shadow-hover: rgba(59, 130, 246, 0.5);
}

/* 页面特定Banner背景（带图片） */
.demand-banner {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.88) 50%, rgba(14, 165, 233, 0.85) 100%),
        url('/public/images/banner-demand.jpeg') center/cover no-repeat;
}

/* 筛选区域 */
.filter-section-new {
    background: white;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    color: #64748b;
    white-space: nowrap;
}

.filter-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    cursor: pointer;
    min-width: 120px;
}

.filter-select:focus {
    outline: none;
    border-color: #3b82f6;
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 6px 16px;
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 20px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tag:hover,
.filter-tag.active {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #3b82f6;
}

.filter-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.btn-reset {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
}

.btn-reset:hover {
    background: #f8fafc;
}

/* 列表区域 */
.list-section {
    padding: 32px 0;
    background: #f8fafc;
    min-height: 60vh;
}

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

.result-info {
    font-size: 14px;
    color: #64748b;
}

.result-info strong {
    color: #3b82f6;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

/* 需求卡片网格 */
.demand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.demand-card-new {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.demand-card-new:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
    transform: translateY(-4px);
}

.demand-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demand-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.demand-type-badge.tech {
    background: #fef3c7;
    color: #b45309;
}

.demand-type-badge.equipment {
    background: #dbeafe;
    color: #1d4ed8;
}

.demand-type-badge.talent {
    background: #dcfce7;
    color: #15803d;
}

.demand-type-badge.finance {
    background: #fce7f3;
    color: #be185d;
}

.demand-status {
    font-size: 12px;
    color: #94a3b8;
}

.demand-status.ongoing {
    color: #3b82f6;
}

.demand-status.new {
    color: #f59e0b;
}

.demand-card-body {
    padding: 20px;
}

.demand-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.demand-company {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.demand-company img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    background: #f1f5f9;
}

.demand-company a:first-child {
    display: block;
}

.demand-company a:hover {
    opacity: 0.8;
}

.demand-company-info {
    flex: 1;
}

.demand-company-name {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
}

.demand-company-name a {
    color: inherit;
    text-decoration: none;
}

.demand-company-name a:hover {
    color: #2563eb;
}

.demand-company-type {
    font-size: 11px;
    color: #94a3b8;
}

.demand-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.demand-tag {
    padding: 4px 10px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 4px;
    font-size: 12px;
}

.demand-meta {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.meta-item {
    text-align: center;
}

.meta-item .label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.meta-item .value {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.meta-item .value.price {
    color: #f59e0b;
}

.demand-card-footer {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
}

.demand-match {
    font-size: 12px;
    color: #64748b;
}

.demand-match strong {
    color: #3b82f6;
}

.btn-connect-new {
    padding: 8px 20px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-connect-new:hover {
    background: #2563eb;
}

/* 分页 */
.pagination-new {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.page-btn {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

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

/* 响应式 */
@media (max-width: 1200px) {
    .demand-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .demand-grid { grid-template-columns: 1fr; }
    .filter-actions {flex: 1;}
    .filter-section-new{padding: 10px 0;}
    .filter-section { padding: 10px; }
    .filter-group { flex-direction: row; gap: 8px; flex: 1;}
    .filter-label { width: auto; }
    .filter-option { padding: 5px 10px; font-size: 12px; }
    .filter-select{padding: 8px; min-width: 90px;}
    .demand-header { padding: 16px 0; }
    .filter-row { gap: 8px; }
    .demand-card { padding: 16px; }
    .demand-card-header { gap: 8px; }
    .demand-badge { align-self: flex-start; }
    .demand-title { font-size: 14px; }
    .demand-tags { flex-wrap: wrap; }
    .demand-meta {gap: 6px; }
    .demand-actions { width: 100%; flex-direction: column; gap: 8px; }
    .demand-actions .btn-primary { width: 100%; text-align: center; }
    .company-view-detail{top: 0; right: 0; bottom: auto; padding: 6px 10px; opacity: 1; font-size: 12px;}
}

/* ========== 面包屑样式 ========== */
.breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid #e8ecf0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 0 20px;
}

.breadcrumb-item {
    color: #64748b;
}

.breadcrumb-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #94a3b8;
    font-weight: 600;
}

.breadcrumb-item.current {
    color: #1e293b;
    font-weight: 600;
}

/* ========== 需求详情页专用样式 ========== */
.demand-detail-main {
    padding: 20px 0 80px;
    background: #f0f4f8;
    min-height: calc(100vh - 200px);
    margin-top:70px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* 头部区域 - 优化设计 */
.demand-header {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
    border-radius: 16px;
    padding: 36px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.35);
}

.demand-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 100%);
    pointer-events: none;
}

.demand-header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.demand-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demand-type-badge.tech {
    background: rgba(16, 185, 129, 0.22);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.35);
}

.demand-type-badge.equipment {
    background: rgba(245, 158, 11, 0.22);
    color: #fcd34d;
    border-color: rgba(245, 158, 11, 0.35);
}

.demand-type-badge.talent {
    background: rgba(139, 92, 246, 0.22);
    color: #c4b5fd;
    border-color: rgba(139, 92, 246, 0.35);
}

.demand-type-badge.finance {
    background: rgba(236, 72, 153, 0.22);
    color: #f9a8d4;
    border-color: rgba(236, 72, 153, 0.35);
}

.demand-page-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    max-width: 800px;
}

.demand-page-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.demand-page-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.95;
    padding: 8px 16px;
    background: rgba(255,255,255,0.12);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.demand-page-meta svg {
    width: 16px;
    height: 16px;
    opacity: 0.85;
    flex-shrink: 0;
}

/* 通用卡片样式 */
.detail-card,
.demand-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    border: 1px solid #e8ecf0;
    transition: box-shadow 0.25s ease;
}

.detail-card:hover,
.demand-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.detail-card .card-title,
.demand-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card .card-title::before,
.demand-card .card-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

/* 企业信息区域 */
.company-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.3s;
}

.company-info:hover {
    border-color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.company-view-detail {
    position: absolute;
    right: 20px;
    bottom:20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s;
}

.company-info:hover .company-view-detail {
    opacity: 1;
}

.company-logo {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.company-logo-link {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: block;
}

.company-logo-link:hover {
    opacity: 0.8;
}

.company-logo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-detail {
    flex: 1;
    min-width: 0;
}
.company-detail h4{
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}
.company-detail h4 a {
    color: inherit;
    text-decoration: none;
}

.company-detail h4 a:hover {
    color: #2563eb;
}


.company-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.company-tag {
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-radius: 6px;
    font-size: 12px;
    color: #0284c7;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(2, 132, 199, 0.15);
}

.company-tag.verified {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.08) 100%);
    color: #059669;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.company-contact {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #64748b;
    padding-top: 10px;
}

/* 需求详情信息网格 */
.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.detail-info-grid .info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e8ecf0;
    transition: all 0.2s ease;
}

.detail-info-grid .info-item:hover {
    background: #fff;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
}

.detail-info-grid .info-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-info-grid .info-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.detail-info-grid .info-value.price {
    color: #f59e0b;
    font-weight: 700;
    font-size: 16px;
}

/* 需求描述内容 */
.detail-content {
    line-height: 1.85;
    color: #475569;
    font-size: 14px;
}

.detail-content p {
    margin-bottom: 14px;
}

.detail-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 24px 0 12px;
    padding-left: 12px;
    border-left: 3px solid #3b82f6;
}

.detail-content strong {
    color: #1d4ed8;
    font-weight: 600;
}

/* 资质要求列表 */
.requirement-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 13px;
    color: #475569;
    border: 1px solid #e8ecf0;
    transition: all 0.2s ease;
}

.requirement-item:hover {
    background: #fff;
    border-color: #10b981;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.req-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

/* 已对接服务商 */
.matched-providers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.matched-provider-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e8ecf0;
    transition: all 0.2s ease;
}

.matched-provider-item:hover {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.provider-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.25);
}

.provider-info {
    flex: 1;
    min-width: 0;
}

.provider-name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.provider-time {
    font-size: 12px;
    color: #94a3b8;
}

.provider-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.provider-status.pending {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.provider-status.rejected {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.provider-status.approved {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

/* 侧边栏 */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    border: 1px solid #e8ecf0;
    transition: all 0.25s ease;
}

.sidebar-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.sidebar-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 14px;
}

.sidebar-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 18px;
    line-height: 1.6;
}

.full-width {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
}

.full-width:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

/* 相似需求推荐 */
.similar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.similar-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.similar-item:hover {
    background: #fff;
    border-color: #3b82f6;
    transform: translateX(4px);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.12);
}

.similar-title {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
}

.similar-meta {
    font-size: 12px;
    color: #f59e0b;
    font-weight: 600;
}

/* 温馨提示 */
.sidebar-card.tips {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.sidebar-card.tips h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1d4ed8;
    font-size: 14px;
}

.sidebar-card.tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card.tips li {
    font-size: 12px;
    color: #475569;
    padding: 10px 0;
    border-bottom: 1px solid rgba(191, 219, 254, 0.4);
    line-height: 1.5;
}

.sidebar-card.tips li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .detail-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demand-header {
        padding: 32px;
    }
    
    .demand-page-title {
        font-size: 26px;
    }
    
    .demand-page-meta {
        gap: 16px;
    }
    
    .demand-page-meta .meta-item {
        padding: 6px 12px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .company-view-detail{top: 0; right: 0; bottom: auto; padding: 6px 10px; opacity: 1; font-size: 12px;}

    .demand-detail-main {
        padding: 16px 0 40px;
    }
    
    .demand-header {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .demand-page-title {
        font-size: 22px;
    }
    
    .demand-page-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .demand-page-meta .meta-item {
        padding: 8px 12px;
    }
    
    .company-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .company-logo {
        width: 64px;
        height: 64px;
    }
    
    .company-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .detail-info-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-card {
        padding: 20px;
    }
    
    .detail-card .card-title {
        font-size: 18px;
    }
    
    .requirement-list {
        grid-template-columns: 1fr;
    }
    
    .company-contact {
        flex-direction: column;
        gap: 8px;
    }
}