/* 寥航科技网络科技 - 企业详情页样式 */
/* 主色调: #FF8C00 (橙色) */

/* 企业横幅区域 */
.zh_company_banner {
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: overlay;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

.zh_company_hero {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.zh_company_logo {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-right: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_company_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.zh_company_info {
    flex: 1;
    min-width: 300px;
}

.zh_company_name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.zh_company_meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.zh_company_meta span {
    margin-right: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.zh_company_meta i {
    margin-right: 5px;
    opacity: 0.8;
}

.zh_company_btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* 企业详情内容区域 */
.zh_company_content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* 企业详情区块样式 */
.zh_company_section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.zh_section_header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.zh_section_title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.zh_section_title i {
    color: #FF8C00;
    margin-right: 8px;
}

.zh_company_desc {
    padding: 25px;
    line-height: 1.8;
    color: #666;
}

/* 产品卡片样式 */
.zh_product_list {
    padding: 25px;
}

.zh_product_card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.zh_product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.zh_product_img {
    height: 180px;
    overflow: hidden;
}

.zh_product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zh_product_card:hover .zh_product_img img {
    transform: scale(1.05);
}

.zh_product_info {
    padding: 15px;
}

.zh_product_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.zh_product_title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zh_product_title a:hover {
    color: #FF8C00;
}

.zh_product_desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 案例卡片样式 */
.zh_case_list {
    padding: 25px;
}

.zh_case_card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.zh_case_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.zh_case_img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.zh_case_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zh_case_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 140, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.zh_case_card:hover .zh_case_overlay {
    opacity: 1;
}

.zh_case_card:hover .zh_case_img img {
    transform: scale(1.05);
}

.zh_case_link {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.zh_case_link:hover {
    background-color: #fff;
    color: #FF8C00;
    transform: scale(1.1);
}

.zh_case_info {
    padding: 15px;
}

.zh_case_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.zh_case_title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zh_case_title a:hover {
    color: #FF8C00;
}

.zh_case_desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 侧边栏样式 */
.zh_company_sidebar {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.zh_sidebar_header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
}

.zh_sidebar_title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.zh_sidebar_title i {
    color: #FF8C00;
    margin-right: 8px;
}

/* 联系信息样式 */
.zh_contact_info {
    padding: 20px;
}

.zh_contact_item {
    display: flex;
    margin-bottom: 15px;
}

.zh_contact_icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
    margin-right: 15px;
}

.zh_contact_text {
    flex: 1;
}

.zh_contact_label {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 3px;
}

.zh_contact_value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.zh_contact_btns {
    padding: 0 20px 20px;
}

/* 企业资质样式 */
.zh_qualification_list {
    padding: 20px;
}

.zh_qualification_item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.zh_qualification_icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
    margin-right: 15px;
}

.zh_qualification_text {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zh_qualification_name {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.zh_qualification_status {
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 500;
}

.zh_status_verified {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.zh_status_pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* 相关企业样式 */
.zh_related_companies {
    padding: 20px;
}

.zh_related_company {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.zh_related_company:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zh_related_company_logo {
    width: 60px;
    height: 60px;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 5px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.zh_related_company_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.zh_related_company_info {
    flex: 1;
}

.zh_related_company_name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.zh_related_company_name a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zh_related_company_name a:hover {
    color: #FF8C00;
}

.zh_related_company_desc {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 按钮扩展样式 */
.zh_btn_block {
    display: block;
    width: 100%;
    text-align: center;
}

.zh_btn_followed {
    background-color: #fff;
    color: #FF8C00;
    border-color: #FF8C00;
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .zh_company_logo {
        width: 120px;
        height: 120px;
        margin-right: 20px;
    }

    .zh_company_name {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .zh_company_banner {
        padding: 50px 0;
    }

    .zh_company_hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .zh_company_logo {
        margin-bottom: 20px;
    }

    .zh_company_content {
        padding: 40px 0;
    }
    
    .zh_company_name {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .zh_company_btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_company_btns .zh_btn {
        width: 100%;
        text-align: center;
    }
    
    .zh_company_meta span {
        margin-bottom: 10px;
    }
}

/* 空内容显示样式 */
.zh_empty_content {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 15px 0;
}

.zh_empty_icon {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
}

.zh_empty_content p {
    color: #999;
    margin: 0;
    font-size: 16px;
}

/* 需求列表样式 */
.zh_demand_list {
    padding: 25px;
}

.zh_demand_card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.zh_demand_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #FF8C00;
}

.zh_demand_header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.zh_demand_title {
    flex: 1;
    padding-right: 10px;
}

.zh_demand_title h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.zh_demand_title h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_demand_title h3 a:hover {
    color: #FF8C00;
}

.zh_demand_price {
    font-size: 18px;
    font-weight: 700;
    color: #FF8C00;
    white-space: nowrap;
}

.zh_demand_body {
    padding: 15px 20px;
    flex: 1;
}

.zh_demand_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 67px; /* 约3行文本高度 */
}

.zh_demand_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.zh_demand_tag {
    background-color: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 500;
}

.zh_demand_footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 8px 8px;
}

.zh_demand_meta {
    font-size: 13px;
    color: #888;
}

.zh_demand_meta span {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

.zh_demand_meta i {
    margin-right: 5px;
}

.zh_demand_label {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 500;
}

.zh_label_urgent {
    background-color: #dc3545;
    color: #fff;
}

.zh_label_featured {
    background-color: #ffc107;
    color: #333;
}

@media (max-width: 767.98px) {
    .zh_demand_footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .zh_demand_meta {
        margin-bottom: 10px;
    }
    
    .zh_demand_meta span {
        display: block;
        margin-bottom: 5px;
    }
}
