* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161616;
  color: #80c59d;
  font-family: sans-serif;
}


ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.title{
  text-align: center;
}

.btn {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  color: #c5a88000;
  border: 1px solid #c5a88000;
  padding: 16px;
  width: 300px;
  margin-bottom: 16px;
  line-height: 1.5;
  cursor: pointer;

}


.title {
  color: #e71f1f;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.text-loading {
  font-size: 2rem;
}




 /*横竖屏提示*/
@media screen and (orientation:landscape) {
  .screen-prompt{ display: none;}
}

@media all and (orientation : portrait){
  .screen-prompt{ display: block;}
}

.screen-prompt {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  background: #000000 url(./sucai/hengping.gif) center center no-repeat;
  background-size: contain;
}



/* 

.container{
    width: 100%;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(66, 37, 37, 0);
}
span{
    font-family: fira code;
    font-size: 10em;
    filter: blur(2px);
    color: rgba(255, 255, 255, 0);
    animation: animate 2.5s linear infinite;
}
span:nth-child(1){
    animation-delay: 0s;
}
span:nth-child(2){
    animation-delay: 0.25s;
}
span:nth-child(3){
    animation-delay: 0.5s;
}
span:nth-child(4){
    animation-delay: 0.75s;
}
span:nth-child(5){
    animation-delay: 1s;
}
span:nth-child(6){
    animation-delay: 1.25s;
}
span:nth-child(7){
    animation-delay: 1.5s;
}
span:nth-child(8){
    animation-delay: 1.75s;
}
span:nth-child(9){
    animation-delay: 2s;
}

@keyframes animate{
    0%,100%{
        filter: blur(2px);
        color: #fff;
        text-shadow: 0 0 10px #1e90ff,
        0 0 20px #1e90ff,  
        0 0 30px #1e90ff,  
        0 0 40px #1e90ff,        
        0 0 100px #1e90ff,  
        0 0 200px #1e90ff,  
        0 0 300px #1e90ff,  
        0 0 400px #1e90ff;
    }
    5%,95%{
        filter: blur(0px);
        color: #666;
        text-shadow: none;
    }
}



 */
