/*轮播图样式*/
.wrap{
    width: 100%;
    height: auto;
    position: relative;

}
.banner {
    width: 100%;
 
    overflow: hidden;
}
.banner .bannerCon {
    width: 100% ;
    overflow: hidden;
}
.bannerCon .imgList {
    position: relative;
    top: 0;
    left: 0;
    width: 99999px;

}

.bannerCon .imgList li {
    float: left;
    width: 100%;
    position: relative;

}
.bannerCon .imgList li h3{
    font-size: 22px;
    color: #ffffff;
    line-height: 60px;
    /*width: 300px;*/
    font-weight: normal;
    padding-left: 20px;
    padding-right: 100px;
    height: 60px;
    position: absolute;
    left: 20%;
    bottom: 2%;
    background-color: rgba(0,0,0,0.5);
}
.bannerCon .imgList li a {
    display: block;
    width: 100%;
}
.bannerCon .imgList li img {
    width: 100%;
    height: auto;
}
.bannerCon .pre-nex {
    display: none;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -40px;
    font: bold 40px/60px Simsun;
    color: #ccc;
    text-align: center;
    border:none;
    background: rgba(0,0,0,.30);
    cursor: pointer;
    z-index: 999;
}
.bannerCon .pre-nex.show { display: inline-block; }
.bannerCon .prev { left: 13%; }
.bannerCon .next { right: 13%; }
.bannerCon .btnList {
    position: absolute;
    left: 50%;
    margin-left:450px;
    bottom: 12%;
    z-index: 2;
    overflow: hidden;
}
.bannerCon .btnList li {
    float: left;
}
.bannerCon .btnList li span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 6px;
    background-color:#ffffff;
    cursor: pointer;
}
.bannerCon .btnList li.cur span { background-color: #14829e; }
