12345678910111213141516171819202122232425262728293031 |
- /* pages/showVideoList/showVideoList.wxss */
- .container{
- padding: 0;
- margin: 0;
- }
- page{
- background: #f1f1f1;
- }
- .loading {
- height: 200rpx;
- line-height: 100rpx;
- background: #f1f1f1;
- color: #999;
- text-align: center;
- }
- .show-view{
- width: 700rpx;
- background: #FFF;
- }
- .uploadTap{
- position: fixed;
- background: #005033;
- color: #FFF;
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- border-radius: 50rpx;
- right: 20rpx;
- bottom: 100rpx;
- text-align: center;
- }
|