@charset "UTF-8";
html,
body {
  height: 100vh;
  width: 100vw;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "宋体", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

li {
  list-style-type: none;
}

a {
  transition: all 0.35s;
  color: #474157;
  text-decoration: none;
}
a:hover, a:focus {
  color: #474157;
}

.App {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/index-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}
.App .left {
  display: flex;
  width: 21vw;
  flex-direction: column;
}
.App .left .list {
  flex: 1;
  padding: 1vw;
  margin: 0.7vw;
  border: 0.3vw solid #00a6f3;
  width: 19.7vw;
  overflow: hidden;
}
.App .left .list li {
  line-height: 2vw;
  letter-spacing: 0.1vw;
  color: #fff;
  font-size: 1vw;
}
.App .left .qr {
  width: 19.7vw;
  height: 19.7vw;
  padding: 0.3vw;
  margin: 0.7vw;
  border: 0.3vw solid #00a6f3;
}
.App .left .qr img {
  width: 100%;
  height: 100%;
}
.App .right {
  flex: 1;
  padding: 1vw;
  margin: 0.7vw;
  border: 0.3vw solid #00a6f3;
  background-image: url(../img/index_zjm.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  background-position: center;
  position: relative;
}
.App .right .brazier {
  width: 12vw;
  height: 12vw;
  background-image: url(../img/index_hp.png);
  background-image: url(../img/fire-hl.gif);
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  justify-content: center;
  align-items: center;
}
.App .right .brazier.on {
  display: flex;
}
.App .right .brazier img {
  width: 7vw;
  opacity: 0;
  display: block;
}
.App .right .brazier img.on {
  animation: myAnimation 12s linear 1;
}

@keyframes myAnimation {
  0% {
    /* 定义起始状态 */
    transform: translateY(-40vh);
    opacity: 0;
  }
  8% {
    transform: translateY(-35vh);
    opacity: 1;
  }
  52% {
    transform: translateY(-5vh);
    opacity: 1;
  }
  60% {
    /* 定义结束状态 */
    transform: translateY(-5vh);
    opacity: 0;
  }
  100% {
    /* 定义结束状态 */
    opacity: 0;
  }
}