body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.panel-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.panel {
    width: 280px;
    height: 45px;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    margin: 5px;
    border-radius: 5px;
}

.panel-data {
    display: flex;
    align-items: center;
}

.panel-data p {
    margin: 0;
    white-space: nowrap;
}

.panel-button {
    background-color: #1E9FFF;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.panel-button:hover {
    background-color: #0d84e8;
}

.layui-table tr td {
    background-color: black;
    color: #fff;
}

.layui-table thead tr {
    background-color: black;
    color: #fff;
    /* 设置文本颜色为白色 */
}

.layui-table td,
.layui-table th,
.layui-table-col-set,
.layui-table-fixed-r,
.layui-table-grid-down,
.layui-table-header,
.layui-table-page,
.layui-table-tips-main,
.layui-table-tool,
.layui-table-total,
.layui-table-view,
.layui-table[lay-skin=line],
.layui-table[lay-skin=row] {
    border-color: #313131;
    /* 修改为你期望的颜色 */
}

@keyframes colorPulse {
    0% {
        color: #3498db;
    }

    50% {
        color: #9b59b6;
    }

    100% {
        color: #3498db;
    }
}

@keyframes scaleUp {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.panel-data p {
    font-size: 18px;
    color: #3498db;
    display: inline-block;
    margin-right: 10px;
}

.number {
    animation: colorPulse 2s infinite, scaleUp 1s infinite alternate;
    font-size: 20px;
}