body {
 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  margin: 0;
  font-family: "Microsoft YaHei", sans-serif;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
 .video-bg-container {
    position: fixed;      /* 固定位置，不随滚动 */
    top: 0;
    left: 0;
    width: 100vw;         /* 确保占满整个可视宽度 */
    height: 100vh;        /* 确保占满整个可视高度 */
    overflow: hidden;
    z-index: -1;          /* 放在所有内容下方 */
    background: black;    /* 视频加载前的背景 */
  }
 .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* 保持比例同时裁剪铺满整个区域 */
    object-position: center; /* 居中裁切 */
    z-index: -1;
    pointer-events: none;
  }

  /* 可选：添加一层暗遮罩增强可读性 */
  .video-bg-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    z-index: 0
  }

li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    
}
li a:hover {
    background-color: #555;
    color: white;
}
li{
  list-style-type: none; /* 去掉前面的点 */
  float: left; 
  margin-right: 10px;
}
ul a {
    color: #000;
    text-decoration: none;
}
ul a:hover {
    color: white;
}
ul{
	padding: 0;
}
.header {
  background-color: rgb(236, 236, 236,0.7);
  padding: 15px;
   margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.card {
  background-color: rgba(236, 236, 236, 0.8);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.row {
  display: flex;              /* 关键：flex 布局 */
  justify-content: center;    /* 居中整个行 */
  gap: 20px;                  /* 左右间距 */
  padding: 20px;
  flex-wrap: nowrap;          /* 不自动换行 */
}

.leftcolumn {
  flex: 1 1 60%;
}

.rightcolumn {
  flex: 1 1 30%;
}
 .navbar {
  background-color: rgba(236, 236, 236, 0.7);
  overflow: hidden;
  display: flex;
  justify-content: left; /* 居中对齐 */
  gap: 30px; /* 每个链接之间的间距 */
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 导航链接 */
.navbar a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 16px;
  transition: background 0.3s, color 0.3s;
  border-radius: 8px;
}

/* 悬停时 */
.navbar a:hover {
  background-color: #555;
  color: white;
}
:root {
    --waline-theme-color: #f2acee !important;
    --waline-active-color: #f9a8ed !important;
    --waline-bgcolor: rgba(255, 255, 255, 0.0) !important; /* 评论区背景透明 */
    --waline-bgcolor-light: rgba(255, 255, 255, 0.5) !important; /* 输入框半透明 */
  }

  /* 2. 整体容器美化 */
  #waline {
    width: 95%;            /* 宽度撑开 */
    margin: 0 auto;        /* 居中 */
    padding: 1.5rem;       /* 增加内边距 */
    background: rgba(255, 255, 255, 0.85); /* 给整个评论区加个磨砂白背景 */
    border-radius: 15px;   /* 圆角 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 淡淡的阴影 */
  }

  /* 3. 修复输入框可能太窄的问题 */
  .wl-header {
    display: flex;
    gap: 10px;
  }
  .wl-header-item {
    flex: 1; /* 让昵称、邮箱、网址三个框自动平分宽度 */
  }
  
  /* 4. 输入框样式微调 */
  .wl-input {
    border-radius: 8px !important;
    background-color: rgba(255, 255, 255, 0.6) !important; /* 输入框底色 */
    transition: all 0.3s ease;
  }
  .wl-input:focus {
    background-color: #fff !important; /* 点击输入时变白 */
    box-shadow: 0 0 5px rgba(2, 255, 179, 0.5) !important; /* 聚焦时发绿光 */
  }

  /* 5. 提交按钮美化 */
  .wl-btn.primary {
    border-radius: 20px !important; /* 按钮变圆 */
    padding: 0 25px !important;
    font-weight: bold;
    color: #333 !important; /* 按钮文字颜色 */
  }
  
  /* --- 留言板美化结束 --- */