
.hv-table { 
    margin-left: 0 auto;
    width: 1105px; 
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}
.hv-table th {
    background-color: #203f5d;
    color: white;
    height: 30px;
    font-size: 14px;
    padding: 8px;
    position: sticky;
    top: 0;
}
.hv-table td {
    padding: 4px;
    height: 24px;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #3a3a3a;
    background-color: white;
    transition: background-color 0.2s; /* 添加过渡动画 */
}

/* 修复悬停效果 */
.hv-table tbody tr:not(.section-title):not(.contact-row):hover td {
    background-color: #e5e6e7 !important;
    cursor: default;
}

.section-title {
    background-color: #f5f5f5 !important;
    font-weight: bold;
    text-align: center;
}
.section-title td {
    background-color: inherit !important; /* 保持灰色背景不变 */
}

.logo-title {
    text-align: left;
    padding: 2px 0;
}
.logo-title img {
    vertical-align: middle;
    margin-right: 15px;
}

.contact-row td {
    background-color: #f5f5f5 !important;
    padding: 2px !important;
    font-size: 14px;
    text-align: center;
}
.contact-link {
    color: #800000;
    text-decoration: none;
    font-weight: bold;
}
.contact-link:hover {
    text-decoration: underline;
}
