todos-preview.css 718 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. background: #ffffff;
  7. }
  8. .content {
  9. box-sizing: border-box;
  10. padding: 30rpx 50rpx 0 40rpx;
  11. }
  12. .content > view {
  13. width: 210rpx;
  14. height: 210rpx;
  15. margin-left: 10rpx;
  16. margin-top: 10rpx;
  17. float: left;
  18. box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.05);
  19. }
  20. .content > view > image {
  21. width: 100%;
  22. height: 100%;
  23. }
  24. .btn {
  25. position: fixed;
  26. bottom: 0;
  27. box-sizing: border-box;
  28. padding: 0 32rpx;
  29. width: 750rpx;
  30. height: 90rpx;
  31. text-align: center;
  32. line-height: 90rpx;
  33. color: #ffffff;
  34. font-size: 32rpx;
  35. }
  36. .btn > view {
  37. background: #3296FB;
  38. border-radius: 45rpx;
  39. }