
.winMain {
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
}

@media (min-width:576px) {
    .winMain{
        width: 350px;
        height: 640px;
        max-height: 80%;
        border-radius: 10px;
        left: 50%;
        top: 50%;
        box-shadow: 0px 0px 20px rgba(200, 198, 198, 0.3);
        transform: translate(-50%, -50%);
    }
}

@media (max-width:576px) {
    .winMain{
        left: 0 !important;
        top: 0 !important;
    }
}

.bg-red{
    background-color: #e54d42;
    color: #fff;
}

.bg-bray {
    background-color: #8799a3;
}

.bg-limegreen {
    background-color: #05c160;
    color: #fff;
}

.bg-micro {
    background-color: #014B34;
    color: #fff;
}

.line-micro {
    background-color: #fff;
    color: #014B34;
    border: 1px solid #014B34;
}

.bg-speak {
    background-color: #FFAB00;
    color: #fff;
}

.line-speak {
    background-color: #fff;
    color: #FFAB00;
    border: 1px solid #FFAB00;
}

.bg-camera {
    background-color: #FFAB00;
    color: #fff;
}

.line-camera {
    background-color: #fff;
    color: #FFAB00;
    border: 1px solid #FFAB00;
}

.loader {
    /* border: 3px solid rgba(0, 0, 0, 0.1); */
    border-top: 3px solid #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.videoContent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 15px;
}

.btnGroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.btnGroupItem {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.back img {
    width: 40px;
}

.callinfo-box {
    flex-shrink: 0;
    padding-top: 30%;
}

.user-avatar {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trtc-bar {
    width: 100%;
}

.trtc-bar .roundicon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
    font-size: 28px;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    cursor: pointer;
}

.trtc-bar .roundicon:hover{
    opacity: 0.7;
}

.padding {
    padding: 15px;
}

.margin-top {
    margin-top: 15px;
}

.padding-top-sm {
    padding-top: 10px;
}

.text-black {
    color: #2E3256;
}

.text-muted {
    color: #5E617D;
    font-size: 14px;
}

.text-gray-white {
    color: #fff;
    font-size: 14px;
}

/*视频通话*/
.video-large-box {
    width: 100%;
    height: 100%;
}

.video-win {
    width: 100%;
    height: 100%;
}

.video-small-box {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 30%;
    z-index: 9999;
    border-radius: 5px;
    height: 160px;
    overflow: hidden;
}

.video-small-box .video-win {
    width: 100% !important;
    height: 160px !important;
}

.video-win {
    object-fit: cover;
}

.calltime-box {
    text-align: center;
    font-size: 16px;
}

/* chat */
.callModal .ant-modal-content {
    background-color: rgba(50, 50, 50, 1);
    justify-content: flex-start;
    padding: 30px 20px;
}
.callModalContent {
    height: 80px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}
.callModalAvatar {
    width: 40px;
    height: 40px;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}
.callModalAvatar img{
    width: 100%;
    height: 100%;
}
.callModalUser {
    flex: 1;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 10px
}
.callModalUserText {
    font-size: 13px;
    color: #ffffff;
}
.callModalOpera {
    display: flex;
}
.callModalButton {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.callModalButton:hover{
    opacity: 0.7;
}
.backSurface{
    width: 35px;
    height: 35px;
    display: flex;
    font-size: 34px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: 110;
    cursor: pointer;
}