.pc-box {
    display: block !important;
}

.phone-box {
    display: none !important;
}

.pc-box-flex {
    display: flex !important;
}

.phone-box-flex {
    display: none !important;
}

@media screen and (max-width: 950px) {
    .pc-box {
        display: none !important;
    }

    .phone-box {
        display: block !important;
    }

    .pc-box-flex {
        display: none !important;
    }

    .phone-box-flex {
        display: flex !important;
    }
}

@media screen and (max-width: 950px) {
    .swhomeban .swiper-slide .img1 {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .has-left-sidebar .content-container {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: auto;
        /* 同一行的高度相同 */
        grid-column-gap: 10px;
        grid-row-gap: 10px;

    }

    .has-left-sidebar #main {
        grid-column: 1;
        grid-row: 1;
    }

}