/* 设置背景颜色为浅蓝色渐变 */
body {
    background: linear-gradient(135deg, #87CEEB, #E0FFFF);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative; /* 确保子元素的 z-index 有效 */
}

/* 视频容器居中 */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    z-index: 999; /* 确保视频容器在背景之上 */
}


/* 表格样式 */
table {
    width: 80%;
    max-width: 800px;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2; /* 确保表格在背景之上 */
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #f2f2f2;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background-color: #f5f5f5;
}

/* 针对手机屏幕的样式 */
@media (max-width: 768px) {
    /* 调整视频容器的宽度 */
    .video-container {
        width: 90%;
        margin-bottom: 10px;
    }

    /* 调整表格的宽度 */
    table {
        width: 95%;
        max-width: none;
    }

    /* 调整表格单元格的padding */
    table th, table td {
        padding: 10px;
    }

    /* 调整表格的margin */
    table {
        margin-top: 10px;
    }
}