
 
/* 卡片容器，提升质感 */
.table-wrapper {
    max-width: 1000px;
    width: 100%;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(0px);
    border-radius: 2rem;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.05);
    padding: 1.2rem;
    transition: all 0.2s ease;
}

/* 现代干净表格设计 */
.contact-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    background-color: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 表头样式 */
.contact-table thead tr {
    background: #1e2f3e;
    color: #f0f9ff;
}

.contact-table th {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 2px solid #2c4c6c;
}

/* 表格体样式 */
.contact-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    color: #1e2f3e;
    background-color: #fff;
    transition: background 0.2s;
}

/* 行悬浮效果 */
.contact-table tbody tr:hover td {
    background-color: #f8fafc;
}

/* 第一列（字段名）样式：加粗，柔和底色 */
.contact-table td:first-child {
    font-weight: 600;
    background-color: #f9fbfd;
    width: 28%;
    border-right: 1px solid #e9edf2;
    color: #0b3b4f;
}

/* 第二列（内容）样式：可读性高 */
.contact-table td:last-child {
    background-color: #ffffff;
    word-break: break-word;
    white-space: normal;
}

/* 链接样式 */
.contact-table a {
    color: #2266a8;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.contact-table a:hover {
    color: #0f4b6e;
    border-bottom: 1px solid #0f4b6e;
}

/* 联系方式辅助微标（微信、电话等模拟点缀） */
.badge-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 响应式：小屏幕时适当减小内边距 */
@media (max-width: 640px) {
 
    .table-wrapper {
        padding: 0.6rem;
    }
    .contact-table th,
    .contact-table td {
        padding: 0.85rem 0.9rem;
    }
    .contact-table td:first-child {
        width: 35%;
    }
}

/* 整洁脚注 (可选版权信息，无干扰) */
.table-footer-note {
    text-align: right;
    font-size: 0.75rem;
    color: #5b6f82;
    margin-top: 1rem;
    padding-right: 0.5rem;
    opacity: 0.8;
}

/* 无数据占位符处理 —— 保留空白友好 */
.empty-placeholder {
    color: #8ba0b0;
    font-style: normal;
}
