/* ===== 企业名录（qiye）专属样式 ===== */
.qiye-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #2a8bf2 100%);
    color: #fff;
    border-radius: 10px;
    padding: 26px 24px;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(13, 110, 253, .18);
}
.qiye-hero h1 {
    font-size: 24px;
    margin: 0 0 6px;
    font-weight: 700;
}
.qiye-hero p {
    margin: 0;
    opacity: .9;
    font-size: 14px;
}

/* 筛选栏 */
.qiye-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
}
.qiye-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.qiye-filter-group label {
    font-size: 13px;
    color: #6b7785;
    font-weight: 600;
}
.qiye-select {
    min-width: 150px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #d4dde6;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
}
.qiye-select:focus {
    border-color: #0d6efd;
}
.qiye-filter-btn {
    height: 38px;
    padding: 0 22px;
    border: none;
    border-radius: 6px;
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}
.qiye-filter-btn:hover {
    background: #0b5ed7;
}
.qiye-reset {
    height: 38px;
    line-height: 38px;
    padding: 0 14px;
    color: #0d6efd;
    font-size: 13px;
    text-decoration: none;
}

/* 当前筛选标签 */
.qiye-active {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -4px 0 14px;
    font-size: 13px;
    color: #6b7785;
}
.qiye-chip {
    background: #eef4ff;
    color: #0d6efd;
    border-radius: 20px;
    padding: 3px 12px;
}

/* 企业卡片网格 */
.qiye-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .qiye-grid { grid-template-columns: 1fr; }
}
.qiye-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 16px;
    transition: box-shadow .2s, transform .2s;
}
.qiye-card:hover {
    box-shadow: 0 8px 22px rgba(20, 50, 90, .12);
    transform: translateY(-2px);
}
.qiye-card-media {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qiye-card-media mip-img,
.qiye-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qiye-card-media .qiye-logo-ph {
    font-size: 30px;
    font-weight: 700;
    color: #c2ccd6;
}
.qiye-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.qiye-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2a37;
    margin: 0 0 8px;
    text-decoration: none;
    line-height: 1.35;
}
.qiye-card-title:hover { color: #0d6efd; }
.qiye-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}
.qiye-badge {
    font-size: 12px;
    padding: 2px 9px;
    border-radius: 4px;
    background: #eef4ff;
    color: #0d6efd;
}
.qiye-badge.province {
    background: #eafaf1;
    color: #1a9d5a;
}
.qiye-card-desc {
    font-size: 13px;
    color: #6b7785;
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.qiye-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.qiye-card-time {
    font-size: 12px;
    color: #9aa6b2;
}
.qiye-card-link {
    font-size: 13px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}
.qiye-card-link:hover { text-decoration: underline; }

.qiye-empty {
    background: #fff;
    border: 1px dashed #d4dde6;
    border-radius: 10px;
    padding: 50px 20px;
    text-align: center;
    color: #9aa6b2;
}
.qiye-count {
    font-size: 13px;
    color: #6b7785;
    margin-bottom: 12px;
}

/* ===== 企业详情页 ===== */
.qiye-detail-hero {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 16px;
}
.qiye-detail-logo {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qiye-detail-logo mip-img,
.qiye-detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qiye-detail-logo .qiye-logo-ph {
    font-size: 34px;
    font-weight: 700;
    color: #c2ccd6;
}
.qiye-detail-info { flex: 1; min-width: 0; }
.qiye-detail-info h1 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #1f2a37;
}
.qiye-detail-info .qiye-meta { margin-bottom: 0; }

/* 联系公司（登录门控） */
.qiye-contact {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 20px 22px;
    margin-top: 16px;
}
.qiye-contact h3 {
    font-size: 17px;
    margin: 0 0 14px;
    color: #1f2a37;
    display: flex;
    align-items: center;
    gap: 8px;
}
.qiye-contact h3::before {
    content: "";
    width: 4px;
    height: 16px;
    background: #0d6efd;
    border-radius: 2px;
}
.qiye-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.qiye-contact-list li {
    display: flex;
    padding: 7px 0;
    border-bottom: 1px dashed #eef1f4;
    font-size: 14px;
}
.qiye-contact-list li span {
    color: #9aa6b2;
    width: 64px;
    flex: 0 0 64px;
}
.qiye-contact-list li b {
    color: #1f2a37;
    font-weight: 600;
}
.qiye-form {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}
.qiye-form input,
.qiye-form textarea {
    width: 100%;
    border: 1px solid #d4dde6;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}
.qiye-form input:focus,
.qiye-form textarea:focus { border-color: #0d6efd; }
.qiye-form textarea { resize: vertical; min-height: 90px; }
.qiye-form button {
    justify-self: start;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 26px;
    font-size: 14px;
    cursor: pointer;
}
.qiye-form button:hover { background: #0b5ed7; }
.qiye-form-note {
    font-size: 12px;
    color: #9aa6b2;
    margin: 0;
}

/* 加密/未登录占位（重写：不再 absolute overlay，避免移动端裁切） */
.qiye-contact-locked {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
    border: 1px dashed #cdd7e2;
    border-radius: 10px;
    padding: 22px 22px 24px;
    margin-top: 16px;
    text-align: center;
}
.qiye-lock-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
    margin: 0 auto 18px;
    background: rgba(255,255,255,.55);
    border: 1px dashed #d6dee8;
    border-radius: 8px;
    max-width: 420px;
}
.qiye-lock-mock-item {
    color: #b3bec9;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}
.qiye-lock-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.qiye-lock-icon {
    font-size: 30px;
    line-height: 1;
}
.qiye-lock-call h3 {
    margin: 0;
    font-size: 17px;
    color: #1f2a37;
    font-weight: 700;
}
.qiye-lock-call p {
    margin: 0 0 4px;
    font-size: 13px;
    color: #4a5562;
    max-width: 340px;
    line-height: 1.7;
}
.qiye-lock-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}
.qiye-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 40px;
    padding: 0 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}
.qiye-btn.primary { background: #0d6efd; color: #fff; }
.qiye-btn.primary:hover { background: #0b5ed7; }
.qiye-btn.ghost { background: #fff; color: #0d6efd; border: 1px solid #0d6efd; }
.qiye-btn.ghost:hover { background: #eef4ff; }
@media (max-width: 768px) {
    .qiye-lock-actions { width: 100%; }
    .qiye-lock-actions .qiye-btn { flex: 1 1 auto; }
}


