@charset "UTF-8";

/* ===== 服务栏目页共用样式 service.css ===== */

/* === 服务页Banner === */
.page-banner{position:relative;height:380px;margin-top:70px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.page-banner img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.page-banner .overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(45,31,61,.88),rgba(124,92,140,.75))}
.page-banner-content{position:relative;z-index:2;color:#fff}
.page-banner-content h1{font-size:38px;font-weight:700;margin-bottom:12px}
.page-banner-content p{font-size:16px;color:rgba(255,255,255,.85);max-width:600px;margin:0 auto}

/* === 服务详情布局 === */
.service-detail{padding:60px 0}
.service-detail-grid{display:grid;grid-template-columns:280px 1fr;gap:40px}
.service-sidebar{background:#f8f5fb;border-radius:12px;padding:25px;height:fit-content;position:sticky;top:90px}
.sidebar-title{font-size:18px;font-weight:600;color:#2D1F3D;margin-bottom:20px;padding-bottom:12px;border-bottom:2px solid #DDD0E6}
.sidebar-nav li{margin-bottom:5px}
.sidebar-nav a{display:block;padding:12px 16px;border-radius:8px;font-size:14px;color:#444;transition:all .3s}
.sidebar-nav a:hover,.sidebar-nav a.active{background:#7C5C8C;color:#fff}
.service-main-content h2{font-size:26px;color:#2D1F3D;margin-bottom:20px;font-weight:700}
.service-main-content h3{font-size:20px;color:#2D1F3D;margin:30px 0 15px;font-weight:600}
.service-main-content p{font-size:15px;color:#444;line-height:1.9;margin-bottom:15px}
.service-main-content ul{margin:15px 0 15px 20px}
.service-main-content ul li{font-size:15px;color:#444;line-height:1.9;margin-bottom:8px;position:relative;padding-left:18px}
.service-main-content ul li::before{content:'';position:absolute;left:0;top:10px;width:6px;height:6px;background:#7C5C8C;border-radius:50%}
.service-feature-box{background:#f8f5fb;border-radius:12px;padding:25px;margin:25px 0;border-left:4px solid #7C5C8C}
.service-feature-box h4{font-size:17px;color:#2D1F3D;margin-bottom:10px}
.service-feature-box p{font-size:14px;color:#555;margin:0}

/* === 服务图片区域 === */
.service-image-full{width:100%;border-radius:12px;margin:25px 0;overflow:hidden;box-shadow:0 10px 30px rgba(45,31,61,.1)}
.service-image-full img{width:100%;height:auto;display:block}

/* === CTA小模块 === */
.service-cta{background:linear-gradient(135deg,#2D1F3D,#7C5C8C);border-radius:12px;padding:35px;text-align:center;color:#fff;margin-top:40px}
.service-cta h3{font-size:22px;margin-bottom:12px}
.service-cta p{font-size:14px;margin-bottom:20px;opacity:.9}

/* === 相关服务推荐 === */
.related-services{margin-top:50px}
.related-services h3{font-size:22px;color:#2D1F3D;margin-bottom:25px;font-weight:600;position:relative;padding-bottom:12px}
.related-services h3::after{content:'';position:absolute;bottom:0;left:0;width:40px;height:3px;background:#7C5C8C;border-radius:2px}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.related-card{background:#fff;border:1px solid #e8e0f0;border-radius:12px;padding:25px;text-align:center;transition:all .3s}
.related-card:hover{border-color:#7C5C8C;transform:translateY(-3px);box-shadow:0 10px 30px rgba(45,31,61,.08)}
.related-card svg{width:32px;height:32px;fill:#7C5C8C;margin-bottom:12px}
.related-card h4{font-size:16px;color:#2D1F3D;margin-bottom:8px}
.related-card p{font-size:13px;color:#666;line-height:1.6}

@media(max-width:991px){
.service-detail-grid{grid-template-columns:1fr}
.service-sidebar{position:static;margin-bottom:30px}
.related-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:767px){
.page-banner{height:300px;margin-top:60px}
.page-banner-content h1{font-size:28px}
.related-grid{grid-template-columns:1fr}
.service-main-content h2{font-size:22px}
}
