.demodatas{
    border: 1px solid #eee;
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 0.75rem;
}

.night .demodatas{
    border:1px solid #444;
}

.demodatas .tits{
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.night .demodatas .tits{
    border-bottom: 1px solid #444;
}

.demodatalist{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.demodatalist>div{
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
}

.night .demodatalist>div {
    background-color: #444;
}

.demodatalist>div>div:first-child{
    font-weight: 600;
    color: #3498db;
    margin-bottom: 8px;
    font-size: 0.6rem;
}

.demodatalist>div>div:last-child{
    font-size: 0.6rem;
    word-wrap: break-word;
}

@media screen and (max-width: 1048px){
    .demodatalist{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 490px){
    .demodatalist{
        grid-template-columns: repeat(1, 1fr);
    }
}

/********************************/

.fcard{
    position: relative;
    padding: 1.5rem 0;
    border: 1px solid #eee;
    margin-top: 0.75rem;
}

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

.fcard .frender {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fcard .fbtns {
    position: absolute;
    top: 4px;
    right: 8px;
    display: flex;
    gap: 6px;
}

.fcard .fbtns button {
    padding: 2px 5px;
    border: 0;
    font-size: 0.5rem;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
}

button.dl {
    background: #27ae60;
}

button.dl.png {
    background: #e67e22;
}