/* CSS文件来源-忆雨的小说工作室 */
root {
    --primary: #6c5ce7;
    --secondary: #a29bfe;
    --dark: #2d3436;
    --light: #f5f6fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--light);
    background: var(--light);
    p {
    font-size: 60px; /* 使用像素单位设置段落字体大小 */
}
    h1 {
    font-size: 10px; /* 使用像素单位设置段落字体大小 */
}
.header {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../index_files/bg.jpg') center/cover;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
}
