.clipvie{
    position: relative;
    padding: 2.2rem 0.5rem;
    border: 1px dashed #e2e2e2;
    text-align: center;
    cursor: pointer;
    color: #999;
}

textarea{
    resize: none !important;
}

.clipvie textarea{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: transparent;
    border: 0;
    z-index: 99;
}

.night .clipvie {
    background: #181a1b;
    border-color: #444;
}

.clipvie p{
    font-size: 0.6rem;
}

.clipvie p i{
    font-size: 2rem;
    display: block;
    margin-bottom: 1.2rem;
}


.resdivslist {
    
}

.item-card {
    background: #fff;
    padding: 0.75rem;
    border: 1px solid rgba(150, 180, 210, 0.3);
    overflow: hidden;
    margin-top: 0.75rem;
    border-radius: 3px;
}

.night .item-card{
    background-color: #181a1b;
    border: 1px solid #444;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e0ecf9;
    padding-bottom: 0.6rem;
    margin-bottom: 0.75rem;
}

.night .item-header{
    border-bottom: 1px solid #444;
}

.item-kind {
    background: #d4e4f5;
    color: #113355;
    border-radius: 3px;
    padding: 0px 0.5rem;
    height: 1.2rem;
    line-height: 1.2rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.night .item-kind{
    background-color: #444;
    color: #aaa;
}

.item-mime {
    background: #edf3fa;
    color: #1f4970;
    font-family: 'SF Mono', 'Fira Code', monospace;
    padding: 0px 0.5rem;
    height: 1.2rem;
    line-height: 1.2rem;
    border-radius: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.night .item-mime{
    background-color: #444;
    color: #aaa;
}

.preview-text {
    background: #f4f9ff;
    border-radius: 3px;
    padding: 0.5rem;
    min-height: 7.5rem;
    overflow: auto;
    white-space: pre-wrap;
    font-family: 'SF Mono', 'Fira Code', monospace;
    border: 1px solid #cbddee;
    width: 100%;
    display: block;
}

.night .preview-text{
    background-color: #232627;
    border: 1px solid #444;
    color: #eee;
}

.data-imgs{
    width: 10rem;
    height: 10rem;
    -o-object-fit: contain;
    object-fit: contain;
    border: 1px solid #dfe8f2;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
}

.night .data-imgs{
    border:1px solid #444;
}

.data-infos{
    border: 1px solid #dfe8f2;
    padding: 0.4rem 0 0.4rem 0.7rem;
    border-radius: 3px;
}

.night .data-infos{
    background-color: #232627;
    border: 1px solid #444;
}

.data-infos p{
    line-height: 1.8;
    font-size: 0.6rem;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-infos button{
    background-color: #05b672;
    color: #fff;
    border: 0;
    padding: 0.3rem 1rem;
    margin-top: 0.3rem;
    margin-bottom: 0.2rem;
    border-radius: 3px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .item-card{
        padding: 0.5rem;
    }
    .item-header {
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .data-imgs {
        margin-bottom: 0.5rem;
    }
}