.theme-list {
    padding: 10px;
}

.theme-list li {
    display: inline-block;
    margin-bottom: 20px;
    vertical-align: top;
}

.theme-list li .theme-container{
    width: 93%;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 5px #eee;
}

.theme-list li .theme-container:hover {
    box-shadow: 0 0 10px #ccc;
}

.theme-list li .theme-container .img-wrapper {
    padding-bottom: 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #efefef;
    position: relative;
}
.mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background-color: rgba(0,0,0,0.5); */
    background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%);
    background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,.1) 50%);
    background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,0.8) 0%, rgba(0,0,0,.1) 50%);
    background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,.1) 50%);
    background-image: linear-gradient(bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,.1) 50%);
}
.theme-list li .theme-container .img-wrapper .title{
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: #fff;
}
.theme-list li .theme-container .info {
    text-align: center;
    /*padding: 6px;*/
}

.theme-list li .theme-container .info .like-info {
    color: #00ab6b;
    font-size: 1em;
}

.theme-list li .theme-container .info .iconfont {
    margin-right: 6px;
    font-size: 1em;
    vertical-align: middle;
}

@media (min-width: 800px) {
    .theme-list li {
        width: 33%;
    }

    .theme-list li:nth-child(4n) {
        margin-right: 0;
    }
     .like-info .f-r:hover span{
        color: #00ab6b;
    }
    .like-info .f-l:hover span{
        color: #00ab6b;
    }
}

@media (max-width: 800px) {
    .theme-list li {
        width: 100%;
    }

    /*.theme-list li:nth-child(2n+1) {
        margin-right: 4%;
    }*/
    .theme-list li .theme-container{
        margin: 0 auto;
    }

}

.load-more-block {
    margin-top: 5px;
}
.like-info{
    border-top: 1px solid #eee;
}
.like-info .f-l{
        width: 49%;
        text-align: center;
        border-right: 1px solid #eee;
        line-height: 45px;
    }
    .like-info .f-r{
        width: 49%;
        text-align: center;
        line-height: 45px;
    }
    .info .name{
        line-height: 45px;
    }