#recordListContainer{
    /* display: none; */
}
.record_box{
    width: 0;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background: #fff;
    z-index: 100;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2);
    font-size: 14px;
}
.record_mask{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 99;
}
.record_header{
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #dcdee3;
    font-size: 16px;
}
.record_header img{
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.record_list_container{
    background: #FAFAFA;
    padding: 10px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.record_tabs{
    display: flex;
    margin-bottom: 16px;
}
.record_tips{
    color: #F56C6C;
    margin-bottom: 12px;
}
.record_tab_item{
    margin-right: 18px;
    cursor: pointer;
    padding: 2px 0;
}
.record_tab_item_active{
    color: #157ed9;
    font-weight: 700;
    border-bottom: 2px solid #157ed9;
}
.record_box .ipt_box{
    width: 380px;
    height: 28px;
    margin: 12px 0 16px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #c4c6cf;
    padding: 0 .381rem;
    background: #fff;
}
.record_box .ipt_box input{
    flex: 1;
    font-size: 14px;
}
.record_box .ipt_box img{
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.record_list_box{
    overflow-y: auto;
    height: calc(100vh - 150px);
    position: relative;
    
}
.record_list_box .record_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.list_icon{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 99;
    display: none;
}
.list_loading{
    display: block;
    margin: 150px auto;
    width: 150px;
}
.record_item{
    width: 230px;
    height: 190px;
    border: 1px solid #d9d9d9;
    background: #fff;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 10px;
    position: relative;
    font-size: 14px;
}

.record_item .record_item_preview{
    width: 100%;
    height: 124px;
    border-radius: 4px;
    background: #f5f4f5;
    overflow: hidden;
}
.record_item_img{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.record_item_img img,
.record_item_img video{
    max-width: 100%;
    max-height: 100%;
}
.status_tips{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
    font-size: 12px;
    padding: 2px 8px;
    border-radius:0 4px 0 4px;
}
.status_tips_loading{
    background: #E6A23C;
    color: #fff;
}
.status_tips_error{
    background: #F56C6C;
    color: #fff;
}
.status_tips_success{
    background: #67C23A;
    color: #fff;
}
.record_item_name_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}
.record_item_name{
    color: rgba(0, 0, 0, .85);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 18px;
    white-space: pre;
}
.record_item_other{
    font-size: 14px;
    margin-top: 4px;
}
.record_item_operation{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.record_item_btns{
    display: flex;
    align-items: center;
}
.record_item_btn{
    cursor: pointer;
    color: #595bd4;
    font-size: 14px;
    margin-left: 6px;
    border: 1px solid #595bd4;
    font-size: 12px;
    padding: 0 2px;
}
.record_item_btn:hover{
    color: #3739af;
}
.record_item_btn:first-child{
    margin-left: 0;
}
.record_item_btns img{
    width: 16px;
    height: 16px;
    margin-left: 12px;
    cursor: pointer;
}
.record_item_date{
    color: #666;
    font-size: 12px;
}
.pagination_box{
    position: relative !important;
    margin-top: 24px;
}
.iframe_box {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #fff;

}
.iframe_box>div {
    display: none;
    height: 100%;
}
.iframe_position {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.iframe_header {
    display: flex;
    align-items: center;
    padding: 12px 21px;
    border-bottom: 1px solid #E5E5E5;
}

.iframe_header>span {
    cursor: pointer;
    margin-right: 6px;
}

.iframe_header img {
    width: 21px;
}

iframe {
    width: 100%;
    flex: 1;
}

.link_input_box {
    border: 1px solid #ccc;
    padding: 12px 16px;
    width: 100%;
    resize: none;
}
.export_box{
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    background: #fff;
    z-index: 102;
    padding-bottom: 24px;
    border-radius: 6px;
}
.export_box .export_header{
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
}
.export_box .export_header img{
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.export_box .export_body{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}
.export_box .export_body img{
    margin-bottom: 12px;
    width: 26px;
    height: 26px;
}
.export_box .export_btn{
    background: #595bd4;
    border-radius: 3px;
    padding: 0 12px;
    height: 28px;
    line-height: 28px;
    cursor: pointer;
    color: #fff;
    margin-top: 20px;
}
.export_box .export_btn:hover{
    background: #4d4fca;
}