html {
  --change-font: 0px;
}

body {
  padding: 0px 20px;
  max-width: 600px;
  margin: 0 auto;
}

body * {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Arial, PingFang SC, Microsoft YaHei, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol !important;
}

h1 {
  font-size: 28px;
  font-size: calc(28px + var(--change-font));
  height: 42px;
  line-height: 42px;
  transform-origin: top left;
  font-weight: bold;
  color: #0c0c0c;
  letter-spacing: 3px;
  margin-bottom: 16px;
  margin-top: 12px;
  /* text-shadow: 0px 0px 1px #999999; */
  flex-grow: 1;
  transition: all 0.3s ease;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.night h1 {
  color: #e8e8e8;
}

#time {
  font-size: 14px;
  font-size: calc(14px + var(--change-font));
  color: #8A8A8D;
  /* text-shadow: 0px 0px 1px #999999; */
  position: relative;
  display: flex;
  margin-bottom: 20px;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.night #time {
  color: #B9B9B9;
}

/* 语音播报 */
.audio {
  position: relative;
  display: none;
  height: 56px;
  background: linear-gradient(98deg, #F6F6F6 0%, #E2E2E2 100%);
  /* background-color: #F7F7F7; */
  border-radius: 4px;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.night .audio {
  background: linear-gradient(98deg, #373737 0%, #424242 100%);
}

.audio .bg {
  position: absolute;
  /* height: 40px;
  width: 40px;    */
  height: 56px;
  right: 0px;
  top: 0;
}

.audio .main {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.audio .main .play_btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio .main .play_btn img {
  height: 32px;
  width: 32px;
  display: none;
  background: #FE2D46;
  border-radius: 50%;
  box-sizing: border-box;
}

.audio .main .duration {
  font-size: 13px;
}

.audio .main .size {
  font-size: 13px;
}

.audio .main .play_btn[data-state=buffing] img.loading,
.audio .main .play_btn[data-state=playing] img.pause,
.audio .main .play_btn[data-state=pause] img.play {
  display: block;
}

.audio .main .play_btn img.loading {
  animation: loading 0.5s linear infinite;
  padding: 4px;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.audio .main .info {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-size: calc(12px + var(--change-font));
  margin-right: 16px;
}

.night .audio .main .info {
  color: #e8e8e8;
}

.audio .main .info .divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #999999;
  margin: 0 6px;
}

.audio .main .des {
  flex-grow: 1;
}

.night .audio .main .des {
  color: #e8e8e8;
}

.audio.show {
  display: block;
}

.detail {
  margin-top: 32px;
}

.detail h2 {
  font-weight: bold;
  font-size: 18px;
  font-size: calc(18px + var(--change-font));
  line-height: 34px;
  color: #0c0c0c;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  margin-top: 24px;
  text-align: justify;
}

.night .detail h2 {
  color: #e8e8e8;
}

.detail p {
  color: #8A8A8D;
  overflow: hidden;
  font-size: 16px;
  font-size: calc(16px + var(--change-font));
  line-height: 30px;
  text-align: justify;
}

.night .detail p {
  color: #B9B9B9;
}

.detail p a {
  color: inherit;
  border-bottom: 1px solid;
  text-decoration: none;
}

.detail p.pre-end:last-child {
  margin-top: 24px;
}