* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‚Segoe UI‘, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: #333;
background-color: #ffffff;
}
.product-container {
max-width: 1200px;
margin: 0 auto;
padding: 0;
}
.hero-section {
background: linear-gradient(135deg, #263238 0%, #37474f 100%);
color: white;
padding: 45px 20px;
text-align: center;
}
.hero-section h1 {
font-size: 34px;
margin-bottom: 15px;
font-weight: 700;
line-height: 1.3;
}
.hero-section .subtitle {
font-size: 19px;
opacity: 0.95;
margin-bottom: 12px;
}
.badge-container {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
margin-top: 25px;
}
.badge {
background-color: rgba(255,255,255,0.25);
padding: 10px 18px;
border-radius: 25px;
font-size: 14px;
backdrop-filter: blur(10px);
font-weight: 500;
}
.capacity-showcase {
background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
color: white;
padding: 40px 20px;
}
.capacity-showcase h2 {
font-size: 28px;
margin-bottom: 30px;
text-align: center;
}
.capacity-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 25px;
max-width: 1000px;
margin: 0 auto;
}
.capacity-card {
background-color: rgba(255,255,255,0.15);
padding: 25px;
border-radius: 12px;
text-align: center;
backdrop-filter: blur(10px);
}
.capacity-card .value {
font-size: 36px;
font-weight: bold;
display: block;
margin-bottom: 10px;
}
.capacity-card .label {
font-size: 15px;
opacity: 0.95;
}
.quick-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 18px;
padding: 35px 20px;
background-color: #f8f9fa;
}
.quick-feature {
background-color: white;
padding: 22px;
border-radius: 12px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.quick-feature:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.quick-feature .icon {
font-size: 38px;
margin-bottom: 12px;
}
.quick-feature h3 {
font-size: 16px;
color: #263238;
margin-bottom: 10px;
font-weight: 600;
}
.quick-feature p {
font-size: 14px;
color: #666;
line-height: 1.6;
}
.description-section {
padding: 40px 20px;
background-color: white;
}
.description-section h2 {
font-size: 28px;
color: #263238;
margin-bottom: 25px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.description-section h2::after {
content: “;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #263238 0%, #37474f 100%);
}
.description-content {
max-width: 900px;
margin: 30px auto 0;
font-size: 16px;
line-height: 1.8;
color: #444;
}
.angles-highlight {
background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
padding: 40px 20px;
color: white;
}
.angles-highlight h2 {
font-size: 28px;
margin-bottom: 30px;
text-align: center;
}
.angles-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
max-width: 900px;
margin: 0 auto;
}
.angle-card {
background-color: rgba(255,255,255,0.15);
padding: 30px;
border-radius: 12px;
text-align: center;
backdrop-filter: blur(10px);
}
.angle-card .angle-value {
font-size: 48px;
font-weight: bold;
display: block;
margin-bottom: 15px;
}
.angle-card h3 {
font-size: 18px;
margin-bottom: 10px;
}
.angle-card p {
font-size: 15px;
opacity: 0.95;
}
.feature-highlights {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
padding: 40px 20px;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.highlight-card {
background-color: white;
padding: 28px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
border-top: 5px solid #263238;
}
.highlight-card h3 {
font-size: 19px;
color: #263238;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 12px;
font-weight: 600;
}
.highlight-card h3::before {
content: „✦“;
color: #ff9800;
font-size: 26px;
}
.highlight-card p {
font-size: 15px;
color: #555;
line-height: 1.7;
}
.specifications {
padding: 40px 20px;
background-color: white;
}
.specifications h2 {
font-size: 28px;
color: #263238;
margin-bottom: 30px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.specifications h2::after {
content: “;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #263238 0%, #37474f 100%);
}
.spec-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2px;
max-width: 1000px;
margin: 0 auto;
background-color: #e0e0e0;
border: 2px solid #e0e0e0;
border-radius: 10px;
overflow: hidden;
}
.spec-item {
background-color: white;
padding: 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.spec-label {
font-weight: 600;
color: #263238;
font-size: 14px;
}
.spec-value {
color: #555;
text-align: right;
font-size: 14px;
}
.mobility-feature {
padding: 40px 20px;
background-color: #f8f9fa;
}
.mobility-feature h2 {
font-size: 28px;
color: #263238;
margin-bottom: 30px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.mobility-feature h2::after {
content: “;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #263238 0%, #37474f 100%);
}
.mobility-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
max-width: 1000px;
margin: 0 auto;
}
.mobility-item {
background-color: white;
padding: 25px;
border-radius: 12px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.mobility-item .icon {
font-size: 42px;
margin-bottom: 12px;
}
.mobility-item h4 {
font-size: 16px;
color: #263238;
margin-bottom: 10px;
font-weight: 600;
}
.mobility-item p {
font-size: 14px;
color: #666;
}
.reviews {
padding: 40px 20px;
background-color: white;
}
.reviews h2 {
font-size: 28px;
color: #263238;
margin-bottom: 30px;
text-align: center;
position: relative;
padding-bottom: 15px;
}
.reviews h2::after {
content: “;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #263238 0%, #37474f 100%);
}
.review-container {
max-width: 900px;
margin: 0 auto;
}
.review-card {
background-color: #f8f9fa;
padding: 28px;
margin-bottom: 20px;
border-radius: 12px;
border-left: 5px solid #ffc107;
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.review-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
flex-wrap: wrap;
gap: 10px;
}
.review-stars {
color: #ffc107;
font-size: 22px;
letter-spacing: 3px;
}
.review-author {
color: #263238;
font-weight: 600;
font-size: 15px;
}
.review-text {
color: #444;
font-size: 15px;
line-height: 1.8;
font-style: italic;
}
.trust-section {
background: linear-gradient(135deg, #263238 0%, #37474f 100%);
padding: 45px 20px;
color: white;
text-align: center;
}
.trust-section h2 {
font-size: 28px;
margin-bottom: 25px;
font-weight: bold;
}
.trust-badges {
display: flex;
justify-content: center;
gap: 35px;
flex-wrap: wrap;
margin-top: 30px;
}
.trust-badge {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}
.trust-badge .icon {
font-size: 50px;
opacity: 0.95;
}
.trust-badge p {
font-size: 15px;
opacity: 0.95;
font-weight: 500;
}
@media (max-width: 768px) {
.hero-section h1 {
font-size: 26px;
}
.hero-section .subtitle {
font-size: 17px;
}
.badge-container {
gap: 10px;
}
.badge {
font-size: 12px;
padding: 8px 14px;
}
.capacity-grid {
grid-template-columns: repeat(2, 1fr);
}
.quick-features {
grid-template-columns: 1fr;
padding: 25px 15px;
}
.feature-highlights {
grid-template-columns: 1fr;
padding: 30px 15px;
}
.spec-grid {
grid-template-columns: 1fr;
}
.spec-item {
grid-template-columns: 1fr;
gap: 5px;
}
.spec-value {
text-align: left;
}
.angles-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.hero-section {
padding: 35px 15px;
}
.hero-section h1 {
font-size: 24px;
}
.description-section h2,
.specifications h2,
.mobility-feature h2,
.reviews h2 {
font-size: 24px;
}
.capacity-grid {
grid-template-columns: 1fr;
}
}
Klappbarer Schweißtisch Professional
76 x 51cm | 181kg Tragfähigkeit | Höhenverstellbar mit Rädern
Technische Highlights
181kg Tragkraft
Kohlenstoffstahl-Rahmen
Höhenverstellbar
63,5 – 81,3 cm
3 Neigungen
0° / 30° / 90°
Klappbar
Platzsparend
Mobil
Mit Rädern
Rostschutz
Langlebig
Produktbeschreibung
Unser professioneller klappbarer Schweißtisch bietet mit einer Arbeitsfläche von 76,2 x 50,8 cm die perfekte Grundlage für vielfältige Schweißarbeiten und Metallbearbeitung. Der robuste Kohlenstoffstahl-Rahmen garantiert eine außergewöhnliche Tragfähigkeit von bis zu 181 kg und sorgt für maximale Stabilität bei allen Arbeiten.
Die höhenverstellbare Konstruktion ermöglicht eine stufenlose Anpassung von 63,5 bis 81,3 cm, wodurch Sie ergonomisch im Sitzen oder Stehen arbeiten können. Drei einstellbare Neigungswinkel (0°, 30° und 90°) bieten maximale Flexibilität für unterschiedliche Schweißpositionen und Werkstücke.
Besonders praktisch sind die drei 2,8 x 56 cm großen Schlitze in der Tischplatte sowie die drei ausziehbaren vertikalen Führungsschienen aus Stahl. Diese ermöglichen flexibles Befestigen von Klemmen und präzises Ausrichten der Werkstücke. Die behandelte Kohlenstoffstahl-Oberfläche bietet hervorragenden Rostschutz für lange Lebensdauer. Dank der Klappfunktion und der zwei robusten Räder ist der Tisch mobil einsetzbar und platzsparend verstaubar.
3 Flexible Neigungswinkel für jede Arbeit
0°
Horizontal
Perfekt für flache Werkstücke und Montagearbeiten auf ebener Fläche
30°
Geneigt
Ideale Neigung für bequeme Schweißposition und bessere Sicht
90°
Vertikal
Optimal für aufrechte Werkstücke und vertikale Schweißarbeiten
Extreme Tragfähigkeit
Robuster Kohlenstoffstahl-Rahmen trägt bis zu 181 kg ohne Probleme. Ideal für schwere Metallteile und anspruchsvolle Schweißprojekte – professionelle Stabilität garantiert.
Ergonomische Höhenverstellung
Stufenlos verstellbar von 63,5 bis 81,3 cm für rückenschonende Arbeitshaltung. Perfekt anpassbar an verschiedene Körpergrößen und Arbeitspositionen – gesund arbeiten.
3 Präzise Neigungswinkel
Einstellbar auf 0°, 30° und 90° für maximale Flexibilität. Jede Schweißposition problemlos möglich – optimale Anpassung an unterschiedliche Werkstücke und Arbeitsanforderungen.
Platzsparende Klappfunktion
Zusammenklappbar für kompakte Lagerung in Werkstatt oder Garage. Spart wertvollen Platz wenn nicht in Gebrauch – ideal für beengte Platzverhältnisse.
Mobile Räder
Zwei robuste Räder ermöglichen müheloses Verschieben an jeden Arbeitsort. Flexible Positionierung in der Werkstatt oder auf Baustellen – mobile Schweißstation.
Vielseitige Befestigung
Drei 2,8 x 56 cm Schlitze plus drei ausziehbare Führungsschienen aus Stahl. Werkstücke sicher fixieren und präzise ausrichten – maximale Arbeitssicherheit.
Langlebige Oberfläche
Behandeltes Kohlenstoffstahlblech mit hervorragendem Rostschutz. Verschleißfest und widerstandsfähig gegen intensive Nutzung – jahrelange Lebensdauer garantiert.
Einfache Montage
Unkomplizierter Aufbau mit klarer Anleitung und verbessertem Verpackungsdesign. Schnell zusammengebaut und sofort einsatzbereit – kein Frust beim Start.
Technische Spezifikationen
Mobilität & Flexibilität
Mit Rädern
Zwei robuste Räder ermöglichen müheloses Verschieben und Positionieren
Klappbar
Platzsparend zusammenklappbar für kompakte Aufbewahrung
Flexibel einsetzbar
Perfekt für Werkstatt, Garage oder wechselnde Arbeitsorte
Stabil trotz Mobilität
Sicherer Stand auch bei intensiver Nutzung dank robuster Konstruktion
Kundenbewertungen
Perfekter Schweißtisch für meine Werkstatt! Die 181kg Tragfähigkeit ist beeindruckend, sehr stabil. Die Höhenverstellung funktioniert einwandfrei. Klappfunktion spart Platz. Absolute Kaufempfehlung für Schweißarbeiten!
Endlich ein mobiler Schweißtisch mit Qualität! Die drei Winkeleinstellungen sind super praktisch. Räder laufen gut, lässt sich leicht bewegen. Robuste Verarbeitung, würde ich jederzeit wieder kaufen!
Top Preis-Leistung! Die Führungsschienen und Schlitze sind sehr nützlich zum Fixieren. Höhenverstellung erleichtert die Arbeit enorm. Montage war einfach. Perfekt für Hobby-Schweißer!
Stabiler Arbeitstisch mit durchdachten Details! Die Klappfunktion ist genial, spart in meiner kleinen Werkstatt viel Platz. Material wirkt hochwertig, Rostschutz funktioniert. Klare 5 Sterne!
Beste Investition für meine Metallwerkstatt! Die 90° Neigung ist perfekt für vertikale Arbeiten. Sehr stabil trotz Räder. Einfacher Aufbau, sofort einsatzbereit. Professionelle Qualität!
Vertrauen Sie auf Profi-Qualität
Schneller Versand
Geprüfte Qualität
Sichere Zahlung
181kg Tragkraft
Mobil & Flexibel











Rezensionen
Es gibt noch keine Rezensionen.