/* 浙江牙痛网样式 - 参照即刻负重网站风格 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 严肃医疗色调 - 深蓝 + 专业灰 + 医疗绿 */
    --primary-blue: #1a365d;
    --secondary-blue: #2c5282;
    --light-blue: #e6f3ff;
    --medical-gray: #4a5568;
    --light-gray: #f7fafc;
    --medical-green: #2d7d32;
    --accent-green: #4caf50;
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-light: #718096;
    --success-green: #38a169;
    --border-gray: #e2e8f0;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 8px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2,
.nav-logo h1 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.nav-logo span {
    color: var(--medical-green);
    font-size: 14px;
    margin-left: 5px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.phone-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 14px;
}

.phone-btn:hover {
    background: var(--secondary-blue);
}

/* 主视觉区域 */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 100px 0 60px;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-gray);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 20px;
    color: var(--medical-green);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 15px 30px;
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* 内容区域 */
.section {
    padding: 80px 0;
    background: var(--white);
}

.section-gray {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 卡片网格 */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
    border: 1px solid var(--border-gray);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--medical-green);
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--medical-green);
    font-weight: 600;
}

/* 表格 */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    margin-top: 28px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

table thead {
    background: var(--light-gray);
}

table th,
table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

table tbody tr:last-child td {
    border-bottom: none;
}

table th {
    font-weight: 600;
    color: var(--primary-blue);
    background: var(--light-gray);
}

table tbody tr:nth-child(even) {
    background: var(--light-gray);
}

/* 流程步骤 */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.process-step {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--medical-green);
    transition: transform 0.2s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--medical-green);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 高亮框 */
.highlight-box {
    background: var(--light-blue);
    border-left: 4px solid var(--medical-green);
    border-radius: 8px;
    padding: 28px;
    margin: 32px 0;
}

.highlight-box h4 {
    margin-top: 0;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight-box ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--text-dark);
}

/* 警告框 */
.warning-box {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
    padding: 28px;
    margin: 32px 0;
}

.warning-box h4 {
    margin-top: 0;
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 600;
}

/* CTA 横幅 */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 8px;
    padding: 48px;
    margin-top: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-banner h3 {
    font-size: 1.8rem;
    margin: 0 0 12px;
    font-weight: 600;
}

.cta-banner p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--medical-green);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* 表单 */
.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s ease;
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--medical-green);
    box-shadow: 0 0 0 2px rgba(45, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.btn-submit {
    width: 100%;
    background: var(--medical-green);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-submit:hover {
    background: var(--accent-green);
}

/* FAQ */
.faq {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq .card {
    text-align: left;
}

@media (max-width: 768px) {
    .faq {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--white);
    padding: 24px 28px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* 分割布局 */
.split-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    margin-top: 40px;
}

/* 底部 */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    margin-bottom: 16px;
    color: var(--medical-green);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--medical-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-blue);
    color: var(--light-blue);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* 浮动按钮 */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn a {
    background: var(--medical-green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
    display: block;
    font-size: 14px;
}

.floating-btn a:hover {
    background: var(--accent-green);
    transform: translateY(-1px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .process {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 24px 20px;
    }
    
    .card {
        padding: 24px 20px;
    }
}



