samplingDesc2.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <template>
  2. <div class="sampling-process">
  3. <div class="header-section">
  4. <h2>秸秆移除</h2>
  5. <div class="subtitle">重金属在土壤-农作物系统中的迁移与输出机制</div>
  6. </div>
  7. <div class="content-section">
  8. <div class="text-content">
  9. <p>
  10. 秸秆移除是重金属输出的重要方式之一。重金属在植物地上部分(包括秸秆)积累,其生物可利用性及在土壤-农作物系统中的迁移转化备受关注。秸秆作为作物残茬,在农田生态系统的重金属循环中扮演关键角色,同时也可能带来人体暴露风险。
  11. </p>
  12. <p>
  13. 图清晰地展示了秸秆移除过程中重金属输出的具体路径。如图所示,土壤中的重金属通过植物根系被吸收并转运至地上部分,最终富集于秸秆中。当秸秆被移除时,其中积累的重金属也随之离开农田系统,构成重要的重金属输出途径。图中通过不同颜色标注,展示了不同作物秸秆中重金属种类及含量的差异,进一步说明了在估算秸秆移除的重金属输出量时,必须收集秸秆样品进行处理和化学分析,并将其重金属含量纳入作物收获输出通量计算的必要性。
  14. </p>
  15. </div>
  16. <div class="image-row">
  17. <div class="image-container">
  18. <el-image :src="image1" alt="秸秆移除是重金属输出的重要途径" class="sampling-image"></el-image>
  19. <p class="image-caption">
  20. 秸秆移除是重金属输出的重要途径
  21. </p>
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. image1: 'https://hunyuan-plugin-1258344706.cos.ap-nanjing.myqcloud.com/pdf_youtu/img/d2b2d067ccd777c5d9d0d26618f9b569-image.png',
  32. };
  33. }
  34. };
  35. </script>
  36. <style scoped>
  37. .sampling-process {
  38. padding: 30px;
  39. background: linear-gradient(135deg, rgba(230, 247, 255, 0.7) 0%, rgba(240, 248, 255, 0.7) 100%);
  40. position: relative;
  41. overflow: hidden;
  42. border-radius: 16px;
  43. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  44. }
  45. .sampling-process::before {
  46. content: "";
  47. position: absolute;
  48. top: 0;
  49. left: 0;
  50. width: 100%;
  51. height: 100%;
  52. background: url('https://images.unsplash.com/photo-1518834107812-67b0b7c58434?q=80&w=2070&auto=format&fit=crop') center/cover;
  53. opacity: 0.15;
  54. z-index: -1;
  55. filter: blur(2px);
  56. }
  57. /* 标题区域 */
  58. .header-section {
  59. text-align: center;
  60. margin-bottom: 30px;
  61. padding-bottom: 20px;
  62. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  63. }
  64. .header-section h2 {
  65. position: relative;
  66. padding-bottom: 15px;
  67. margin-bottom: 10px;
  68. color: #1a365d;
  69. font-size: 2rem;
  70. font-weight: 700;
  71. text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  72. }
  73. .header-section h2::after {
  74. content: "";
  75. position: absolute;
  76. bottom: 0;
  77. left: 50%;
  78. transform: translateX(-50%);
  79. width: 80px;
  80. height: 4px;
  81. background: linear-gradient(90deg, #4a9ef7, #3acfd5);
  82. border-radius: 3px;
  83. }
  84. .subtitle {
  85. font-size: 1.2rem;
  86. color: #2d5986;
  87. font-weight: 500;
  88. letter-spacing: 0.5px;
  89. }
  90. /* 内容区域 */
  91. .content-section {
  92. margin-bottom: 40px;
  93. padding: 25px;
  94. background: rgba(255, 255, 255, 0.85);
  95. border-radius: 12px;
  96. box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  97. transition: all 0.4s ease;
  98. overflow: hidden;
  99. }
  100. .content-section:hover {
  101. transform: translateY(-5px);
  102. box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  103. background: rgba(255, 255, 255, 0.92);
  104. }
  105. .text-content {
  106. margin-bottom: 30px;
  107. }
  108. p {
  109. text-indent: 2em;
  110. margin: 20px 0;
  111. line-height: 1.8;
  112. color: #2d3748;
  113. font-size: 1.1rem;
  114. position: relative;
  115. padding-left: 20px;
  116. }
  117. p::before {
  118. content: "•";
  119. position: absolute;
  120. left: 0;
  121. top: 0;
  122. color: #3a9fd3;
  123. font-size: 1.5rem;
  124. line-height: 1.8;
  125. }
  126. /* 图片区域 */
  127. .image-row {
  128. display: flex;
  129. justify-content: center;
  130. }
  131. .image-container {
  132. border-radius: 12px;
  133. overflow: hidden;
  134. position: relative;
  135. box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  136. max-width: 800px;
  137. margin: 0 auto;
  138. transition: all 0.4s ease;
  139. }
  140. .image-container:hover {
  141. transform: scale(1.01);
  142. box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  143. }
  144. .sampling-image {
  145. width: 100%;
  146. height: auto;
  147. min-height: 350px;
  148. display: block;
  149. background: rgba(245, 249, 255, 0.4);
  150. object-fit: cover;
  151. transition: transform 0.5s ease;
  152. }
  153. .image-container:hover .sampling-image {
  154. transform: scale(1.02);
  155. }
  156. .image-caption {
  157. text-align: center;
  158. font-size: 1.1rem;
  159. color: #1a365d;
  160. padding: 15px;
  161. font-weight: 600;
  162. background: linear-gradient(to right, rgba(248, 250, 252, 0.9), rgba(240, 248, 255, 0.9));
  163. margin: 0;
  164. border-top: 1px dashed #cbd5e0;
  165. position: relative;
  166. }
  167. .image-caption::before {
  168. content: "📌";
  169. position: absolute;
  170. left: 20px;
  171. top: 50%;
  172. transform: translateY(-50%);
  173. }
  174. /* 装饰元素 */
  175. .decorative-element {
  176. position: absolute;
  177. width: 100px;
  178. height: 100px;
  179. border-radius: 50%;
  180. background: linear-gradient(135deg, rgba(74, 158, 247, 0.1), rgba(58, 207, 213, 0.1));
  181. z-index: -1;
  182. }
  183. .decorative-element:nth-child(1) {
  184. top: 10%;
  185. left: 5%;
  186. width: 80px;
  187. height: 80px;
  188. }
  189. .decorative-element:nth-child(2) {
  190. bottom: 15%;
  191. right: 8%;
  192. width: 60px;
  193. height: 60px;
  194. }
  195. /* 响应式设计 */
  196. @media (max-width: 900px) {
  197. .sampling-process {
  198. padding: 20px;
  199. }
  200. .header-section h2 {
  201. font-size: 1.8rem;
  202. }
  203. .subtitle {
  204. font-size: 1.1rem;
  205. }
  206. .content-section {
  207. padding: 20px;
  208. }
  209. .sampling-image {
  210. min-height: 300px;
  211. }
  212. }
  213. @media (max-width: 768px) {
  214. .sampling-process {
  215. padding: 15px;
  216. }
  217. .header-section h2 {
  218. font-size: 1.6rem;
  219. }
  220. p {
  221. font-size: 1rem;
  222. padding-left: 15px;
  223. }
  224. .image-caption {
  225. font-size: 1rem;
  226. padding: 12px;
  227. }
  228. .sampling-image {
  229. min-height: 250px;
  230. }
  231. }
  232. @media (max-width: 480px) {
  233. .sampling-process {
  234. padding: 10px;
  235. }
  236. .header-section h2 {
  237. font-size: 1.4rem;
  238. }
  239. .subtitle {
  240. font-size: 0.95rem;
  241. }
  242. .content-section {
  243. padding: 15px;
  244. }
  245. p {
  246. font-size: 0.95rem;
  247. padding-left: 10px;
  248. }
  249. .image-caption {
  250. font-size: 0.9rem;
  251. padding: 10px 15px 10px 35px;
  252. }
  253. .image-caption::before {
  254. left: 10px;
  255. }
  256. .sampling-image {
  257. min-height: 200px;
  258. }
  259. }
  260. </style>