
/* 
 * AuroraNet FinView - 渐变极光与网络纵横金融科技网页设计样式
 * 关键词: 渐变极光, 网络纵横, 金融科技, 网页设计, 创意设计, 色彩搭配, 用户体验优化, 动效, 交互设计
 * 描述: 本样式表融合了渐变极光效果与网络纵横的视觉元素，专为金融科技行业打造。注重色彩搭配、排版布局及用户体验优化，传达科技感与未来感，同时确保专业性与亲和力。
 */

/* 全局样式设置 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #120A45 0%, #7B2CBF 100%);
    animation: aurora-move 15s linear infinite;
    background-size: 400% 400%;
}

/* 动画效果 - 极光流动 */
@keyframes aurora-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 容器样式 */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 头部导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #4B0082, #8A2BE2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.navbar a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 10px;
    font-family: 'Poppins', sans-serif;
}

.navbar a:hover {
    color: #FFD700;
    transition: color 0.3s ease;
}

/* 首页主标题样式 */
.main-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: bold;
    color: #FFD700;
    margin-top: 150px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* CTA按钮样式 */
.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #FFC90E, #FFD700);
    transform: scale(1.05);
}

/* 模块样式 */
.module {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* 标题样式 */
h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #4CAF50;
}

h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

h3 {
    font-size: 24px;
    margin-top: 20px;
}

/* 正文段落样式 */
p {
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 15px;
}

/* 代码块样式 */
pre {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 15px;
}

code {
    color: #00FFFF;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

th {
    background-color: #4CAF50;
    color: #FFFFFF;
}

td {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* 图片样式 */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}

/* 响应式设计 - 小尺寸手机 */
@media (max-width: 320px) {
    .main-title {
        font-size: 48px;
    }
    .navbar {
        flex-direction: column;
    }
}

/* 响应式设计 - 大尺寸手机 */
@media (max-width: 480px) {
    .main-title {
        font-size: 56px;
    }
}

/* 响应式设计 - 竖屏平板 */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    .module {
        margin: 15px 0;
    }
}

/* 响应式设计 - 中等屏幕 */
@media (max-width: 1024px) {
    .main-title {
        font-size: 60px;
    }
}

/* 响应式设计 - 桌面显示器 */
@media (max-width: 1200px) {
    .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* 响应式设计 - 大尺寸桌面显示器 */
@media (min-width: 1440px) {
    .main-title {
        font-size: 72px;
    }
    .cta-button {
        font-size: 20px;
        padding: 20px 40px;
    }
}

/* 粒子系统样式 */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: url('https://images.gptkong.com/demo/sample1.png') repeat;
    opacity: 0.3;
}

/* 侧边栏导航 */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(180deg, #4B0082, #8A2BE2);
    padding-top: 60px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
}

.sidebar a {
    display: block;
    color: #FFFFFF;
    padding: 15px 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.sidebar a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 内容区偏移 */
.content {
    margin-left: 220px;
    padding: 20px;
}

/* 折叠区域样式 */
.collapsible {
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    margin-top: 10px;
    border-radius: 5px;
}

.active, .collapsible:hover {
    background-color: #FF1493;
}

.content-collapsible {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.content-collapsible p {
    margin: 10px 0;
}

/* 提示信息样式 */
.reference-note {
    text-align: center;
    font-size: 14px;
    color: #FFD700;
    margin: 20px 0;
}

/* 图文并茂布局 */
.image-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
}

.image-text img {
    flex: 1 1 300px;
    margin-right: 20px;
}

.image-text div {
    flex: 2 1 500px;
}

/* 代码示例预览效果 */
.code-preview {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    overflow-x: auto;
}

.code-preview code {
    color: #00FFFF;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}

