123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* pages/home/problem/problem.wxss */
- @import "/pages/home/public/public.wxss";
- .top-img{
- width: 750rpx;
- height: 200rpx;
- }
- .question{
- width: 750rpx;
- height: 100rpx;
- display: flex;
- }
- .question>text{
- width: 640rpx;
- font-size: 32rpx;
- color: #333333;
- margin: auto 8rpx auto 30rpx;
- line-height: 100rpx;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .question>image{
- width: 16rpx;
- height: 26rpx;
- margin: auto 30rpx auto 26rpx;
- }
- .nodata{
- width: 750rpx;
- display: flex;
- flex-direction: column;
- }
- .nodata>image{
- width: 462rpx;
- height: 223rpx;
- margin: 200rpx auto 60rpx;
- }
- .nodata>view{
- font-size: 30rpx;
- color: #999999;
- text-align: center;
- }
- .backhome{
- width: 106rpx;
- height: 106rpx;
- border-radius: 50%;
- position: fixed;
- bottom: 120rpx;
- right: 32rpx;
- background: #fff;
- }
- .backhome>image{
- width: 106rpx;
- height: 106rpx;
- background: #fff;
- border-radius: 50%;
- }
|