.travel-list{
    margin: 0 -9px;
}
.travel-list .item {
    width: 25%;
    padding: 0 9px;
    margin-bottom: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.travel-list .item .box{
    max-width: 300px;
    position: relative;
    margin: 0 auto;
    display: block;
}
.travel-list .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    background: #000;
}

.travel-list .item .title{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(86, 82, 71, 0.5);
    color: #FFF;
    padding: 5px;
    font-size: 16px;

}
.travel-list .item .title a{
    display: block;
         white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.travel-list .box:hover .pic img{
    opacity: 0.5;
-webkit-transition: all 150ms linear;
   -moz-transition: all 150ms linear;
     -o-transition: all 150ms linear;
	transition: all 150ms linear;
}

.travel-list .box .pic >a:after {
    content: "";
    display: block;
    width: 187px;
    height: 120px;
    background: url(../../images/common/travel/cover.png);
    position: absolute;
    left: -101px;
    top: 55px;
    transform:rotate(-55deg);
    opacity: 0;
}
.travel-list .box:hover .pic >a:after {
    left: 0;
    top: 50px;
    z-index: 1;
    transform:rotate(0deg);
-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
     -o-transition: all 200ms linear;
	transition: all 200ms linear;
    opacity: 1;
}
.travel-list .description{
    width: 100%;
    height: 125px;
    overflow: hidden;
}

@media screen and (max-width: 1000px) {
    .travel-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .travel-list .item {
        width: 100%;
    }
}