
/* 基础样式 */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #000046, #1cb5e0, #00ff88);
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
}
h1, h2, h3 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h1 {
    font-size: 3rem;
    color: #ff9100;
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-top: 40px;
}
h3 {
    font-size: 2rem;
    color: #00ff88;
    margin-top: 30px;
}
p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
a {
    color: #ff9100;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ff9100;
}
button {
    background-color: #ff9100;
    color: #000046;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
button:hover {
    transform: scale(1.1);
}
pre {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}
code {
    color: #ff9100;
    font-family: 'Courier New', monospace;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.1);
}
th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
th {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.module {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    z-index: -1;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 0.9rem;
    }
    .container {
        padding: 10px;
    }
}

