.certificate {}

.certificate h2 {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 48px;
    color: #253057;
    text-align: center;
}

.certificate p {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #7C7C7C;
    text-align: center;
}

.certificate-content {
    width: 100%;
    /* height: 882px; */
    margin-top: 70px;
    padding: 120px 40px 80px 40px;
    background: url(/img/patent.png);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.certificate-content>.left-button,
.certificate-content>.right-button {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-basis: 50px;
    flex-shrink: 0;
}

.certificate-slid {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex: 1;
    flex-shrink: 1;
    overflow: auto;
}

.certificate-slid-item {
    /* width: 414px; */
    /* height: 681px; */
    background-color: rgba(20, 20, 20, 0.6);
    border-radius: 30px;
    overflow: hidden;
    padding: 12px;
}

.certificate-slid-item>h6 {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 55px;
}

.certificate-slid-item>img {
    width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.certificate-slid-item>p {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .certificate-content {
        display: block;
        padding: 20px;
    }

    .certificate-slid {
        display: block;
    }

    .certificate-slid-item {
        margin: 10px;
    }

    .certificate-content>.left-button {
        display: none;
    }

    .certificate-content>.right-button {
        display: none;
    }
}