<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>天地阴阳</title>
<style>
/* 重置默认样式 */
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
/* 基础布局 */
html, body {
height: 100%;
}
.container {
height: 100%;
display: flex;
flex-direction: column;
position: relative;
}
/* 天地背景 */
.sky {
flex: 1;
background: linear-gradient(to bottom, #87CEEB, #E0F6FF);
}
.earth {