/* jQuery Carousel
 * Copyright 2010 - 2013 Kevin Sylvestre
 * 1.1.4
 */
.content {width: 100%; height:550px;font-family:Microsoft YaHei;}
.content .s1,.content .s2 { width:49.8%; float:left; height:550px; background-position:center; background-repeat:no-repeat; background-size:cover;}
.content .s1{ background-image:url(../images/syc1.jpg)}
.content .s2{ background-image:url(../images/syc2.jpg)}
.content .s3{ background-image:url(../images/syc3.jpg)}
.content .s4{ background-image:url(../images/syc4.jpg)}
.content .s5{ background-image:url(../images/syc5.jpg)}
.content .s6{ background-image:url(../images/syc6.jpg)}

.content .s2 { float:right;}
.content .tex { width:465px; height:285px; color:#fff; font-size:16px; line-height:31px; text-align:center;}
.content .tex h3 { font-size:28px; padding:35px 0;}
.content .tex p { height:150px; overflow:hidden;}
.content .tex p a { display:block; color:#fff;}
.content .s1 .tex { float:right; padding:80px 60px 0 0}
.content .s2 .tex { float:left; padding:80px 0 0 60px}
.content a.more { display:block; padding-top:50px; text-decoration:none;color:#fff;text-shadow:#545454 2px 3px 6px;}
.content a.more img { vertical-align:middle; margin-left:10px;}
.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: 50px;-moz-opacity:0.7; filter:alpha(opacity=70); opacity:0.7;
    height: 90px; border:0;
    top: 50%; margin-top:-45px; cursor:pointer;
  }
    .carousel .controls .prev { background:#333 url(../images/left.png) no-repeat center;left: 20px; background-size:50% 50%;}
    .carousel .controls .next { background:#333 url(../images/right.png) no-repeat center;right: 20px; background-size:50% 50%;}
