html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    user-select: none;
}

#videos {
    position: absolute;
    right: 20px;
    top: 24px;
    width: 111px;
    height: 199px;
    transform: rotateY(180deg)
}

#videos #me,
#videos #me video {
    object-fit: cover;
    width: 111px;
    height: 199px;
    position: absolute;
    top: 0;
    right: 0;
}

#videos #me div,
#videos #me button {
    display: none;
}

#chat {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    border: 1px solid #0f0f0f;
}

#chat .msgIpt, #chat .fileIpt {
    position: absolute;
    left: 0;
    width: 80%;
}

#chat .sendBtn, #chat .sendFileBtn {
    position: absolute;
    left: 80%;
    width: 20%;
}

#chat .msgIpt, #chat .sendBtn {
    bottom: 0;
}

#chat .fileIpt, #chat .sendFileBtn {
    bottom: 30px;
}

#chat .msgs {
    padding: 5%;
}

#chat .msgs p {
    margin: 0.3em 0;
}

#files {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
}

#files .name {
}

#files .percent {
    font-weight: bold;
    text-decoration: none
}

/* 弹窗 */
/* #modal_box {
} */
.modal {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999999;
    opacity: 0.4;
    text-align: center;
}
.modal_text_box {
    width: 271px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999999;
    border-radius: 20px;
}
.modal_text {
    border-bottom: 1px solid rgba(153, 153, 153, 0.39);
}
.modal_text p {
    line-height: 60px;
    font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #030303;
    text-align: center;
}
.modal_text .modal_text_tip {
    font-size: 12px;
    color: #777;
    line-height: 20px;
    margin-bottom: 20px;
}

.modal_text .img_div {
    text-align: center;
    line-height: 35px;
    padding-top: 13px;
}
.modal_text .img_div img {
    width: .35rem;
    height: .35rem;
}

#modal_box_call_end .modal_text_box {
    background-color: transparent;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.modal_button {
    display: flex;
}
.modal_button button {
    flex: 1;
    line-height: 39px;
    font-size: 17px;
    border: 0;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
    
}
.modal_button button:first-of-type {
    border-right: solid 1px #d6d6d6;
    border-radius: 0 0 0 20px;
}
.modal_button button:last-of-type {
    border: 0;
}
.modal .in_connection p {
    line-height: 50px;
    padding: 20px 0 40px 0;
}
.modal .in_connection {
    border: 0;
}
.modal .in_connection .img_div {
    padding-top: 40px;
}

.modal_button_color {
    color: #25d6d0;
}

/* 挂断、打开语音、切换镜头 */
#set_call_button {
    height: 100%;
    margin-bottom: 20px;
}
#init_background_button {
    position: fixed;
    width: 100%;
    bottom: 20px;
    text-align: center;
}
#set_call_button .set_call_img, #init_background_button .set_call_img {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#set_call_button img, #init_background_button img {
    width: 28px;
    height: 28px;
}
#set_call_button img:nth-of-type(2), #init_background_button img:nth-of-type(2) {
    width: 60px;
    height: 60px;
}
#set_call_button p,  #init_background_button p {
    margin-top: 14px;
}

#init_background_button p {
    font-size: 14px;
    color: #fff;
}

.invite_prompt {
	height: 50px;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #fff;
    padding: 0 22px;
}

#dian_red {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #ed0101;
    border-radius: 50%;
}

/* 陀螺仪 */
.gyro_div {
    display: flex;
    justify-content: space-around;
}
.gyro_div img {
    padding-left: 90px;
    width: 28px;
    height: 28px;
}

/* 小行星 */
.gyro_div #view-mode {
    padding-left: 0;
}

/* 横屏样式 */
#landscape {
    font-size: 100px !important;
}

#landscape #videos {
    width: 110px;
    height: 150px;
}