.video-thumb-box {
    position: relative;
    width: 1000px;
    left: -13px;
    text-align: center;
  }
  .video-thumb-box a {
    text-decoration: none;
  }
  .video-thumb {
    position: relative;
    float: left;
    margin: 0px 10px;
    padding: 0;
	-webkit-box-shadow:0 0 4px rgba(0,0,0,0.3);
	   -moz-box-shadow:0 0 4px rgba(0,0,0,0.3);
	        box-shadow:0 0 4px rgba(0,0,0,0.3);
	-moz-border-radius:4px;
	     border-radius:4px;
  }
  .video-thumb-title {
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 265px;
    height: 41px;
    padding: 8px 20px;
    background: url(/data/common/images/video-thumb-over.png) 0 0 no-repeat;
    color: #fff;
    font-family: pt-regular, sans-serif;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
  }
  .video-thumb:hover .video-thumb-title {
    color: gold;
  }
  .video-thumb img {
    display: block;
  }
  .video-thumb:after {
    content: '';
	display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/data/common/images/video-play.png) center no-repeat;
  }
  .video-thumb:hover:after {
    background-image: url(/data/common/images/video-play-over.png);
  }
  .video-thumb:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow:0 2px 6px rgba(0,0,0,0.5);
       -moz-box-shadow:0 2px 6px rgba(0,0,0,0.5);
            box-shadow:0 2px 6px rgba(0,0,0,0.5);
    -moz-border-radius:100px / 10px;
         border-radius:100px / 10px;
  }