.live-title{
    font-weight: bold;
    font-size: 36px;
    color: #333333;
    text-align: center;
    padding: 30px 0;
}
.live-list{
    width: 1200px;
    height: 280px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: row;
    background: #F5F5F5;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}
.live-list:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}
.live-list-img{
    width: 426px;
    height: 240px;
}
.live-list-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.5s ease;
}
.live-list-img:hover img{
    transform: scale(1.05);
}
.live-list-info{
    margin-left: 30px;
    flex: 1;
}
.live-list-btn{
    width: 200px;
    height: 100%;
    margin-right: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
}
.live-list-btn .btn{
    width: 100%;
    height: 68px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
    background: #0C6CFE;
    color: #ffffff;
    transition: all 0.5s ease;
}
.live-list-btn .btn:hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}
.live-list-btn:hover .btn{
    background: #188EF6;
}
.live-list-title{
    display: flex;
    align-items: center;
}
.live-list-title a{
    font-weight: bold;
    font-size: 32px;
    color: #333333;
    transition: all 0.5s ease;
}
.live-list-title:hover a{
    transform: scale(1.05);
}
.live-list-title span{
    width: 50px;
    height: 30px;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}
.live-list-title span.progress{
    background: linear-gradient(0deg, #FF1111, #FF8787);
}
.live-list-title span.notstarted{
    background: linear-gradient(0deg, #209CFF, #68E0CF);
}
.live-list-title span.ended{
    background: #cccccc;
}
.live-list-desc{
    margin-top: 15px;
    display: flex;
    color: #666666;
}
.live-list-desc span{
    margin-left: 10px;
}

/**/
.live-detail{
    margin-top: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.live-detail-left{
    border-radius: 6px;
    width: 1200px;
    height: 675px;
    overflow: hidden;
}
.live-detail-left img{
    width: 1200px;
    height: 675px;
}
.live-detail-right{
    flex: 1;
    border-radius: 20px;
    margin-left: 20px;
    height: 675px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: 1px solid #EEEEEE;
}
.live-detail-right-title{ 
    display: flex;
    align-items: center;
    border-bottom: 1px solid #EEEEEE;
    padding: 20px;
    box-sizing: border-box;
    background: #F5F5F5;
    border-radius: 20px 20px 0 0;
}
.live-detail-right-title img{
    width: 32px;
    height: 32px;
}
.live-detail-right-title span{
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin-left: 8px;
}
/**/
.live-detail-right-main{
    flex: 1;
    background-color: #fff;
    overflow: hidden;
}
.chat-list{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 0 15px;
    box-sizing: border-box;
}
.chat-list::-webkit-scrollbar{
    width: 10px;
}
.chat-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.chat-list::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #3498db, #3da4e9);
  border-radius: 10px;
}

/**/
.chat-item{
    display: flex;
    margin-top: 20px;
}
.chat-item-level{
    width: 34px;
    height: 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #000000;
    line-height: 18px;
}
.chat-item-username{
    margin-left: 5px;
    font-size: 14px;
    line-height: 18px;
    height: 18px;
    font-weight: 400;
}
.chat-item-content{
    color: #999999;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    flex: 1;
}
.chat-item-level.vip{
    background: linear-gradient(87deg, #6794FF 0%, #84FCF8 100%);
}

.chat-item-level.svip{
    background: linear-gradient(87deg, #EE9E00 0%, #F0D700 100%);
}








/**/
.live-detail-right-bottom{
    margin: 20px;
    height: 45px;
    background: #eeeeee;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.live-detail-right-bottom input{ 
    flex: 1;
    border-radius: 10px 0 0 10px;
    height: 45px;
    border: none;
    background: none;
    text-indent: 20px;
    color: #666666;
}
.live-detail-right-bottom .btn{
    width: 60px;
    height: 30px;
    background: #0C6CFE;
    color: #ffffff;
    font-weight: 300;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-right: 7px;
}