.attendee {
  border-radius: var(--fcr_cornerradius_s);
  display: flex;
  align-items: center;
  flex-direction: row;
  max-width: 100%;
  justify-content: space-between;
  min-height: 52px;
  padding: 8px 10px 8px 6px;
  margin: 0 10px;
  position: relative;
}

.attendee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0%;
  margin: 0 10px;
}

.attendee:hover,
.attendee-active {
  background-color: var(--fcr_web_ui_scene_hover);
}

.attendee:hover::after {
  border-top: none;
}

.attendee__user-info {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  flex: 1;
}
.attendee__user-info .fcr-avatar {
  background-color: var(--for_head2);
}

.attendee__user-info-identity {
  max-width: 80%;
  width: 80%;
  min-width: 0;
}

.attendee__name {
  color: var(--for_head2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 12px;
}

/* 任一 tag-group 有内容时，姓名单行省略；否则最多两行 */
.attendee__user-info-identity:has(.attendee__tag-group > *) .attendee__name {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.attendee__host-badge {
  color: var(--fcr_ui_scene_inverse);
  background-color: var(--fcr_ui_scene_icontext5);
  width: fit-content;
  padding: 2px 4px;
  border-radius: var(--fcr_cornerradius_xxxxs);
  font-size: 12px;
  height: 16px;
  display: flex;
  align-items: center;
  line-height: 16px;
}

.attendee__tag-group {
  display: flex;
  justify-content: left;
  align-items: center;
}

.attendee__cohost-tag-bg {
  /* zxq-TODO: 颜色未定义 */
  /* background-color: var(--fcr_card_green); */
  background: #83bc53;
}

.attendee__interpreter-tag-bg {
  font-weight: 400;
  background: rgba(0, 0, 0, 1);
  padding-left: 0;
  margin-left: 8px;
  border-radius: 8px;
  background: var(--fcr_mobile_ui_scene_color_popup_fill3);
}
.attendee__interpreter-tag-user {
  padding-left: 4px;
  padding-right: 4px;
  font-size: 12px;
  background: var(--fcr_ui_scene_ramp_purple6);
  border-radius: var(--fcr_cornerradius_xxxs) 0px var(--fcr_cornerradius_m)
    var(--fcr_cornerradius_xxxs);
}
.attendee__interpreter-tag-language {
  padding: 0px 5px 0 5px;
  color: var(--fcr_ui_scene_icontext7);
}

.attendee .fcr-button-posticon {
  width: 24px;
}

.fcr-participant__footer button:not(:last-child) {
  flex: 1;
  min-width: 30%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fcr-participant__footer button {
  padding: 0;
}

.fcr-participant__footer button:last-child {
  width: 100%;
}

.attendee__user-media,
.attendee__user-action {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}

.attendee__user-action {
  position: absolute;
  right: 14px;
  opacity: 0;
}

.attendee:hover .attendee__user-action {
  /* background-color: var(--fcr_web_ui_scene_hover); */
  opacity: 1;
}

.attendee__footer-more-actions .fcr-drop-menu-option {
  width: auto !important;
}
.attendee__footer-more-actions .fcr-checkbox-label {
  font-size: 13px;
}

.attendee__more-actions .fcr-drop-menu-title,
.attendee__footer-more-actions .fcr-drop-menu-title {
  color: var(--fcr_ui_scene_icontext1);
  font-size: 12px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.attendee__more-actions {
  width: fit-content;
}

.attendee__more-actions .fcr-drop-menu-option-primary {
  color: var(--fcr_ui_scene_icontext1);
}

.attendee__more-actions .fcr-drop-menu-option-primary:hover {
  color: var(--fcr_web_ui_scene_mainicon2);
}

.attendee__more-actions .fcr-drop-menu-option-primary:hover ~ .attendee__user-action,
.attendee__user-action-hovered {
  opacity: 1;
}

.attendee__danger-operate {
  color: var(--fcr_web_ui_scene_mainicon3_red);
}

.attendee__more-actions button {
}
