html {
      height: 100%;
    }

    body {
      height: 100%;
      overflow: hidden;
      margin: 0;
      padding: 0;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      color: #ffffff;
      background: #000000;
    }

    #mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      background-color: rgba(0, 0, 0, 0.5);
    }

    #title {
      font-size: 20px;
    }

    #summary {
      font-size: 14px;
    }

    #summary a {
      color: white;
    }

    #startBtn {
      display: none;
      color: #ffffff;
      cursor: pointer;
      border-radius: 10px;
      background-color: #000000;
      padding: 0 10px;
      text-align: center;
      font-size: 16px;
      line-height: 40px;
      position: fixed;
      bottom: 80px;
      box-sizing: border-box;
      user-select: none;
    }

    #startBtn:hover {
      filter: brightness(120%);
      border: 2px solid transparent;
    }

    .review {
      border: 1px solid transparent;
      border-radius: 5px;
      color: #777;
      display: flex;
      font-size: 12px;
      align-items: center;
      padding: 10px;
      margin: 5px 0;
      position: absolute;
      bottom: 80px;
    }

    .progress {
      background-color: rgba(100, 100, 100, 0.2);
      border-radius: 5px;
      position: relative;
      margin: 0 10px;
      /*height: 10px;*/
      width: 200px;
    }
    
    #progress {
        color: #FFFFFF;
        text-shadow: black 0.1em 0.1em 0.2em;
    }

    .progress-done {
      background: linear-gradient(
        to left,
        rgb(0,254,255),
        rgb(244,15,194)
      );
      box-shadow: 0 3px 3px -5px rgb(242, 112, 156),
        0 2px 5px rgb(242, 112, 156);
      border-radius: 5px;
      /*height: 10px;*/
      width: 0;
      transition: width 0.8s ease 0.3s;
      text-align: right;
    }

    .percent {
      color: #ffffff;
    }

    .loading-wrap {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: #fff;
    }

    .center {
      text-align: center;
    }

    .load {
      position: absolute;
      top: 30%;
      text-align: center;
      width: 100%;
    }

    .percent {
      font-size: 14px;
      color: #ccc;
    }

    .line {
      width: 90%;
      margin: 0 5%;
      position: relative;
      background: #ccc;
      height: 3px;
      margin-bottom: 10px;
    }

    .after {
      content: "";
      height: 3px;
      position: absolute;
      background: chartreuse;
      width: 0%;
      left: 0;
    }

    #container {
      position: relative;
    }

    .read {
      position: absolute;
      z-index: 2;
      top: 55px;
      bottom: 5px;
      color: #ffffff;
      padding: 3px;
    }

    .zan {
      position: absolute;
      z-index: 4;
      color: #ffffff;
      top: 15px;
      left: 10px;
      padding: 0px 0px 0px 0px;
      margin-left: 0px;
    }

    .ico {
      background: url("../ui/z2.png") no-repeat;
      background-size: contain;
      width: 30px;
      display: inline-block;
      height: 30px;
    }

    .zan.active1 .ico {
      background-image: url("../ui/z1.png");
    }

    .ui_container {
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
    }

    .ui_item {
      font-size: 12px;
      width: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }

    #closedaolan,
    #quanjing {
      display: none;
    }

    .bottom_bar {
      width: 294px;
      height: 55px;
      background-size: cover;
      display: flex;
      position: fixed;
      bottom: 15px;
      z-index: 9999;
      left: 50%;
      transform: translateX(-50%);
      justify-content: center;
      transition: all 0.3s ease-in-out;
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 10px;
    }

    .bottom_bar.hide {
      transform: translate(-50%, 150%);
    }

    i.icon {
      width: 20px;
      height: 20px;
      background-size: contain;
      background-repeat: no-repeat;
    }

    i.icon.dianhua {
      background-image: url("../ui/dianhua@3x.png");
    }

    i.icon.erweima {
      background-image: url("../ui/erweima@3x.png");
    }

    i.icon.daolan {
      background-image: url("../ui/zidong@3x.png");
    }

    i.icon.closedaolan {
      background-image: url("../ui/zidong2@3x.png");
    }

    i.icon.sanwei {
      background-image: url("../ui/sanwei@3x.png");
    }

    i.icon.quanjing {
      background-image: url("../ui/quanjing@3x.png");
    }

    i.icon.guanwang {
      background-image: url("../ui/guanwang@3x.png");
    }

    .yindao_container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 9999;
      display: flex;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      flex-direction: column;
      display: none;
      cursor: pointer;
    }

    .yindao {
      display: flex;
      width: 100%;
      height: 100%;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .yindao img {
      width: calc(0.4 * 426px);
      height: calc(0.4 * 489px);
      border-radius: 10px;
    }
    
.content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}

#startBtn{
  padding: 10px 20px;
  color: #f8f007;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  font-size: 20px;
  overflow: hidden;
  transition: 0.2s;
}

#startBtn:hover{
  color: #000000;
  background: #f8f007;
  box-shadow: 0 0 10px #f8f007, 0 0 40px #f8f007, 0 0 80px #f8f007;
  transition-delay: 1s;
  text-shadow: rgb(153, 221, 210) 0.1em 0.1em 0.2em;
}

#startBtn span{
  position: absolute;
  display: block;
}

#startBtn span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f8f007);
  animation: flash1 1s infinite ease-in-out;
}

#startBtn span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #f8f007);
  animation: flash3 1s infinite ease-in-out;
}

#startBtn span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #f8f007);
  animation: flash2 1s infinite ease-in-out;
}

#startBtn span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #f8f007);
  animation: flash4 1s infinite ease-in-out;
}

@keyframes flash1 {
  0% {
    left: 100%;
    transition: 1s;
  }
}

@keyframes flash2 {
  0% {
    top: 100%;
    transition: 1s;
    transition-delay: 0.25s;
  }
}

@keyframes flash3 {
  0% {
    right: 100%;
    transition: 1s;
    transition-delay: 0.5s;
  }
}

@keyframes flash4 {
  0% {
    bottom: 100%;
    transition: 1s;
    transition-delay: 0.75s;
  }
}

#model {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

.bg {
    position: fixed;
    right: 10px;
    bottom: 70px;
}

.shine {
  color: white;
  /*line-height: 2rem;*/
  font-weight: bold;
  letter-spacing: .1rem;
  font-size: 12px;
  background: linear-gradient(to bottom, rgba(255, 255,255, 0.6) 0,#000 10%, rgba(255, 255,255, 0.6) 20%);
  background-position-y: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
  text-decoration: none;
  white-space: nowrap;
  writing-mode: tb-rl;
}

@keyframes shine {
  to{
    /*background-position: 12rem;*/
    background-position-y: 93px;
  }
}