/* 新增居中样式 */
body {
    margin: 0;
    padding-top: 70px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 14px;
}
.container {
    max-width: 740px;
    width: 90%;
    margin: 10px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
}
/* 优化表格对齐 */
.refresh-btn {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}
.site-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}
.site-table th,
.site-table td {
    padding: 14px 20px;
    text-align: center;
}
.site-table thead {
    background-color: #007BFF;
    color: white;
}
.site-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}
.site-table tbody tr:hover {
    background-color: #e9ecef;
}
.site-url {
    color: #007BFF;
    text-decoration: none;
    font-family: monospace;
}
.related-links {
    margin-top: 30px;
    text-align: center;
}
/* 新增移动端适配 */
@media screen and (max-width: 480px) {
    body {
        padding: 60px 12px 10px;
    }

    .site-table th,
    .site-table td {
        padding: 12px 8px;
        font-size: 14px;
        white-space: nowrap; /* 禁止换行 */
    }

    .site-table td:first-child {
        font-weight: 500; /* 名称加粗 */
    }

    .site-url {
        font-size: 13px; /* 缩小地址字号 */
    }
}

/* 桌面端优化 */
@media screen and (min-width: 768px) {
    .site-table th,
    .site-table td {
        padding: 16px 24px;
    }
}

.disclaimer {
    margin-top: 30px;
    padding-top:15px;
    border-top:1px solid #eee;
    font-size:13px;
    color:#666;
    line-height:1.6;
    text-align:center;
}