
.drone-fc-manufacturers {
    padding: 20px;
    font-family: Arial, sans-serif;
    max-width: 100%;
    box-sizing: border-box;
}
.section-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 8px;
}
.data-description {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}
.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.search-input, .filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.search-input {
    flex: 1;
    min-width: 200px;
}
.filter-select {
    min-width: 150px;
}
.reset-btn {
    padding: 8px 20px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.reset-btn:hover {
    background-color: #0052a3;
}
.table-container {
    overflow-x: auto;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.data-table th, .data-table td {
    border: 1px solid #ddd;
    padding: 10px 8px;
    text-align: left;
}
.data-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    white-space: nowrap;
}
.data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
/* UEESHOP移动端适配 */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
    }
    .data-table th, .data-table td {
        padding: 6px 4px;
        font-size: 12px;
    }
}
