.banner {
    position: relative;
    text-align: center;
    width: 100%;
    height: 250px;
    min-width: 1500px;
}

    .banner > div:nth-of-type(1) {
        height: 100%;
    }

    .banner .img-show {
        object-fit: cover;
      /*  object-position: 0px -360px;*/
        height: 100%;
        width: 100%;
    }

    .banner .banner-bottom {
        position: relative;
        top: -104px;
        width: 100%;
        margin: 0 auto;
        background: url('../../../Static/Images/banner-shadow.png');
    }

.banner-nav {
    position: absolute;
    width: 100%;
    min-height: 80px;
    background-color: rgba(0,0,0,0.4);
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


    .banner-nav .dots {
    }

        .banner-nav .dots li {
            float: left;
            width: 140px;
            height: 60px;
            margin: 5px 38px 5px 0;
            text-align: center;
            border-radius: 22px;
        }

            .banner-nav .dots li:hover {
                background: #EF7C00;
                opacity: 1;
            }

            .banner-nav .dots li a {
                line-height: 60px;
                font-size: 20px;
                color: #fff;
            }

    .banner-nav .to-home {
        /*      position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto 0;
                height: 65px;*/
    }

        .banner-nav .to-home span {
            color: white;
            font-size: 16px;
            line-height: 60px;
        }

            .banner-nav .to-home span:hover {
                font-weight: bold;
            }
/*@font-face {
  font-family: fzlthk;
  src: url('../../fonts/fzlthk.ttf');
}*/
.picture-component {
    width: 510px;
    height: 350px;
    margin: 30px 15px 0 15px;
    overflow: hidden;
}

    .picture-component img {
        width: 510px;
        height: 350px;
    }

    .picture-component:hover .picture-info {
        visibility: visible;
    }

    .picture-component .picture-info {
        visibility: hidden;
        background: url('../../../Static/Images/picture-shadow_s.png') repeat;
        position: relative;
        top: -355px;
        left: 0;
        color: white;
        width: 510px;
        height: 350px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

        .picture-component .picture-info a {
            flex: 0 0 11%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 70px 15px 10px 15px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
        }

        .picture-component .picture-info p {
            color: white;
            text-align: center;
            font: 18px fzlthk,Microsoft YaHei;
            line-height: 40px;
        }

        /* .picture-component .picture-info p:hover {
                color: blue;
            }*/

        .picture-component .picture-info .picture-desc {
            flex: 1;
            font: 14px fzlthk,Microsoft YaHei;
            line-height: 30px;
            /*overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;*/
        }

            .picture-component .picture-info .picture-desc > div {
                height: 120px;
                margin: 0 40px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 4;
            }
/*.picture-component .picture-info .picture-desc::after {
                content: "...";
                position: absolute;
                bottom: 0;
                right: 0;
                padding-left: 40px;
                background: -webkit-linear-gradient(left, transparent, #fff 55%);
                background: -moz-linear-gradient(left, transparent, #fff 55%);
                background: -o-linear-gradient(left, transparent, #fff 55%);
                background: linear-gradient(to right, transparent, #fff 55%);
            }*/
.main-picture {
    width: 1100px;
    margin: 0 auto;
}

.article-paging {
    height: 43px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-content: center;
}

    .article-paging ul {
        height: 100%;
    }

        .article-paging ul li {
            width: 40px;
            height: 100%;
            line-height: 43px;
            border-left: 1px solid #dddddd;
            border-top: 1px solid #dddddd;
            border-bottom: 1px solid #dddddd;
            float: left;
            text-align: center;
        }

            .article-paging ul li:first-of-type {
                border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
            }

            .article-paging ul li:last-of-type {
                border-right: 1px solid #dddddd;
                border-top-right-radius: 5px;
                border-bottom-right-radius: 5px;
            }

            .article-paging ul li a {
                color: #337AB7;
                font-size: 18px;
            }

            .article-paging ul li:hover {
                background-color: #337AB7;
            }

                .article-paging ul li:hover a {
                    color: white;
                }
