* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  background-image: url(../static/bg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
body {
}
#app{
  position: fixed;
  right: 0;
  top: 220px;
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}
#app marquee{
  margin-right: 100px;
  font-size: 24px;
  background: #6C181D;
  border-radius: 24px;
  color: #5affec;
  line-height: 44px;
  box-shadow: 1px 1px 1px 1px #00eeff;
}
#app .box{
  background-image: url(../static/block.png);
  background-size: 100% 100%;
  width: 350px;
  height: 130px;
  margin: 20px 8px;
  position: relative;
}
.box img{
  position: absolute;
  width: 60px;
  left: 30px;
  top: 25px;
}
.box p{
  display: block;
  position: absolute;
  width: 120px;
  text-align: center;
  top: 92px;
  color: #fff;
  text-shadow: 1px 1px 1px #000000;
}
.box div{
  position: absolute;
  left: 128px;
  text-align: center;
  top: 13px;
  width: 206px;
  font-size: 18px;
  font-weight: 900;
  text-shadow: 1px 1px 1px #ffffff;
  color: #fe00ff;
}
@media (max-width: 966px) {
  html {
      background-image: url(../static/md-bg.jpg);
  }
  #app{
    top: 16%;
    width: 100%;
    display: block;
  }
  #app .box{
    background-image: url(../static/block_s.png);
    width: 350px;
    height: 80px;
    margin: 16px auto;
    display: block;
  }
  .box img{
    width: 40px;
    left: 20px;
    top: 12px;
  }
  .box p{
    width: 80px;
    top: 54px;
    font-size: 14px;
  }
  .box div{
    left: 70px;
    top: 13px;
    width: 192px;
    font-size: 15px;
    text-shadow: 1px 1px 1px #00ff91;
    color: #0014ff;
    line-height: 28px;
  }
  #app marquee{
    margin: 0 auto;
    font-size: 16px;
    background: none;
    border-radius: 0;
    color: #000000;
    line-height: 44px;
    box-shadow: none;
    margin-bottom: -16px;
    margin-left: 5%;
    width: 90%;
    font-weight: 900;
    text-shadow: 1px 1px 1px #b2ff00;
  }
}