.section-live-area {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.section-live-area-index {
    width: 100%;
    max-width: 1100px;
}

/* 左側直播 */
.section-live-area .sjtv-player {
    flex: 1;
}

/* 右側廣告 */
.section-live-area .show-item {
    display: flex;
    flex-direction: column;
    width: 225px;
    flex-shrink: 0;
    background-image: linear-gradient(105deg, #35353d, #35353d 50%, #131443 50%, #131443);
    box-sizing: border-box;
    padding: 20px 10px 0px 10px;
    align-self: flex-start;
    box-sizing: border-box;
}

.show-item .item-img {
    width: 100%;
    margin: 5px 0;
}

.show-item .item-img img {
    width: 100%;
}

.show-item-mobile {
    display: none;
}

.show-item .item-line {
    height: 3px;
    margin: 10px 0;
    background: linear-gradient(to right,
            #416995 0%,
            #416995 32%,

            transparent 32%,
            transparent 34%,

            #24A0A7 34%,
            #24A0A7 66%,

            transparent 66%,
            transparent 68%,

            #87FED6 68%,
            #87FED6 100%);
}

/* ====== 上光線 ====== */
.sjtv-player .top-line {
    height: 4px;
    margin-bottom: 5px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
}

/* ====== 播放器框 ====== */
.sjtv-player .video-frame {
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, #dcdcff, #888, #dcdcff);
}

/* 影片比例 */
.sjtv-player .video-inner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dcdcff, #888, #dcdcff);
    padding-top: 56.25%;
}

/* video */
.sjtv-player .video-inner iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    top: 0;
    left: 0;
    border-radius: 15px;
}

/* ====== 下方 ====== */
.sjtv-player .bottom-area {
    margin-top: 5px;
}

.sjtv-player .bottom-line {
    height: 4px;
    margin-bottom: 10px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
}

/* 裝飾點 */
.sjtv-player .dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sjtv-player .dots span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    opacity: 1;
}


/* ====== RWD ====== */
@media (max-width: 768px) {
    .section-live-area {
        flex-direction: column;
        gap: 0px;
    }

    .section-live-area .show-item {
        margin: 0 auto;
        height: auto;
        display: none;
    }

    .sjtv-player .video-inner iframe {
        border-radius: 6px;
    }

    .sjtv-player .video-frame {
        padding: 6px;
        border-radius: 10px;
    }

    .sjtv-player .top-line,
    .sjtv-player .bottom-line {
        height: 2px;
    }

    .section-live-area .show-item-mobile {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .show-item-mobile .item-line {
        height: 3px;
        margin: 10px 0;
        background: linear-gradient(to right,
                #416995 0%,
                #416995 32%,

                transparent 32%,
                transparent 34%,

                #24A0A7 34%,
                #24A0A7 66%,

                transparent 66%,
                transparent 68%,

                #87FED6 68%,
                #87FED6 100%);
    }

    .show-item-mobile img {
        width: 100%;
    }

    .show-item-mobile .product-area {
        display: flex;
        width: 100%;
        flex-direction: row;
    }

    .show-item-mobile .show-product {
        width: 68.5%;
    }

    .show-item-mobile .show-social {
        width: 31.5%;
        display: flex;
        flex-direction: column;
    }
}

