
/* 基础样式 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0A1F44, #000000);
    color: #E0E0E0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background: rgba(10, 31, 68, 0.9);
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
header h1 {
    margin: 0;
    font-size: 2rem;
    color: #36B37E;
}
.notice {
    text-align: center;
    padding: 10px;
    background: rgba(54, 179, 126, 0.8);
    color: #ffffff;
    font-size: 1rem;
}
.main-content {
    flex: 1;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
section {
    margin-bottom: 40px;
}
h2, h3, h4 {
    color: #36B37E;
    margin-bottom: 15px;
}
p {
    margin-bottom: 15px;
    font-size: 1rem;
}
pre {
    background: #1E2A38;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 20px;
}
code {
    color: #FF8A00;
    font-family: 'Courier New', Courier, monospace;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.card {
    background: linear-gradient(135deg, #0A1F44, #000000);
    border: 1px solid #36B37E;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}
.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}
.card h4 {
    margin-top: 0;
    color: #36B37E;
}
.card p {
    font-size: 0.9rem;
}
.button {
    background-color: #36B37E;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #2BA66B;
}
@media (max-width: 1440px) {
    body {
        padding: 10px;
    }
}
@media (max-width: 1200px) {
    header h1 {
        font-size: 1.8rem;
    }
}
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }
    .card {
        padding: 15px;
    }
}
@media (max-width: 320px) {
    body {
        padding: 5px;
    }
    header h1 {
        font-size: 1.2rem;
    }
    .button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
/* 动画效果 */
@keyframes aurora-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
body {
    background: radial-gradient(circle, rgb(255, 87, 34), transparent);
    animation: aurora-move 15s linear infinite;
}
/* 内部链接样式 */
a {
    color: #36B37E;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/* 代码块样式 */
pre code {
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
}
/* 图表样式 */
.chart {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
/* SVG 图标 */
.svg-icon {
    width: 24px;
    height: 24px;
    fill: #36B37E;
    vertical-align: middle;
}

