* {
  padding: 0;
  margin: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
}

@font-face {
  font-family: 'ysbth';
  src: url('../source/ysbth.ttf');
}

@font-face {
  font-family: 'rzzy';
  src: url('../source/rzzy.ttf');
}

body::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 7.6vh;
  background: url('../img/bg-top.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

body::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 6.2vh;
  background: url('../img/bg-bottom.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

#app {
  width: 100%;
  height: 100%;
}
.home{
  width: 100%;
  height: 100%;
  display: block;
}
.detail{
  width: 100%;
  height: 100%;
  display: none;
} 
.header {
  width: 100%;
  height: 7.6vh;
  line-height: 7.6vh;
  font-size: 36px;
  font-weight: bold;
  color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  text-align: center;
  text-shadow: 4px 0 20px rgba(5, 221, 230, 0.5), -4px 0 20px rgba(5, 221, 230, 0.5), 0 4px 20px rgba(5, 221, 230, 0.5), 0 -4px 20px rgba(5, 221, 230, 0.5);
}

.left {
  width: 20.8vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
  padding: 6vh 0 6vh 1.2vw;
  transition: all 1s ease;
  background: linear-gradient(90deg, rgba(3, 17, 23, 1), rgba(3, 17, 23, 0));
}

.right {
  width: 20.8vw;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
  padding: 6vh 1.2vw 6vh 0;
  transition: all 1s ease;
  background: linear-gradient(270deg, rgba(3, 17, 23, 1), rgba(3, 17, 23, 0));
}

.box-item {
  width: 100%;
  height: 33%;
}

.content-title {
  font-family: 'ysbth';
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 4vh;
}

.content-title>div:first {
  flex: 1;
  width: 100%;
}

.content-title>div:last-child {
  height: 1px;
  background: linear-gradient(90deg, rgba(5, 221, 230, 1), rgba(5, 221, 230, 0.2));
  flex: 1;
}

.content-title>div>span:first-child {
  font-size: 24px;
  color: #FFFFFF;
}

.content-title>div>span:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.502);
  white-space: nowrap;
  display: block;
}

.content-box {
  width: 100%;
  height: calc(100% - 4vh);
  box-sizing: border-box;
  padding: 10px;
}

ul {
  list-style: none;
}

.left1>ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
  padding: 10px;
}

.left1>ul>li {
  width: 50%;
  height: 50%;
  display: flex;
  align-items: center;
}

.left1>ul>li>div {
  margin-left: 0.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80%;
}

.left1>ul>li>div>span:first-child {
  color: #FFFFFF;
  font-size: 12px;
  margin-bottom: 0.5vh;
}

.left1>ul>li>div>span:last-child {
  font-size: 20px;
  color: rgba(5, 221, 230, 1);
  text-shadow: 4px 0 5px rgba(5, 221, 230, 0.5), -4px 0 5px rgba(5, 221, 230, 0.5), 0 4px 5px rgba(5, 221, 230, 0.5), 0 -4px 5px rgba(5, 221, 230, 0.5);
  white-space: nowrap;
}

.left1>ul>li>div>span:last-child>span {
  font-size: 12px;
}

.left2>ul {
  display: flex;
  padding: 10px 0;
  box-sizing: border-box;
  justify-content: space-around;
  margin-bottom: 1vh;
}

.left2>ul>li {
  display: flex;
}

.left2>ul>li>div {
  margin-left: 5px;
}

.left2>ul>li>div>p:first-child {
  font-size: 12px;
  color: #FFFFFF;
}

.left2>ul>li>div>p:last-child {
  color: rgba(5, 221, 230, 1);
  text-shadow: 4px 0 5px rgba(5, 221, 230, 0.5), -4px 0 5px rgba(5, 221, 230, 0.5), 0 4px 5px rgba(5, 221, 230, 0.5), 0 -4px 5px rgba(5, 221, 230, 0.5);
  white-space: nowrap;
  text-align: center;
}

.right2>ul {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 10px 0;
  box-sizing: border-box;
  justify-content: space-around;
  margin-bottom: 1vh;
  flex-wrap: wrap;
}

.right2>ul>li {
  position: relative;
  color: #05DDE6;
  font-size: 12px;
}

.right2-text1 {
  position: absolute;
  top: -20%;
  left: 35%;
}

.right2-text2 {
  position: absolute;
  bottom: 40%;
  left: 38%;
}

