    /* 产品详情 */
    .cpjj {
        padding-bottom: 60px;
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .CpImg {
        width: 30%;
        position: relative;
    }

    .CpImg1 {
        width: 100%;
        margin: 0;
    }

    .CpImg2 {
        width: 100%;
        height: auto;
        margin-top: 10px;
    }

    .CpImg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #fff;
        border: 1px solid #ccc;
    }

    .CpText {
        width: 70%;
        padding-left: 75px;

    }

    .CpText h1 {
        font-weight: 700;
        font-size: 32px;
        line-height: 1.25;
        color: #171717;
        padding-bottom: 15px;
        border-bottom: 1px solid #ccc;
    }


    .CpText .desc {
        margin: 30px 0;
        display: flex;
        flex-direction: column;
    }

    .CpText .desc p {
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        line-height: 2;
        color: #000000;
    }

    .CpText a {
        width: 175px;
        height: 50px;
        border: 1px solid var(--color);
        border-radius: 4px;
        font-size: 16px;
        line-height: 1;
        color: var(--color);
        display: flex;
        align-items: center;
        justify-content: center;
    }


    @media (max-width:1440px) {

        .CpText {
            padding-left: 45px;
        }

        .CpText .desc p {
            width: 45%;
            line-height: 1.5;
        }

        .CpText .desc {
            margin: 20px 0 40px;
        }
    }

    @media (max-width:1200px) {

        .cpjj {
            padding-bottom: 75px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;
        }

        .CpImg {
            width: 500px;
            position: relative;
        }

        .CpText {
            width: 100%;
            padding-left: 0;
            margin-top: 60px;
            margin-bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .CpText .desc {
            width: 100%;
        }

        .CpText h1 {
            padding-left: 0;
        }


    }

    @media (max-width:720px) {
        .cpjj {
            padding-bottom: 45px;
        }

        .CpImg {
            width: 100%;
        }



        .CpText h1 {
            margin-bottom: 15px;
        }

        .CpText .desc {
            display: flex;
            flex-direction: column;
            grid-gap: 15px 0;
        }

        .CpText .desc p {
            width: 100%;
        }
    }

    @media (max-width:460px) {
        .cpjj {
            padding-top: 30px;
            padding-bottom: 30px;
        }


        .CpText {
            margin-top: 45px;
        }

        .CpText h2 {
            font-size: 20px;
        }

        .CpText h1 {
            font-size: 24px;
        }

        .CpText .desc {
            margin: 15px 0 20px;
            grid-gap: 10px 0;
        }

        .CpText .desc p {
            font-size: 16px;
        }

        .CpText a {
            width: 140px;
            height: 40px;
        }
    }

    /* 详情 */
    .NyCpXq {
        display: block;
    }

    .ListBox {
        border: 1px solid #ccc;
        margin-bottom: 30px;
        display: flex;
    }

    .ListBox h1 {
        height: 45px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 30px;
        border-right: 1px solid #ccc;
    }

    .ListBox h1.cur {
        background: var(--color);
        color: #fff;
    }

    .contentBox {
        width: 100%;
    }

    .contentBox .content {
        display: none;
        min-height: 500px;
    }

    .contentBox .content.cur {
        display: block;
    }

    @media (max-width: 720px) {
        .NyCpXq {
            margin-top: 60px;
        }

        .ListBox {
            margin-bottom: 15px;
        }

        .ListBox h1 {
            height: 45px;
            padding: 0 15px;
        }

    }