﻿.gallery{
    width:100%;
    min-width:1300px;
}
.gallery.gallery-cell{
    height:700px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.gallery-cell img{
    width:1920px;
}


/* position dots in gallery */

.flickity-page-dots {
    bottom: 22px;
}
    /* white circles */

    .flickity-page-dots .dot {
        width: 12px;
        height: 12px;
        opacity: 1;
        background: transparent;
        border: 2px solid white;
    }
        /* fill-in selected dot */

        .flickity-page-dots .dot.is-selected {
            background: white;
        }

body {
    margin: 0
}



/*第二组图片滚动*/

.gallery2 {
    width: 100%;
    /* full width */
    height: 230px;
    margin-bottom: 10px;
    margin-top: 10px;
}

    .gallery2 .gallery-cell {
        height: 230px;
        width: 275px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .gallery2 .gallery-cell img {
            width: 232px;
            height: 191px;
            border-radius: 5px;
            box-shadow: 0px 0px 10px 1px #ccc;
            transition: all 0.5s;
        }

            .gallery2 .gallery-cell img:hover {
                box-shadow: 0px 0px 5px 1px #999;
                transition: all 0.5s;
            }

        .gallery2 .gallery-cell span {
            margin-top: 10px;
            font-size: 14px;
            font-weight: bold;
        }

    .gallery2 .flickity-prev-next-button {
        width: 30px;
        height: 30px;
        top: 110px;
    }

        .gallery2 .flickity-prev-next-button.previous {
            left: 5px;
            border: 1px solid #666;
        }

        .gallery2 .flickity-prev-next-button.next {
            right: 5px;
            border: 1px solid #666;
        }