/* 新增会员列表 */
.adduser {
  -webkit-flex: 1;
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-top: 0.4rem;
  min-height: 0;
}
.adduser ul {
  position: absolute;
  width: 100%;
}
.adduser li {
  height: 2.25rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 0.0625rem solid rgba(100, 160, 220, 0.06);
  padding: 0 0.3125rem;
}
/* gap:0.375rem → margin 替代 */
.adduser-info {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  -webkit-flex: 1;
  flex: 1;
}
.adduser-info > * + * {
  margin-left: 0.375rem;
}
.adduser-info img {
  width: 1.4rem;
  height: 1.4rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  border-radius: 50%;
  border: 0.0625rem solid rgba(100, 160, 220, 0.2);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.adduser-info em {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adduser-time {
  font-size: 0.75rem;
  color: rgba(100, 180, 255, 0.5);
  font-family: "Courier New", monospace;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-left: 0.5rem;
}

.mobile-layout .adduser {
  min-height: 21.875rem;
}
.mobile-layout .adduser li {
  height: 2.25rem;
}
.mobile-layout .adduser-info img {
  width: 1.625rem;
  height: 1.625rem;
  min-width: 1.625rem;
  min-height: 1.625rem;
}
.mobile-layout .adduser-info em {
  font-size: 0.6875rem;
}
.mobile-layout .adduser-time {
  font-size: 0.625rem;
}

