.doubleroom-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}
.doubleroom-container .rtc-room {
    position: relative;
    width: 100vw;
    height: 100vh;
}
.rtc-room .small-view {
    position: absolute;
    right: 18.12rpx;
    top: 134.06rpx;
    width: 163.04rpx;
    height: 289.86rpx;
    z-index: 2;
}
.rtc-room .main-view {
    width: 100vw;
    height: 100vh;
}

.doubleroom-container .handle-btns {
    position: absolute;
    bottom: 61.59rpx;
    display: flex;
    flex-direction: row;
    width: 100%;
    box-sizing: border-box;
    padding: 0 57.97rpx;
    z-index: 3;
}
.handle-btns .btn-normal {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 97.83rpx;
    height: 97.83rpx;
    border-radius: 50%;
    background: #1b1b1b;
    opacity: .9;
}
.handle-btns .btn-normal:not(:last-child) {
    margin-right: 36.23rpx;
}
.handle-btns .btn-active {
    background: #fff;
}
.handle-btns .btn-hangup {
    background: #f75c45;
    opacity: 1;
}
.btn-normal .btn-image {
    width: 54.35rpx;
    height: 54.35rpx;
}

.camera-off-container {
    width: 100%;
    height: 100%;
    background: #2d2d2d;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.camera-off-container .camera-off-image {
    width: 144.93rpx;
    height: 144.93rpx;
}
.camera-off-container .camera-off-text {
    font-size: 28.99rpx;
    color: #999;
    letter-spacing: 0;
    text-align: center;
    line-height: 28.99rpx;
    margin-top: 36.23rpx;
}

.loading {
    position: fixed;
    top: 50vh;
    left: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 217.39rpx;
    height: 217.39rpx;
    box-sizing: border-box;
    border-radius: 14.49rpx;
    padding-top: 59.18rpx;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    transform: translate(-50%, -50%);
}
.loading .rotate-img {
    width: 56.16rpx;
    height: 56.16rpx;
    animation: rotate 2s linear infinite;
}
.loading .loading-text {
    padding: 36.84rpx 0;
    font-size: 25.36rpx;
    color: #fff;
    letter-spacing: 0;
    text-align: center;
    line-height: 25.36rpx;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.doubleroom-container .top-mask {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 115.94rpx;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.doubleroom-container .bottom-mask {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 188.41rpx;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
    z-index: 2;
}

.none {
    display: none !important;
}