﻿/*===============带货直播===============*/

/*头部*/
body .oct-header {
    height: 130px;
}

.oct-header-bottom {
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 5px;
}

.oct-header-bottom-nav {
    display:block;
    overflow:hidden;
    width: 100%;
}

/*直播观看提示条*/
.living-prompt-show{
    display:flex;
    align-items:center;
    justify-content:space-between;
    overflow:hidden;
    margin: 2px;
    background: #ae0000;
    padding:6px;
    color:white;
}
.living-prompt-offline {
    background: #808080;
}
    .living-prompt-offline .living-prompt-left {
        background: #000000;
    }
    .living-prompt-left {
        background: #ff0000;
        color: white;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 1px;
        padding-bottom: 1px;
        font-weight: bold;
    }
.living-prompt-mid {
    font-size: 14px;
    color: white;
    font-weight: bold;
}
.living-prompt-right {
    background: #ff6a00;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 1px;
    padding-bottom: 1px;
}
/*主体内容*/
.oct-content {
    padding-top: 80px;
    background: #ebebeb;
    padding-bottom: 80px;
}
.live-content{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    flex-wrap:wrap;
}
.live-item {
    width: 45%;
    height: 230px;
    overflow: hidden;
    margin:5px;
    border-radius: 10px;
    background: #f5f5f5;
    position:relative;
}
.live-item-preimg img{
    width: 100%;
    height: 230px;
}
.live-item .live-item-title {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    width: 100%;
    background: #000000;
    z-index: 100;
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    font-weight: bold;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0,0, 0.6);
}

/*列表承载Div,必须这样定义样式*/
.mescroll {
    position: fixed;
    top: 130px; /*这个值可以控制滚动区离顶部的距离*/
    bottom: 0;
    height: auto;
    padding-bottom: 80px;
    background: white;
}


