-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis-selection.html
99 lines (92 loc) · 6.83 KB
/
analysis-selection.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analyse auswählen</title>
</head>
<body style="font-family: sans-serif; margin: 0; padding: 0;">
<div style="max-width: 1200px; margin: 0 auto; padding: 20px;">
<div style="text-align: center; margin-bottom: 20px;">
<h1>Analyse auswählen</h1>
</div>
<div style="background-color: #f5f5f5; padding: 15px; border-radius: 5px; margin-bottom: 25px;">
<h2>Ausgewählte Proben: 3</h2>
<p>Bitte wählen Sie die Art der Analyse aus, die für die ausgewählten Proben durchgeführt werden soll.</p>
</div>
<form>
<div style="margin-top: 30px;">
<div style="border: 1px solid #ddd; border-radius: 5px; padding: 15px; margin-bottom: 15px; display: flex; align-items: center; cursor: pointer; transition: background-color 0.2s, border-color 0.2s; background-color: #e6f2ff; border-color: #007BFF;">
<div style="margin-right: 15px;">
<input type="radio" id="analysis1" name="analysis-type" value="pcr" checked>
</div>
<div style="flex-grow: 1;">
<div style="font-weight: bold; font-size: 18px; margin-bottom: 5px;">PCR-Analyse</div>
<div style="color: #666; margin-bottom: 5px;">Identifizierung spezifischer DNA-Sequenzen mittels Polymerase-Kettenreaktion</div>
<div style="font-size: 14px; color: #888;">
<span style="display: inline-block; margin-right: 15px;">Dauer: 2-3 Stunden</span>
<span style="display: inline-block; margin-right: 15px;">Kompatibel: Blut, Gewebe, Speichel</span>
</div>
</div>
</div>
<div style="border: 1px solid #ddd; border-radius: 5px; padding: 15px; margin-bottom: 15px; display: flex; align-items: center; cursor: pointer; transition: background-color 0.2s, border-color 0.2s;">
<div style="margin-right: 15px;">
<input type="radio" id="analysis2" name="analysis-type" value="spectroscopy">
</div>
<div style="flex-grow: 1;">
<div style="font-weight: bold; font-size: 18px; margin-bottom: 5px;">Spektroskopie</div>
<div style="color: #666; margin-bottom: 5px;">Messung und Analyse der Interaktion zwischen elektromagnetischer Strahlung und Materie</div>
<div style="font-size: 14px; color: #888;">
<span style="display: inline-block; margin-right: 15px;">Dauer: 30-45 Minuten</span>
<span style="display: inline-block; margin-right: 15px;">Kompatibel: Blut, Urin, Liquor</span>
</div>
</div>
</div>
<div style="border: 1px solid #ddd; border-radius: 5px; padding: 15px; margin-bottom: 15px; display: flex; align-items: center; cursor: pointer; transition: background-color 0.2s, border-color 0.2s;">
<div style="margin-right: 15px;">
<input type="radio" id="analysis3" name="analysis-type" value="elisa">
</div>
<div style="flex-grow: 1;">
<div style="font-weight: bold; font-size: 18px; margin-bottom: 5px;">ELISA-Test</div>
<div style="color: #666; margin-bottom: 5px;">Enzyme-linked Immunosorbent Assay zur Bestimmung von Antikörpern oder Antigenen</div>
<div style="font-size: 14px; color: #888;">
<span style="display: inline-block; margin-right: 15px;">Dauer: 2-4 Stunden</span>
<span style="display: inline-block; margin-right: 15px;">Kompatibel: Blut, Speichel</span>
</div>
</div>
</div>
<div style="border: 1px solid #ddd; border-radius: 5px; padding: 15px; margin-bottom: 15px; display: flex; align-items: center; cursor: pointer; transition: background-color 0.2s, border-color 0.2s;">
<div style="margin-right: 15px;">
<input type="radio" id="analysis4" name="analysis-type" value="genomics">
</div>
<div style="flex-grow: 1;">
<div style="font-weight: bold; font-size: 18px; margin-bottom: 5px;">Genomische Sequenzierung</div>
<div style="color: #666; margin-bottom: 5px;">Vollständige Sequenzierung des Genoms für detaillierte genetische Informationen</div>
<div style="font-size: 14px; color: #888;">
<span style="display: inline-block; margin-right: 15px;">Dauer: 2-3 Tage</span>
<span style="display: inline-block; margin-right: 15px;">Kompatibel: Blut, Gewebe</span>
</div>
</div>
</div>
<div style="border: 1px solid #ddd; border-radius: 5px; padding: 15px; margin-bottom: 15px; display: flex; align-items: center; cursor: pointer; transition: background-color 0.2s, border-color 0.2s;">
<div style="margin-right: 15px;">
<input type="radio" id="analysis5" name="analysis-type" value="microscopy">
</div>
<div style="flex-grow: 1;">
<div style="font-weight: bold; font-size: 18px; margin-bottom: 5px;">Hochauflösende Mikroskopie</div>
<div style="color: #666; margin-bottom: 5px;">Zellstrukturanalyse mit konfokaler oder Elektronenmikroskopie</div>
<div style="font-size: 14px; color: #888;">
<span style="display: inline-block; margin-right: 15px;">Dauer: 1-2 Stunden</span>
<span style="display: inline-block; margin-right: 15px;">Kompatibel: Gewebe, Zellkulturen</span>
</div>
</div>
</div>
</div>
<div style="margin-top: 30px; display: flex; gap: 15px;">
<button type="submit" style="padding: 10px 20px; font-size: 16px; background-color: #007BFF; color: white; border: none; border-radius: 4px; cursor: pointer;">Analyse anfordern</button>
<a href="table.html"><button type="button" style="padding: 10px 20px; font-size: 16px; background-color: #6c757d; color: white; border: none; border-radius: 4px; cursor: pointer;">Abbrechen</button></a>
</div>
</form>
</div>
</body>
</html>