/* jQuery Carousel
 * Copyright 2010 - 2013 Kevin Sylvestre
 * 1.1.4
 */
.content {width: 100%; height:300px;font-family:Microsoft YaHei;}
.content .s1 { width:100%; float:left; height:300px; background-position:center; background-repeat:no-repeat; background-size:cover; position:relative;}
.content .s1{ background-image:url(../images/01.jpg)}
.content .s2{ background-image:url(../images/03.jpg)}
.content .s3{ background-image:url(../images/02.jpg)}
.content .s4{ background-image:url(../images/04.jpg)}
.content .s5{ background-image:url(../images/05.jpg)}

.content span { width:100%; height:45px; text-align:center; position:absolute; left:0; bottom:0; z-index:9; background:url(../images/wap_bg1.png) repeat; display:block;}
.content p {width:100%; height:45px; color:#fff; font-size:16px; line-height:45px; text-align:center; position:absolute; left:0; bottom:0; z-index:90;}
.carousel {
  position: relative;
  text-align: center; }
  .carousel .previews {
    overflow: hidden;
    position: relative;
    width: 100%; }
    .carousel .previews .preview {
      display: none;
      position: relative;
      width: 100%;
      -webkit-transition: all 0.4s ease-in-out;
      -moz-transition: all 0.4s ease-in-out;
      -ms-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
      .carousel .previews .preview.active {
        top: 0;
        left: 0;
        display: block; }
        .carousel .previews .preview.active.nexting {
          left: -100%; }
        .carousel .previews .preview.active.preving {
          left: 100%; }
      .carousel .previews .preview.next {
        top: 0;
        left: 100%;
        display: block;
        position: absolute; }
        .carousel .previews .preview.next.nexting {
          left: 0; }
      .carousel .previews .preview.prev {
        top: 0;
        left: -100%;
        display: block;
        position: absolute; }
        .carousel .previews .preview.prev.preving {
          left: 0; }
      .carousel .previews .preview img {
        max-width: 100%;
        max-height: 100%; }
  .carousel .controls .pages {
    position: absolute;
    height: 40px;
    bottom: 0;
    left: 0;
    right: 0; }
    .carousel .controls .pages .page {
      width: 10px;
      height: 10px;
      margin: 10px;
      outline: none;
      display: inline-block;
      border-radius: 5px;
      -webkit-transition: all 0.4s ease-in-out;
      -moz-transition: all 0.4s ease-in-out;
      -ms-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out;
      background: rgba(0, 0, 0, 0.4); }
      .carousel .controls .pages .page:hover {
        background: rgba(0, 0, 0, 0.6); }
      .carousel .controls .pages .page .active {
        background: black; }
  .carousel .controls .prev, .carousel .controls .next {
    text-decoration: none;
    position: absolute;
    display: block;
    width: 20px;-moz-opacity:0.7; filter:alpha(opacity=70); opacity:0.7;
    height: 50px; border:0;
    top: 50%; margin-top:-25px; cursor:pointer;
  }
    .carousel .controls .prev { background:#333 url(../images/left.png) no-repeat center;left: 10px; background-size:20% 20%;}
    .carousel .controls .next { background:#333 url(../images/right.png) no-repeat center;right: 10px; background-size:20% 20%;}
