.z-big-card {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

.z-wrap .z-big-card {
    width: 100%;
}

a.z-big-card {
    cursor: pointer;
}

a.z-big-card:hover {
    animation: href-hover 0.3s ease forwards;
}


.z-big-card.img-pos-top,
.z-big-card.img-pos-bottom {
    align-items: stretch;
}

.z-big-card.img-pos-bottom .z-big-card-image {
    display: flex;
    align-items: flex-end;
}

.z-big-card .z-big-card-image,
.z-big-card .z-big-card-content {
    width: 50%;
}

.z-big-card .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.z-big-card .content {
    font-weight: 400;
    line-height: 1.8;
    font-size: 16px;
    margin: 16px 0;
}

.z-big-card.pos-right {
    flex-direction: row-reverse;
}

.z-big-card.block .title {
    margin-bottom: 16px;
}

.z-big-card .z-big-card-content {
    padding-left: 24px;
}

.z-big-card.pos-right .z-big-card-content {
    padding-left: 0;
    padding-right: 24px;
}

.z-big-card .z-button {
    width: 222px;
    height: 64px;
    margin: 0;
}

.z-big-card .z-button .z-button-text {
    font-size: 20px;
}

.z-big-card .z-button .z-button-icon {
    width: 60px;
    height: 38px;
}

.z-big-card .z-button .z-button-icon span {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid #000;
}

/* 移动端下的适配 */
@media screen and (max-width: 768.5px) {
    .z-big-card .title {
        font-size: 20px;
        margin-top: 32px;
    }

    /* 横向块级 */
    .z-big-card {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .z-big-card .z-big-card-image {
        width: 100%;
    }

    .z-big-card .content {
        font-weight: 400;
        margin: 32px 0;
        line-height: 1.8;
    }

    .z-big-card .title + .content {
        margin-top: 16px;
    }

    .z-big-card .z-big-card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }
    

    .z-big-card.pos-right {
        flex-direction: column;
    }

    .z-big-card.pos-right .z-big-card-content {
        padding-right: 0;
    }

    .z-big-card .z-big-card-content a,
    .z-big-card .z-big-card-content div {
        width: 92%;
    }

    .z-big-card .z-button {
        width: 92%;
        max-width: 460px;
        height: 53px;
    }

    .z-big-card .z-button .z-button-text {
        font-size: 16px;
    }
}
