body {
  font-size: 0;
  max-width: 540px;
  margin: 0 auto;
}
#app {
  background-color: #4D6B00;
  min-height: 100vh;
}
[v-cloak] {
  display: none;
}
#animat {
  animation: mymove 3s infinite;
  /*Safari and Chrome*/
  animation-direction: alternate;
  /*轮流反向播放动画。*/
  animation-timing-function: ease-in-out;
  /*动画的速度曲线*/
  /* Safari 和 Chrome */
  -webkit-animation: mymove 3s infinite;
  -webkit-animation-direction: alternate;
  /*轮流反向播放动画。*/
  -webkit-animation-timing-function: ease-in-out;
  /*动画的速度曲线*/
}
@keyframes mymove {
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    transform: scale(1.2);
    /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
}
@-webkit-keyframes mymove {
  /*Safari and Chrome*/
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
/*加载等待*/
.loading_bg {
  background: #4D6B00;
  position: fixed;
  z-index: 1000;
  width: 100%;
  max-width: 540px;
  height: 100%;
}
.jiazai_div {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
}
.jiazai_div i {
  float: left;
  display: block;
  width: 4px;
  height: 40px;
  margin: 0 2px;
  background: #fff;
  -webkit-animation: load 1.2s infinite;
  animation: load 1.2s infinite;
  -webkit-transform: scaleY(0.4);
  -ms-transform: scaleY(0.4);
  transform: scaleY(0.4);
}
.jiazai_div i:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.2s;
}
.jiazai_div i:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.3s;
}
.jiazai_div i:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.4s;
}
.jiazai_div i:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.5s;
}
@-webkit-keyframes load {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes load {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
.loading {
  height: 100%;
  width: 100%;
}
.header {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.header > img {
  width: 100%;
}
.time_wrap {
  position: absolute;
  width: 5.08rem;
  height: 0.72rem;
  top: 0.3rem;
  left: 1.21rem;
  color: #fff;
  background-image: url(../img/countdown.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.timeOut {
  width: 5.08rem;
  height: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.22rem;
}
.timeOut .timenum {
  font-size: 0.42rem;
  width: 1.2rem;
}
.timeOut .vline {
  margin: 0 0.2rem;
}
.started,
.time_over {
  text-align: center;
  font-size: 0.41rem;
  width: 5.08rem;
  height: 0.72rem;
  line-height: 0.72rem;
  margin: 0 auto;
}
.notice_guan {
  position: absolute;
  right: -0.1rem;
  top: 5.1rem;
  width: auto !important;
  height: 0.51rem;
}
.notice_title {
  text-align: center;
  position: absolute;
  width: 3.45rem;
  height: 0.76rem;
  left: 1.42rem;
  top: -0.3rem;
}
.notice_content {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
.notice_content .main {
  width: 6.26rem;
  height: 10rem;
  position: absolute;
  left: 0.62rem;
  top: 0;
  bottom: 0;
  right: 0.62rem;
  margin: auto;
}
.notice_content .main img {
  width: 100%;
}
.notice_content .scrollbox {
  height: 7rem;
  overflow: auto;
}
.notice_content .close_icon {
  padding: 0.2rem;
  text-align: center;
}
.notice_content .close_icon img {
  width: 1rem;
  height: 1rem;
}
.rechargeBg {
  width: 100%;
}
.rechargeBtn {
  width: 4.85rem;
  height: 0.98rem;
  position: absolute;
  left: 1.37rem;
  bottom: 0.5rem;
}
/* 动效 */
#animat {
  animation: mymove 5s infinite;
  /*Safari and Chrome*/
  animation-direction: alternate;
  /*轮流反向播放动画。*/
  animation-timing-function: ease-in-out;
  /*动画的速度曲线*/
  /* Safari 和 Chrome */
  -webkit-animation: mymove 3s infinite;
  -webkit-animation-direction: alternate;
  /*轮流反向播放动画。*/
  -webkit-animation-timing-function: ease-in-out;
  /*动画的速度曲线*/
}
@keyframes mymove {
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes mymove {
  /*Safari and Chrome*/
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
.content {
  position: relative;
}
.content img {
  width: 100%;
}
.ranking_box {
  width: 7.5rem;
  height: 12.85rem;
  background-image: url(../img/ranking_list_bg.png);
  background-size: 100% 100%;
  padding: 0 0.3rem 0.4rem;
  box-sizing: border-box;
  position: relative;
}
.ranking_box .ranking_title {
  position: absolute;
  width: 6.27rem;
  height: 0.92rem;
  top: 0.32rem;
  left: 0.6rem;
}
.empty_text {
  color: #fff;
  font-size: 0.24rem;
  text-align: center;
  padding-top: 1rem;
}
.mescroll {
  height: 7rem;
  overflow-y: auto;
  padding: 0 0.3rem;
}
.ul-list {
  width: 100%;
}
.ul-list .line_bar {
  margin-left: 0.24rem;
}
.userInfo {
  height: 1.55rem;
  display: flex;
  align-items: center;
}
.userInfo .giftIcon {
  margin-right: 0.1rem;
}
.userInfo .sex_img {
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.3rem;
  margin-right: 0.4rem;
}
.user_photo {
  position: relative;
  overflow: hidden;
  background-image: url(../img/avatar.png);
  background-size: cover;
}
.user_photo::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/avatar.png);
  background-size: cover;
}
.rank_list_photo {
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  background-size: cover;
  padding: 0.02rem;
  box-sizing: border-box;
  margin: 0 0.2rem 0 0.1rem;
}
.rank_list_photo .photo_img {
  border-radius: 50%;
  width: 0.8rem;
  height: 0.8rem;
}
.user_nickName {
  line-height: 1.5;
  font-size: 0.28rem;
  color: #fff;
  width: 1.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list_gift {
  width: 0.18rem !important;
  height: 0.49rem;
  margin-right: 0.1rem;
}
.list_countnum {
  color: #fff;
  font-size: 0.3rem;
  margin-top: 0.1rem;
}
.user_sex {
  width: 0.36rem !important;
  height: 0.36rem;
}
.rank_list_ranking,
.rank_list_num {
  width: 0.8rem;
  text-align: center;
  font-size: 0.36rem;
  line-height: 1;
  color: #fff;
}
.rank_list_num {
  flex: 1;
  text-align: center;
  font-size: 0.32rem;
}
.list-footer {
  width: 7.5rem;
  position: fixed;
  height: 1.42rem;
  bottom: 0;
  box-sizing: border-box;
  background-image: url(../img/list_own.png);
  background-size: cover;
}
.list-footer .userInfo {
  height: 1.42rem;
  padding: 0 0.5rem 0 0.6rem;
}
.list-footer .rank_list_ranking,
.list-footer .user_nickName {
  color: #fff;
}
.list-footer .rank_list_num {
  color: #fff;
}
.giftIcon {
  width: 0.35rem !important;
  height: 0.3rem;
}
.line_bar {
  width: 5.82rem !important;
  height: 0.02rem;
  margin-left: 0.54rem;
}
.rank_top {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 0.2rem;
}
.rank_top_item {
  width: 1.93rem;
  text-align: center;
  box-sizing: border-box;
  padding-top: 1rem;
}
.rank_top_item .name_and_sex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.33rem 0.1rem 0.13rem;
}
.rank_top_item .username {
  max-width: 60%;
  color: #fff;
  font-size: 0.28rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.rank_top_item .sex_img {
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.05rem;
}
.rank_top_item .num_and_gift {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank_top_item .num {
  font-size: 0.28rem;
  color: #fff;
  margin-left: 0.1rem;
}
.rank_top_item.one {
  width: 2.42rem;
  padding-top: 0;
}
.rank_top_item.one .rank_top_photo {
  width: 2.42rem;
  height: 1.53rem;
}
.rank_top_item.one .rank_top_photo .avaterbox {
  width: 2.42rem;
  height: 1.53rem;
  position: relative;
}
.rank_top_item.one .rank_top_photo .photo_img {
  width: 1.15rem;
  height: 1.15rem;
  top: 0.36rem;
  left: 0.62rem;
}
.rank_top_item.one .rank_top_photo .top_bar {
  width: 1.26rem;
  height: 0.3rem;
  bottom: -0.15rem;
}
.rank_top_photo {
  position: relative;
  width: 1.93rem;
  height: 1.25rem;
}
.rank_top_photo .avaterbox {
  width: 1.93rem;
  height: 1.25rem;
  position: relative;
}
.rank_top_photo .photo_img {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  position: absolute;
  top: 0.27rem;
  left: 0.5rem;
}
.rank_top_photo .top_bar {
  width: 1rem;
  height: 0.24rem;
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  right: 0;
  margin: auto;
}
.fc-relative {
  position: relative;
}
.rankbtn {
  position: absolute;
  width: auto !important;
  height: 0.68rem;
  bottom: 0.5rem;
  left: 1.8rem;
}
.es .rankbtn {
  left: 1.42rem;
}
@media screen and (min-width: 540px) {
  .loading_bg {
    left: 50%;
    margin-left: -270px;
  }
}
