show-empty-data.wxss 626 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* component/show-empty-data/show-empty-data.wxss */
  2. .no-course {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. width: 100%;
  7. height: 100%;
  8. }
  9. .no-course .img {
  10. margin-top: 116rpx;
  11. width: 597rpx;
  12. height: 467rpx;
  13. margin-bottom: 60rpx;
  14. }
  15. .no-course .desc{
  16. font-size: 30rpx;
  17. line-height: 40rpx;
  18. color: #333;
  19. font-weight: bold;
  20. }
  21. .no-course .btn {
  22. display: flex;
  23. background-color: #fff;
  24. border: 1rpx solid #d2d2d2;
  25. font-size: 28rpx;
  26. border-radius: 30rpx;
  27. width: 200rpx;
  28. height: 60rpx;
  29. justify-content: center;
  30. align-items: center;
  31. color: #333;
  32. margin-top: 20rpx;
  33. }