samplingMethodDevice1.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. <template>
  2. <div class="sampling-process">
  3. <!-- 采样容器与过程部分 -->
  4. <div class="section-container">
  5. <div class="section-header">
  6. <div class="section-number">1</div>
  7. <h2>采样容器与过程</h2>
  8. </div>
  9. <div class="section-content">
  10. <div class="description-card">
  11. <div class="icon">🧪</div>
  12. <div class="description-text">
  13. <p>
  14. 采样容器均为500mL的白色聚乙烯瓶,采样体积均为500mL,采样过程在不同天气条件下进行,
  15. 主要天气状况包括多云、阴天和小雨,采样点周边环境主要为河流,只有少数样品采集于水渠或瀑布区域。
  16. </p>
  17. </div>
  18. </div>
  19. <div class="image-gallery">
  20. <div class="image-card">
  21. <el-image :src="image1" alt="采样容器" class="sampling-image"></el-image>
  22. <div class="image-info">
  23. <h3>采样容器</h3>
  24. <p>500mL白色聚乙烯瓶,符合水质采样标准</p>
  25. </div>
  26. </div>
  27. <div class="image-card">
  28. <el-image :src="image2" alt="采样现场" class="sampling-image"></el-image>
  29. <div class="image-info">
  30. <h3>采样现场</h3>
  31. <p>河流环境采样,多云天气条件下进行</p>
  32. </div>
  33. </div>
  34. <div class="image-card">
  35. <el-image :src="image3" alt="灌溉水采样设备" class="sampling-image"></el-image>
  36. <div class="image-info">
  37. <h3>灌溉水采样设备</h3>
  38. <p>专业水质采样设备,确保样品完整性</p>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. <!-- 样品保存与现场情况部分 -->
  45. <div class="section-container">
  46. <div class="section-header">
  47. <div class="section-number">2</div>
  48. <h2>样品保存与现场情况</h2>
  49. </div>
  50. <div class="section-content">
  51. <div class="preservation-info">
  52. <div class="preservation-card">
  53. <div class="preservation-icon">🌡️</div>
  54. <div>
  55. <h3>样品保存</h3>
  56. <ul>
  57. <li>冷藏保存,温度控制在4℃</li>
  58. <li>避光处理,防止光化学反应</li>
  59. <li>标签完好,清晰记录采样信息</li>
  60. <li>减震措施,防止运输过程损坏</li>
  61. </ul>
  62. </div>
  63. </div>
  64. <div class="preservation-card">
  65. <div class="preservation-icon">🔍</div>
  66. <div>
  67. <h3>样品状态</h3>
  68. <ul>
  69. <li>绝大多数样品:无色、无沉淀、无味、无悬浮物</li>
  70. <li>少数样品:稍显浑浊并含有沉淀物</li>
  71. </ul>
  72. </div>
  73. </div>
  74. </div>
  75. <div class="field-gallery">
  76. <div class="field-card">
  77. <el-image :src="fieldImage1" alt="工作人员采样现场" class="sampling-image"></el-image>
  78. <div class="field-info">
  79. <h3>河流采样现场</h3>
  80. <p>多云天气下的河流采样工作</p>
  81. </div>
  82. </div>
  83. <div class="field-card">
  84. <el-image :src="fieldImage2" alt="工作人员采样现场" class="sampling-image"></el-image>
  85. <div class="field-info">
  86. <h3>水渠采样现场</h3>
  87. <p>小雨天气下的水渠采样工作</p>
  88. </div>
  89. </div>
  90. <div class="field-card">
  91. <el-image :src="fieldImage3" alt="工作人员采样现场" class="sampling-image"></el-image>
  92. <div class="field-info">
  93. <h3>瀑布区域采样</h3>
  94. <p>特殊地形条件下的采样工作</p>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </template>
  102. <script>
  103. export default {
  104. data() {
  105. return {
  106. image1: '/图1.png',
  107. image2: '/图片2.png',
  108. image3: '/图片3.png',
  109. fieldImage1: '/图片4.jpg',
  110. fieldImage2: '/图片5.jpg',
  111. fieldImage3: '/图片6.jpg'
  112. };
  113. }
  114. };
  115. </script>
  116. <style scoped>
  117. .sampling-process {
  118. padding: 30px;
  119. background: linear-gradient(135deg, rgba(245, 250, 255, 0.85) 0%, rgba(235, 245, 255, 0.85) 100%);
  120. position: relative;
  121. overflow: hidden;
  122. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  123. }
  124. .sampling-process::before {
  125. content: "";
  126. position: absolute;
  127. top: 0;
  128. left: 0;
  129. width: 100%;
  130. height: 100%;
  131. background: url('https://images.unsplash.com/photo-1518834107812-67b0b7c58434?q=80&w=2070&auto=format&fit=crop') center/cover;
  132. opacity: 0.12;
  133. z-index: -1;
  134. filter: blur(2px);
  135. }
  136. .section-container {
  137. margin-bottom: 50px;
  138. padding: 30px;
  139. border-radius: 18px;
  140. background: rgba(255, 255, 255, 0.88);
  141. box-shadow: 0 8px 25px rgba(0, 60, 120, 0.08);
  142. transition: all 0.4s ease;
  143. overflow: hidden;
  144. position: relative;
  145. }
  146. .section-container:hover {
  147. transform: translateY(-5px);
  148. box-shadow: 0 12px 35px rgba(0, 60, 120, 0.15);
  149. }
  150. .section-header {
  151. display: flex;
  152. align-items: center;
  153. margin-bottom: 25px;
  154. position: relative;
  155. padding-bottom: 15px;
  156. border-bottom: 2px solid rgba(58, 160, 207, 0.25);
  157. }
  158. .section-number {
  159. width: 50px;
  160. height: 50px;
  161. background: linear-gradient(135deg, #4a9ef7, #3a9fd3);
  162. color: white;
  163. border-radius: 50%;
  164. display: flex;
  165. align-items: center;
  166. justify-content: center;
  167. font-size: 1.8rem;
  168. font-weight: bold;
  169. margin-right: 20px;
  170. box-shadow: 0 5px 12px rgba(74, 158, 247, 0.25);
  171. }
  172. h2 {
  173. color: #1a365d;
  174. font-size: 1.9rem;
  175. margin: 0;
  176. font-weight: 650;
  177. letter-spacing: 0.5px;
  178. }
  179. .section-content {
  180. padding: 0 10px;
  181. }
  182. .description-card {
  183. display: flex;
  184. align-items: flex-start;
  185. margin-bottom: 30px;
  186. padding: 20px;
  187. background: rgba(235, 245, 255, 0.6);
  188. border-radius: 15px;
  189. }
  190. .icon {
  191. font-size: 2.5rem;
  192. margin-right: 25px;
  193. color: #3a9fd3;
  194. }
  195. .description-text p {
  196. font-size: 1.1rem;
  197. line-height: 1.8;
  198. color: #2d3748;
  199. margin: 0;
  200. }
  201. /* 图片画廊样式 */
  202. .image-gallery, .field-gallery {
  203. display: grid;
  204. grid-template-columns: repeat(3, 1fr);
  205. gap: 25px;
  206. margin-top: 20px;
  207. }
  208. .image-card, .field-card {
  209. border-radius: 15px;
  210. overflow: hidden;
  211. box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  212. transition: all 0.4s ease;
  213. background: white;
  214. }
  215. .image-card:hover, .field-card:hover {
  216. transform: translateY(-8px);
  217. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  218. }
  219. .sampling-image {
  220. width: 100%;
  221. height: 230px;
  222. display: block;
  223. object-fit: cover;
  224. transition: transform 0.4s ease;
  225. background: rgba(245, 249, 255, 0.4);
  226. }
  227. .image-card:hover .sampling-image, .field-card:hover .sampling-image {
  228. transform: scale(1.05);
  229. }
  230. .image-info, .field-info {
  231. padding: 20px;
  232. }
  233. .image-info h3, .field-info h3 {
  234. color: #1a365d;
  235. font-size: 1.25rem;
  236. margin-top: 0;
  237. margin-bottom: 10px;
  238. }
  239. .image-info p, .field-info p {
  240. font-size: 0.95rem;
  241. color: #4a5568;
  242. margin: 0;
  243. line-height: 1.6;
  244. }
  245. /* 样品保存信息 */
  246. .preservation-info {
  247. display: flex;
  248. gap: 25px;
  249. margin-bottom: 35px;
  250. }
  251. .preservation-card {
  252. flex: 1;
  253. display: flex;
  254. padding: 20px;
  255. background: rgba(245, 252, 255, 0.7);
  256. border-radius: 15px;
  257. box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  258. border-left: 4px solid #3a9fd3;
  259. }
  260. .preservation-icon {
  261. font-size: 2.2rem;
  262. margin-right: 20px;
  263. color: #3a9fd3;
  264. }
  265. .preservation-card h3 {
  266. color: #1a365d;
  267. font-size: 1.3rem;
  268. margin-top: 0;
  269. margin-bottom: 15px;
  270. }
  271. .preservation-card ul {
  272. padding-left: 20px;
  273. margin: 0;
  274. }
  275. .preservation-card li {
  276. margin-bottom: 10px;
  277. font-size: 1.05rem;
  278. line-height: 1.6;
  279. color: #2d3748;
  280. }
  281. /* 响应式设计 */
  282. @media (max-width: 1100px) {
  283. .image-gallery, .field-gallery {
  284. grid-template-columns: repeat(2, 1fr);
  285. }
  286. .preservation-info {
  287. flex-direction: column;
  288. }
  289. }
  290. @media (max-width: 768px) {
  291. .image-gallery, .field-gallery {
  292. grid-template-columns: 1fr;
  293. }
  294. .section-container {
  295. padding: 25px;
  296. }
  297. .section-number {
  298. width: 45px;
  299. height: 45px;
  300. font-size: 1.6rem;
  301. }
  302. h2 {
  303. font-size: 1.7rem;
  304. }
  305. .description-card {
  306. flex-direction: column;
  307. align-items: center;
  308. text-align: center;
  309. }
  310. .icon {
  311. margin-right: 0;
  312. margin-bottom: 15px;
  313. }
  314. .preservation-card {
  315. flex-direction: column;
  316. align-items: center;
  317. text-align: center;
  318. }
  319. .preservation-icon {
  320. margin-right: 0;
  321. margin-bottom: 15px;
  322. }
  323. }
  324. @media (max-width: 480px) {
  325. .sampling-process {
  326. padding: 20px;
  327. }
  328. .section-container {
  329. padding: 20px;
  330. }
  331. .section-header {
  332. flex-direction: column;
  333. align-items: flex-start;
  334. }
  335. .section-number {
  336. margin-right: 0;
  337. margin-bottom: 15px;
  338. }
  339. h2 {
  340. font-size: 1.6rem;
  341. }
  342. .sampling-image {
  343. height: 200px;
  344. }
  345. }
  346. </style>