/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E86AB;
    --secondary-color: #06A77D;
    --accent-color: #F18F01;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg-color: #fff;
    --bg-alt: #f8f9fa;
    --bg-light: #f0f7ff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px rgba(46, 134, 171, 0.1);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* 首页轮播图 */
.hero {
    margin-top: 70px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 优势特色 */
.features {
    background: var(--bg-light);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
    color: white;
}

/* 通用区块样式 */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* 矫正方式 */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.method-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.method-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.method-card:hover .method-image img {
    transform: scale(1.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.method-content {
    padding: 2rem;
}

.method-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.method-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.method-features {
    list-style: none;
    padding: 0;
}

.method-features li {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* 矫正人群 */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.people-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.people-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.people-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.people-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.people-card:hover .people-image img {
    transform: scale(1.1);
}

.people-content {
    padding: 2rem;
}

.people-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.age-range {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.people-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.people-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.people-advantages span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 矫正费用 */
.cost-info {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.cost-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.cost-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.cost-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.cost-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cost-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cost-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.cost-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cost-details {
    flex: 1;
}

.cost-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cost-note {
    text-align: center;
    color: var(--text-lighter);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* 矫正案例 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.case-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.case-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.case-before-after .before,
.case-before-after .after {
    position: relative;
    overflow: hidden;
}

.case-before-after .before span,
.case-before-after .after span {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 1;
}

.case-before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-before-after:hover img {
    transform: scale(1.1);
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.case-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.case-result {
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.8;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* 矫正百科 */
.encyclopedia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.encyclopedia-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    text-align: center;
}

.encyclopedia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.encyclopedia-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.encyclopedia-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.encyclopedia-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* 联系我们 */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-details p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-map {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 250px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder span {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* 页脚 */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 450px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .contact-content,
    .cost-info {
        grid-template-columns: 1fr;
    }

    .methods-grid,
    .people-grid,
    .cases-grid,
    .encyclopedia-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* 矫正方式详情页样式 */
.page-header {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.method-detail {
    margin-bottom: 5rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.method-detail:last-child {
    margin-bottom: 0;
}

.method-detail-header {
    position: relative;
}

.method-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.method-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-detail-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem 2rem;
    color: white;
}

.method-detail-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.method-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

.method-detail-content {
    padding: 3rem;
}

.method-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-info-item {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.method-info-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.method-info-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-info-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.method-info-item ul {
    list-style: none;
    padding: 0;
}

.method-info-item ul li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.method-info-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-lighter);
    font-style: italic;
}

/* 如何选择指南 */
.choice-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.choice-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
}

.choice-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.choice-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.choice-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.choice-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.choice-item ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.choice-item ul li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.choice-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.choice-item .contact-info {
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.choice-item .contact-info strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* 响应式设计 - 矫正方式详情页 */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .method-detail-image {
        height: 250px;
    }

    .method-detail-title {
        padding: 2rem 1.5rem 1.5rem;
    }

    .method-detail-title h2 {
        font-size: 1.8rem;
    }

    .method-detail-content {
        padding: 2rem 1.5rem;
    }

    .method-info-grid {
        grid-template-columns: 1fr;
    }

    .choice-guide {
        grid-template-columns: 1fr;
    }
}

/* 矫正费用页面样式 */
.cost-intro-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    margin-bottom: 3rem;
}

.cost-intro-box h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cost-intro-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price-table-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.price-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.price-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.price-card-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.price-card-body {
    padding: 2rem;
}

.price-range {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-details h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price-details ul {
    list-style: none;
    padding: 0;
}

.price-details ul li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.price-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.price-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.price-features p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.factor-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.factor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.factor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.factor-item h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.payment-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-item h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.consultation-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.consultation-box h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.consultation-box > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.consultation-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-info p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 0.5rem;
}

.consultation-info strong {
    color: var(--primary-color);
}

/* 响应式设计 - 矫正费用页 */
@media (max-width: 768px) {
    .price-table-container {
        grid-template-columns: 1fr;
    }

    .factors-grid,
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .cost-intro-box,
    .consultation-box {
        padding: 2rem 1.5rem;
    }
}

/* 矫正案例页面样式 */
.case-detail {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 3rem;
}

.case-detail:last-child {
    margin-bottom: 0;
}

.case-detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
}

.case-detail-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.case-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-detail-content {
    padding: 3rem;
}

.case-before-after-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.before-after-item {
    text-align: center;
}

.before-after-label {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.before-after-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.case-info-item {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.case-info-item:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.case-info-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-info-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.case-info-item ul {
    list-style: none;
    padding: 0;
}

.case-info-item ul li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.case-info-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.case-result-text {
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 2;
}

.case-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.summary-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.summary-item h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.summary-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* 响应式设计 - 矫正案例页 */
@media (max-width: 768px) {
    .case-before-after-large {
        grid-template-columns: 1fr;
    }

    .case-detail-content {
        padding: 2rem 1.5rem;
    }

    .case-detail-header {
        padding: 1.5rem;
    }

    .case-detail-header h2 {
        font-size: 1.5rem;
    }

    .case-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .case-info-grid {
        grid-template-columns: 1fr;
    }

    .case-summary {
        grid-template-columns: 1fr;
    }

    .before-after-image {
        height: 250px;
    }
}

/* 矫正百科页面样式 */
.baike-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.baike-nav-item {
    padding: 1rem 2rem;
    background: white;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.baike-nav-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.baike-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.baike-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.baike-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.baike-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.baike-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.baike-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.baike-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.baike-item ul li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.baike-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.process-step ul {
    list-style: none;
    padding: 0;
}

.process-step ul li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.process-step ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.care-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.care-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.care-category h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.care-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.care-item {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.care-item:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.care-item h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.care-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.care-item ul {
    list-style: none;
    padding: 0;
}

.care-item ul li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.care-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 响应式设计 - 矫正百科页 */
@media (max-width: 768px) {
    .baike-nav {
        flex-direction: column;
        align-items: center;
    }

    .baike-nav-item {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .baike-item,
    .care-category {
        padding: 2rem 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .care-items {
        grid-template-columns: 1fr;
    }
}

/* 联系我们页面样式 */
.hospital-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.hospital-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hospital-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hospital-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.hospital-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hospital-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hospital-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hospital-feature-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
}

.hospital-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hospital-feature-item h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hospital-feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-detail-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-detail-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-large {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.contact-form-large label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.contact-form-large input,
.contact-form-large select,
.contact-form-large textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-form-large input:focus,
.contact-form-large select:focus,
.contact-form-large textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.contact-form-large textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-placeholder-large {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-light), white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    padding: 2rem;
}

.map-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.map-placeholder-large h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.map-placeholder-large p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.9rem;
    color: var(--text-lighter);
    font-style: italic;
    margin-top: 1rem;
}

.appointment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.appointment-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.appointment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.appointment-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.appointment-item ul {
    list-style: none;
    padding: 0;
}

.appointment-item ul li {
    color: var(--text-light);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.appointment-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 响应式设计 - 联系我们页 */
@media (max-width: 768px) {
    .hospital-intro {
        grid-template-columns: 1fr;
    }

    .hospital-image {
        height: 300px;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-large {
        padding: 2rem 1.5rem;
    }

    .map-placeholder-large {
        height: 350px;
        padding: 1.5rem;
    }

    .appointment-info {
        grid-template-columns: 1fr;
    }
}
