.company-qualification-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.top-title {
    font-size: 20px;
    margin-top: 40px;
    font-family: "yahei";
}

.company-qualification-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
}

.qualification-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    min-height: 800px;
    margin-left: 10%;
    align-items: center;
}

.item-container{
    width: 30%;
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 20px;
    margin-top: 40px;
    font-family: "yahei";
}

.certiface-cover {
    width: 80%;
    display: flex;
    margin-top: 40px;
    justify-content: flex-start;
    border-bottom: 1px solid #ccc;
}

.certiface-name {
    color: white;
    box-sizing: border-box;
    padding: 5px;
    padding-right: 30px;
    min-width: 200px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-certiface {
    width: 80%;
    height: auto;
    margin-top: 20px;
}

@media screen and (max-width:750px){
    /* .qualification-list{
        flex-direction: column;
        flex-wrap: nowrap;
    } */

    .certiface-name{
        font-size: 12px;
        min-width: 100px !important;
    }
    .item-container{
        width: 50%;
    }
}