/* .view {
  border: 10px solid #fff;
  box-shadow: 1px 1px 2px #e6e6e6;
  cursor: default;
  float: left;
  height: 400px;
  margin: 10px;
  overflow: hidden;
  position: relative;
  width: 30%;
} */
.view {
  box-shadow: 0 0 2px 0 #ccc;
  cursor: default;
  float: left;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 33%;
}
.view .mask, .view .content {
  left: 0;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
}
/* .view img {
    display: block;
    height: 100%;
    margin: 0 auto;
    position: relative;
    width: auto;
} */
.view img {
  display: block;
  height: 97%;
  margin: 5px auto 0;
  position: relative;
  width: auto;
}
.view h2 {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  color: #fff;
  font-size: 17px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.view p {
  color: #fff;
  font-family: Georgia,serif;
  font-size: 12px;
  font-style: italic;
  position: relative;
  text-align: center;
}
.view a.info {
   display: inline-block;
   text-decoration: none;
   padding: 7px 14px;
   background: #000;
   color: #fff;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
   width:94%;
   text-align: center;
}
.view a.info: hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}