:root {
  /* 主题颜色 */
  --theme-color: #05AAAC ;
  /* --base-background-color: #f7f7f7; */
  /*logo color: #017CC0, #054BA3, #05AAAC*/
}
/*标题栏主题文字属性设置*/
.sidebar>h1 {
  font-family: 'Microsoft YaHei';
  font-size: 30px;
  font-weight: 400;
}
.sidebar {
  padding: 0 !important;
  background-color: #4b5152 !important; /* 这里填入你想要的颜色，例如浅灰 */
  font-size: 17px !important;     /* 字体大小 */
  font-weight: 500 !important;    /* 加粗 */
  color: #05AAAC !important;    /* 字体颜色*/ 
  padding-left: 10px !important;
}

.sidebar-nav {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
/* 侧边栏二级标题（链接样式） */
.sidebar-nav li a {
    color: #ffffff !important; /* 【修改点】二级标题文字颜色（图中是白色） */
    font-size: 15px !important; /* 【修改点】字体大小 */
    font-weight: 400;
    padding-left: 20px !important; /* 左侧缩进，比一级标题多一点点 */
    line-height: 1.8;
    transition: all 0.3s; /* 平滑过渡效果 */
}
/* 二级标题：鼠标悬停（Hover）效果 */
.sidebar-nav li a:hover {
    color: #05AAAC  !important; 
}
/* 侧边栏标题：选中项样式 */
.sidebar-nav .active > a,
.sidebar-nav a.active,
.sidebar-nav li.active > a {
  color: #ffffff !important; /* 选中时的颜色：纯白（根据你的深色背景调整） */
  font-weight: bold !important;
  background-color: rgba(0, 0, 0, 0.2) !important; /* 选中项的背景色：稍微深一点 */
}

/*超链接样式*/
.markdown-section a {
  color: #1a4b8c !important; /* 这里替换成你想要的颜色（比如深蓝色） */
  font-weight: 500;          /* 可选：稍微加粗一点，更显眼 */
  text-decoration: none;     /* 可选：去掉链接默认的下划线 */
  transition: all 0.3s;      /* 添加平滑的过渡效果 */
}
/* 图片边缘形状和阴影 */
img {
  border-radius: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 25px;
}

.loading {
  color: #999;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.github-corner {
  position: fixed;
  top: 0;
  right: 0;
}

#docsify-darklight-theme {
  position: fixed;
  right: 3%;
}

.github-fab {
  margin: 0 !important;
  color: #fff;
}

