.live_box_container {
    width: 100%;
    margin: 30px 0;
}

.live_box {
    box-sizing: border-box;
    width: 1440px;
    margin: 0 auto;
}

.live_box_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    width: 1200px;
    margin: 0 100px;
}

.live_box_bottom {
    height: 220px;
    width: 1440px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.live_box_bottom_content_wrapper {
    width: 1440px;
    overflow: hidden;
}

.live_box_bottom_content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 10px;
    box-sizing: border-box;
    min-width: max-content;
}

.live_box_bottom_content_item {
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.live_box_bottom_content_item_img {
    width: 360px;
    height: 180px;
}

.live_box_bottom_content_item_img img {
    width: 100%;
    height: 180px;
}

.live_box_bottom_content_item_title {
    padding-top: 10px;
}

.live_box_bottom_left,
.live_box_bottom_right {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #ccc;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
}
.live_box_bottom_left {
        margin: 20px 20px 20px 0;
        position: absolute;
        top: 18%;
        left: -2%;
}

.live_box_bottom_right {
        margin: 20px 0px 20px 20px;
        position: absolute;
        top: 18%;
        right: -2%;
}

.live_box_bottom_left img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 28px;
    width: 28px;
}

.live_box_bottom_right img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 28px;
    width: 28px;
}

/* 自定义滚动条样式 */
.live_box_bottom_content::-webkit-scrollbar {
    height: 0px;
    /* 滚动条高度 */
}