
        .grouplist {
            width: 100%;
        }

        .grouplist-content {
            width: 1200px;
            margin: 0 auto;
            position: relative;
            margin-bottom: 100px;
        }

        .grouplist-content-title {
            margin-top: 60px;
            font-size: 24px;
            font-family: PingFangSC-Medium, PingFang SC;
            font-weight: 500;
            color: #333333;
        }

        .grouplist-content-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: start;
        }

        .grouplist-content-imgbox {
            width: 264px;
            overflow: hidden;
            margin-top: 48px;
            margin-left: 48px;
            cursor: pointer;
        }

        .grouplist-content-imgbox img {
            width: 100%;
            transition: all 0.6s;
        }

        .grouplist-content-imgbox:hover img {
            transform: scale(1.3);
        }

        .news-more {
            text-align: center;
            margin-top: 60px;
            margin-bottom: 80px;
            cursor: pointer;
        }

        .news-more img {
            margin-left: 12px;
        }


        /* 弹出框 */

        .popup-group-info {
            background-color: rgba(0, 0, 0, 0.5);
            height: 100vh;
            position: fixed;
            width: 100vw;
            left: 0;
            top: 0;
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999999999999;
        }

        .popup-group-content {
            transition: all 0.5s;
            opacity: 0;
        }

        /* swiper */
        .sw-popup {
            width: 960px;
            height: 540px;
            overflow: initial;
        }

        .sw-popup .swiper-slide {
            width: 960px;
            height: 540px;
            background-position: center;
            background-size: cover;
        }

        .swiper-button-next:after {
            content: url('/static/home/img/icon_pic_next.png');
        }

        .swiper-button-prev:after {
            content: url('/static/home/img/icon_pic_previous.png')
        }

        .swiper-button-next {
            right: -90px;
        }

        .swiper-button-prev {
            left: -90px;
        }


        @media (min-width: 1200px) {
            .grouplist-content-imgbox:nth-child(4n-3) {
                margin-left: 0px;
            }
        }

        @media (max-width: 1200px) {
            .grouplist-content-imgbox {
                margin-left: 1%;
            }

            .grouplist-content {
                width: 90%;
            }

            .grouplist-content-list {
                justify-content: space-between;
            }

            .swiper-button-next {
                right: 10px;
            }

            .swiper-button-prev {
                left: 10px;
            }
        }

        @media (max-width: 920px) {
            .grouplist-content-imgbox {
                width: 44vw;
            }

            .grouplist-content-imgbox {
                margin-left: 0%;
                margin-top: 5%;
            }

            .news-more {
                margin-top: 40px;
                margin-bottom: 60px;
            }
        }

        @media (max-width: 1000px) {
            .sw-popup {
                width: 90vw;
                height: 50.625vw;
            }

            .sw-popup .swiper-slide {
                width: 90vw;
                height: 50.625vw;
            }
        }

        @media (max-width: 620px) {

            .swiper-button-next:after,
            .swiper-button-prev:after {
                transform: scale(0.5);
            }
        }

        @media (max-width: 450px) {
            .grouplist-content-title {
                font-size: 20px;
                margin-top: 20px;
            }
        }