body {
    text-align: center;
}

h1 {
    margin-top: 20px;
}

h1 img {
    width: 120px;
    height: 120px;
}

h2 {
    font-size: 28px;
    font-weight: normal;
    color: #3C5675;
    margin-bottom: 0
}

.content {
    margin-top: 20px;
}

.content p {
    margin: 20px;
}

.content form {
    width: 500px;
    margin: 0 auto 20px;
}

.env-panel {
    width: 920px;
    max-width: 95%;
    margin: 0 auto 20px;
    text-align: left;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    box-shadow: 0 0 8px #cccccc;
    overflow: hidden;
}

.env-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #eef2f7;
}

.env-panel-desc {
    display: inline-block;
    margin-left: 10px;
    color: #8a8a8a;
    font-size: 12px;
    font-weight: normal;
}

.env-panel-body {
    padding: 0;
}

.env-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.env-table th,
.env-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f7;
    text-align: left;
    vertical-align: top;
}

.env-table th {
    background: #fafafa;
    color: #666;
    font-weight: 600;
}

.env-table tr:last-child td {
    border-bottom: none;
}

.env-badge {
    display: inline-block;
    min-width: 48px;
    padding: 2px 10px;
    border-radius: 999px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.env-badge.ok {
    background: #ecfdf3;
    color: #15803d;
}

.env-badge.warn {
    background: #fff7ed;
    color: #c2410c;
}

.env-badge.err {
    background: #fef2f2;
    color: #dc2626;
}

.env-table .muted {
    color: #8a8a8a;
}

.content form .bg {
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 14px 14px;
    box-shadow: 0 0 8px #cccccc;
}

.content form .bg .layui-card {
    background-color: #fafafa;
    color: #ff8080;
    font-size: 15px;
    font-weight: bold;
}

.content form .layui-form-item:last-child {
    margin-bottom: 0 !important;
}

.content form .layui-btn {
    margin-top: 20px;
}

.content .layui-elem-field legend {
    font-size: 16px;
    color: #8a8a8a;
}

.content .tips {
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    color: #eca6a6
}

.content .admin-tips {
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    color: #eca6a6
}

.content .desc {
    font-size: 16px;
    color: #4E5465;
    margin-bottom: 30px;
}

.content .desc a {
    color: #07adeb;
    margin-right: 10px;
}

.content .desc a:first-child {
    margin-left: 10px;
}

.error {
    background: #D83E3E;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .content form,
    .env-panel {
        width: 95%;
    }

    .env-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .env-panel-desc {
        display: block;
        margin: 6px 0 0;
    }
}