

/* 视频选集 */

.flex{
	display:flex;
}

.episode {
    margin: 1.45rem 0 0;
}

.episode .head {
    align-items: center;
    justify-content: space-between;
    margin-bottom: .3rem;
}

.episode .head > h3 {
    margin: 0;
    padding: 0;
    font-weight: Bold;
    font-size: 1.24rem;
    width: 15%;
}

.episode .head .title {
    display: none;
    font-weight: normal;
    font-size: 14px;
    color: #777777;
    margin: 0;
    padding: 0;
    width: 85%;
    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: normal;
}

.episode .head .title a{
    font-weight: normal;
    font-size: 14px;
    color: #777777;
    text-decoration: none;
}

.episode-box .play {
    width: 1.3rem;
    height: 1.3rem;
    background: #FFFFFF;
    border: .03rem solid #FF331C;
    box-shadow: 0 2px .1rem 0 rgba(0,0,0,0.05);
    border-radius: .08rem;
    float: left;
    margin-right: .24rem;
    align-items: center;
    justify-content: center;
}

.episode-box .play .icon {
    width: 0.44rem;
    height: 0.44rem;
}

.episode-list .swiper-wrapper {
	align-items: center;
}

.episode-list .episode-item {
    display: inline-block;
    width: 217px!important;
    height: 7.5rem;
    background: url('http://momenttest.onlyred.net/images/bg_selections_normal@2x.png')no-repeat;
    background-size: 100%;
    border-radius: .08rem;
    padding: 1.28rem 0rem 0;
    box-sizing: border-box;
}

.episode-list .episode-item .icon {
	display: none;
}

.episode-list .episode-item > a {
font-weight: 500;
    font-size: 16px;
    color: #000000;
    text-align: justify;
    height: 5.42rem;
    line-height: 2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    FONT-VARIANT: JIS83;
    padding: 0 15px;
    width: 178px;
    text-decoration: none;
}


.episode-list .episode-item.episode-item-active {
    /*width: 1.3rem;
    height: 1.3rem;
    background: #FFFFFF;
    border: .03rem solid #FF331C;
    box-shadow: 0 2px .1rem 0 rgba(0,0,0,0.05);
    border-radius: .08rem;*/
}

.episode-list .episode-item.episode-item-active .icon {
	display: block;
}

.episode-list .episode-item.episode-item-active a {
	/*opacity: 0;*/
    color: #FF331C;
}
.episode-list .episode-item.episode-item-active a:after{
	content:'';
	position:absolute;
	background:url(http://momenttest.onlyred.net/images/play0001_iSpt.png) no-repeat;
	width:15px;
	height:15px;
	right:15px;
	background-size:100%;
	bottom:15px;
}


/* 【新增】提示语样式 */
.video-disclaimer-layer {
    position: absolute;
    bottom: 40px; /* 默认位置：进度条上方 */
    height:20px;
    left: 0;
    width: auto;
    text-align: left;
    margin-left: 20px;
    z-index: 10;
    pointer-events: none; /* 让鼠标事件穿透，不影响点击播放器 */
    
    /* 关键：添加平滑过渡动画 */
    transition: bottom 0.3s ease-in-out;
    background: #1e213426;
    border-radius: 3px;
}

.disclaimer-text {
    display: flex;
    color: #ffffff73;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    align-items: center;
    padding: 0px 8px;
    height: 20px;
}
.disclaimer-text img{
width:14px;
height:14px;
margin-right:4px;
}

/* 当控制栏隐藏时，提示语下移到底部 */
.video-disclaimer-layer.bar-hidden {
    bottom: 10px;
}
