/* ===== 全局变量 ===== */
:root{
  --bg:#070A12;
  --card:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.14);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.6);
  --accent:#7c5cff;
  --accent2:#22d3ee;
  --radius:18px;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --text-color: rgba(255, 255, 255, 0.92);
  --glass-blur: 10px;
}
*{ box-sizing:border-box; }
/* ===== 页面基础 ===== */
body{
  margin:0;
  min-height:100vh;
  font-family: ui-sans-serif, system-ui, "Microsoft YaHei", Arial;
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 20% 10%, rgba(124,92,255,.25), transparent 55%),
    radial-gradient(900px 500px at 90% 30%, rgba(34,211,238,.18), transparent 55%),
    var(--bg);
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  /*overflow: hidden; */
  color: var(--text);
}
/* 页头导航页设计*/
/* 1. 基础重置 */

.logo-1 img {
    /* 将高度从 40px/50px 增加到 80px 或更高 */
    height: 70px;
    width: auto; /* 宽度自动缩放，保持比例 */
    width: auto; /* 宽度自动缩放，保持比例 */
    color: white;
    /* 增加一点上下间距，防止贴边 */
    margin-top: 0px;
    margin-bottom: 0px;

    /* 增强视觉效果：给 Logo 增加一点白色的柔光，防止背景视频太暗看不清 */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));

    transition: transform 0.3s ease; /* 增加鼠标悬停动画效果 */
}


/* 3. 覆盖层（让文字更清晰） */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 黑色半透明遮罩 */
    z-index: -99;
}

/* 4. 导航栏样式（浮在视频上） */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    background: transparent; /* 透明背景 */
    color: white;
    position: relative;
    z-index: 10;
}

.logo-1 {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    /* 设置为斜体 */
    font-style: italic;

    /* 进一步微调倾斜度，让它看起来更有力量感 */
    transform: skewX(-5deg);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.nav-links a:hover {
    border-bottom: 2px solid #fff;
}

/* 5. 主体内容居中 */
.hero-section {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-section h1 { font-size: 4rem; margin-bottom: 10px; }
.hero-section p { font-size: 1.5rem; opacity: 0.8; }

/* 滚动容器样式 */
.scrolling-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 垂直居中 */
  height: 100vh;
  width: 100vw;
  /* overflow: hidden; /* 禁止滚动滚轮 */
  position: relative;
}


/* 组合内容区域 */
.content-container {
  display: flex; /* 水平布局 */
  justify-content: flex-start; /* 保持内容的左对齐 */
  align-items: center; /* 垂直居中对齐 */
  width: 100%;
  padding: 0 20px;
  margin-top: 20px; /* 增加顶部间距 */
}

/* 文本容器，保持左对齐 */
.text-container {
  flex: 1; /* 使文本占据可用空间 */
  margin-right: 20px; /* 使文本和图片之间有间距 */
}


/* 玻璃面板样式 */
.glass-panel {
  background: var(--glass-bg);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  color: var(--text);
  width: 80%;
  max-width: 800px;
  margin: 20px 0; /* 确保每个面板之间有间距 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out; /* 只做透明度的动画 */
  position: fixed; /* 固定位置 */
  top: 50%; /* 垂直居中 */
  transform: translateY(-50%); /* 垂直居中 */
}

/* 使玻璃面板在可见时渐变显示 */
.glass-panel.visible {
  opacity: 1;
  visibility: visible;
}

/* 标题样式 */
.glass-panel h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

/* 副标题样式 */
.glass-panel h2 {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* 鼠标滚动时的效果 */
body {
  /* overflow: hidden; */
}

/* 遮罩 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* 使玻璃面板在可见时渐变显示 */
.glass-panel.visible {
  opacity: 1;
  visibility: visible;
}

/* 文本容器，保持左对齐 */
.text-container {
  flex: 1; /* 使文本占据可用空间 */
  margin-right: 20px; /* 使文本和图片之间有间距 */
}

.glass-panel h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.glass-panel h2 {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.8;
}
.text-left {
        text-align: left;  /* 左对齐 */
        font-size: 30px;   /* 加大字号，您可以根据需要调整 */
        font-weight: bold; /* 加粗文本 */
    }

.text-left_1 {
        text-align: left;  /* 左对齐 */
        font-size: 15px;   /* 加大字号，您可以根据需要调整 */
    }




