.button {
  user-select: none;
  padding: 24px 16px;
  font-size: 14px;
  background: white;
  border-radius: 8px;
  color: black;
  cursor: pointer;
  margin-left: 8px;
}

.dialog-device-error[data-v-3b52f42d] {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100vw;
  height: 100vh;
  transition: all 0.1s linear;
  opacity: 0;
  pointer-events: none;
}
.dialog-device-error.visible[data-v-3b52f42d] {
  opacity: 1;
  pointer-events: auto;
}
.dialog-device-error.visible .form[data-v-3b52f42d] {
  transform: scale(1, 1);
}

.avatar {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  background-color: gray;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-speak {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  padding-top: 48px;
  padding-bottom: 30px;
  justify-content: space-between;
  width: 516px;
  height: 333px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px 16px 16px 16px;
  transition: all 0.1s linear;
  opacity: 0;
}
.dialog-speak.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1, 1);
}
.dialog-speak .close {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  right: -3px;
  cursor: pointer;
}
.dialog-speak .title {
  font-weight: 400;
  color: #000000;
  font-size: 14px;
}
.dialog-speak .btn-speak {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.dialog-speak .btn-speak .tip {
  font-size: 12px;
  color: #999999;
  margin-top: 10px;
}
.dialog-speak .btn-speak .mute-icon {
  width: 68px;
  height: 68px;
  border: 2px solid #ff6565;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialog-speak .btn-speak .mute-icon.speaking {
  border: 2px solid #66cf66;
}
.dialog-speak .btn-speak .mute-icon img {
  width: 50%;
}

.dialog-password {
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  transition: all 0.1s linear;
  opacity: 0;
  pointer-events: none;
}
.dialog-password .form {
  transform: scale(0, 0);
  transition: all 0.1s linear;
  position: relative;
}
.dialog-password .form .title {
  display: flex;
  justify-content: center;
  margin: 250px 0 80px;
}
.dialog-password .form .title p {
  font-family: YouSheBiaoTiHei-Regular, YouSheBiaoTiHei;
  font-weight: bold;
}
.dialog-password .form .inputs {
  display: flex;
  width: 740px;
  height: 130px;
  background: url("../assets/images/Group 555@2x.eb1ec3f69e5c72472ff7176dcb51dfed.png") no-repeat;
  background-size: 100% 100%;
  margin-bottom: 80px;
}
.dialog-password .form .inputs .ivu-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.dialog-password .form .inputs .ivu-input {
  height: 48px;
  text-align: center;
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.dialog-password .form .inputs .ivu-input:focus {
  box-shadow: none;
}
.dialog-password .form .inputs .ivu-btn {
  background: white;
  font-weight: bold;
  color: #4bc5fd;
  line-height: 14px;
  border-color: white;
}
.dialog-password .form .btns {
  display: flex;
  justify-content: center;
  margin-bottom: 210px;
}
.dialog-password .form .btns button {
  width: 300px;
  height: 50px;
  background: #4dc9ff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
}
.dialog-password .form .btns button.ivu-btn:hover {
  color: #ffffff;
}
.dialog-password .form .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-password .form .bottom .icon {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid #fff;
  position: relative;
  cursor: pointer;
}
.dialog-password .form .bottom .icon.active i {
  background: #fff;
}
.dialog-password .form .bottom .icon i {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dialog-password .form .bottom .content {
  margin-left: 10px;
  font-size: 16px;
}
.dialog-password .form .bottom .content a {
  color: #fff;
}
.dialog-password .form .close {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  right: -3px;
  cursor: pointer;
}
.dialog-password.visible {
  opacity: 1;
  pointer-events: auto;
}
.dialog-password.visible .form {
  transform: scale(1, 1);
}

.dialog-lost {
  z-index: 50000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100vw;
  height: 100vh;
  transition: all 0.1s linear;
  opacity: 0;
  pointer-events: none;
}
.dialog-lost.visible {
  opacity: 1;
  pointer-events: auto;
}
.dialog-lost.visible .form {
  transform: scale(1, 1);
}

.dialog-chat {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100vw;
  height: 100vh;
  color: black;
  z-index: 2;
  transition: all 0.1s linear;
  opacity: 0;
  pointer-events: none;
}
.dialog-chat .form {
  width: 636px;
  height: 550px;
  background: #ffffff;
  border-radius: 4px;
  transform: scale(0, 0);
  transition: all 0.1s linear;
  position: relative;
  display: flex;
  overflow: hidden;
}
.dialog-chat .form .left {
  width: 100px;
  height: 550px;
  background: #4bc5fd;
}
.dialog-chat .form .left .title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-chat .form .left .title img {
  width: 56px;
}
.dialog-chat .form .left .channel li {
  line-height: 48px;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}
.dialog-chat .form .left .channel li.active {
  background: #88daff;
}
.dialog-chat .form .right {
  width: 536px;
  height: 550px;
  background: #ffffff;
}
.dialog-chat .form .right .closebtn {
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 5px;
}
.dialog-chat .form .right .title {
  text-align: center;
  line-height: 55px;
  border-bottom: 1px solid #e0e0e0;
}
.dialog-chat .form .right .displayContent {
  height: 60%;
  overflow: auto;
  padding: 10px 5px;
}
.dialog-chat .form .right .displayContent .item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.dialog-chat .form .right .displayContent .item.self {
  flex-direction: row-reverse;
}
.dialog-chat .form .right .displayContent .item.self .time {
  text-align: right !important;
}
.dialog-chat .form .right .displayContent .item .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: gray;
}
.dialog-chat .form .right .displayContent .item .content {
  display: flex;
  flex-direction: column;
}
.dialog-chat .form .right .displayContent .item .content .name {
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  color: #000000;
  line-height: 14px;
  font-weight: bold;
  padding: 2px;
}
.dialog-chat .form .right .displayContent .item .content .text {
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #ffffff;
  line-height: 14px;
  background: #26d356;
  border-radius: 10px 10px 10px 10px;
  display: table;
  max-width: 400px;
  word-wrap: break-word;
  display: inline-block;
  padding: 10px;
}
.dialog-chat .form .right .displayContent .item .content .time {
  font-size: 10px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #999999;
  line-height: 14px;
  text-align: left;
  margin-top: 5px;
}
.dialog-chat .form .right .inputContent {
  height: 30%;
}
.dialog-chat .form .right .inputContent .text {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  border: 0px;
  font-size: 12px;
  font-family: Inter-Regular, Inter;
  font-weight: 400;
  color: #000000;
  line-height: 14px;
  padding: 20px;
  resize: none;
}
.dialog-chat .form .right .inputContent .text:focus {
  outline: none;
}
.dialog-chat .form .right .inputContent .btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 80px;
  height: 28px;
  background: #4bc5fd;
  box-shadow: 0px 4px 4px 1px rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: Inter-Bold, Inter;
  font-weight: bold;
  color: #f0f0f0;
  line-height: 14px;
}
.dialog-chat .form .title {
  height: 10%;
}
.dialog-chat.visible {
  opacity: 1;
  pointer-events: auto;
}
.dialog-chat.visible .form {
  transform: scale(1, 1) !important;
}

.fps-pop[data-v-eea7be32] {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%);
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 20px 10px 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 375px;
}
.fps-pop .fps-close[data-v-eea7be32] {
  background: url("../assets/images/Frame@2x(42).b0f79800bc7cef4011f548a57b1be946.png") no-repeat;
  background-size: 100% 100%;
  width: 10px;
  height: 10px;
  cursor: pointer;
}

