外层容器 /deep/ 组件 { }
外层容器 ::v-deep 组件 { }
/deep/ 是深度选择器(样式穿透),都能实现对组件内部的样式修改
/deep/ .subscribe--live-player-hasSubscribe ,.subscribe--live-player-subscribe__btn{
background-color: red !important;
}
.live_prompt1{
width: 94%;
}
/deep/ .subscribe--live-player-subscribe__btn{
background: none !important;
}
/* 修改 */
/deep/ .subscribe--live-player-subscribe__btn{
height: 70rpx !important;
line-height: 78rpx !important;
font-size: 15px !important;
}