/* website_113 - 垂直时间线风格 Vertical Timeline */
:root {
    --primary: #0f3460;
    --primary-light: #16213e;
    --accent: #e94560;
    --dark: #1a1a2e;
    --text: #374151;
    --light: #6b7280;
    --white: #ffffff;
    --bg: #f8f9fa;
    --bg-light: #f0f2f5;
}

* {margin:0;padding:0;box-sizing:border-box;}
html {scroll-behavior:smooth;}
body {font-family:system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--text);line-height:1.7;}
a {text-decoration:none;color:inherit;transition:0.3s;}
ul {list-style:none;}

/* 导航栏 */
.nav113 {position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--white);box-shadow:0 2px 15px rgba(0,0,0,0.08);}
.nav-container113 {max-width:1200px;margin:0 auto;padding:18px 40px;display:flex;align-items:center;justify-content:space-between;}
.nav-logo113 {font-size:20px;font-weight:700;color:var(--primary);}
.nav-logo113 span {color:var(--accent);}
.nav-menu113 {display:flex;gap:35px;}
.nav-menu113 a {font-size:14px;font-weight:500;color:var(--text);padding:8px 0;position:relative;}
.nav-menu113 a::after {content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--accent);transition:0.3s;}
.nav-menu113 a:hover,.nav-menu113 a.active {color:var(--primary);}
.nav-menu113 a:hover::after,.nav-menu113 a.active::after {width:100%;}
.nav-btn113 {background:var(--primary);color:var(--white);padding:10px 24px;border-radius:6px;font-size:14px;font-weight:500;transition:0.3s;}
.nav-btn113:hover {background:var(--accent);}
.mobile-toggle113 {display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:5px;}
.mobile-toggle113 span {width:24px;height:2px;background:var(--primary);transition:0.3s;}

