.filters {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.filter-group select,
.filter-group input {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    width: 260px;
}

.search-btn {
    transition: all 0.3s;
    display: block;
    padding: 10px 26px;
    border-radius: var(--border-radius);
    background-color: var(--theme-color);
    box-sizing: border-box;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.search-btn:hover {
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: #e9ecef;
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    font-size: 14px;
    white-space: nowrap;
}

.data-table tbody tr {
    border-bottom: 1px solid #eaeaea;
    transition: all 0.2s;
}

.data-table tbody tr:hover {
    background: #f8f9fa;
}

.data-table td {
    padding: 15px;
    vertical-align: top;
}

/* .data-table td:nth-child(1) {
    width: 80px;
    color: #6c757d;
    font-weight: 600;
} */

.data-table td:nth-child(2) {
    min-width: 200px;
}

.data-table td:nth-child(3) {
    min-width: 300px;
}

.brand-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.trouble-code {
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
}

.explain-content {
    color: #555;
    font-size: 14px;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.explain-content.expanded {
    max-height: none;
    -webkit-line-clamp: unset;
}

.toggle-expand {
    color: var(--theme-color);
    cursor: pointer;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    gap: 10px;
    flex-wrap: wrap;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: block;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #ccc;
    background: white;
    color: var(--theme-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    text-align: center;
    color: #666;
}
.page-link.active,
.page-link:hover {
    background: var(--theme-color);
    color: white;
    border-color: var(--theme-color);
}

.page-link.disabled {
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.page-info {
    margin: 0 15px;
    color: #6c757d;
    font-size: 14px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    display: none;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    display: none;
}

.page-jump {
    border: 1px solid var(--border-color);
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    width: 60px;
    margin: 0 10px;
    padding: 0 5px;
}
.page-jump-btn {
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    padding: 0 10px;
    background: var(--theme-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.page-jump-btn:hover {
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.query-title {
    font-size: 36px;
    text-align: center;
    line-height: 2;
    margin-top: 40px;
}
.query-title-sub {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}
.query-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 200px;
}
.query-form__con {
    width: 800px;
    display: flex;
    margin-right: 14px;
}
.query-form__item {
    width: 200px;
    height: 40px;
    border: 1px solid #ccc;
    border-right: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
}
.query-form__select {
    width: 100%;
    height: 100%;
    padding-left: 10px;
    box-sizing: border-box;
    border: 0;
}
.query-form__item--last {
    width: 600px;
    height: 40px;
    border-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.query-form__input {
    width: 100%;
    height: 100%;
    border: 0;
    padding-left: 10px;
}
