body{
    padding: 0;
    margin: 0;
    background-image: url(../../images/screen/map_bg.png);
}
p{
    padding: 0;
    margin: 0;
}
.content{
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
/*顶部标题*/
.big-title{
    width: 100%;
    height: 120px;
    padding: 30px 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
}
.big-title-left{
    width: calc(50% - 500px);
    height: 4px;
    background: #0089ff;
    margin-top: 23px;
}
.big-title-center{
    width: 1000px;
    height: 50px;
    box-sizing: border-box;
    border-right: 5px solid #0089ff;
    border-left: 5px solid #0089ff;
    text-align: center;
    color: #0089ff;
    font-size: 48px;
    line-height: 50px;
}
.big-title-right{
    width: calc(50% - 500px);
    height: 4px;
    background: #0089ff;
    margin-top: 23px;
}


/*视频列表*/
.video-list{
    width: 100%;
    height: calc(100% - 120px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.video-list .video-one{
    width: 22%;
    height: 33%;
    margin: 0 1%;
}
.video-list .video-one video{
    width: 100%;
}
.video-list .video-one p{
    font-size: 16px;
    color: #fff;
    text-align: center;
}