img { border: 0; vertical-align: top; }

.shutter {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: auto;
  border-radius: 10px;
  
}

.shutter-img {
  z-index: 1;
}

.shutter-img a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.shutter-img img{
    width: 150px;
    height: 210px;
    /*第一个值是左右，第二个值是上下，第三个是模糊值*/
    -moz-box-shadow:8px 8px 5px rgba(0,0,0,.6);
    -webkit-box-shadow:8px 8px 5px rgba(0,0,0,.6);
    box-shadow:8px 8px 5px rgba(0,0,0,.6);
}

.shutter-img a {
  cursor: default;
}

.shutter-img .created {
  overflow: hidden;
  position: absolute;
  z-index: 20;
}

.shutter-btn {}
.shutter-btn li {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 49px;
  height: 49px;
  margin-top: -25px;
  cursor: pointer;
}

.shutter-btn li.prev {
  left: 20px;
  background: url(../img/shutter_prevBtn.png) no-repeat 0 -49px;
}

.shutter-btn li.next {
  right: 20px;
  background: url(../img/shutter_nextBtn.png) no-repeat 0 -49px;
}

.shutter-desc {
    display: none;
  position: absolute;
  z-index: 2;
  left: 70%;
  bottom: 0;
  width: 30%;
  height: 36px;
  background: url(../img/shutter_shadow.png) repeat;
}

.shutter-desc p {
  padding-left: 20px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
}

.shutter-div{
    width: 100%;
    height: 100%;
    position: relative;
}

.shutter-div .shutter-div-img{
    height: 100%;
    width: 40%;
    float: left;
    text-align: right;
}

.shutter-div .shutter-div-div{
    height: 100%;
    width: 60%;
    padding-left: 50px;
    padding-right: 10px;
    float: left;
    text-align: left;
}

.shutter-div .shutter-div-div p{
    margin: 10px 0;
    font-size: 18px;
    color: #FFF;
    /*以下为一行，多出的显示省略号*/
    display: -webkit-box!important;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.shutter-div .shutter-div-div p:nth-child(1){
    color:#0CF;
    font-size: 24px;
}