.cpjj {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.CpImg1 {
    width: 100%;
    margin: 0;
    border-bottom: 4px solid var(--color);
}

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

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

.CpText {
    width: 55%;
    padding-left: 120px;

}

.CpText h1 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1.5;
    color: var(--color);
    padding-left: 30px;
    position: relative;
}

.CpText h1::after {
    content: "";
    display: block;
    width: 5px;
    height: 6px;
    background: var(--color);
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
}

.CpText h2 {
    font-size: 20px;
    line-height: 1.5;
    color: #444444;
    border-top: 1px solid #C7C7C7;
    padding-top: 60px;
    margin: 30px 0 90px;
}

.CpText span {
    width: 460px;
    display: flex;
    justify-content: space-between;
}

.CpText .xqa1 {
    display: block;
    width: 240px;
    height: 50px;
    font-size: 16px;
    line-height: 1;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.CpText .xqa1 img {
    margin-right: 15px;
}

.CpText .xqa2 {
    display: block;
    width: 180px;
    height: 50px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background: #000;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:1440px) {
    .CpText {
        padding-left: 90px;
    }

    .CpText h2 {
        font-size: 18px;
        padding-top: 30px;
        margin: 30px 0 60px;
    }
}

@media (max-width:1200px) {
    .cpjj {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }

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

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

    .CpText * {
        text-align: center;
    }

    .CpText h1 {
        padding-left: 0;
    }

    .CpText h1::after {
        display: none;
    }
}

@media (max-width:720px) {
    .CpText h1 {
        font-size: 24px;
    }

    .CpText h2 {
        font-size: 16px;
        margin: 20px 0 30px;
    }

    .CpText span {
        width: 300px;
        display: flex;
        justify-content: space-between;
    }

    .CpImg {
        width: 100%;
    }

    .CpText .xqa1 {
        width: 170px;
        height: 40px;
        font-size: 14px;
    }

    .CpText .xqa1 img {
        width: 15px;
        margin-right: 5px;
    }

    .CpText .xqa2 {
        width: 110px;
        height: 40px;
        font-size: 14px;
    }
}



/* 详情 */
.NyCpXq {
    margin-top: 60px;
}

.contentList {
    margin: 50px 0;
    background: #EFEFEF;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contentList h1 {
    width: 33.33333%;
    color: #000;
    font-size: 24px;
    line-height: 2;
    position: relative;
    display: flex;
    justify-content: center;
}

.contentList h1.cur,
.contentList h1:hover {
    color: var(--color);
}

.contentList h1.cur::after,
.contentList h1:hover::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color);
    position: absolute;
    bottom: 0px;
}

.contentBox .content {
    padding: 30px;
    display: none;
    min-height: 300px;
}

@media (max-width: 720px) {
    .contentList {
        margin: 30px 0;
        height: 75px;
    }

    .contentList h1 {
        font-size: 16px;
    }

    .contentBox .content {
        padding: 15px;
    }
}