.attendeesPage {
  min-height: 100vh;
  background: #F8F8F8;
  box-sizing: border-box;
  padding-bottom: 17.333vw;
}
.attendeesHeader {
  display: flex;
  position: sticky;
  top:0px;
  background: #F8F8F8;
  z-index: 100;
}
.attendeesSearch {
  flex:1;
  position: relative;
  padding: 2.667vw 4vw 1.333vw;
}
.attendeesSearch .attendeesXiala {
  position: absolute;
  top:32%;
  left: 8vw;
  font-size: 3.733vw;
  font-weight: 500;
  color: #333333;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 18.667vw;
  height: 6.4vw;
  border-right: 2px solid #EBEBEB;
} 
.attendeesPage .attendeesInput {
  width: 100%;
  box-sizing: border-box;
  height: 10.667vw;
  background: #FFFFFF;
  border-radius: 5.333vw;
  border: 2px solid #EBEBEB;
  font-size: 3.733vw;
  color: #666666;
  padding: 0 10vw 0 25vw;
}
.attendeesSearch .searchBtn {
  position: absolute;
  top:32%;
  right: 8vw;
}
.attendeesHeader .attendeesMore {
  padding: 2.667vw 4vw 1.333vw 0;
  flex:0 0 6vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.attendeesHeader .selectIcon{
  display: inline-block;
  width: 6vw;
  vertical-align: middle;
}
.tips {
  padding: 0.667vw;
  font-size: 3.2vw;
  text-align: center;
  color:#989898
}

/* 弹窗容器 start */
/* 蒙层 */
#mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

#mask.active {
  opacity: 1;
  visibility: visible;
}

#sidePanel {
  position: fixed;
  top: 0;
  right: -82vw;  
  width: 80vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.4s ease; 
  z-index: 999;
}

/* 弹窗显示时 */
#sidePanel.active {
  right: 0;
}

.sidePanel-header {
  display: flex;
  justify-content: space-between;
  padding: 2.6667vw 4vw;
  font-weight: 500;
  font-size: 4vw;
  color: #333333;
  border-bottom: 2px solid #F2F2F2;
}
.sidePanel-content {
  padding: 2.6667vw 4vw;
  height: calc(100vh - 15vh);
  overflow-y: auto;
}
.sidePanel-content .sidePanel-content-item {
  display: inline-block;
  padding: 1vw 3vw;
  border: 1px solid #DCDFE6;
  border-radius: 30px;
  color:#333;
  font-size: 3.2vw;
  margin: 2.6667vw 0vw 0 0;
}
.sidePanel-content .sidePanel-content-item.active {
  background: #18B47F;
  border-color: #18B47F;
  color:#fff;
}
#closePanel {
  flex: 0 0 6vw;
  width: 6vw;
}
.sidePanel-bottom {
  /* position: absolute; */
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 17.0667vw;
  display: flex;
  padding: 2.6667vw 4vw;
  box-sizing: border-box;
  border-top: 2px solid #F2F2F2;
}
.sidePanel-bottom .resetBtns {
  flex:1;
  background-color: rgba(24, 180, 127, 0.1);
  color:#18B47F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.7333vw;
  border-radius: 44px;
}
.sidePanel-bottom .sureBtns {
  flex:1;
  background-color: #18B47F;
  color:#fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.7333vw;
  margin-left: 2.1333vw;
  border-radius: 44px;
}
/* 弹窗容器 end */