/* Hero区域 */
.hero113 {min-height:80vh;display:flex;align-items:center;padding:120px 40px 60px;background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%);}
.hero-content113 {max-width:1200px;margin:0 auto;width:100%;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.hero-left113 h1 {font-size:48px;font-weight:700;color:var(--white);line-height:1.2;margin-bottom:20px;}
.hero-left113 p {font-size:16px;color:rgba(255,255,255,0.85);margin-bottom:30px;line-height:1.8;}
.hero-btns113 {display:flex;gap:15px;}
.btn-primary113 {display:inline-block;background:var(--accent);color:var(--white);padding:12px 28px;border-radius:6px;font-weight:600;font-size:15px;transition:0.3s;}
.btn-primary113:hover {transform:translateY(-2px);box-shadow:0 5px 20px rgba(233,69,96,0.4);}
.btn-secondary113 {display:inline-block;background:transparent;color:var(--white);padding:12px 28px;border-radius:6px;font-weight:600;font-size:15px;border:2px solid rgba(255,255,255,0.4);transition:0.3s;}
.btn-secondary113:hover {background:rgba(255,255,255,0.1);}
.hero-right113 {display:flex;flex-direction:column;gap:20px;}
.hero-stat113 {background:rgba(255,255,255,0.1);backdrop-filter:blur(10px);border-radius:12px;padding:20px 25px;display:flex;align-items:center;gap:15px;}
.stat-num113 {font-size:32px;font-weight:700;color:var(--white);}
.stat-text113 {font-size:14px;color:rgba(255,255,255,0.85);}

/* 通用模块 */
.section113 {padding:100px 40px;background:var(--white);}
.section-header113 {text-align:center;margin-bottom:60px;}
.section-header113 h2 {font-size:36px;font-weight:700;color:var(--dark);margin-bottom:12px;}
.section-header113 p {font-size:16px;color:var(--light);}

/* 垂直时间线 */
.timeline-section113 {background:var(--bg);}
.timeline113 {max-width:1000px;margin:0 auto;position:relative;padding:20px 0;}
.timeline113::before {content:'';position:absolute;left:50%;top:0;bottom:0;width:3px;background:linear-gradient(180deg,var(--primary),var(--accent));transform:translateX(-50%);}
.timeline-item113 {display:flex;justify-content:flex-end;padding:20px 0;width:50%;position:relative;}
.timeline-item113.left113 {justify-content:flex-end;margin-left:auto;padding-right:40px;}
.timeline-item113.right113 {justify-content:flex-start;margin-left:0;padding-left:40px;}
.timeline-item113::before {content:'';position:absolute;top:35px;width:16px;height:16px;background:var(--accent);border:3px solid var(--white);border-radius:50%;box-shadow:0 0 0 4px var(--primary);}
.timeline-item113.left113::before {right:-8px;}
.timeline-item113.right113::before {left:-8px;}
.timeline-content113 {background:var(--white);border-radius:12px;padding:25px;box-shadow:0 5px 20px rgba(0,0,0,0.08);max-width:400px;}
.timeline-icon113 {width:45px;height:45px;background:linear-gradient(135deg,var(--primary),var(--primary-light));border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:15px;}
.timeline-icon113 svg {width:22px;height:22px;color:var(--white);}
.timeline-content113 h3 {font-size:18px;font-weight:600;color:var(--dark);margin-bottom:10px;}
.timeline-content113 p {font-size:14px;color:var(--light);line-height:1.7;}

/* 代购流程 */
.process-grid113 {display:grid;grid-template-columns:repeat(4,1fr);gap:25px;max-width:1200px;margin:0 auto;}
.process-card113 {background:var(--bg);border-radius:12px;padding:30px 20px;text-align:center;transition:0.3s;}
.process-card113:hover {transform:translateY(-5px);box-shadow:0 10px 30px rgba(15,52,96,0.1);}
.process-num113 {font-size:36px;font-weight:700;color:var(--primary);margin-bottom:15px;opacity:0.3;}
.process-card113 h3 {font-size:17px;font-weight:600;color:var(--dark);margin-bottom:10px;}
.process-card113 p {font-size:13px;color:var(--light);}

/* 服务内容 */
.service-section113 {background:var(--bg-light);}
.service-grid113 {display:grid;grid-template-columns:repeat(4,1fr);gap:25px;max-width:1200px;margin:0 auto;}
.service-card113 {background:var(--white);border-radius:12px;padding:30px 20px;text-align:center;transition:0.3s;border:2px solid transparent;}
.service-card113:hover {border-color:var(--primary);transform:translateY(-5px);}
.service-icon113 {width:50px;height:50px;background:var(--bg);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 15px;}
.service-icon113 svg {width:24px;height:24px;color:var(--primary);}
.service-card113 h3 {font-size:16px;font-weight:600;color:var(--dark);margin-bottom:8px;}
.service-card113 p {font-size:13px;color:var(--light);}

/* 客户评价 */
.review-section113 {background:var(--bg);}
.review-grid113 {display:grid;grid-template-columns:repeat(3,1fr);gap:30px;max-width:1200px;margin:0 auto;}
.review-card113 {background:var(--white);border-radius:12px;padding:30px;position:relative;}
.review-quote113 {font-size:50px;color:var(--primary);opacity:0.2;line-height:1;font-family:Georgia,serif;}
.review-card113 p {font-size:15px;color:var(--text);line-height:1.8;margin:15px 0;}
.review-author113 {font-size:14px;}
.author-name113 {color:var(--dark);font-weight:500;}

/* 联系我们 */
.contact-section113 {background:var(--bg-light);}
.contact-grid113 {display:grid;grid-template-columns:repeat(3,1fr);gap:30px;max-width:1100px;margin:0 auto;}
.contact-card113 {background:var(--white);border-radius:12px;padding:35px 25px;text-align:center;transition:0.3s;}
.contact-card113:hover {transform:translateY(-5px);box-shadow:0 15px 40px rgba(15,52,96,0.1);}
.contact-icon113 {width:55px;height:55px;background:linear-gradient(135deg,var(--primary),var(--primary-light));border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;}
.contact-icon113 svg {width:26px;height:26px;color:var(--white);}
.contact-card113 h3 {font-size:17px;font-weight:600;color:var(--dark);margin-bottom:10px;}
.contact-card113 p {font-size:16px;color:var(--primary);font-weight:600;}

/* 页脚 */
.footer113 {background:var(--dark);color:var(--white);padding:60px 40px 30px;}
.footer-container113 {max-width:1200px;margin:0 auto;}
.footer-main113 {display:grid;grid-template-columns:2fr 1fr 1fr;gap:60px;margin-bottom:40px;}
.footer-brand113 h3 {font-size:24px;font-weight:700;margin-bottom:15px;color:var(--white);}
.footer-brand113 p {font-size:14px;color:rgba(255,255,255,0.6);line-height:1.7;}
.footer-links113 h4 {font-size:15px;font-weight:600;margin-bottom:20px;color:var(--white);}
.footer-links113 ul li {margin-bottom:12px;}
.footer-links113 a {font-size:14px;color:rgba(255,255,255,0.6);transition:0.3s;}
.footer-links113 a:hover {color:var(--white);}
.footer-bottom113 {padding-top:30px;border-top:1px solid rgba(255,255,255,0.1);text-align:center;}
.footer-bottom113 p {font-size:13px;color:rgba(255,255,255,0.4);}

/* 响应式 */
@media (max-width:1024px) {
    .hero-content113 {grid-template-columns:1fr;text-align:center;}
    .hero-right113 {flex-direction:row;justify-content:center;flex-wrap:wrap;}
    .hero-stat113 {flex-direction:column;text-align:center;}
    .timeline113::before {left:20px;}
    .timeline-item113 {width:100%;padding-left:50px !important;padding-right:0 !important;text-align:left;}
    .timeline-item113::before {left:11px !important;right:auto !important;}
    .process-grid113 {grid-template-columns:repeat(2,1fr);}
    .service-grid113 {grid-template-columns:repeat(2,1fr);}
    .review-grid113 {grid-template-columns:1fr;}
    .footer-main113 {grid-template-columns:1fr 1fr;}
}

@media (max-width:768px) {
    .nav-container113 {padding:15px 20px;}
    .nav-menu113 {display:none;}
    .nav-btn113 {display:none;}
    .mobile-toggle113 {display:flex;}
    .hero113 {padding:100px 20px 60px;min-height:auto;}
    .hero-left113 h1 {font-size:32px;}
    .hero-btns113 {flex-direction:column;}
    .section113 {padding:70px 20px;}
    .section-header113 h2 {font-size:28px;}
    .process-grid113 {grid-template-columns:1fr;}
    .service-grid113 {grid-template-columns:1fr;}
    .contact-grid113 {grid-template-columns:1fr;}
    .footer-main113 {grid-template-columns:1fr;gap:40px;text-align:center;}
}
