/* consult 页面特有样式 */
body {
    background: url(../../images/bodybg.jpg) repeat;
    background-position: 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}
footer {
    margin-top: auto;
}
.consult-container {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 20px;
}
.consult-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    overflow: hidden;
}
.consult-header {
    padding: 20px 28px;
    border-bottom: 1px solid #e8f3fc;
    background: linear-gradient(90deg,#f0f8ff 0%,#fff 100%);
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.consult-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}
.consult-header .header-tip {
    font-size: 13px;
    color: #999;
}
.consult-body {
    padding: 28px;
}
.consult-body .consult-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.consult-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #333;
}
.consult-table th,
.consult-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.consult-table thead th {
    background: #f0f8ff;
    color: #1a6fb5;
    font-weight: 600;
    border-bottom: 2px solid #d6e9f8;
    white-space: nowrap;
}
.consult-table tbody tr:hover {
    background: #f7fbff;
}
.consult-table tbody tr:last-child td {
    border-bottom: none;
}
.consult-table .col-no {
    width: 60px;
    text-align: center;
    color: #999;
}
.consult-table .col-dept {
    font-weight: 600;
    white-space: nowrap;
}
.consult-table .col-tel {
    white-space: nowrap;
}
.consult-table .col-tel a {
    color: #1a6fb5;
    text-decoration: none;
}
.consult-table .col-tel a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .consult-body {
        padding: 16px 12px;
    }
    .consult-table {
        font-size: 13px;
    }
    .consult-table th,
    .consult-table td {
        padding: 10px 8px;
    }
    .consult-table .col-no {
        width: 36px;
    }
}
