﻿@media screen and (min-width:800px) {
    /* 本例子css */
    .picScroll-left {
        overflow: hidden;
        position: relative;
        width: 900px;
        height: 480px;
        margin: 0 auto;
        z-index: 2;
    }

        .picScroll-left .hd {
            overflow: hidden;
            padding: 0 10px;
        }

            .picScroll-left .hd .prev {
                display: block;
                width: 39px;
                height: 42px;
                position: absolute;
                top: 180px;
                left: 60px;
                overflow: hidden;
                cursor: pointer;
                background-color: #00C1DE;
                color: white;
                z-index: 10;
                opacity: 0;
                font-size: 30px;
                text-align: center;
                line-height: 42px;
            }

                .picScroll-left .hd .prev i {
                    position: absolute;
                    top: 4px;
                    left: 15px;
                }

            .picScroll-left .hd .next {
                display: block;
                width: 39px;
                height: 42px;
                position: absolute;
                top: 180px;
                right: 60px;
                overflow: hidden;
                cursor: pointer;
                background-color: #00C1DE;
                color: white;
                z-index: 10;
                opacity: 0;
                font-size: 30px;
                text-align: center;
                line-height: 42px;
            }

                .picScroll-left .hd .next i {
                    position: absolute;
                    top: 4px;
                    left: 15px;
                }

        .picScroll-left:hover .hd .prev {
            left: 0px;
            opacity: 1;
            -webkit-transition: 0.4s;
            -moz-transition: 0.4s;
            -o-transition: 0.4s;
            -ms-transition: 0.4s;
        }

        .picScroll-left:hover .hd .next {
            right: 0px;
            opacity: 1;
            -webkit-transition: 0.4s;
            -moz-transition: 0.4s;
            -o-transition: 0.4s;
            -ms-transition: 0.4s;
        }




        .picScroll-left .bd {
            padding: 10px;
        }

            .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;
                    border: 1px solid #00C1DE;
                }

    .bd {
        width: 900px;
        height: 420px;
        margin: 0 auto;
        cursor: pointer;
    }

    .picList li {
        height: 420px;
        position: relative;
        width: 280px;
        border-radius: 10px;
        position: relative;
    }
}

@media screen and (max-width:799px) {

     .picScroll-lefts {
        width: 80%;
        height: 480px;
        overflow: hidden;
        position: relative;
        margin:0 auto;
    }

        .picScroll-lefts .bds {
            height: 100%;
            position: relative;
        }

            .picScroll-lefts .bds ul {
                height: 100%;
                position: relative;
            }

            .picScroll-lefts .bds li {
                width: 100% !important;
                height: 100%;
                background-repeat: no-repeat;
                background-position: center center;
                border: 1px solid #00C1DE;
                border-radius:10px;
            }

                .picScroll-lefts .bds li a {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                }

        .picScroll-lefts .hd ul {
            text-align: center;
            position: absolute;
            left: 27%;
            bottom: 25px;
            width: 30%;
            min-width: 200px;
        }

        .picScroll-lefts .hd li {
            width: 18px;
            height: 18px;
            display: inline-block;
            background: rgba(5, 1, 2, .6);
            text-indent: 10px;
            cursor: pointer;
            border-radius: 50%;
        }

            .picScroll-lefts .hd li:last-child {
                margin-right: 0;
            }

            .picScroll-lefts .hd li.on {
                background: #efe6e6;
            }
        /* 下面是前/后按钮代码，如果不需要删除即可 */
        .picScroll-lefts .next {
            position: absolute;
            left: auto;
            right: 15%;
            top: 40%;
            margin-top: -25px;
            display: block;
            width: 80px;
            height: 80px;
            background: url(/Img/jt_right.png) no-repeat 0 -80px;
            opacity: 0;
        }

        .picScroll-lefts .prev {
            position: absolute;
            left: 15%;
            top: 40%;
            margin-top: -25px;
            display: block;
            width: 80px;
            height: 80px;
            background: url(/Img/jt_left.png) no-repeat 0 -80px;
            opacity: 0;
        }

          

        .picScroll-lefts:hover .next {
            right: 1%;
            -webkit-transition: 0.4s;
            -moz-transition: 0.4s;
            -o-transition: 0.4s;
            -ms-transition: 0.4s;
            opacity: 1;
        }

        .picScroll-lefts .prevStop {
            display: none;
        }

        .picScroll-lefts .nextStop {
            display: none;
        }

    .prev {
        display:block;
        position:absolute;
        left:0;

    }





    
}
