
.live-player-wrap {
    display: flex;
    width: 100%;
    height: 100%;
}

/* 左侧信息侧边栏 */
.info-sidebar {
    flex: 0 0 380px;
    background-color: #181818;
    display: flex;
    flex-direction: column;
    color: #fff;
}

/* 直播标题 */
.live-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    padding: 28px 24px;
    color: #ffffff;
}

.anchor-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 24px;
}

video{
    max-width: 25%;
    display: block;
    margin: 0 auto;
}

/* 主播头像 */
.anchor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9d423, #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
}

/* 主播名称与数据 */
.anchor-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.anchor-name {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.anchor-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #cccccc;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 分类标签 */
.category-tag {
    display: inline-block;
    background-color: #333333;
    color: #dddddd;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 4px;
    margin: 0 24px 16px;
    width: fit-content;
}

/* 直播简介 */
.live-desc {
    font-size: 15px;
    color: #dddddd;
    line-height: 1.5;
    padding: 0 24px;
}

/* 进入直播间按钮 */
.enter-btn {
    margin: auto 24px 48px;
    padding: 12px 0;
    background-color: transparent;
    border: 2px solid #f7d038;
    border-radius: 8px;
    color: #f7d038;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.enter-btn:hover {
    background-color: rgba(247, 208, 56, 0.1);
}

/* 右侧视频播放区域 */
.video-container {
    flex: 1;
    position: relative;
    background-color: #000000;
    overflow: hidden;
}


/* 右上角平台水印 */
.platform-watermark {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

/* 右侧悬浮关注栏 */
.follow-sidebar {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    background: linear-gradient(180deg, #ff889c, #ff697f);
    border-radius: 21px;
    padding: 18px 8px;
    color: #ffffff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    font-size: 14px;
    line-height: 1.6;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* 爱心图标 */
.heart-icon {
    width: 16px;
    height: 16px;
    background-color: #fff;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') center/cover no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') center/cover no-repeat;
}

/* 底部渐变图标 */
.follow-bottom-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb74d, #ff7043);
    margin-top: 8px;
}

/* 暂停提示标签 */
.pause-tip {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    z-index: 10;
}


.anchor-gird {
    display: grid;
    max-width: 1200px;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 15px;
}

.anchor-gird a img{
    width: 50px;
    height: 50px;
}