/* 蓝色卡片设计 - 匹配截图 */
.business-card-blue {
    width: 100%;
    max-width: 100%;
    background-color: white;
    border: 2px solid #3366ff !important;
    border-radius: 12px;
    padding: 22px;
    position: relative;
    box-shadow: 0 4px 12px rgba(51, 102, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto;
    min-height: 220px;
}

.business-card-blue .card-service-counter {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    font-size: 15px;
    color: #424242;
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.business-card-blue .counter-text {
    font-size: 14px;
    line-height: 1.2;
}

.business-card-blue .counter-number {
    font-size: 22px;
    line-height: 1.2;
    margin: 4px 0;
}

.business-card-blue .counter-number strong {
    color: #3366ff;
    font-weight: 700;
}

.card-header-new {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    width: 100%;
}

.card-person-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 75px;
}

.card-person-info-blue {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.card-person-info-blue .person-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #212121;
}

.card-person-info-blue .person-title {
    font-size: 16px;
    color: #3366ff;
    font-weight: 500;
}

.card-avatar-blue {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #3366ff;
    border: 2px solid #3366ff;
    position: relative;
    top: auto;
    right: auto;
    min-width: 65px;
}

.card-avatar-blue img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-intro-blue {
    padding: 12px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    flex: 1;
    margin-right: 0;
}

.card-intro-blue p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #424242;
    white-space: pre-line; /* 允许多行文本显示 */
}

.card-buttons {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 10px;
}

.card-btn {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    max-width: 280px;
}

.view-full-btn {
    background-color: #f0f4ff;
    color: #3366ff;
    border: 1px solid #3366ff;
}

.view-full-btn:hover {
    background-color: #e8ecff;
}

.chat-with-btn {
    background-color: #3366ff;
    color: white;
}

.chat-with-btn:hover {
    background-color: #0040cb;
}

/* 卡片容器样式 */
.card-container {
    width: 100%;
    max-width: 100%;
    perspective: 1000px;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 20px;
}

/* 卡片展示区样式 */
.card-showcase {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-top: 32px;
    padding: 0 16px;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .business-card-blue {
        max-width: 100%;
        height: auto;
        min-height: 220px;
    }
    
    .card-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .card-btn {
        width: calc(50% - 10px);
        max-width: none;
    }
} 