
/* 全局样式 */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #121212, #1E1E1E);
    color: #fff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Bungee', sans-serif;
    text-shadow: 2px 2px 5px rgba(255, 0, 255, 0.5);
}

a {
    color: #FF7F50;
    text-decoration: none;
}

a:hover {
    text-shadow: 0 0 10px #FF69B4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.header {
    background: linear-gradient(45deg, #87CEFA, #EE82EE);
    color: #121212;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px #FF69B4;
}

.section {
    background-color: #1E1E1E;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.image-grid img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

.code-block {
    background-color: #2C3E50;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    overflow-x: auto;
    font-family: monospace;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #FF7F50;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #FF4500;
    color: #fff;
}

.button {
    background-color: #FF4500;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 14px;
    }
}

