/* 搜索结果区域 */
.result-section { 
    width: 100%; 
    padding: 0 12px; 
    display: none;
}

.result-card {
    width: 100%; 
    background: white; 
    border-radius: 10px;
    padding: 15px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

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

.result-title { 
    font-weight: 600; 
    color: #333; 
    font-size: 15px;
}

.result-content { }

.result-item {
    padding: 12px 0; 
    border-bottom: 1px solid #f5f5f5;
}

.result-item:last-child { 
    border-bottom: none; 
}

.result-header-line {
    display: flex; 
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 8px;
}

.result-name { 
    font-weight: 600; 
    color: #333; 
    font-size: 15px;
    flex: 1; 
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: nowrap; 
    padding-right: 8px;
}

.result-actions { 
    display: flex; 
    gap: 6px; 
    flex-shrink: 0;
}

.result-action-btn {
    padding: 5px 10px; 
    border-radius: 12px; 
    border: none;
    font-size: 12px; 
    font-weight: 500; 
    cursor: pointer;
    flex-shrink: 0;
}

.result-add-btn { 
    background: #52c41a; 
    color: white; 
}

.result-add-btn:active { 
    background: #389e0d; 
}

.result-fav-btn { 
    background: #fa8c16; 
    color: white; 
}

.result-fav-btn:active { 
    background: #d46b08; 
}

.result-phone { 
    font-size: 18px; 
    font-weight: 600; 
    margin-bottom: 6px;
}

.phone-callable { 
    color: #1890ff; 
    text-decoration: none; 
    font-weight: 600;
    font-size: 18px; 
    display: inline-block; 
    padding: 2px 0;
    border-bottom: 2px solid rgba(24, 144, 255, 0.3);
}

.phone-callable:active { 
    color: #096dd9; 
    border-bottom-color: #1890ff;
}

.result-skill { 
    color: #666; 
    font-size: 13px; 
    line-height: 1.4;
    margin-bottom: 8px;
}

.result-group-info {
    display: flex; 
    align-items: center; 
    flex-wrap: wrap;
    gap: 8px; 
    font-size: 12px; 
    color: #999;
}

.join-tag {
    padding: 2px 8px; 
    border-radius: 10px; 
    font-size: 11px;
    cursor: pointer; 
    border: none;
}

.join-public { 
    background: #52c41a; 
    color: white; 
}

.join-password { 
    background: #1890ff; 
    color: white; 
}

.join-audit { 
    background: #fa8c16; 
    color: white; 
}

.join-view { 
    background: #999; 
    color: white; 
}

/* 拨号确认弹窗样式 */
.dial-card {
    text-align: center;
    padding: 25px 20px 15px;
}
.dial-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
}
.dial-label {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
}
.dial-number {
    font-size: 26px;
    font-weight: bold;
    color: #1890ff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    word-break: break-all;
}
.dial-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.dial-btn-cancel {
    flex: 1;
    padding: 12px 0;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
}
.dial-btn-call {
    flex: 1;
    padding: 12px 0;
    background: linear-gradient(135deg, #52c41a, #73d13d);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

