123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /* 返回 */
- .nav {
- background-color: #101010;
- z-index: 3;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- /* height: 10%; */
- height: 0.88rem;
- display: flex;
- }
- .back {
- position: absolute;
- left: 0;
- top: 0;
- z-index: 3;
- width: 10%;
- height: 0.88rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .back img {
- width: 0.18rem;
- }
- /* 页面标题 */
- .pageTitle {
- height: 0.88rem;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 0.4rem;
- }
- /* 主要展示区 */
- /* 视频 */
- .video {
- margin-top: 1rem;
- padding: 0.3rem 0 0.12rem;
- display: flex;
- flex-direction: column;
- /* justify-content: center; */
- align-items: center;
- min-height: 40vh;
- }
- /* 单条视频 */
- .videoContent {
- background-color: #1c1a1b;
- width: 100%;
- min-height: 4rem;
- border-radius: 5px;
- margin-bottom: 0.4rem;
- }
- .loading {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .loadingImg {
- width: 80px;
- height: 76px;
- }
- .loadingText {
- text-align: center;
- margin-top: 4px;
- color: #8e8d8d;
- font-size: 12px;
- }
- .videoPhoto, .bannerImg {
- position: relative;
- width: 100%;
- height: 3.6rem;
- background-repeat: no-repeat;
- background-position: 50% 50%;
- background-size: cover;
- border-top-left-radius:4px;
- border-top-right-radius:4px;
- }
- .bannerImg {
- height: 4rem;
- }
- .banner {
- background-color: #1C1A1B;
- width: 100%;
- border-radius: .1rem;
- margin-bottom: .4rem;
- }
- .videoTitle {
- margin: .1rem .3rem;
- font-size: .28rem;
- /* 两行展示 */
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- word-break: break-all;
- }
- .videoTime {
- position: absolute;
- bottom: 0.1rem;
- right: 0.1rem;
- width: 1.6rem;
- background-color: rgba(0, 0, 0, 0.6);
- border-radius: 0.1rem;
- height: 0.4rem;
- line-height: 0.4rem;
- text-align: center;
- }
- .page {
- width: 100%;
- }
- .info {
- width: 200px;
- height: 34px;
- line-height: 34px;
- }
- .fl {
- float: left;
- }
- .bottomLoadContent {
- display: none;
- }
- .quanWrap {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .quanText {
- font-size: 0.3rem;
- color: #fff;
- }
- .quanquan {
- margin-left: 20px;
- width: 20px;
- height: 20px;
- }
- .box {
- width: 100%;
- /* padding-bottom: 1.5rem; */
- height: 80px;
- display: none;
- }
|