SEO
OpenGraph
Fonts
CSS
Train + message principal + CTA
FCL / LCL / Door to Door...
Usine → Train → Terminal → Douane → Livraison
STACKLINE | Fret Ferroviaire Chine-Europe
Le spécialiste du fret ferroviaire
Chine – Europe
Importez depuis la Chine avec une solution
plus rapide que le maritime et plus économique
que l'aérien.
0
Villes chinoises connectées
0
Destinations européennes
14-20
Jours terminal à terminal
Pourquoi choisir le rail ?
Une alternative performante entre le maritime
et l'aérien.
🚆
Plus rapide
Des délais optimisés entre la Chine et l'Europe.
💶
Plus économique
Un compromis idéal entre coût et rapidité.
🌍
Réduction CO₂
Une empreinte carbone réduite par rapport
au transport aérien.
📦
Grande capacité
Transport adapté aux volumes industriels.
📍
Suivi des expéditions
Une meilleure visibilité sur votre chaîne logistique.
🔒
Solution fiable
Un réseau ferroviaire international structuré.
Nos solutions logistiques
STACKLINE accompagne vos flux Chine-Europe
de bout en bout.
FCL
Conteneur complet pour vos marchandises.
LCL
Groupage ferroviaire pour petits volumes.
Projet Cargo
Solutions adaptées aux marchandises spécifiques.
Door to Door
De l'usine chinoise jusqu'à votre entrepôt.
Douane
Gestion documentaire et procédures import.
Assurance
Protection de vos marchandises transportées.
Votre transport en 5 étapes
01
Usine
Collecte chez votre fournisseur en Chine.
↓
02
Train
Acheminement ferroviaire international.
↓
03
Terminal
Arrivée dans le réseau européen.
↓
04
Douane
Gestion des formalités import.
↓
05
Livraison
Distribution finale vers votre site.
Industries accompagnées
Des solutions adaptées aux secteurs exigeants.
🚗
Automobile
🏭
Industrie
🛒
Retail
💎
Luxe
💻
High-Tech
⚡
Énergie
Pourquoi STACKLINE ?
Un interlocuteur unique pour simplifier vos flux Chine-Europe.
🤝 Interlocuteur unique
Un accompagnement centralisé pour vos opérations.
🌐 Réseau international
Connexion avec les principaux corridors ferroviaires.
📊 Visibilité transport
Suivi et contrôle de vos expéditions.
⚙️ Solutions sur mesure
Des réponses adaptées à vos contraintes logistiques.
Demandez votre étude transport
Recevez une analyse personnalisée de votre flux Chine-Europe.
Questions fréquentes
Quel est le délai Chine-Europe par rail ?
Selon l'origine et la destination, les délais peuvent varier généralement autour de 14 à 20 jours terminal à terminal.
Le rail est-il adapté aux PME ?
Oui, grâce aux solutions LCL et aux services adaptés aux volumes intermédiaires.
Gérez-vous la douane ?
STACKLINE accompagne la coordination documentaire et douanière avec ses partenaires.
💬
↑
/* =========================================
STACKLINE RAIL FREIGHT
Premium Corporate Design
========================================= */
/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:'Inter',Arial,sans-serif;
background:#ffffff;
color:#1f2933;
line-height:1.6;
}
img{
max-width:100%;
display:block;
}
a{
text-decoration:none;
color:inherit;
}
.container{
width:90%;
max-width:1200px;
margin:auto;
}
.section{
padding:90px 0;
}
/* =========================================
COLORS
========================================= */
:root{
--green-dark:#064e3b;
--green:#16a34a;
--green-light:#22c55e;
--orange:#f97316;
--dark:#111827;
--grey:#6b7280;
--light:#f8fafc;
}
/* =========================================
HEADER
========================================= */
.header{
position:fixed;
top:0;
width:100%;
z-index:1000;
background:rgba(255,255,255,0.85);
backdrop-filter:blur(12px);
box-shadow:0 5px 25px rgba(0,0,0,0.08);
}
.nav-container{
height:85px;
display:flex;
align-items:center;
justify-content:space-between;
}
.logo{
font-size:30px;
font-weight:800;
color:var(--green-dark);
}
.logo span{
display:block;
font-size:12px;
letter-spacing:3px;
color:var(--grey);
}
nav ul{
display:flex;
gap:30px;
list-style:none;
}
nav a{
font-weight:600;
transition:.3s;
}
nav a:hover{
color:var(--green);
}
.nav-button{
background:var(--green);
color:white;
padding:13px 25px;
border-radius:30px;
font-weight:700;
transition:.3s;
}
.nav-button:hover{
background:var(--green-dark);
transform:translateY(-3px);
}
/* =========================================
HERO
========================================= */
.hero{
height:100vh;
min-height:700px;
position:relative;
display:flex;
align-items:center;
overflow:hidden;
background:
linear-gradient(
90deg,
rgba(6,78,59,.95),
rgba(6,78,59,.45)
),
url("../img/hero-train.jpg");
background-size:cover;
background-position:center;
}
.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
position:relative;
z-index:2;
}
.hero-text{
color:white;
width:55%;
}
.hero-text h1{
font-size:60px;
line-height:1.1;
font-weight:800;
}
.hero-text span{
color:#86efac;
}
.hero-text p{
font-size:22px;
margin:30px 0;
max-width:650px;
}
.hero-buttons{
display:flex;
gap:20px;
}
.btn-primary,
.btn-secondary{
padding:16px 35px;
border-radius:40px;
font-weight:700;
transition:.3s;
}
.btn-primary{
background:var(--green-light);
color:#052e16;
}
.btn-primary:hover{
transform:translateY(-5px);
background:white;
}
.btn-secondary{
border:2px solid white;
color:white;
}
.btn-secondary:hover{
background:white;
color:var(--green-dark);
}
.hero-image{
width:35%;
animation:trainMove 6s infinite alternate;
}
.hero-image img{
filter:drop-shadow(0 20px 30px rgba(0,0,0,.3));
}
@keyframes trainMove{
from{
transform:translateX(0);
}
to{
transform:translateX(30px);
}
}
/* =========================================
SECTION TITLE
========================================= */
.section-title{
text-align:center;
margin-bottom:60px;
}
.section-title h2{
font-size:42px;
font-weight:800;
color:var(--dark);
}
.section-title p{
color:var(--grey);
font-size:18px;
}
/* =========================================
KPI
========================================= */
.kpi-section{
background:var(--green-dark);
padding:60px 0;
color:white;
}
.kpi-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}
.kpi-card{
text-align:center;
}
.kpi-card h2{
font-size:45px;
color:#86efac;
}
.kpi-card p{
font-size:18px;
}
/* =========================================
CARDS
========================================= */
.cards-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}
.feature-card,
.service-card,
.industry-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:
0 15px 35px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #eee;
}
.feature-card:hover,
.service-card:hover,
.industry-card:hover{
transform:translateY(-10px);
box-shadow:
0 25px 50px rgba(0,0,0,.15);
}
.icon{
font-size:40px;
margin-bottom:20px;
}
.feature-card h3,
.service-card h3{
margin-bottom:15px;
font-size:22px;
}
/* =========================================
PROCESS
========================================= */
.process-flow{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
}
.process-item{
background:white;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.process-item span{
background:var(--green);
color:white;
width:45px;
height:45px;
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-weight:bold;
}
.process-arrow{
font-size:35px;
color:var(--green);
}