.activity-panel {
    padding: 20px;
    box-sizing: border-box;
    min-height: 400px;
    background: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
}
/* 无数据状态 */
.no-data {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.no-data img {
    width: 143px;
    height: 107px;
    margin: 0 auto 16px;
}
.no-data p {
    font-size: 14px;
    color: #444444;
}
/* 数据表格容器 */
.activity-table {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 16px;
}
.activity-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.activity-table thead tr {
    background: #E5E5E5;
}
.activity-table th {
    height: 47px;
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    text-align: center;
    border: 1px solid #E8E8E8;
    padding: 0 8px;
    box-sizing: border-box;
}
.activity-table tbody tr {
    border-bottom: 1px solid #E8E8E8;
}
.activity-table tbody tr:hover {
    background: rgba(113,163,255,0.3);
}
.activity-table td {
    height: 47px;
    font-size: 16px;
    color: #99a1a4;
    text-align: center;
    border: 1px solid #E8E8E8;
    padding: 0 8px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* ========== 分页 ========== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding-top: 10px;
}

.page-info {
    font-size: 14px;
    color: #666666;
    margin-right: 6px;
}

.page-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-btn {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
    font-size: 13px;
    color: #333333;
    background: #FFFFFF;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: #016FFF;
    color: #016FFF;
}

.page-input {
    width: 40px;
    height: 28px;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
    text-align: center;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
}