.cleardiv{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
}

.dl{
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #eee;
    margin-bottom: 0.75rem;
    border-radius: 3px;
}

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

.dl h2{
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.dl p{
    font-size: 0.6rem;
    line-height: 1.8;
}

.night .dl p{
    color:#aaa;
}

.butspans{
    margin-top: 0.5rem;
    margin-bottom: 0.15rem;
    display: inline-block;
    border: 1px solid #eee;
    padding: 0.3rem;
    display: inline-block;
    background-color: #eeee;
    border-radius: 6px;
}

.night .butspans{
    border: 1px solid #333;
    background-color: #222;
}

.butspans span{
    padding: 0.3rem 0.6rem;
    display: inline-block;
    cursor: pointer;
    -webkit-transition:all .3s ease-out 0s;
    -o-transition:all .3s ease-out 0s;
    transition:all .3s ease-out 0s;
}
.butspans span.act{
    background-color: #fff;
    border-radius: 6px;
}

.night .butspans span.act{
    background-color: #444;
}

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

.dr{
    border: 1px solid #eee;
    padding: 0.25rem;
}

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

.dr>div{
    width: calc(100% / 4);
    float: left;
    text-align: center;
    padding: 0.25rem;
}
.dr>div img{
    border: 1px solid #eee;
    display: block;
    cursor: pointer;
    width: 100%;
}

.night .dr>div img{
    border: 1px solid #444;
    border-radius: 3px;
    overflow: hidden;
}


.ifarm{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
}

@media screen and (max-width: 1300px){
    .dr>div {
        width: calc(100% / 3);
    }
}
@media screen and (max-width: 1030px){
    .dr>div {
        width: calc(100% / 2);
    }
}
@media screen and (max-width: 884px) {
    .dr>div {
        width: calc(100% / 3);
    }
}
@media screen and (max-width: 767px) {
    .dr>div {
        width: calc(100% / 2);
    }
}