problem.wxss 998 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* pages/home/problem/problem.wxss */
  2. @import "/pages/home/public/public.wxss";
  3. .top-img{
  4. width: 750rpx;
  5. height: 200rpx;
  6. }
  7. .question{
  8. width: 750rpx;
  9. height: 100rpx;
  10. display: flex;
  11. }
  12. .question>text{
  13. width: 640rpx;
  14. font-size: 32rpx;
  15. color: #333333;
  16. margin: auto 8rpx auto 30rpx;
  17. line-height: 100rpx;
  18. white-space: nowrap;
  19. text-overflow: ellipsis;
  20. overflow: hidden;
  21. }
  22. .question>image{
  23. width: 16rpx;
  24. height: 26rpx;
  25. margin: auto 30rpx auto 26rpx;
  26. }
  27. .nodata{
  28. width: 750rpx;
  29. display: flex;
  30. flex-direction: column;
  31. }
  32. .nodata>image{
  33. width: 462rpx;
  34. height: 223rpx;
  35. margin: 200rpx auto 60rpx;
  36. }
  37. .nodata>view{
  38. font-size: 30rpx;
  39. color: #999999;
  40. text-align: center;
  41. }
  42. .backhome{
  43. width: 106rpx;
  44. height: 106rpx;
  45. border-radius: 50%;
  46. position: fixed;
  47. bottom: 120rpx;
  48. right: 32rpx;
  49. background: #fff;
  50. }
  51. .backhome>image{
  52. width: 106rpx;
  53. height: 106rpx;
  54. background: #fff;
  55. border-radius: 50%;
  56. }