/* 联系我们页面专用样式 */

/* 页面标题区域 */
.page-header {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 105, 0, 0.05), rgba(255, 105, 0, 0.02));
    border-radius: 12px;
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

/* 业务服务区域 */
.business-section {
    margin: 40px 0;
}

.business-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}

/* .business-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
} */

/* 种子业务卡片 */
.seed-business {
    border-left-color: #28a745;
}

.seed-business:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 32px rgba(40,167, 69, 0.12);
}


.seed-business .business-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* 社群业务卡片 */
.community-business {
    border-left-color: var(--primary-color);
}

.community-business:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

.community-business .business-icon {
    background: linear-gradient(135deg, var(--primary-color), #fd7e14);
}

/* 业务卡片头部 */
.business-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f8f9fa;
}

.business-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.business-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.business-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* 业务内容区域 */
.business-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-intro h4,
.contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

/* 特色列表 */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

/* 联系信息 */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 100px;
}

.contact-value {
    color: #ff6900;
    flex: 1;
    text-decoration: none;
}

.phone-link,
.email-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #e55a00;
    text-decoration: underline;
}

/* 操作按钮 */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #f8f9fa;
}

.action-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* 公司信息区域 */
.company-info-section {
    padding: 40px 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.company-details {
    padding: 20px 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
}

.info-item strong {
    color: var(--text-primary);
    min-width: 100px;
    margin-right: 12px;
    font-weight: 600;
}

.info-item span,
.info-item a {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 二维码区域 */
.qr-code-placeholder {
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.qr-code-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(255, 105, 0, 0.02);
}

.qr-code-placeholder i {
    display: block;
    margin: 0 auto;
}


@media (min-width: 768px){
    .page-container {
        padding: 20px;
    }
}

/* 响应式设计 */
@media (max-width: 767px) {
    .page-container {
        padding: 0px;
    }
    /* 页面标题适配 */
    .page-header {
        padding: 30px 20px;
        margin-bottom: 28px !important;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    /* 业务卡片适配 */
    .business-card {
        padding: 24px 20px;
        border-radius: 0;
        border: none;
        border-top: 4px solid;
        box-shadow: none;
        margin-bottom: 20px;
    }

    .seed-business {
        border-top-color: #28a745;
        border-left-color: transparent;
    }

    .community-business {
        border-top-color: var(--primary-color);
        border-left-color: transparent;
    }

    .business-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .business-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .business-title {
        font-size: 20px;
    }

    .business-subtitle {
        font-size: 14px;
    }

    /* 联系信息适配 */
    .contact-item {
        flex-direction: row;
        align-items: center;
        margin-bottom: 16px;
    }

    .contact-label {
        min-width: auto;
        margin-bottom: 0;
        margin-right: 8px;
    }

    /* 操作按钮适配 */
    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
        min-width: auto;
    }

    /* 公司信息适配 */
    .company-info-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .info-item {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .info-item strong {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 4px;
    }

    /* 二维码区域适配 */
    .qr-code-placeholder {
        padding: 30px 20px;
    }

    .qr-code-placeholder i {
        font-size: 3rem !important;
    }
}

@media (max-width: 576px) {
    .business-card {
        padding: 20px 16px;
    }

    .business-content {
        gap: 20px;
    }

    .feature-list li {
        font-size: 14px;
        padding: 6px 0;
    }

    .contact-item {
        font-size: 14px;
    }

    .info-item {
        font-size: 14px;
    }
}

/* 特殊效果 */
.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.business-card:hover::before {
    opacity: 1;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.business-card {
    animation: fadeInUp 0.6s ease;
}

.business-card:nth-child(2) {
    animation-delay: 0.2s;
}
