/* 页面背景和基本布局 */
.about-page {
  background: transparent;
  min-height: 100vh;
  padding: 40px 0; /* 上下留白 */
  display: flex;
  flex-direction: column;
  align-items: center; /* 确保所有子元素水平居中 */
  flex: 1;
}

/* 顶部头像和标题容器 */
.about-header {
  text-align: center; /* 居中内容 */
  margin-bottom: 50px; /* 增加与下方内容的间距 */
  position: relative;
  z-index: 10;
}

/* 居中的单个头像 */
.about-avatar {
  width: 150px; /* 调整头像大小 */
  height: 150px;
  border-radius: 50%;
  border: 4px solid white; /* 调整边框 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  /* 移除定位，让其自然居中 */
}

/* 页面标题样式 */
.about-title {
  margin-top: 15px;
  font-size: 3em;
  color: #ffa4a4; /* 假设标题颜色为白色，与背景搭配 */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.content-container {
  width: 80%; /* 控制整体宽度 */
  max-width: 800px;
  margin: 0 auto; /* 核心：左右外边距自动，实现水平居中 */
  line-height: 250%;
  padding: 50px; /* 可选：增加内边距，让内容与容器边缘有间距 */
  box-sizing: border-box; /* 确保内边距和边框不会增加总宽度 */
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px); 
  border-radius: 25px; /* 可选：圆角边框 */
  box-shadow: 8px 8px 3px rgba(0, 0, 0, 0.3);
  margin-top: 20px; /* 可选：调整与上方导航的间距 */
  font-size: 1.2em; /* 可选：调整字体大小 */
  text-shadow:  1px 1px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: 50px; /* 可选：调整与下方页脚的间距 */
}

.about-content {
  margin-bottom: 25px; /* 与标题的间距 */
  font-size: 1em; /* 调整内容字体大小 */
  color: #fff; /* 假设内容颜色为白色 */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* 添加文字阴影 */
}

.about-content a {
  color: #ffa4a4;
  border-bottom: 1px solid #ffa4a4;
  text-shadow: 0px 0px 3px rgba(23, 22, 22, 0.5);
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6 {
  margin: 1.75rem 0;
  font-weight: bolder !important;
  line-height: 180%;
}

.about-content ul {
  margin-left: 2rem;
  margin-bottom: 1.75rem;
}
.about-content ol {
  margin-left: 1.75rem;
  margin-bottom: 1.75rem;
}
.article-content ol * ol,
.article-content ul * ul {
  margin-left: 1rem;
  margin-bottom: 0;
}

.about-content hr {
  border-top: 1px dashed #fff !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  margin-bottom: 1.75rem !important;
}

@media (max-width: 768px) {
  .content-container {
    width: 95%; 
    padding: 20px; 
  }
}

@media (max-width: 768px) {
  .about-content {
    line-height: 200%; 
  }

  .about-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .about-content pre {
    padding: 1rem 1rem;
  }
  
  .about-content code {
    font-size: 0.9em;
  }
}


.v[data-class=v] .vinput {
color: #fff !important; 
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
border: none;
resize: none;
outline: none;
padding: 10px 5px;
max-width: 100%;
font-size: 1rem !important;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

/* 修改 Valine 评论预览框的字体颜色 */
.v[data-class=v] .vpreview p{
  color: #fff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.v[data-class=v] .vwrap {
border: 2px solid rgba(255, 255, 255, 0.9) !important;
border-radius: 16px !important;
margin-bottom: 10px;
overflow: hidden;
position: relative;
padding: 10px;
}

/* 修改 Valine 输入框 placeholder 的样式 */
.v[data-class=v] .vinput::placeholder {
  color: #fff !important; /* 将颜色改为黑色 */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  opacity: 1 !important; /* 可选：设置透明度，让提示词不那么突兀 */
}

.v[data-class=v] .vcol.vcol-70 .vsubmit.vbtn {
  border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
  color: rgba(255, 255, 255, 0.8)!important;
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 8px;
}

/* 悬停时的样式 */
.v[data-class=v] .vcol.vcol-70 .vsubmit.vbtn:hover {
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: #fff;
}

.vcards .vcard,
.vcards .vcard * {
  color: rgba(255, 255, 255, 0.9) !important;
}

.v[data-class=v] .vicon {
cursor: pointer;
fill: #ffffff !important;
}

.v[data-class=v] .vempty {
padding: 1.25em;
text-align: center;
color: #f5f4f4 !important;
overflow: auto;
}

@media (max-width: 768px) {
  .v[data-class=v] .vwrap {
    padding: 5px; 
  }

  .v[data-class=v] .vcol.vcol-70 .vsubmit.vbtn {
    padding: 6px 12px; 
  }
}

/* pre , code */
.about-content,
.about-content div,
.about-content div pre,
.about-content div pre code {
  overflow-x: auto !important;
}

.about-content pre {
  padding: 1rem 2rem;
  margin-bottom: 1.75rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3ch;
  line-height: 150%;
}

.about-content code {
  padding: 3px 5px;
  white-space: pre;
}