
/* 基础样式设置 */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    background: linear-gradient(to bottom, #000046, #1CB5E0);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 10px;
}
p {
    line-height: 1.6;
    margin-bottom: 15px;
}
a {
    color: #6200EA;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.module {
    flex: 1 1 300px;
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.module:hover {
    transform: translateY(-5px);
}
.panel {
    position: relative;
    margin-top: 20px;
    padding: 20px;
    background: radial-gradient(circle, #1A237E, #6200EA);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFC107;
    color: #000000;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out;
}
.button:hover {
    transform: scale(1.1);
}
code {
    display: block;
    background-color: #1E1E1E;
    color: #6200EA;
    padding: 10px;
    border-radius: 4px;
    white-space: pre-wrap;
    word-break: break-word;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    border: 1px solid #6200EA;
    padding: 10px;
    text-align: left;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    code {
        font-size: 14px;
    }
}

