/* 基本信息样式 */
.info-table {
    width: 100%;
    border-collapse: collapse;
}
        
.info-table th,
.info-table td {
    padding: 14px 16px;
    text-align: left;
}
        
.info-table th {
    font-weight: 600;
    background-color: rgba(167, 243, 208, 0.2);
    width: 30%;
    white-space: nowrap;
}
        
.info-table tr {
    border-bottom: 1px solid var(--table-border);
}
        
.info-table tr:last-child {
    border-bottom: none;
}

/* 航司飞机展示表格样式 */
.plane-table {
    width: 100%;
    border-collapse: collapse;
}
        
.plane-table th,
.plane-table td {
    padding: 12px 16px;
    text-align: left;
}
        
.planetable th {
    font-weight: 600;
    background-color: rgba(167, 243, 208, 0.2);
}
        
.plane-table tr {
    border-bottom: 1px solid var(--table-border);
}
        
.plane-table tr:last-child {
    border-bottom: none;
}