    /* 产品详情 */
    .cpjj {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .CpImg1 {
        width: 100%;
        margin: 0;
        border: 5px solid #f5f5f5;
    }

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

    .CpImg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #fff;
    }

    .CpText {
        width: 50%;
        padding-left: 30px;

    }

    .CpText h1 {
        color: var(--color);
        font-weight: bold;
        font-size: 26px;
        color: #494949;
        padding-bottom: 30px;

    }


    .CpText .desc {
        padding: 20px 0px 60px;
        border-top: 1px dashed #7d7d7d;
        border-bottom: 1px dashed #7d7d7d;
        display: flex;
        flex-direction: column;
    }

    .CpText .desc p {
        font-size: 14px;
        color: #898989;
        line-height: 2;
    }


    .CpText a {
        margin-top: 30px;
        border: 3px solid var(--color);
        color: #000;
        width: 240px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .CpText a::after {
        content: '';
        position: absolute;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        width: 100%;
        height: 0;
        top: 50%;
        left: 50%;
        background: var(--color);
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }

    .CpText a:hover {
        color: #fdd428;
    }

    .CpText a:hover:after {
        height: 260%;
        opacity: 1;
    }

    @media (max-width:1200px) {
        .cpjj {
            padding: 30px 15px;
        }

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

        .CpText .desc {
            padding: 15px 0px 30px;
        }

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

        .CpText a {
            margin-top: 30px;
            width: 150px;
            height: 45px;
            font-size: 14px;
        }
    }

    @media (max-width:720px) {
        .cpjj {
            display: flex;
            flex-direction: column-reverse;
        }

        .CpImg {
            width: 100%;
        }

        .CpText {
            width: 100%;
            padding-bottom: 30px;
            padding-left: 0px;
        }
    }

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

    /* 详情 */
    .NyCpXq {
        margin-top: 30px;
        position: relative;
    }

    .ListBox {
        height: 60px;
        background: #eef4f5;
        display: flex;
    }

    .ListBox h1 {
        font-size: 16px;
        line-height: 1.5;
        padding: 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .content {
        margin: 30px 0;
        display: none;
        min-height: 300px;
    }

    .content.cur {
        display: block;
    }

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

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

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