preview.wxss 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .preview-container {
  2. display: flex;
  3. flex-direction: column;
  4. padding: 30rpx;
  5. height: 90vh;
  6. margin-left: 5%;
  7. background-color: #ffffff;
  8. }
  9. .title {
  10. font-size: 40rpx;
  11. font-weight: bold;
  12. color: #333;
  13. margin-bottom: 40rpx;
  14. text-align: left;
  15. }
  16. .guide-image {
  17. width: 100%;
  18. display: flex;
  19. justify-content: center;
  20. margin-bottom: 30rpx;
  21. }
  22. .guide-image image {
  23. width: 570rpx;
  24. height: 660rpx;
  25. }
  26. .guide-text {
  27. font-size: 32rpx;
  28. color: #2a3bab;
  29. margin-bottom: 40rpx;
  30. text-align: left;
  31. }
  32. .requirements-list {
  33. width: 90%;
  34. margin-bottom: 60rpx;
  35. }
  36. .requirement-item {
  37. font-size: 28rpx;
  38. color: #999;
  39. margin-bottom: 20rpx;
  40. line-height: 1.5;
  41. }
  42. .action-button {
  43. width: 90%;
  44. margin-top: auto;
  45. margin-bottom: 40rpx;
  46. }
  47. .action-button button {
  48. background-color: #0039b3;
  49. color: white;
  50. border-radius: 50rpx;
  51. font-size: 32rpx;
  52. height: 90rpx;
  53. line-height: 90rpx;
  54. }