/* 通用样式 */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9; /* 柔和的浅灰紫背景 */
    color: #333; /* 主文字颜色 */
    line-height: 1.6;
}

h1 {
    text-align: center;
    color: #3a3d55; /* 高级的灰蓝色 */
    margin: 20px 0;
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: 0.05em;
}


/* 段落样式 */
p {
    text-align: center;
    font-size: 1.2em;
    margin: 15px 0;
    color: #555;
}



table {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff; /* 表格背景色 */
    box-shadow: 0 8px 30px rgba(72, 84, 159, 0.1); /* 表格阴影 */
}

th,
td {
    padding:5px;
    text-align: left;
    vertical-align: middle;
    font-size: 1.1em;
    word-break: break-word; /* 防止长文本溢出 */
}

th {
    background-color: #5c67f2; /* 高级的亮蓝紫 */
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

th::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent); /* 表头底部渐变 */
}

td {
    background-color: #ffffff;
}

tr:nth-child(odd) td {
    background-color: #f9fafb; /* 柔和的浅灰色 */
}

tr:nth-child(even) td {
    background-color: #f3f4f6;
}

tr:hover td {
    background-color: #e0e7ff; /* 鼠标悬停时的浅蓝色 */
    transition: background-color 0.3s ease-in-out;
}


/* 加载提示 */
.loading {
    text-align: center;
    font-size: 1.2em;
    color: #6b7280; /* 中性灰色 */
    font-style: italic;
}

.secret {
    display: none;
}

.reverse-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    table {
        width: 100%;
        margin: 10px 0;
    }

    th,
    td {
        padding: 10px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    th,
    td {
        padding: 8px;
        font-size: 0.9em;
    }
}

.post-content{
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
.post-content:hover {
    text-decoration: none;
}
