airInputFlux.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <div class="atmosphere-flux-container">
  3. <div class="map-title">大气通量分布图</div>
  4. <div class="map-image-container">
  5. <img
  6. src="/大气通量.jpg"
  7. alt="大气通量分布图"
  8. class="map-image"
  9. >
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. name: 'AtmosphereFluxMap',
  16. };
  17. </script>
  18. <style scoped>
  19. <<<<<<< HEAD
  20. =======
  21. .atmosphere-flux-container {
  22. width: 100%;
  23. max-width: 900px;
  24. margin: 0 auto;
  25. background: white;
  26. border-radius: 12px;
  27. box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  28. overflow: hidden;
  29. font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
  30. }
  31. .map-title {
  32. background: linear-gradient(to right, #1a5fad, #2c8fd1);
  33. color: white;
  34. text-align: center;
  35. padding: 18px 0;
  36. font-size: 1.8rem;
  37. font-weight: 600;
  38. letter-spacing: 1px;
  39. text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  40. }
  41. .map-image-container {
  42. padding: 25px;
  43. background: #f8fafc;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. min-height: 500px;
  48. }
  49. .map-image {
  50. max-width: 100%;
  51. max-height: 100%;
  52. object-fit: contain;
  53. border: 1px solid #e0e7ff;
  54. border-radius: 8px;
  55. box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  56. transition: transform 0.3s ease;
  57. }
  58. .map-image:hover {
  59. transform: scale(1.02);
  60. }
  61. .map-footer {
  62. background: #f1f5f9;
  63. padding: 15px 0;
  64. text-align: center;
  65. font-size: 0.95rem;
  66. color: #4b5563;
  67. border-top: 1px solid #e5e7eb;
  68. }
  69. @media (max-width: 768px) {
  70. .map-title {
  71. font-size: 1.5rem;
  72. padding: 15px 0;
  73. }
  74. .map-image-container {
  75. padding: 15px;
  76. min-height: 350px;
  77. }
  78. .map-footer {
  79. font-size: 0.85rem;
  80. }
  81. }
  82. @media (max-width: 480px) {
  83. .map-title {
  84. font-size: 1.3rem;
  85. }
  86. .map-image-container {
  87. min-height: 280px;
  88. }
  89. }
  90. >>>>>>> ding
  91. </style>