    /*  */
    .CaseSearch {
        margin: 0 auto;
        width: 100%;
        max-width: 700px;
        height: 80px;
        border-radius: 50px;
        border: 1px solid var(--color);
        overflow: hidden;
        display: flex;
    }

    .CaseInput {
        width: calc(100% - 80px);
        height: 80px;
        padding-left: 45px;
        outline: none;
    }

    .CaseButn {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    .CaseButn i {
        font-size: 20px;
        color: var(--color);
    }

    .PostList {
        margin-top: 60px;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 20px;
    }

    .PostItem {
        width: 100%;
        background: #FFF;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    }

    .PostItem .img {
        width: 50%;
    }

    .PostItem .img img {
        width: 100%;
    }

    .PostItem .text {
        border: 1px solid #E6E7E8;
        width: 50%;
        height: 100%;
        padding: 45px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        grid-gap: 15px;
    }

    .PostItem .text h1 {
        color: #000;
        font-size: 24px;
    }

    .PostItem .text span {
        display: block;
        width: 50px;
        height: 4px;
        background: var(--color);
    }

    .PostItem .text h2 {
        color: #434343;
        font-size: 16px;
    }

    .PostItem .text .Swiper1 {
        width: 100%;
    }

    .PostItem .text .Swiper1 .swiper-wrapper {
        transition-timing-function: linear;
    }

    .Slide1 {
        width: 120px;
        background: #F4F4F4;
    }

    .Slide1 img {
        width: 100%;
    }

    @media (max-width: 1600px) {
        .PostItem .text {
            padding: 10px 30px;
            grid-gap: 10px;
        }

        .PostItem .text h2 {
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }
    }


    @media (max-width: 1200px) {
        .Slide1 {
            width: 80px;
        }

        .PostItem .text h2 {
            font-size: 14px;
        }
    }

    @media (max-width: 900px) {
        .PostItem {
            display: flex;
            flex-wrap: wrap;
        }

        .PostItem .img {
            width: 100%;
        }

        .PostItem .text {
            padding: 30px 15px;
            width: 100%;
            height: auto;
        }
    }

    @media (max-width: 600px) {
        .PostItem .text h1 {
            font-size: 18px;
        }

        .CaseSearch {
            margin: 30px auto;
            height: 60px;
        }

        .CaseInput {
            height: 60px;
            padding-left: 20px;
            width: calc(100% - 40px);
        }

        .CaseButn {
            height: 60px;
            width: 40px;
        }
    }

    @media (max-width:380px) {}

    /* 详情 */
    .ContentBox {
        width: 100%;
        margin-bottom: 75px;
    }

    .ContentBox .title {
        color: #000;
        text-align: center;
        font-family: MiSans2;
        font-size: 28px;
    }

    .ContentBox .content {
        display: block;
        width: 100%;
        margin: 30px 0;
    }

    .ContentBox .img {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-gap: 10px;
    }

    .ContentBox .img img {
        width: 100%;
        background: #F4F4F4;
    }

    @media (max-width: 1200px) {
        .ContentBox .img {
            grid-template-columns: repeat(6, 1fr);
        }
    }

    @media (max-width: 900px) {
        .ContentBox .img {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 600px) {
        .ContentBox .img {
            grid-template-columns: repeat(3, 1fr);
        }
    }