/* pc样式 */
@media screen and (min-width: 1024px){
    .content-right-content {
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .rcpy-box {
        width: 48%;
        margin-bottom: 20px;
    }
    .rcpy-title {
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
	    background-color: var(--zt_color--);
    }
    .rcpy-title>h2{
        font-size: 20px;
        color: #fff;
    }
    .rcpy-title>a{
        font-size: 16px;
        color: #fff;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-right-content {
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .rcpy-box {
        width: 48%;
        margin-bottom: 20px;
    }
    .rcpy-title {
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 40px;
	    background-color: var(--zt_color--);
    }
    .rcpy-title>h2{
        font-size: 16px;
        color: #fff;
    }
    .rcpy-title>a{
        font-size: 14px;
        color: #fff;
    }
}
@media screen and (max-width: 600px) {
    .rcpy-box {
        width: 100%;
    }
}