html,
body {
    margin: 0;
    height: 100%;
    width: 100%;
}

main {
    background-color: #f7f7f7;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}

    main .new-top {
        min-width: 1200px;
        position: relative;
        overflow: hidden;
    }

        main .new-top .banner {
            width: 100%;
            height: 520px;
            object-fit: cover;
        }

        main .new-top .MP-banner {
            display: none;
            width: 100%;
        }

        main .new-top .crumbs {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 60px;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

            main .new-top .crumbs .crumbs-info {
                margin: 0 auto;
                width: 62.5%;
                min-width: 1200px;
                height: 100%;
                display: flex;
                justify-content: flex-end;
                align-items: center;
                color: #ccc;
                font-size: 14px;
            }

                main .new-top .crumbs .crumbs-info > img {
                    margin-right: 6px;
                    width: 18px;
                    height: 18px;
                }

                main .new-top .crumbs .crumbs-info > a {
                    color: #ccc;
                }

                    main .new-top .crumbs .crumbs-info > a:hover {
                        color: #fff;
                    }

    main .bar {
        display: flex;
        width: 670px;
        margin: 80px auto 48px;
    }

        main .bar .sub {
            width: 218px;
            height: 50px;
            line-height: 50px;
            font-size: 18px;
            text-align: center;
            color: #333333;
        }

            main .bar .sub a {
                color: #333333;
            }

        main .bar .exit {
            background-color: #1758ce;
            color: #ffffff;
        }

            main .bar .exit a {
                color: #ffffff;
            }

    main .news {
        width: 62.5%;
        min-width: 1200px;
        margin: 0 auto;
    }

        main .news .newitem {
            width: 100%;
            height: 390px;
            margin-top: 20px;
            background-color: #ffffff;
            display: flex;
            justify-content: space-between;
            padding: 50px 40px 70px 40px;
            box-sizing: border-box;
        }

            main .news .newitem .newimg {
                width: 440px;
                height: 270px;
                background-color: #eeeeee;
                overflow: hidden;
                /*line-height: 440px;*/
            }


                main .news .newitem .newimg img {
                    width: 100%;
                    background-color: #eeeeee;
                }

            main .news .newitem .intro {
                display: flex;
                width: 50%;
                justify-content: space-between;
            }

                main .news .newitem .intro .date {
                    width: 100px;
                    height: 100px;
                    background-color: #ffffff;
                    border: solid 2px #cfd9f7;
                    font-size: 18px;
                    color: #204edf;
                    font-weight: bold;
                    text-align: center;
                    align-items: center;
                    padding-top: 24px;
                    box-sizing: border-box;
                }

                    main .news .newitem .intro .date .day {
                        font-size: 30px;
                    }

                main .news .newitem .intro .newcont {
                    width: 408px;
                }

                    main .news .newitem .intro .newcont .newtitle {
                        font-size: 24px;
                        line-height: 40px;
                        color: #333333;
                        font-weight: bold;
                    }

                    main .news .newitem .intro .newcont .newpart {
                        margin-top: 40px;
                        font-size: 14px;
                        line-height: 24px;
                        color: #999999;
                    }

                main .news .newitem .intro .detailbutton {
                    margin-top: 50px;
                    float: right;
                    width: 180px;
                    height: 45px;
                    background-color: #1758ce;
                    border-radius: 4px;
                    border: none;
                    font-size: 16px;
                    line-height: 24px;
                    color: #ffffff;
                }

            main .news .newitem:hover .intro .newtitle {
                color: #ff4325;
            }

            main .news .newitem:hover .intro .detailbutton {
                background-color: #ff4325;
                cursor: pointer;
            }

@media screen and (max-width: 1230px) {
    main .new-top {
        min-width: 1000px;
    }

        main .new-top .crumbs .crumbs-info {
            min-width: 1000px;
        }

    main .bar {
        width: 70%;
    }

        main .bar .sub {
            width: 32%;
        }

    main .news {
        width: 98%;
        min-width: auto;
    }

        main .news .newitem {
            padding: 1vw;
            height: auto;
        }

            main .news .newitem .newimg {
                width: 40%;
                height: auto;
            }
}

@media screen and (max-width: 1020px) {
    main .new-top {
        min-width: auto;
    }

        main .new-top .PC-banner {
            display: none;
        }

        main .new-top .MP-banner {
            display: block;
        }

        main .new-top .crumbs .crumbs-info {
            width: 92%;
            min-width: auto;
        }

    main .bar {
        width: 94%;
        margin: 30px auto 20px;
    }

    main .news .newitem {
        margin: 0 auto 10px;
        width: 94%;
        flex-direction: column;
        padding: 7%;
    }

        main .news .newitem .newimg {
            width: 100%;
        }

        main .news .newitem .intro {
            width: 100%;
            margin-top: 20px;
        }

            main .news .newitem .intro .date {
                padding-top: 3vw;
                font-size: 3vw;
                width: 17vw;
                height: 17vw;
            }

                main .news .newitem .intro .date .day {
                    font-size: 5vw;
                }

            main .news .newitem .intro .newcont {
                width: 70%;
            }

                main .news .newitem .intro .newcont .newtitle {
                    font-size: 5vw;
                    line-height: 6vw;
                }

                main .news .newitem .intro .newcont .newpart {
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    overflow: hidden;
                    font-size: 3.4vw;
                    margin-top: 30px;
                }

            main .news .newitem .intro .detailbutton {
                margin-top: 36px;
            }

        main .news .newitem:hover .intro .newtitle {
            color: #333;
        }

        main .news .newitem:hover .intro .detailbutton {
            background-color: #1758CE;
        }

   
}
/*# sourceMappingURL=new.css.map */

.page-turn {
    width: 62.5%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2em;
    font-size: 14px;
    margin-top: 50px;
    text-align: right;
}

    .page-turn a {
        color: #333333;
        font-size: 14px;
        display: inline-block;
        line-height: 2em;
        padding: 0 15px;
        text-align: center;
        margin: 0 10px;
        background-color: #fff;
        font-weight: bold;
    }

        .page-turn a:hover {
            background-color: #204edf;
            color: white;
        }


    .page-turn .prev {
        background: url('../static/img/lt.png') no-repeat center;
    }

    .page-turn .next {
        background: url('../static/img/rt.png') no-repeat center;
    }

    .page-turn a.active {
        background-color: #204edf;
        color: white;
    }
