html,body {
	height: 100%;
}
*{
    padding: 0;
    margin: 0;
}

.bg{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -999;
    width: 100%;
    height: 100%;
}
.bg_img{
    width: 100%;
    height: 100%;
}
#app{
    height: 100%;
}
.main{
    position: relative;
    width: 300px;
    height: 300px;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
    border: 1px dashed rgb(250, 211, 201);
    border-radius: 50%;
}
.currentTime{
    position: absolute;
    width: 100px;
    left: 40%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    color: rgb(250, 211, 201);
    white-space: nowrap;
}
.location{
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
    font-size: 25px;
    color: rgb(250, 211, 201);
}
.info{
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%,-50%);
    color: rgb(250, 211, 201);
    font-style: 18px;
}
.info div{
    float: left;
    margin: 5px;
}


/* 阻止页面加载时候显示{{}} */
[v-cloak] {
    display: none;
  }