@keyframes tv-ch-glowAnim {
    from {box-shadow: 0 0 10px #e6dc76;}
    to {box-shadow: 0 0 4px #d6cc66;}
}

.tv-ch {
    float:left;
    margin:4px;
    width:100px;
    height:75px;
}

.tv-ch:hover
{
    animation-name: tv-ch-glowAnim;
    animation-duration: 500ms;
    animation-iteration-count: infinite;
}

.tv-cate {
    float: left;
    margin: 4px;
}

@media only screen and (max-width: 500px) {
    .tv-ch {
        float:left;
        margin:4px;
        width:20%;
        height:14%;
    }
}