/* 定义滚动条宽度（竖向）、高度（横向）及背景（容器） */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #f5f6f7;
  border-radius: 10px;
}

/* 定义滚动条轨道 */
::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* 定义滚动条滑块 */
::-webkit-scrollbar-thumb {
  background-color: #0003;
  border-radius: 10px;
  cursor: pointer;
}

/* 去除底部白点 */
::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}

/* 滑块hover效果 */
::-webkit-scrollbar-thumb:hover {
  background: #B2B2B2;
}

/* 英文字体 */
@font-face {
  font-family: 'englishFont';
  src: url('en.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* 中文字体 */
@font-face {
  font-family: 'chineseFont';
  src: url('zh.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* 表情字体 */
@font-face {
  font-family: 'emojiFont';
  src: url('emoji.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: englishFont, chineseFont, emojiFont, sans-serif !important;
  box-sizing: border-box;
}

body {
  margin: 0;
  width: 100%;
  min-height: 101vh;
  background-color: #f5f6f7;
  font-size: 15px;
  color: #403e3e;
  background-image: url("bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.7;
}

/* 公用标题 */
.common-title {
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #eee;
  font-size: 14px;
}

.common-title span:nth-child(2) {
  display: inline-block;
  margin-left: 6px;
}

/* 底部 */
.footer {
  text-align: center;
  margin: 50px 0 20px 0;
  font-size: 14px;
  color: #555;
}

.footer a {
  text-decoration: none;
  color: #555;
}

.footer a:hover {
  color: #403e3e;
}

/* 管理 */
.manager {
  position: fixed;
  right: 0;
  top: 100px;
  padding: 10px;
  background: #fff;
  border-radius: 10px 0 0 10px;
}

.manager a {
  display: block;
  font-size: 13px;
  text-decoration: none;
  color: #999;
  transition: all .3s;
  border-bottom: 1px dashed #fff;
  margin: 5px 1px;
}

.manager a:hover {
  color: #444;
  border-bottom: 1px dashed #666;
}