/*轮播图*/
#outer{
    width: 100%;
    position: relative;
}
#wrap{
    width: 100%;
    overflow: hidden;
}
#con{
    width: 40000px;
    overflow: hidden;
}
#con a{
    display: inline-block;
    text-align: center;
    width:1920px;
    float: left;
    background: #000;
}
#con img{
    width: 1920px;
    float: left;
  
}
#left{
    width: 50px;
    height: 104px;
    background:rgba(250,250,250,0.8);
    text-align: center;
    line-height: 104px;
    position: absolute;
    left: 0px;
    margin-top:-52px;
    top: 50%;
    font-size: 40px;
    cursor: pointer;
}
#right{
    width: 50px;
    height: 104px;
    background:rgba(250,250,250,0.8);
    text-align: center;
    line-height: 104px;
    position: absolute;
    right: 0px;
    margin-top:-52px;
    top: 50%;
    font-size: 40px;
    cursor: pointer;
}
#left:hover{
    color:rgb(194,52,38);
}
#right:hover{
    color:rgb(194,52,38);
}
/*轮播图结束*/