.btns {
  width: 100%;
  height: 5vh;
  position: absolute;
  left: 0;
  bottom: 6.2vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btns>div {
  margin: 0 40px;
  width: 8%;
  height: 100%;
  line-height: 5vh;
  z-index: 5;
  color: #FFFFFF;
  text-align: center;
  font-weight: bold;
  position: relative;
  background: url('../img/btns.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  cursor: pointer;
}

.btns>div:active {
  transform: scale(0.9);
  filter: brightness(2.5);
}

.btns-item.active {
  filter: brightness(2.5);
}

.pop-frame {
  width: 20.8vw;
  height: 22vh;
  position: absolute;
  left: 39%;
  /* top: 19%; */
  /* top:0; */
  /* left:0; */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  display: none;
  z-index: 100000;
}

.weihu {
  background-image: url('../img/pop1.png');
  color: #FFB83D;
}

.fengji {
  background-image: url('../img/pop3.png');
  color: #FFFFFF;
}

.fj-btn{
  width: 3.5vw;
  height: 2.5vh;
  line-height: 2.5vh;
  text-align: center;
  background: url('../img/pop8.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  position: absolute;
  bottom: 2vh;
  font-size: 12px;
  cursor: pointer;
}
.fj-btn:active{
  transform: scale(0.9);
}

.chudian {
  background-image: url('../img/pop3.png');
  color: #FFFFFF;
}

.pop-title {
  height: 1.5vh;
  line-height: 1.5vh;
  margin: 4vh auto 0 auto;
  text-align: center;
}

.pop-title>span {
  position: relative;
  display: inline-block;
  height: 100%;
}

.weihu>.pop-title>span::before {
  content: '';
  position: absolute;
  width: 1.1vw;
  height: 100%;
  left: -1.5vw;
  top: 0;
  background: url('../img/pop7.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.weihu>.pop-title>span::after {
  content: '';
  position: absolute;
  width: 1.1vw;
  height: 100%;
  right: -1.5vw;
  top: 0;
  background: url('../img/pop7.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  transform: rotateY(180deg);
}

.fengji>.pop-title>span::before {
  content: '';
  position: absolute;
  width: 1.1vw;
  height: 100%;
  left: -1.5vw;
  top: 0;
  background: url('../img/pop6.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.fengji>.pop-title>span::after {
  content: '';
  position: absolute;
  width: 1.1vw;
  height: 100%;
  right: -1.5vw;
  top: 0;
  background: url('../img/pop6.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  transform: rotateY(180deg);
}

table {
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-top: 2vh;
}

tbody td {
  color: #FFFFFF;
  padding: 5px;
}

.pop-content {
  width: 100%;
  height: calc(100% - 7.5vh);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.pop-content>ul {
  flex: 1;
}

.pop-content>ul>li {
  text-align: center;
  margin: 1vh 0;
  white-space: nowrap;
  font-size: 14px;
}

.pop-content>ul>li>span:last-child {
  color: #05DDE6;
}

.close {
  width: 4%;
  height: 7%;
  background: url('../img/close.png') no-repeat;
  background-size:100% 100%;
  position: absolute;
  right: 2%;
  top: 3%;
  opacity: 0.4;
  cursor: pointer;
}

.detail-btns{
  width: 20%;
  position: absolute;
  top: 5vh;
  left: 4vw;
  z-index: 5;
}

.detail-btns>ul {
  width: 100%;
  height: 100%;
  justify-content: space-around;
  box-sizing: border-box;
  padding: 10px;
}

.detail-btns>ul>li {
  margin: 3vh 0;
  width: 50%;
  height: 50%;
  display: flex;
  align-items: center;
}
.detail-btns>ul>li>img{
  width: 40%;
}
.detail-btns>ul>li>div {
  margin-left: 0.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80%;
}

.detail-btns>ul>li>div>span:first-child {
  color: #FFFFFF;
  font-size: 12px;
  margin-bottom: 0.5vh;
  white-space: nowrap;
}

.detail-btns>ul>li>div>span:last-child {
  font-size: 20px;
  color: #FFFFFF;
  text-shadow: 4px 0 5px rgba(5, 221, 230, 0.5), -4px 0 5px rgba(5, 221, 230, 0.5), 0 4px 5px rgba(5, 221, 230, 0.5), 0 -4px 5px rgba(5, 221, 230, 0.5);
  white-space: nowrap;
}

.detail-btns>ul>li>div>span:last-child>span {
  font-size: 12px;
}

.detail-pop {
  width: 30vw;
  height: 28vh;
  background-color: rgba(3, 10, 16, 0.1);
  position: absolute;
  left: 67.5vw;
  /* top: 37.5vh; */
  display: flex;
  align-items: center;
  z-index: 5;
}
.CLX {
  top: 6vh;
}
.ZZ{
  top: 35vh;
}
.FDJ{
  top: 64vh;
}
.detail-pop>div{
  height: 100%;
  flex: 1;
}
.left-title{
  display: flex;
  font-size: 14px;
  color: #6FF2F7;
  text-shadow: 4px 0 5px rgb(5 221 230 / 50%), -4px 0 5px rgb(5 221 230 / 50%), 0 4px 5px rgb(5 221 230 / 50%), 0 -4px 5px rgb(5 221 230 / 50%);
  white-space: nowrap;
  font-weight: bold;
  padding: 1vh 2vh;
  box-sizing: border-box;
}
.left-title>img{
  margin-right: 0.5vw;
  width: 10%;
}
.left-title>p{
  width: 90%;
  background: url('../img/detail7.png') no-repeat;
  background-size: 100%;
  background-position: bottom;
}
.detail-pop .left-content{
  padding: 1vh 2vh;
  box-sizing: border-box;
  height: 85%;
}
.detail-pop .left-content>img{
  margin-top: 2vh;
  width: 100%;
}
.right-content{
  width: 100%;
  height: 100%;
  padding: 1vw 1vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.right-content>div{
  width: 100%;
  background: url('../img/detail10.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  padding: 2px 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.right-content>div>img{
  margin-right: 0.5vw;
}
.right-content>div>p>span:first-child{
  color: #FFFFFF;
  font-size: 14px;
}
.right-content>div>p>span:last-child{
  color: #05DDE6;
  font-size: 14px;
  font-weight: bold;
  font-family: 'rzzy';
}
.unit{
  display: inline-block;
  font-size: 12px;
  transform: scale(0.8);
}