123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /* 返回 */
- .nav {
- background-color: #101010;
- z-index: 3;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- /* height: 10%; */
- height: .88rem;
- display: flex;
- }
- .back{
- position: absolute;
- left: 0;
- top: 0;
- z-index: 3;
- width: 10%;
- height: .88rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .back img {
- width: .18rem;
- }
- /* 页面标题 */
- .pageTitle {
- height: .88rem;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .pageTitle img {
- width: 1.6rem;
- height: .8rem;
- }
- .novelText {
- padding: 1rem .26rem;
- padding-bottom: 0;
- }
- /* 单条视频 */
- .videoContent {
- background-color: #1C1A1B;
- height: 98px;
- margin: .26rem;
- }
- .videoTitle {
- text-align: left;
- font-size: .3rem;
- padding: .2rem .3rem 0 .3rem;
- white-space: nowrap;
- /* //文本超出隐藏 */
- overflow: hidden;
- /* //文本超出省略号替代 */
- text-overflow: ellipsis;
- }
- .contentText {
- margin: 3px .3rem;
- white-space: nowrap;
- /* //文本超出隐藏 */
- overflow: hidden;
- /* //文本超出省略号替代 */
- text-overflow: ellipsis;
- font-size: .28rem;
- }
- .videoData {
- display: flex;
- align-items: center;
- margin: .2rem .3rem 0 .3rem;
- }
- .videoDataLeft {
- display: flex;
- align-items: center;
- margin-right: .1rem;
- }
- .videoDataImgLook {
- width:.3rem;
- height: .2rem;
- }
- .videoDataImgZan {
- width:.28rem;
- height: .3rem;
- }
- .videoText {
- margin-left: .1rem;
- font-size: .24rem;
- }
- .videoDataRgiht {
- display: flex;
- align-items: center;
- margin-left: 30px;
- }
- .toolTip {
- width: 100%;
- height: 100%;
- background-color: rgba(0,0,0,.8);
- position: fixed;
- top: 0;
- left: 0;
- display: none;
- }
- .tipcenter {
- width: 7rem;
- height: 4.3rem;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- text-align: center;
- }
- .toolTiptextwrap {
- width: 6rem;
- height: 2.5rem;
- background-color: #1C1A1B;
- border-radius: .12rem;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- align-items: center;
- padding: .5rem;
- }
- .btn {
- width: 2.8rem;
- height: 1.1rem;
- border-radius: .8rem;
- background-color: #333333;
- display: flex;
- align-items: center;
- line-height: 1.1rem;
- }
- .btnImg {
- width: .32rem;
- height: .32rem;
- margin-left: .3rem;
- }
- .btnText {
- margin-left: .1rem;
- font-size: .3rem;
- }
- .clear {
- margin-top: .3rem;
- width: .48rem;
- height: .48rem;
- }
- .tip {
- width: 6rem;
- height: 1rem;
- color: #fff;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- display: none;
- }
- .textwrap {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .tiptext {
- background-color: #000;
- border-radius: .1rem;
- text-align: center;
- padding: .1rem .2rem;
- }
|