.shiping_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 600px;
    background-color: #3b4044;
    margin: 30px auto 70px !important;
}

.shiping_box_left {
    width: 400px;
    height: 100%;
}

.shiping_box_left_top {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    /* border-bottom: 1px solid #222; */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* 水平偏移 垂直偏移 模糊半径 阴影颜色 (RGBA) */
    color: #c0c5cc;
    font-size: 16px;
    font-weight: 600;
}

.shiping_box_left_but {
    width: 100%;
    height: calc(100% - 50px);
    padding: 16px 16px 0;
    box-sizing: border-box;
    overflow-y: auto;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* 水平偏移 垂直偏移 模糊半径 阴影颜色 (RGBA) */
}

.shiping_box_left_but_items {
    text-align: left;
    /* line-height: 50px; */
    display: flex;
    flex-direction: column;

    justify-content: center;
    width: 100%;
    height: 50px;
    /* margin: 8px 0; */
    font-size: 16px;
    color: #a1a9b2;
    cursor: default;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: normal;
    /* border-bottom: 1px solid #ccc; */
}
.datesd {
    margin-left: 30px;
    font-size: 12px;
    color: #667280;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: normal;
}

.shiping_box_left_but_items:hover {
    background: #3b4044;
    border-radius: 16px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    color: #2080f7;
    padding: 0 16px;
    transform: all 1s ;
}
.selected {
    background: #0f1419;
    border-radius: 16px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    color: #2080f7;
    padding: 0 16px;
}

.shiping_box_right {
    width: calc(100% - 360px);
    height: 100%;
    background: #131516;

}
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 这个值是根据视频宽高比计算得出的，假设视频宽高比为16:9 */
    overflow: hidden;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持视频宽高比并填满容器，裁剪超出部分 */
}