* {
  box-sizing: border-box;
}
body {
  background: #eee;
  margin: 20px 0;
  font-family: "黑体", serif;
}
article {
  width: 21cm;
  min-height: 59.4cm;
  background-color: white;
  margin: 0 auto;
  overflow: auto;
  padding: 1em;
  font-size: 16px;
}
.row {
  line-height: 1.9;
}
.pc-row {
  display: flex;
}
.row-title {
  font-weight: bold;
}
.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title .name {
  border-bottom: none;
}
h1 {
  font-size: 22px;
  border-bottom: 1px solid #ccc;
  /*color: #054ff5;*/
}
.sub-title-compatible {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  /*color: #14e345;*/
}
.sub-title-compatible div {
  flex: 1;
}
.sub-title-compatible > div:last-child {
  text-align: right;
}
h1 {
  margin: 12px 0;
}
a {
  /*color: #f60;*/
  color: #777777;
  /*font-weight: bold;*/
}
.cat-item {
  margin: 10px 0 0 0;
}
.tag {
  /*color: #f60;*/
  /*font-weight: bold;*/
}
@media (max-width: 500px) {
  body {
    margin: 0;
  }
  article {
    width: auto;
    height: auto;
  }
  .sub-title-compatible {
    display: grid;
    font-size: 18px;
  }
  .sub-title-compatible div {
    display: grid
  }
  .sub-title-compatible > div:last-child {
    text-align: left;
  }
  .pc-row {
    display: grid;
  }
  .pc-interval {
    display: none;
  }
}
@media print {
  body {
    margin: 0;
  }
  .page {
    margin-top: 20px;
  }
}
