body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.background_videos {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}



.center{
    margin-left: auto;
    margin-right: auto;
}



.title {
    position: absolute;/*使 Flexbox 容器脱离文档流，并相对于其最近的已定位祖先元素进行定位*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);/*定位上下文中水平和垂直方向上居中对齐*/
    font-size: 0.9em;
    font-weight: bold;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    display: flex;
    justify-content: center;/*使 Flexbox 容器中的项目在主轴方向上居中显示*/
    animation: bounce 2s infinite;/*创建 Flexbox 布局*/
}

.titleContent span{
    display: block;
}

/*定义一个元素在动画中的多个关键帧状态*/
@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@media screen and (max-width: 600px) {
    .title {
        font-size: 0.9em;
    }
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    display: flex;
    justify-content: center;/*使项目在  Flexbox 容器的中间位置对齐*/
    /**
    flex-start：项目在容器的起始位置对齐。
    flex-end：项目在容器的末尾位置对齐。
    center：项目在容器的中间位置对齐。
    space-between：项目平均分布在容器内，两端项目与容器起始和末尾之间没有间隔。
    space-around：项目平均分布在容器内，每个项目周围都有相等的间隔。
    */
    align-items: center;
    /**
    flex-start：项目在容器的起始位置对齐。
    flex-end：项目在容器的末尾位置对齐。
    center：项目在容器的中间位置对齐。
    baseline：项目在容器的基线位置对齐。
    stretch：项目被拉伸以填满容器。*/
    margin: 0;
    padding: 0 10px;
    font-size: 14px;
}