.rank-mask{
  position: fixed;
  top:0;
  left:0;
  z-index: 6;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,.5);
}
.rank-container{
  position: fixed;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width:25.6rem;
  height:22.4rem;
  z-index: 9;
  padding: 0 0.8rem;
  border-radius: 0.3rem;
  background-color: #fff;
}
.rank-title{
  width: 100%;
  height: 2.6rem;
  padding: 0.2rem;
  border-radius: 0.3rem 0.3rem 0 0;
  /* background-color: #F0F2F5; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.rank-title-item{
  cursor: pointer;
  height: 100%;
  text-align: center;
  font-size: 0.56rem;
  line-height: 0.88rem;
  font-weight: bold;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.rank-title-item-top span{
  font-size: 0.8rem;
  font-weight: bold;
}
.rank-title-active{
  color: #1F85FC;
  position: relative;
}
.rank-title-active ::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.08rem;
  border-radius: 0.3rem;
  background-color: #1F85FC;
  color: #1F85FC;
}
.rank-content{
  padding: 0.2rem 0.6rem;
  height: calc(100% - 5rem);
  overflow-y: auto;
  overflow-x: none;
}
.nodata{
  height: calc(100% - 5rem);
  width: 100%;
}
.rank-text{
  font-size: 0.68rem;
  margin-top: 0.4rem;
}
.rank-text span{
  color: #1F85FC;
}
.rank-item{
  font-size: 0.56rem;
  color: #333;
  padding: 0.2rem 0;
  border-bottom: 1px solid #F0F2F5;
  display: flex;
  align-items: center;
  justify-content: space-between;  
}
.rank-item:last-child{
  border-bottom: none;
}
.rank-item-left{
  width: calc(100% - 6rem);
  display: flex;
  align-items: center;
}
.rank-item-index{
  margin: 0 1.4rem 0 0.5rem;
  min-width: 1.2rem;
  white-space: nowrap;
}
.rank-item-index span{
  color: #1F85FC;
}
.rank-item-user{
  width: calc(100% - 1.45rem);
  display: flex;
  align-items: center;
}
.rank-item-user img{
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
}
.rank-item-user span{
  flex: 1;
  margin-left: 0.4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rank-item-time{
  font-size: 0.48rem;
  margin-right: 0.4rem;
  white-space: nowrap;
}
.rank-item-time span{
  font-size: 0.56rem;
  font-weight: bold;
}
.rank-user{
  margin-top: 0.4rem;
  width: 100%;
  height: 2rem;
  padding: 0 0.6rem;
  background-color: #f1f2f6;
  border: none;
  border-radius: 0.3rem;
}
.rank-close{
  cursor: pointer;
  position: absolute;
  top: 0.48rem;
  right: 0.4rem;
  width: 1rem;
  height: 1rem;
}


/* 日历样式 */
.calendar-mask{
  position: fixed;
  top:0;
  left:0;
  z-index: 6;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,.5);
}

.calendar-container{
  position: fixed;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width:25.6rem;
  min-height:22.4rem;
  z-index: 9;
  border-radius: 0.3rem;
  background-color: #fff;
}
.calendar-title{
  width: 100%;
  height: 2.6rem;
  border-radius: 0.3rem 0.3rem 0 0;
  /* background-color: #F0F2F5; */
  color: #333333;
  font-size: 0.56rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.calendar-title span{
  color: #1F85FC;
}
.calendar-title-sub{
  font-weight: 500;
  font-size: 0.48rem;
} 
.calendar-content{
  padding: 0.4rem 0.6rem 0.8rem;
  min-height: calc(100% - 2.6rem);
  overflow-y: auto;
  overflow-x: none;
  position: relative;
}
.calendar-day{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-selected{
  height: 100%;
  color: #fff;
  background-color: #40cc9d;
}
.calendar-content /deep/ .el-calendar{
  font-size: 0.6rem !important;
}
.calendar-content /deep/ .el-calendar-table .el-calendar-day{
  padding: 0;
  height: 2.5rem;
}
.calendar-content-noPre /deep/ .el-button-group>.el-button:first-child{
  display: none;
}
.calendar-content-noPre /deep/ .el-button--mini:nth-child(1){
  display: none;
}
.calendar-content-noPre .el-button--mini:nth-child(1){
  display: none;
}
.calendar-content-noNext /deep/ .el-button--mini:nth-child(3){
  display: none;
}
.calendar-content-noNext .el-button--mini:nth-child(3){
  display: none;
}
.calendar-close{
  cursor: pointer;
  position: absolute;
  top: 0.48rem;
  right: 0.4rem;
  width: 1rem;
  height: 1rem;
}
.calendar-tips{
  font-size: 0.48rem;
  color: #999;
  margin-left: 20px;
  margin-top: -20px;
}
