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

.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: 1px solid #eee;
    border-left: 4px solid #3498db;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    min-width: 0;
}

.night .demodatalist>div {
    background-color: #181a1b;
    border: 1px solid #444;
    border-left: 4px solid #3498db;
}

.demodatalist>div>div{
    margin-bottom: 8px;
    font-size: 0.6rem;
    word-wrap: break-word;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demodatalist>div>div:last-child{
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 0;
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
}

.night .demodatalist>div>div:last-child{
    border-top: 1px solid #444;
}

.demodatalist button,.demodatalist a{
    width: calc(50% - 0.375rem);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.6rem;
    background-color: #05b672;
    border: 1px solid #05b672;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

.demodatalist a{
    background-color: #607D8B;
    border: 1px solid #607D8B;
}

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

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