
.myboxs{
    width:100%;
}
.boxs{
    width:100%;
}
.bigPics{
    width:100%;
}
.bigPics img{
    width:100%;
}
/* 本例子css */
.picScroll-left {
    width:100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;
}

.picScroll-left .hd {
    overflow: hidden;
    /*height: 30px;*/
    /*background: #f4f4f4;*/
    /*padding: 0 10px;*/
}

.picScroll-left .hd .prev, .picScroll-left .hd .next {
    display: block;
    width: 20px;
    height: 54px;
    line-height: 54px;
    float: right;
    margin-right: 5px;
    overflow: hidden;
    cursor: pointer;
    background: #ccc;
    color:#fff;
    font-size:26px;
    position:absolute;
    top:20%;
}
.picScroll-left .hd .prev {
    left:0;
}
.picScroll-left .hd .next {
    background-position: 0 -50px;
    right:0;
}

.picScroll-left .hd .prevStop {
    background-position: -60px 0;
}

.picScroll-left .hd .nextStop {
    background-position: -60px -50px;
}

.picScroll-left .hd ul {
    float: right;
    overflow: hidden;
    zoom: 1;
    margin-top: 10px;
    zoom: 1;
}

.picScroll-left .hd ul li {
    float: left;
    width: 9px;
    height: 9px;
    overflow: hidden;
    margin-right: 5px;
    text-indent: -999px;
    cursor: pointer;
    background: url("images/icoCircle.gif") 0 -9px no-repeat;
}

.picScroll-left .hd ul li.on {
    background-position: 0 0;
}

.picScroll-left .bd {
    padding: 10px 40px;
}

.picScroll-left .bd ul {
    overflow: hidden;
    zoom: 1;
}

.picScroll-left .bd ul li {
    margin: 0 8px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
}

.picScroll-left .bd ul li .pic {
    text-align: center;
}

.picScroll-left .bd ul li .pic img {
    display: block;
    padding: 2px;
    width:100%;
    height:60px;
}

.picScroll-left .bd ul li .pic a:hover img {
    border-color: #999;
}

.picScroll-left .bd ul li .title {
    line-height: 24px;
}
@media screen and (max-width:767px) {
    .content{
        width:100%;
    }
    .boxs{
        width:100%;
    }
    .picScroll-left{
        position:static;
    }
    .picScroll-left .hd .prev, .picScroll-left .hd .next{
        display:inline-block;
        position:static;
        float:none;
        margin:0 15px;
        width:30px;
    }
    .picScroll-left .bd{
        padding:10px 5px;
    }
}