.main-content {
    margin-left: 260px;
    padding: 24px;
    padding-top: 88px;
}
.progress {
    height: 8px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.status-pending {
    background-color: #fff7e6;
    color: #fa8c16;
}

.status-processing {
    background-color: #e6f7ff;
    color: #1677ff;
}

.status-completed {
    background-color: #f6ffed;
    color: #52c41a;
}

/* 通用表格样式 */
.table-container {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
}

.table-form{
    margin-bottom: 16px;
}

.table {
    margin-bottom: 0;
}

.table th {
    background: #fafafa;
    font-weight: 500;
    color: #595959;
}

.btn-sm {
    border-radius: 4px;
    padding: 4px 12px;
}

.pagination {
    margin: 16px 0 0;
}

.badge {
    padding: 0.4em 0.8em;
    font-weight: 500;
}

.badge.bg-success {
    background-color: #52c41a !important;
}

.badge.bg-danger {
    background-color: #ff4d4f !important;
}
/* 修改下拉菜单样式 */
.dropdown-menu {
    min-width: 8rem;
    padding: 4px 0;
    margin: 0;
    font-size: 13px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
}

.dropdown-item {
    padding: 5px 12px;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    margin-right: 8px;
    font-size: 14px;
}

/* 删除之前的工具提示样式，因为现在显示文字了 */
[title]:hover:after {
    display: none;
}

.btn-group .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 2px;
    font-weight: normal;
    white-space: nowrap;
}

.btn-group .btn i {
    font-size: 14px;
    margin-right: 4px;
}

/* 修改按钮组样式 */
.btn-group {
    display: flex;
    gap: 4px;
}

/* 修改按钮颜色 */
.btn-success {
    background-color: #52c41a;
    border-color: #52c41a;
}

.btn-primary {
    background-color: #1677ff;
    border-color: #1677ff;
}

.btn-warning {
    background-color: #faad14;
    border-color: #faad14;
    color: #fff;
}

.btn-warning:hover,
.btn-warning:focus {
    color: #fff;
    background-color: #faad14;
    border-color: #faad14;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #f8f9fa;
    padding: 14px 20px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 0;
    min-height: 44px;
    transition: box-shadow 0.2s;
}

.info-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.info-item.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
}

.info-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    width: 140px;
    min-width: 90px;
    margin-bottom: 0;
    margin-right: 16px;
    text-align: right;
    border: none;
    padding: 0;
    background: none;
    text-transform: none;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    color: #222;
    font-weight: 500;
    flex: 1;
    word-break: break-all;
    line-height: 1.6;
}

.info-value:empty::before {
    content: "暂无数据";
    color: #adb5bd;
    font-style: italic;
}

@media (max-width: 600px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 8px;
    }
    .info-label {
        width: auto;
        min-width: 0;
        margin-right: 0;
        margin-bottom: 4px;
        text-align: left;
    }
}