﻿

/* 组合滑梯 */
.silde-list{

}
    .silde-list ul{ 
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 3%;
    }
    .silde-list ul li{
        display: inline-block;
        width: 30.625%;
        margin-right: 3.75%;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        box-shadow: 0 0 16px rgba(0, 0, 0, .1);
        overflow: hidden;
        margin-bottom: 3%;
        padding-bottom: 3%;
    }
    .silde-list ul li:nth-child(3n){
        margin-right: 0;
    }
    .silde-list ul li .list-img{
        display: inline-block;
        width: 100%;
        position: relative;
        padding-bottom: 61.22%;
        overflow: hidden;
    }
    .silde-list ul li .list-img img{
        display: inline-block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
}
    .silde-list ul li .list-txt{
        padding: 0 8%;
    }
    .silde-list ul li .list-txt h1{
        font-size: 20px;
        color: #666;
        margin-top: 8%;
        margin-bottom: 5%;
        overflow: hidden;
        text-overflow:ellipsis;
        white-space: nowrap;
    }
    
    .silde-list ul li .list-txt p{
        font-size: 14px;
        color: #666;
        line-height: 30px;
        margin-bottom: 8%;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .silde-list ul li .list-txt span{
        display: inline-block;
        width: 60px;
        height: 45px;
        background: url(../img/slide-arrow.png) no-repeat center center;
        background-size: 100% 100%;
    }
    .silde-list ul li:hover .list-img img{
        transform: scale(1.08);
        -webkit-transform: scale(1.08);
        -moz-transform: scale(1.08);
        -ms-transform: scale(1.08);
        -o-transform: scale(1.08);
}
    .silde-list ul li:hover .list-txt h1{
        color: #fccb00;
    }
    .silde-list ul li:hover .list-txt span{
        background: url(../img/tourism-h-arrow.png) no-repeat center center;
        background-size: 100% 100%;
    }

    @media(max-width:1420px){
        .silde-list ul li{
            margin-right: 3.6%;
        }
    }

    @media(max-width:990px){
        .silde-list ul li{
            width: 47.8%;
            margin-bottom: 5%;
        }
        .silde-list ul li:nth-child(3n){
            margin-right: 3.6%;
        }
        .silde-list ul li:nth-child(2n){
            margin-right: 0%;
        }
    }
    @media(max-width:570px){
        .silde-list ul li{
            width: 100%;
            margin-right: 0 !important;
            margin-bottom: 10%;
        }
        .silde-list ul li .list-txt h1 {
            font-size: 16px;
            margin-top: 4%;
            margin-bottom: 2%;
        }
        .silde-list ul li .list-txt p {
            font-size: 12px;
            color: #666;
            line-height: 24px;
            margin-bottom: 4%;
        }
        .silde-list ul li .list-txt span {
            display: inline-block;
            width: 45px;
            height: 30px;
        }
    }



