.people-title {
    margin: 30px 0;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #333;
}
.people-title span {
    padding: 2px 0;
    border-bottom: 3px solid #333;
}
.people-introduce {
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
}
.video-container {
    margin-bottom: 40px;
}
.video-container img{
    width: 100%;
    cursor: pointer;
}
.video-container p {
    margin: 15px 0;
    text-align: center;
    font-size: 16px;
}
.honor-container {
    margin-bottom: 100px;
}
.honor-container > div {
    margin: 10px 0;
}
.honor-list-title {
    font-weight: 600;
}
.honor-text {
    margin: 10% 0;
    height: 44px;overflow: hidden;
}
.honor-date {
    margin-top: 20px;
}

.video-player-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .3);
    z-index: 101;
    transition: opacity .5s;
}
.video-player-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .5s;
}
@media (max-width: 759px) {
    .people-introduce {
        margin-top: 22px;
    }
    .video-player-container video {
        position: absolute;
        top: 50%;
        width: 100%;
        transition: opacity .5s;
    }
    .honor-text {
        display: none
    }
}