.productVideo-main {
    min-width: 1200px;
    padding: 52px 0 130px;
    background-color: #F5F5F7;
}
.productVideo-container {
    width: 1200px;
    margin: 0 auto;
}
.productVideo-name {
    color: #3b3e40;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 52px;
}
.productVideo-box {
    background-color: #fff;
    margin-bottom: 30px;
    overflow: hidden;
}
.productVideo-title {
    height: 64px;
    padding: 0 26px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.productVideo-title span {
    color: #000;
    font-size: 18px;
    line-height: 64px;
}
.productVideo-list {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.productVideo-item {
    width: 370px;
    cursor: pointer;
    margin: 0 15px 15px 0;
    position: relative;
    overflow: hidden;
}
.productVideo-item-cover {
    width: 370px;
    height: 208px;
    background: url("../assets/image/skeleton-apply-video.jpg") center no-repeat;
    background-size: cover;
    object-fit: cover;
}
.productVideo-item-play {
    width: 370px;
    height: 208px;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: all .3s ease;
}
.productVideo-item-play img {
    width: 48px;
}
.productVideo-item:hover .productVideo-item-play {
    opacity: 1;
}
.productVideo-item-content {
    height: 98px;
    background-color: #fff;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.productVideo-item-content p {
    color: #000;
    font-size: 18px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.productVideo-item-content span {
    color: rgba(0, 0, 0, .2);
    font-size: 12px;
}
