.llz-branch-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, “PingFang SC”, “Hiragino Sans GB”, “Microsoft YaHei”, sans-serif;
color: #333;
}
.llz-branch-hero {
background: linear-gradient(135deg, #E85D28 0%, #F09300 100%);
color: #fff;
border-radius: 12px;
padding: 40px 30px;
margin-bottom: 30px;
text-align: center;
}
.llz-branch-hero h1 {
font-size: 32px;
margin-bottom: 10px;
font-weight: 700;
color: #fff;
}
.llz-branch-hero p {
font-size: 16px;
opacity: 0.9;
margin-bottom: 0;
}
.llz-branch-stats {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 20px;
flex-wrap: wrap;
}
.llz-branch-stat { text-align: center; }
.llz-branch-stat .num { font-size: 28px; font-weight: 700; color: #fff; }
.llz-branch-stat .label { font-size: 13px; opacity: 0.85; }
.llz-city-tabs {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 30px;
justify-content: center;
}
.llz-city-tab {
padding: 8px 20px;
background: #f5f5f5;
border-radius: 20px;
cursor: pointer;
font-size: 14px;
color: #555;
transition: all 0.3s;
text-decoration: none;
}
.llz-city-tab:hover { background: #E85D28; color: #fff; }
.llz-city-section {
margin-bottom: 35px;
background: #fff;
border-radius: 12px;
border: 1px solid #eee;
overflow: hidden;
}
.llz-city-header {
background: linear-gradient(90deg, #E85D28 0%, #F09300 100%);
color: #fff;
padding: 16px 24px;
font-size: 18px;
font-weight: 600;
display: flex;
align-items: center;
gap: 10px;
}
.llz-city-header .count {
background: rgba(255,255,255,0.25);
padding: 2px 12px;
border-radius: 12px;
font-size: 13px;
font-weight: 400;
}
.llz-branch-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 12px;
padding: 16px;
}
.llz-branch-card {
padding: 14px 16px;
background: #fafafa;
border-radius: 8px;
border: 1px solid #f0f0f0;
transition: all 0.25s;
}
.llz-branch-card:hover {
border-color: #E85D28;
background: #fff8f5;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(232,93,40,0.15);
}
.llz-branch-card .name {
font-size: 15px;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 6px;
}
.llz-branch-card .addr {
font-size: 13px;
color: #666;
line-height: 1.5;
}
.llz-branch-cta {
background: #1E3A5F;
color: #fff;
border-radius: 12px;
padding: 35px 30px;
text-align: center;
margin-top: 30px;
}
.llz-branch-cta h3 { font-size: 22px; margin-bottom: 8px; color: #fff; }
.llz-branch-cta p { font-size: 15px; opacity: 0.85; margin-bottom: 16px; }
.llz-branch-cta .phone {
font-size: 30px;
font-weight: 700;
color: #E85D28;
text-decoration: none;
}
@media (max-width: 768px) {
.llz-branch-grid { grid-template-columns: 1fr; }
.llz-branch-hero h1 { font-size: 24px; }
.llz-branch-stats { gap: 20px; }
}
诺安物流收货网点
四川全省216个收货网点,就近发货,方便省心
点击下方城市快速跳转,或直接拨打 132-5812-6669 咨询最近的收货网点
document.querySelectorAll(“.llz-city-tab”).forEach(function(tab){
tab.addEventListener(“click”, function(e){
e.preventDefault();
var target = document.querySelector(this.getAttribute(“href”));
if(target){ target.scrollIntoView({behavior:”smooth”, block:”start”}); }
});
});