.tablecontainer {
    position: absolute;
    margin: 20px;
    z-index: 1001;

}
.title-container {
    display: flex;
    align-items: center;
    background: transparent;
    margin-bottom: -5px;
    font-size: 22px;
}
.title-logo {
    height: 45px;
    margin-right: 10px;
}
table {
    background: rgba(22, 3, 75, 0.9);
    border-collapse: collapse;
    border-collapse: separate; /* 必须改为separate才能显示圆角 */
    border-spacing: 0;         /* 消除单元格间距 */
    border-radius: 10px;       /* 主圆角 */
    overflow: hidden;          /* 关键：隐藏内部溢出部分 */
    position: relative;
    width: 500px;
    height: 300px;
    border: 1px solid white;
}
td {
    
    border: 1px solid white;
    padding: 3px;
    color: white;
    text-align: center;
}
.corner-logo {
    position: absolute;
    left: 5;
    top: 55;
    transform: translate(-50%, -40%);
    width: 50px;
    height: 50px;
    z-index: 1002;
}
