@import url(./font.css);

/*清理外壳*/
html,
body {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
}

html,
body {
  box-sizing: border-box;
  display: grid;
  place-items: center;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/*字体*/
html {
  font-family: "cjkFonts_allseto_v1", sans-serif;
}
p,
a,
li {
  font-size: 1em;
}

/*隐去滚条*/
*::-webkit-scrollbar {
  display: none;
}
* {
  scrollbar-width: none;
}

/* 滚条样式
::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 2px;
}

::-webkit-scrollbar-track {
  background-color: #ffffff;
}
*/

html {
  --main: #000;
  --mainbg: #fcf9ee;
  --highlight: #855522;
  --weak: #85552240;
}

html {
  background-color: var(--mainbg);
}

a {
  color: var(--highlight);
}

.weak {
  color: var(--weak);
}

/*布局框架*/
#out {
  width: 55%;
  height: 60%;
  display: flex;
  overflow: auto;
}
#left {
  flex: 0 0 30%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#right {
  flex: 1;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.content {
  width: 90%;
  height: auto;
  margin: 1em 0;
}

.content img {
  display: block;
  max-width: 95%;
  min-width: 50%;
  margin: 0.5em auto;
}

li {
  padding-left: 0;
  list-style-position: inside;
  list-style-type: "-";
  margin: 1em 0;
}
li.normal {
  list-style-type: "-";
}
li.openable {
  list-style-type: ">";
}
li.unopenable {
  list-style: "X";
}
