/* CSS Document */


/* CSS Document */
body {
    padding: 0;
    margin: 0;
}

img {
    border: none;
}

.view-first {
    position: relative;
}

.view-first img {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

div.mask-hover img, .view:hover img {
    width: 130px;
    height: 100px;
}

.view {
    position: relative;
    text-align: center;
    cursor: default;
    width: 238px;
    height: 208px;
    margin: 20px;
    background: rgba(250, 250, 250, 0.8);
    padding: 10px;
    overflow: hidden;
    float: left;
}

.view .mask {
    width: 228px;
    overflow: hidden;
    margin: 0 auto;
}

.view .title {
    text-align: center;
    position: relative;
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 12px;
    height: 20px;
    line-height: 20px;
}

.view .title a {
    color: #00a1f3;
    text-decoration: none;
}

.view .text {
    position: relative;
    text-align: left;
    font-size: 12px;
    line-height: 18px;
    color: #333;
}

@media screen and (max-width: 1200px) {
    .view {
        width: 20%;
        margin: 20px 0;
    }
}
@media screen and (max-width: 980px) {
    .view .mask{
        width: 100%;
    }
    .view .mask a{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        display: inline-block;
    }
}
@media screen and (max-width: 768px) {
    .view {
        width: 40%;
        margin: 20px 0;
    }
}