
/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    min-height: 100vh;
    overflow-x: hidden;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}
.panel {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}
.panel:hover {
    transform: translateY(-5px);
}
.left-panel, .right-panel {
    flex: 1 1 calc(50% - 20px);
    min-height: 300px;
}
@media (max-width: 768px) {
    .left-panel, .right-panel {
        flex: 1 1 100%;
    }
}
h1, h2, h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}
h1 {
    font-size: 2.5rem;
    margin-top: 20px;
}
p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}
a {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
a:hover {
    color: #d35400;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
button {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
button:hover {
    background-color: #d35400;
}
.data-flow {
    animation: flowAnimation 2s infinite;
}
@keyframes flowAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
/* 示例文章样式 */
article {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}
pre {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}
blockquote {
    background: #ecf0f1;
    padding: 10px;
    border-left: 5px solid #e67e22;
    margin: 15px 0;
    font-style: italic;
}
ol {
    padding-left: 20px;
    margin-bottom: 15px;
}
li {
    margin-bottom: 5px;
}
/* 提示信息 */
.tip {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin: 20px 0;
}

