123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /* pages/channel/view/view.wxss */
- .page___title{
- text-align: center;
- font-size: 30rpx;
- line-height: 26px;
- }
- .fixed{
- width:100%;
- display: inline-block;
- position: fixed;
- left: 0;
- bottom:100px;
- }
- .fixed .num{
- float:right;
- margin-right:45px;
- font-size:30px;
- line-height: 30px;
- color: red;
- }
- .image {
- width: 100%;
- height: 360rpx;
- }
- .content{
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- }
- .upload_img{
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- background-repeat: no-repeat;
- background-size: 100% auto;
- background-position: center;
- }
- .upload_img:before {
- content: '';
- display: inline-block;
- height: 100%;
- vertical-align: middle;
- }
- .bottom{
- position: absolute;
- width: 100%;
- bottom:0;
- height: 70px;
- background-color: rgba(0, 0, 0, 0.5);
- padding: 0 30px;
- padding-top: 10px;
- box-sizing:border-box;
- }
- .bottom view{
- font-size:14px;
- color: #fff;
- line-height: 25px;
- }
- .top{
- position:absolute;
- width:100%;
- top:0;
- height:50px;
- padding-top:10px;
- padding-bottom:10px;
- }
- .top .right{
- width:32px;
- height:50px;
- float:right;
- margin-right:30px;
- }
- .top .right .num{
- width:30px;
- height:30px;
- background-color:transparent;
- border:1px solid #fff;
- border-radius:100px;
- color:#fff;
- text-align:center;
- line-height:30px;
- }
- .top .right .txt{
- color:#fff;
- font-size:12px;
- text-align:center;
- margin-top:5px;
- }
- .upload_video{
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- background-repeat: no-repeat;
- background-size: 100% auto;
- background-position: center;
- overflow-y:hidden;
- padding-top:0px;
- display:inline-block;
- box-sizing:border-box;
- }
|