.honor-qualification {
    display: flex;
    align-items: center;
    justify-content: center;
}
.honor-qualification img {
    flex: 1;
    max-width: calc(100% - 536px);
}
.honor-qualification .right-wrapper {
    padding: 70px 0 0 40px;
    width: 536px;
    height: 617px;
    background: linear-gradient( 180deg, #BBEBFC 0%, #0657E4 100%);
    border-radius: 24px;
    border: 2px solid #E4F2FF;
    margin-left: 40px;
}
.honor-qualification .right-wrapper ul {
    font-size: 24px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 32px;
}
.activity-glimpses {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.activity-glimpses .glimpses-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.activity-glimpses .glimpses-item img {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .3s;
}
.activity-glimpses .glimpses-item:hover img {
    transform: scale(1.2);
}
.activity-glimpses .glimpses-item:nth-of-type(1) { grid-area: 1 / 1 / 5 / 4; }
.activity-glimpses .glimpses-item:nth-of-type(2) { grid-area: 1 / 4 / 5 / 7; }
.activity-glimpses .glimpses-item:nth-of-type(3) { grid-area: 1 / 7 / 5 / 11; }
.activity-glimpses .glimpses-item:nth-of-type(4){ grid-area: 5 / 1 / 8 / 4; }
.activity-glimpses .glimpses-item:nth-of-type(5) { grid-area: 5 / 4 / 8 / 7; }
.activity-glimpses .glimpses-item:nth-of-type(6) { grid-area: 5 / 7 / 8 / 9; }
.activity-glimpses .glimpses-item:nth-of-type(7) { grid-area: 5 / 9 / 8 / 11; }
.activity-glimpses .glimpses-item:nth-of-type(8) { grid-area: 8 / 1 / 11 / 4; }
.activity-glimpses .glimpses-item:nth-of-type(9) { grid-area: 8 / 4 / 11 / 7; }
.activity-glimpses .glimpses-item:nth-of-type(10) { grid-area: 8 / 7 / 11 / 9; }
.activity-glimpses .glimpses-item:nth-of-type(11) { grid-area: 8 / 9 / 11 / 11; }


.activity-glimpses .glimpses-item p {
    position: absolute;
    width: 100%;
    left: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 0;
    background: rgba(0, 31, 237, .6);
    color: #fff;
    height: 48px;
    font-size: 14px;
    line-height: 1;
}