
.dark  #dark{
  display: block;
}
.dark  #light{
  display: none;
}
/* light */
 #dark{
  display: none;
}
  #light{
  display: block;
}
 p{
  color:inherit;
}

.a.d {
  cursor: pointer;
  display: block;
  margin: 1em auto;
  width: fit-content;
}
.b {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 24px;
  border: 3px solid transparent;
  box-sizing: content-box;
  z-index: 1;
}
.b::after {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 3px #d1d5da;
}
.c {
  top: -2px;
  left: -2px;
  width: 28px;
  height: 28px;
  background-color: #2f363d;
  transition: all 0.3s cubic-bezier(0.4, 0.03, 0, 1);
}
.c::after,
.c::before {
  content: "";
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  background-color: #ffdf5d;
}
.c,
.c::after,
.c::before {
  position: absolute;
  border-radius: 50%;
}
.c::after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  background-color: inherit;
}
.c,
.c::after,
.c::before {
  position: absolute;
  border-radius: 50%;
}
.dark .c {
  transition: all 0.3s cubic-bezier(0.4, 0.03, 0, 1);
  transform: translateX(18px);
}
.dark .a .b::after {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 3px var(--inside-accent-color);
  background-color: var(--inside-accent-color);
}
/* fix fancy-box 预览图片后滚动条回到顶部 */
.fancybox-active{
  height:100% !important;
}
/* fix 详情页 输入框遮挡住右侧展开栏 */
.φbc{
  z-index:11 !important;
}