totalInputFluxDesc.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. <template>
  2. <div class="total-flux-intro">
  3. <!-- 第一部分:总通量概念介绍 -->
  4. <div class="content-section">
  5. <div class="section-header">
  6. <div class="section-number">1</div>
  7. <h2>重金属输入总通量概念</h2>
  8. </div>
  9. <div class="concept-card">
  10. <div class="concept-icon">📊</div>
  11. <div class="concept-content">
  12. <p>
  13. <span class="highlight">重金属输入总通量</span>是指通过灌溉水、农业投入品和大气沉降三种主要途径进入农田生态系统的重金属总量,通常以克/公顷/年(g/ha/a)为单位表示。该指标综合反映了农田系统从外部环境输入的重金属污染负荷,是评估农田重金属污染风险的重要依据。
  14. </p>
  15. </div>
  16. </div>
  17. <div class="formula-container">
  18. <div class="formula-card">
  19. <h3>输入总通量计算公式</h3>
  20. <div class="formula-content">
  21. <p class="formula">F<sub>总</sub> = F<sub>灌溉水</sub> + F<sub>农业投入品</sub> + F<sub>大气沉降</sub></p>
  22. <div class="formula-explain">
  23. <p>式中:</p>
  24. <p>F<sub>总</sub> —— 重金属输入总通量 (g/ha/a)</p>
  25. <p>F<sub>灌溉水</sub> —— 灌溉水途径输入通量 (g/ha/a)</p>
  26. <p>F<sub>农业投入品</sub> —— 肥料农药等输入通量 (g/ha/a)</p>
  27. <p>F<sub>大气沉降</sub> —— 干湿沉降输入通量 (g/ha/a)</p>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. <div class="content-section">
  34. <div class="section-header">
  35. <div class="section-number">2</div>
  36. <h2>总通量输入过程视频演示</h2>
  37. </div>
  38. <div class="video-section">
  39. <div class="video-container">
  40. <video controls class="sampling-video">
  41. <source src='@/assets/videos/输入总通量.mp4' type="video/mp4">
  42. 您的浏览器不支持HTML5视频播放。
  43. </video>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </template>
  49. <script>
  50. export default {
  51. data() {
  52. }
  53. };
  54. </script>
  55. <style scoped>
  56. .total-flux-intro {
  57. padding: 30px;
  58. background: linear-gradient(135deg, rgba(250, 255, 245, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
  59. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  60. }
  61. .content-section {
  62. margin-bottom: 50px;
  63. padding: 30px;
  64. border-radius: 15px;
  65. background: rgba(255, 255, 255, 0.92);
  66. box-shadow: 0 8px 25px rgba(0, 60, 120, 0.08);
  67. transition: all 0.4s ease;
  68. }
  69. .content-section:hover {
  70. transform: translateY(-5px);
  71. box-shadow: 0 12px 35px rgba(0, 60, 120, 0.15);
  72. }
  73. .section-header {
  74. display: flex;
  75. align-items: center;
  76. margin-bottom: 25px;
  77. padding-bottom: 15px;
  78. border-bottom: 2px solid rgba(58, 160, 207, 0.25);
  79. }
  80. .section-number {
  81. width: 50px;
  82. height: 50px;
  83. background: linear-gradient(135deg, #4a9ef7, #3a9fd3);
  84. color: white;
  85. border-radius: 50%;
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. font-size: 1.8rem;
  90. font-weight: bold;
  91. margin-right: 20px;
  92. box-shadow: 0 5px 12px rgba(74, 158, 247, 0.25);
  93. }
  94. h2 {
  95. color: #1a365d;
  96. font-size: 1.9rem;
  97. margin: 0;
  98. font-weight: 650;
  99. }
  100. .concept-card {
  101. display: flex;
  102. align-items: center;
  103. padding: 25px;
  104. background: rgba(235, 245, 255, 0.6);
  105. border-radius: 15px;
  106. margin-bottom: 30px;
  107. border-left: 4px solid #3a9fd3;
  108. }
  109. .concept-icon {
  110. font-size: 2.5rem;
  111. margin-right: 25px;
  112. color: #3a9fd3;
  113. }
  114. .concept-content p {
  115. font-size: 1.15rem;
  116. line-height: 1.8;
  117. color: #2d3748;
  118. margin: 0 0 15px 0;
  119. }
  120. .highlight {
  121. font-weight: 600;
  122. color: #1a6fb3;
  123. }
  124. .formula-container {
  125. display: flex;
  126. justify-content: center;
  127. }
  128. .formula-card {
  129. width: 100%;
  130. max-width: 700px;
  131. padding: 25px;
  132. background: rgba(245, 252, 255, 0.8);
  133. border-radius: 15px;
  134. box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  135. border-top: 3px solid #3a9fd3;
  136. }
  137. .formula-card h3 {
  138. color: #1a365d;
  139. font-size: 1.5rem;
  140. margin-top: 0;
  141. margin-bottom: 20px;
  142. text-align: center;
  143. }
  144. .formula-content {
  145. display: flex;
  146. flex-direction: column;
  147. align-items: center;
  148. }
  149. .formula {
  150. font-size: 1.8rem;
  151. font-weight: bold;
  152. color: #2c3e50;
  153. margin-bottom: 20px;
  154. text-align: center;
  155. padding: 15px;
  156. background: white;
  157. border-radius: 10px;
  158. width: 100%;
  159. box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  160. }
  161. .formula-explain {
  162. width: 100%;
  163. }
  164. .formula-explain p {
  165. font-size: 1.1rem;
  166. line-height: 1.8;
  167. color: #2d3748;
  168. margin: 5px 0;
  169. }
  170. .formula-explain p:first-child {
  171. font-weight: 600;
  172. margin-bottom: 10px;
  173. }
  174. .contribution-container {
  175. display: grid;
  176. grid-template-columns: repeat(3, 1fr);
  177. gap: 25px;
  178. margin-bottom: 30px;
  179. }
  180. .contribution-card {
  181. display: flex;
  182. padding: 20px;
  183. background: rgba(245, 252, 255, 0.7);
  184. border-radius: 15px;
  185. box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  186. transition: all 0.3s ease;
  187. }
  188. .contribution-card:hover {
  189. transform: translateY(-5px);
  190. box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  191. }
  192. .contribution-icon {
  193. font-size: 2rem;
  194. margin-right: 20px;
  195. color: #3a9fd3;
  196. }
  197. .contribution-content h3 {
  198. color: #1a365d;
  199. font-size: 1.3rem;
  200. margin-top: 0;
  201. margin-bottom: 12px;
  202. }
  203. .contribution-content p {
  204. font-size: 1.05rem;
  205. line-height: 1.6;
  206. color: #2d3748;
  207. margin: 0 0 10px 0;
  208. }
  209. .image-container {
  210. max-width: 700px;
  211. margin: 0 auto;
  212. border-radius: 15px;
  213. overflow: hidden;
  214. box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  215. }
  216. .flux-image {
  217. width: 100%;
  218. display: block;
  219. }
  220. .image-caption {
  221. text-align: center;
  222. font-size: 16px;
  223. color: #2d3748;
  224. padding: 15px;
  225. background: rgba(248, 250, 252, 0.8);
  226. margin: 0;
  227. border-top: 1px dashed #cbd5e0;
  228. }
  229. .application-container {
  230. display: grid;
  231. grid-template-columns: repeat(2, 1fr);
  232. gap: 25px;
  233. }
  234. .application-card {
  235. display: flex;
  236. padding: 20px;
  237. background: rgba(245, 252, 255, 0.7);
  238. border-radius: 15px;
  239. box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  240. transition: all 0.3s ease;
  241. border-left: 4px solid #5cb85c;
  242. }
  243. .application-card:hover {
  244. transform: translateY(-5px);
  245. box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  246. }
  247. .application-icon {
  248. font-size: 2rem;
  249. margin-right: 20px;
  250. color: #5cb85c;
  251. }
  252. .application-content h3 {
  253. color: #1a365d;
  254. font-size: 1.3rem;
  255. margin-top: 0;
  256. margin-bottom: 12px;
  257. }
  258. .application-content p {
  259. font-size: 1.05rem;
  260. line-height: 1.6;
  261. color: #2d3748;
  262. margin: 0;
  263. }
  264. /* 响应式设计 */
  265. @media (max-width: 1200px) {
  266. .contribution-container {
  267. grid-template-columns: 1fr;
  268. }
  269. }
  270. @media (max-width: 900px) {
  271. .content-section {
  272. padding: 25px;
  273. }
  274. .section-number {
  275. width: 45px;
  276. height: 45px;
  277. font-size: 1.6rem;
  278. }
  279. h2 {
  280. font-size: 1.7rem;
  281. }
  282. .application-container {
  283. grid-template-columns: 1fr;
  284. }
  285. }
  286. @media (max-width: 768px) {
  287. .total-flux-intro {
  288. padding: 20px;
  289. }
  290. .concept-card {
  291. flex-direction: column;
  292. text-align: center;
  293. }
  294. .concept-icon {
  295. margin-right: 0;
  296. margin-bottom: 15px;
  297. }
  298. .contribution-card {
  299. flex-direction: column;
  300. text-align: center;
  301. }
  302. .contribution-icon {
  303. margin-right: 0;
  304. margin-bottom: 15px;
  305. }
  306. }
  307. @media (max-width: 480px) {
  308. .total-flux-intro {
  309. padding: 15px;
  310. }
  311. .content-section {
  312. padding: 20px;
  313. }
  314. .section-header {
  315. flex-direction: column;
  316. align-items: flex-start;
  317. }
  318. .section-number {
  319. margin-right: 0;
  320. margin-bottom: 15px;
  321. }
  322. h2 {
  323. font-size: 1.6rem;
  324. }
  325. .formula {
  326. font-size: 1.5rem;
  327. }
  328. }
  329. /* 新增视频模块样式 */
  330. .video-section {
  331. display: flex;
  332. flex-direction: column;
  333. gap: 30px;
  334. margin-top: 20px;
  335. }
  336. .video-container {
  337. border-radius: 12px;
  338. overflow: hidden;
  339. position: relative;
  340. box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  341. max-width: 800px;
  342. margin: 0 auto;
  343. transition: all 0.4s ease;
  344. }
  345. .video-container:hover {
  346. transform: translateY(-5px);
  347. box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  348. }
  349. .sampling-video {
  350. width: 100%;
  351. height: auto;
  352. display: block;
  353. background: #f8fafc;
  354. min-height: 400px;
  355. }
  356. .video-caption {
  357. text-align: center;
  358. font-size: 1.1rem;
  359. color: #1a365d;
  360. padding: 15px;
  361. font-weight: 600;
  362. background: linear-gradient(to right, rgba(248, 250, 252, 0.9), rgba(240, 248, 255, 0.9));
  363. margin: 0;
  364. border-top: 1px dashed #cbd5e0;
  365. position: relative;
  366. }
  367. .video-caption::before {
  368. content: "📹";
  369. position: absolute;
  370. left: 20px;
  371. top: 50%;
  372. transform: translateY(-50%);
  373. }
  374. .video-description {
  375. background: rgba(245, 249, 255, 0.6);
  376. border-radius: 12px;
  377. padding: 20px;
  378. border-left: 4px solid #3acfd5;
  379. }
  380. .video-description h3 {
  381. color: #1a365d;
  382. margin-top: 0;
  383. margin-bottom: 15px;
  384. font-size: 1.4rem;
  385. }
  386. .video-description ul {
  387. padding-left: 25px;
  388. margin: 15px 0;
  389. }
  390. .video-description li {
  391. margin-bottom: 10px;
  392. line-height: 1.7;
  393. position: relative;
  394. }
  395. .video-description li::before {
  396. content: "•";
  397. color: #3acfd5;
  398. font-size: 1.2rem;
  399. position: absolute;
  400. left: -20px;
  401. top: 0;
  402. }
  403. </style>