/*列表相关 */
.card-header {
    display: flex;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 4px 4px 0 0;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.card-header a {
    position: relative;
    display: inline-block;
    padding: 10px 24px;
    margin-right: 8px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    border: 1px solid transparent;
}
.card-header a:hover {
    color: #03a9f4;
    background-color: rgba(3, 169, 244, 0.08);
    border-color: rgba(3, 169, 244, 0.2);
}
.card-header a.active {
    color: #fff;
    background: linear-gradient(135deg, #03a9f4 0%, #008ddc 100%);
    box-shadow: 0 4px 10px rgba(3, 169, 244, 0.3);
    border-color: transparent;
}

.search-container {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.search-form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.form-group {
    display: flex;
    align-items: center;
}
.form-group label {
    margin-right: 8px;
    margin-bottom: 0;
    font-weight: normal;
    color: #333;
}
.form-control-sm {
    height: 32px;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 5px;
}
.table-container {
    background: #fff;
    padding: 20px 20px 50px 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.new-table thead tr th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    color: #495057;
    padding: 12px;
}
.new-table tbody tr td {
    padding: 12px;
    vertical-align: middle;
    color: #333;
    /* 允许单词内换行 */
    word-wrap: break-word;
    word-break: break-word;
    /* 确保表格不会无限撑宽 */
    max-width: 200px; /* 可根据需要调整 */
}
.new-table tbody tr:hover {
    background-color: #f8f9fa;
}
.btn-primary-custom {
    background-color: #2699FB;
    border-color: #2699FB;
    color: #fff;
    padding: 5px 20px;
    font-size: 13px;
    border-radius: 5px;
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    background-color: #1b8ceb;
    border-color: #1b8ceb;
    color: #fff;
}
.user-center {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}