.say-content {
    padding-bottom: 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.say-content-item {
    width: 45.6rem;
    height: 60.2rem;
    padding: 3.2rem;
    background-color: #F5F5F7;
    border-radius: 1rem;
}

.say-content-item-top {
    display: flex;
    align-items: center;
    margin-bottom: 3.2rem;
}

.say-content-item-top .img {
    width: 6rem;
    height: 6rem;
    margin-right: 1.6rem;
    border-radius: 50%;
    overflow: hidden;
}

.say-content-item-top .name {
    padding: 0.2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.say-content-item-top .name span {
    color: #05173C;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 2.9rem;
}

.say-content-item-top .name span:last-child {
    line-height: 1.9rem;
    font-size: 1.6rem;
    color: #666666;
    font-weight: 400;
}

.say-content-item>.img {
    width: 39.2rem;
    height: 29.4rem;
    border-radius: 0.8rem;
}

.say-content-item>p {
    font-size: 2rem;
    margin: 2.2rem 0;
    line-height: 2.4rem;
    /*height: 4.8rem;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.say-btn {
    padding: 0.8rem 1.6rem;
    display: flex;
    align-items: center;
    width: 5.6rem;
    height: 4rem;
    border: 0.1rem solid #05173C;
    border-radius: 10rem;
    transition: all 0.3s;
    overflow: hidden;
}

.say-btn img {
    display: block;
    margin-right: 1.2rem;
    width: 2.4rem;
    height: 2.4rem;
}

.say-btn img:nth-child(2) {
    display: none;
}

.say-btn span {
    color: #F16522;
    font-size: 1.6rem;
    line-height: 1.9rem;
    display: none;
    white-space: nowrap;
}

.say-content-item:hover {
    box-shadow: 0 0.4rem 1.2rem 0.1rem rgba(5, 23, 60, 0.16);
    background-color: #fff;
}

.say-btn:hover {
    cursor: pointer;
    border: 0.1rem solid #F16522;
    width: 25.4rem;
}

.say-btn:hover img:nth-child(1) {
    display: none;
}

.say-btn:hover img:nth-child(2) {
    display: block;
}

.say-btn:hover span {
    display: block;
}

@media screen and (max-width: 768px) {
    .say-content {
        padding-bottom: 8rem;
        display: block;
    }

    .say-content-item {
        width: 34.3rem;
        height: 39.6rem;
        padding: 1.2rem;
        background-color: #F5F5F7;
        border-radius: 1rem;
        margin-bottom: 1.6rem;
    }

    .say-content-item:last-child {
        margin-bottom: 0;
    }

    .say-content-item-top {
        display: flex;
        align-items: center;
        margin-bottom: 1.2rem;
    }

    .say-content-item-top .img {
        width: 4rem;
        height: 4rem;
        margin-right: 0.8rem;
    }

    .say-content-item-top .name {
        padding: 0.2rem 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .say-content-item-top .name span {
        color: #05173C;
        font-weight: 500;
        font-size: 1.4rem;
        line-height: 1.8rem;
    }

    .say-content-item-top .name span:last-child {
        line-height: 1.5rem;
        font-size: 1.2rem;
        color: #666666;
        font-weight: 400;
    }

    .say-content-item>.img {
        width: 31.9rem;
        height: 23.9rem;
    }

    .say-content-item>p {
        font-size: 1.4rem;
        margin: 1.2rem 0;
        line-height: 1.8rem;
        /*height: 3.6rem;*/
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .say-btn {
        padding: 0.4rem 0.8rem;
        display: flex;
        align-items: center;
        width: 15rem;
        height: 2.1rem;
        border: 0.1rem solid #05173C;
        border-radius: 10rem;
        transition: all 0.3s;
        overflow: hidden;
    }

    .say-btn img {
        display: block;
        margin-right: 0.5rem;
        width: 1.2rem;
        height: 1.2rem;
    }

    .say-btn img:nth-child(2) {
        display: none;
    }

    .say-btn span {
        color: #05173C;
        font-size: 1rem;
        line-height: 1.3rem;
        display: block;
        white-space: nowrap;
    }

    .say-content-item:hover {
        box-shadow: 0 0 0 0;
        background-color: #F5F5F7;
    }

    .say-btn:hover {
        cursor: pointer;
        border: 0.1rem solid #05173C;
        width: 15rem;
    }

    .say-btn:hover img:nth-child(1) {
        display: block;
    }

    .say-btn:hover img:nth-child(2) {
        display: none;
    }

    .say-btn:hover span {
        display: block;
    }
}