/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 律师蓝配色方案 */
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-blue: #1e40af;
    --accent-blue: #60a5fa;
    
    /* 蓝紫色配色 */
    --blue-purple: #8b5cf6;
    --light-blue-purple: #c4b5fd;
    
    /* 中性色 */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --text-gray: #64748b;
    --dark-gray: #334155;
    --text-dark: #1e293b;
    
    /* 渐变 */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    
    /* 阴影 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* 圆角 */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* 间距 */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;
    
    /* 边框色 */
    --border-color: rgba(30, 58, 138, 0.15);
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

p {
    margin-bottom: 0; /* 删除段落之间的空行 */
}

/* 全站二级栏目进入（浮动） */
.floating-subtabs {
    position: fixed;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    display: none; /* 默认隐藏，后面不再在移动端显示 */
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.floating-subtabs a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    color: #1e3a8a;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(30, 58, 138, 0.15);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}
.floating-subtabs a i { color: #3b82f6; }
.floating-subtabs a:hover {
    transform: translateX(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
}

@media (max-width: 768px) {
    .floating-subtabs {
        display: none; /* 移动端也完全隐藏 */
    }
    .floating-subtabs a { padding: 8px 10px; font-size: 0.85rem; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 1001;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.nav-logo:hover {
    text-decoration: none;
    color: inherit;
}
a.nav-logo:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo h2 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: space-around;
    max-width: 1000px;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-item { position: relative; }

    /* 律所动态 - 确保内容不被隐藏 */
    .tab-content {
        display: none;
        opacity: 1; /* 默认可见 */
    }
    
    .tab-content.active {
        display: block;
        opacity: 1;
        animation: fadeIn 0.5s ease;
    }
    
    .news-card {
        opacity: 1; /* 默认可见，防止JS加载动画失败时内容丢失 */
    }
    
    /* 配合 loading 动画 */
    .news-card.loading {
        opacity: 0;
    }
    
    .news-card.loading.loaded {
        opacity: 1;
    }
    
    /* 下拉菜单（桌面端悬停） */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border: 1px solid rgba(30,58,138,0.12);
    box-shadow: 0 12px 28px rgba(17,24,39,0.12);
    border-radius: 12px;
    padding: 6px 0;
    display: none;
    z-index: 1100;
}

.dropdown-menu li { list-style: none; }
.dropdown-menu .dropdown-link {
    display: block;
    padding: 10px 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
    margin: 2px 6px;
    transition: all 0.2s ease;
}
.dropdown-menu .dropdown-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.nav-item.has-dropdown:hover > .dropdown-menu { display: block; }

.nav-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--blue-purple);
    background: var(--light-blue-purple);
}

.nav-link.active {
    color: var(--blue-purple);
    background: var(--light-blue-purple);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
    background: var(--blue-purple);
}

.nav-link.active::after {
    width: 100%;
    background: var(--blue-purple);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    z-index: 10002; /* Ensure above navbar */
    padding: 8px;
    margin: -8px;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation; /* Remove 300ms delay */
}

.hamburger .bar {
    pointer-events: none;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-quick-nav-btn::before,
.mobile-quick-nav-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 999px;
    transform: translateX(-50%);
}

.mobile-quick-nav-btn::before {
    top: 18px;
    box-shadow: 0 6px 0 var(--primary-blue);
}

.mobile-quick-nav-btn::after {
    top: 30px;
}

/* 首页轮播 */
.hero {
    /* 高度由JavaScript动态计算，确保与导航栏无缝衔接 */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px; /* 为固定导航栏留出空间 */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    /* 高度由JavaScript动态计算 */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-banner {
    background-image: url('img/banner02.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.3); /* 添加蓝色遮罩层，确保文字可读性 */
    z-index: 1;
}

.slide-banner-02 {
    background-image: url('img/banner02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-banner .slide-content {
    position: relative;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 var(--spacing-sm);
    animation: slideInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Banner切换按钮 */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(128, 128, 128, 0.3);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(128, 128, 128, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
    left: var(--spacing-xl);
}

.hero-nav-next {
    right: var(--spacing-xl);
}

.hero:hover .hero-nav-btn {
    opacity: 1;
    visibility: visible;
}

.hero-indicators {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 3;
}

.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: var(--white);
    transform: scale(1.2);
}

/* 通用区块标题下划线样式 */
.section-title, .about-title, .page-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    display: inline-block !important; /* 强制 inline-block 以使下划线宽度匹配文字 */
}

.section-title::after, .about-title::after, .page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* 居中标题的下划线也居中 */
.section-header .section-title::after,
.section-header .page-title::after,
.page-title-wrapper .page-title::after,
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* 律所简介段落样式 - 删除段落间空行，首行缩进 */
.about-content p, .services-intro, .legal-basis-text, .non-litigation-intro, .service-title {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0; /* 删除段落之间的空行 */
    text-indent: 2em;
    text-align: left; /* 强制左对齐，确保首行缩进生效且后续行顶格 */
}

/* 业务范围描述样式 - 段首空两格，左对齐 */
.service-desc-home, .service-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    text-indent: 2em; /* 段首空两格 */
    text-align: left; /* 强制左对齐，确保非首行文字顶格 */
    width: 100%;      /* 确保宽度占满卡片 */
}

/* 在线咨询表单文字样式 - 与律所简介一致 */
.consult-form-container input,
.consult-form-container select,
.consult-form-container textarea,
.consult-form-container p,
.consult-body input,
.consult-body select,
.consult-body textarea,
.consult-body p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

.consult-form-container input::placeholder,
.consult-form-container textarea::placeholder,
.consult-body input::placeholder,
.consult-body textarea::placeholder {
    font-size: 1.1rem;
}

/* 通用区块样式 */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 关于我们 */
.about {
    background: #f8f9fa url('img/law-firm-office.jpg') center/cover no-repeat;
    padding: var(--spacing-2xl) 0;
    position: relative;
    min-height: 600px;
}

/* 暂时注释掉遮罩层来测试背景图片 */
/* .about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
} */

.about .container {
    position: relative;
    z-index: 2;
}

/* 主要内容整体容器：上半部分左文右图 + 下半部分整行文字 */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* 统一卡片样式 */
.about-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 顶部左侧文字卡片 */
.text-card-top {
    grid-column: 1 / 2;
}

/* 顶部右侧图片卡片 */
.image-card-top {
    grid-column: 2 / 3;
    padding: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* 确保背景色统一 */
}

.image-card-top img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* 保证图片完整显示，不裁剪 */
    border-radius: 10px;
}

/* 底部整行文字卡片 */
.text-card-bottom {
    grid-column: 1 / 3;
}

/* 调整标题样式 */
.text-card-top .about-title {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block; /* 确保 underline 宽度与内容一致 */
    align-self: flex-start; /* 防止在 flex 容器中自动拉伸宽度 */
}

.text-card-top .about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
}

/* 左侧文字 */
.about-text {
    padding-right: var(--spacing-xl);
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-md) 0;
    text-align: center;
    display: inline-block; /* 确保 underline 宽度与内容一致 */
    position: relative;
    padding-bottom: 15px;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin: 0 0 var(--spacing-xl) 0;
    text-align: center;
    font-weight: 500;
}

.about-content {
    text-align: left;
}

/* 移动端适配：上下堆叠，文字与图片顺序保持清晰 */
@media (max-width: 992px) {
    .about-top {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding-right: 0;
    }

    .about-title {
        text-align: center;
    }
}

/* 业务范围样式 */
.business-scope-intro {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.scope-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 var(--spacing-md) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.scope-title i {
    color: var(--secondary-blue);
    font-size: 1.3rem;
}

.scope-intro-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0 0 var(--spacing-md) 0;
    font-weight: 500;
}

.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--spacing-sm);
}

.scope-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.scope-list li:hover {
    background: var(--light-blue);
    border-color: var(--secondary-blue);
    transform: translateX(5px);
}

.scope-list li i {
    color: var(--secondary-blue);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.scope-list li span {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 右侧图片 */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.firm-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    background: var(--white);
    padding: 5px;
    display: block;
}

.firm-photo:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* 底部信息：2行2列 */
.about-info {
    background: var(--light-gray);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-xs) 0;
}

.info-text p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}


/* 律所信息 */
/* 恢复关于我们信息可见性（移除临时隐藏） */


.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.info-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    min-height: 120px;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
    background: var(--white);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-content h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.2;
}

.info-content p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* 专业领域 */
.specialties {
    background: #f8f9fa url('img/layer15.jpg') center/cover no-repeat;
    padding: var(--spacing-2xl) 0;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* 暂时注释掉遮罩层来测试背景图片 */
/* .specialties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
} */

.specialties .container {
    position: relative;
    z-index: 2;
}

.specialties-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    align-items: start;
}

.specialties-title-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.specialties-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.specialties-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin: 0;
    font-weight: 400;
}

.specialties-desc {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.specialties-desc p {
    margin: 0;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-lg);
}

.specialty-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    min-width: 120px;
}

.specialty-item:hover {
    background: var(--light-gray);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.specialty-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    display: block;
    font-weight: 300;
}

.specialty-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
    display: block;
    width: 100%;
    text-align: center;
}

/* 律师队伍 */
.team {
    background: var(--white);
    padding: var(--spacing-2xl) 0;
}

/* 首页业务范围板块 */
.services-home {
    background: var(--light-gray);
    padding: var(--spacing-2xl) 0;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.service-card-home {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 240px;
}

.service-card-home:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon-home {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card-home:hover .service-icon-home {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.3);
}

.service-title-home {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 var(--spacing-sm) 0;
}

/* 移除了冗余定义，已合并到上方通用样式中 */

.services-more {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn-more-services {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-more-services:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-more-services i {
    transition: transform 0.3s ease;
}

.btn-more-services:hover i {
    transform: translateX(5px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    display: grid;
    grid-template-columns: 220px 1fr;
    height: 420px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: transparent;
    padding: 0;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

/* 通用图片放大模态框（律师照片等） */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.team-image::after { display: none; }

/* 团队卡片：图片叠层简介 */
.team-overlay { display: none; }
.team-overlay-name { display: none; }
.team-overlay-title { display: none; }

.team-placeholder {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.team-content {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl) var(--spacing-sm);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-name {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    line-height: 1.3;
}

.team-title {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.4;
}

.team-info {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.team-info p {
    margin-bottom: 0; /* 删除段落之间的空行 */
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.team-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.team-contact {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-sm);
    justify-content: flex-start;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    background: var(--primary-blue);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
    min-height: 40px;
}

.contact-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.profile-btn {
    background: var(--secondary-blue);
}

.phone-btn {
    background: var(--primary-blue);
}

.profile-btn:hover {
    background: var(--primary-blue);
}

/* 律所动态 */
.news {
    background: var(--light-gray) url('img/001.png') center/cover no-repeat;
    padding: var(--spacing-2xl) 0;
    position: relative;
}


.news .container {
    position: relative;
    z-index: 2;
}

/* 律所动态文字颜色优化 */
.news .section-title {
    color: var(--text-dark);
}

.news .section-subtitle {
    color: var(--text-gray);
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.news-title {
    color: #1e40af;
}

.news-excerpt {
    color: #374151;
}

.news-meta {
    color: #6b7280;
}

.news-link {
    color: var(--primary-blue);
}

.news-link:hover {
    color: #1d4ed8;
}

/* 标签页按钮优化 */
.tab-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-blue);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* 翻页按钮优化 */
.pagination-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pagination-btn:disabled {
    background: rgba(255, 255, 255, 0.5);
    color: #9ca3af;
    cursor: not-allowed;
}

.pagination-info {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 标签页导航 */
.news-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
}

.tab-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.tab-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-blue);
}

/* 标签页内容 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 翻页控件 */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-gray);
    font-weight: 500;
}

.current-page {
    color: var(--primary-blue);
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    height: 200px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.news-content {
    padding: var(--spacing-lg);
}

.news-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.news-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.news-category {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.news-excerpt {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.news-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--dark-blue);
    gap: var(--spacing-sm);
}

/* 新的律所动态布局 */
.news-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.news-main .news-card.featured {
    grid-column: span 1;
    height: 100%;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.news-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--light-blue);
}

.news-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.news-text h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.news-text .news-date {
    color: var(--gray);
    font-size: 0.85rem;
}

.news-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.news-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 600;
}

/* 联系我们 */
.contact {
    background: var(--white);
    padding: var(--spacing-2xl) 0;
}

.contact-content, .contact-page .contact-content {
    display: grid;
    grid-template-columns: 30% 65%; /* 统一首页和联系页面比例 */
    gap: 5%;
    align-items: start;
}

.contact-info, .contact-page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 45px; /* 增加上边距，使顶部与右侧标题下方的横线对齐 */
}

.contact-card, .contact-page .contact-card {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e2e8f0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1rem; /* 稍微调小字号，显得更精致紧凑 */
    margin-bottom: 3px;
    color: var(--primary-blue);
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    /* 让每个卡片平均分配可用空间，使总高度等于地图高度 */
    flex: 1;
    min-height: 0;
}

.contact-card:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--gray);
}

.contact-form {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
}

.contact-map {
    position: sticky;
    top: 100px;
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid rgba(30, 58, 138, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.btn-full {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.1rem;
}

/* 页脚 */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.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: var(--white);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* 动画 */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* 导航栏：小屏下缩小字号与间距，保证 logo+标题、栏目名称均不换行 */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.75rem;
    }
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    .logo-img {
        height: 36px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.5rem;
    }
    .nav-link {
        font-size: 0.85rem;
        padding: 0.35rem 0.5rem;
    }
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    .logo-img {
        height: 34px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 0.4rem;
    }
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.45rem;
    }
    .nav-logo h2 {
        font-size: 1rem;
    }
    .logo-img {
        height: 32px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    /* Mobile Quick Nav Button */
    .mobile-quick-nav-btn {
        display: flex;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        align-items: center;
        justify-content: center;
        z-index: 10003;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(30, 58, 138, 0.1);
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-quick-nav-btn i {
        color: var(--primary-blue);
        font-size: 20px;
        transition: all 0.3s ease;
    }
    
    .mobile-quick-nav-btn.active {
        background: var(--primary-blue);
        border-color: var(--primary-blue);
        transform: rotate(90deg);
    }
    
    .mobile-quick-nav-btn.active i {
        color: white;
        transform: rotate(-90deg);
    }

    /* Mobile Nav Overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 10002;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        align-items: flex-end;
        padding-right: 15px;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Nav Menu */
    .mobile-nav-menu {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 16px;
        width: 260px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow-y: auto;
        max-height: 80vh;
        padding: 8px 0;
    }

    .mobile-nav-overlay.active .mobile-nav-menu {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .mobile-nav-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.2s;
    }
    
    .mobile-nav-link-content {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }

    .mobile-nav-item:last-child {
        border-bottom: none;
    }

    .mobile-nav-item:active {
        background: var(--light-blue);
        color: var(--primary-blue);
    }

    .mobile-nav-item i.nav-icon {
        width: 24px;
        color: var(--primary-blue);
        font-size: 1.1rem;
        text-align: center;
    }
    
    .mobile-submenu-toggle {
        padding: 8px;
        margin: -8px;
        color: var(--gray);
        transition: transform 0.3s ease;
    }
    
    .mobile-nav-item.expanded .mobile-submenu-toggle {
        transform: rotate(180deg);
        color: var(--primary-blue);
    }
    
    .mobile-submenu {
        display: none;
        background: #f8fafc;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-submenu.open {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    .mobile-subitem {
        display: block;
        padding: 12px 20px 12px 56px;
        color: var(--text-gray);
        text-decoration: none;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    
    .mobile-subitem:last-child {
        border-bottom: none;
    }
    
    .mobile-subitem:active {
        color: var(--primary-blue);
        background: rgba(59, 130, 246, 0.05);
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* 修复律所动态页面网格 */
    .news-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    @media (max-width: 768px) {
        .news-grid-3 {
            grid-template-columns: 1fr;
        }
    }


    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-menu li {
        margin: var(--spacing-sm) 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-nav-prev {
        left: var(--spacing-md);
    }
    
    .hero-nav-next {
        right: var(--spacing-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* 联系我们板块手机端：强制上下排版（信息在上、地图在下），优化间距 */
    .contact-page .contact-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }
    .contact-page .contact-info {
        margin-top: 0;
        width: 100%;
        order: 1;
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        height: auto !important;
        min-height: 0;
    }
    .contact-page .contact-map {
        width: 100%;
        order: 2;
        padding: 0;
        margin-top: 0.5rem;
        height: auto !important;
        min-height: 0;
        display: block !important;
        align-items: unset;
        justify-content: unset;
    }
    .contact-page .contact-map h3 {
        display: block;
        margin: 0 0 12px 0 !important;
        padding: 0;
    }
    .contact-page .contact-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 1rem 1.25rem;
        min-height: auto;
        flex: none;
        overflow: visible;
    }
    .contact-page .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    .contact-page .contact-details {
        width: 100%;
        min-width: 0;
        overflow: visible;
        flex: 1;
        min-height: 0;
    }
    .contact-page .contact-details h3 {
        margin-bottom: 6px;
        font-size: 1rem;
        line-height: 1.4;
    }
    .contact-page .contact-details p {
        line-height: 1.65;
        font-size: 0.9375rem;
        word-break: normal;
        overflow-wrap: break-word;
        margin: 0 0 0.25em 0;
    }
    .contact-page .contact-details p + a {
        margin-top: 0.5rem;
    }
    .contact-page .contact-details a {
        word-break: break-all;
        overflow-wrap: break-word;
    }
    .contact-page .contact-map img,
    .contact-page #contactMapImage {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        display: block !important;
        vertical-align: top;
    }
    .contact-page .page-title-wrapper {
        margin-bottom: 1.5rem;
    }
    .contact-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .contact-page {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .contact-map {
        position: relative;
        top: 0;
    }
    
    .contact-map div {
        height: 500px !important;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .news-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .news-sidebar {
        order: -1;
    }
    
    .news-item {
        padding: var(--spacing-sm);
    }
    
    .news-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .news-text h4 {
        font-size: 0.9rem;
    }
    
    /* 律师队伍页移动端：卡片改为上图下文单列，便于浏览 */
    .team-page {
        padding: 1.5rem 0 !important;
    }
    .team-page .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .team-page .page-title-wrapper {
        margin-bottom: 1.5rem !important;
    }
    .team-page .page-title {
        font-size: 1.5rem !important;
        padding: 12px 24px !important;
    }
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .team-card {
        display: grid !important;
        grid-template-columns: 100px 1fr !important;
        grid-template-rows: 1fr !important;
        height: auto !important;
        min-height: 0 !important;
        align-items: stretch !important;
        border-radius: var(--radius-lg) !important;
    }
    .team-card .team-image {
        width: 100% !important;
        min-height: 120px !important;
        height: auto !important;
        align-self: stretch !important;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg) !important;
        background: var(--light-gray, #f1f5f9) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .team-card .team-photo {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 120px !important;
        object-fit: contain !important;
        object-position: center center !important;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg) !important;
    }
    .team-card .team-content {
        min-height: 0 !important;
        padding: 0.75rem 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }
    .team-card .team-name {
        font-size: 1.1rem !important;
        margin-bottom: 0.2rem !important;
    }
    .team-card .team-title {
        font-size: 0.8125rem !important;
        margin-bottom: 0.35rem !important;
    }
    .team-card .team-info {
        margin-bottom: 0 !important;
    }
    .team-card .team-info p {
        font-size: 0.8125rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.45 !important;
    }
    .team-contact {
        flex-direction: column !important;
        gap: 0.4rem !important;
        margin-top: 0.35rem !important;
    }
    .team-contact .contact-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 8px 10px !important;
        font-size: 0.875rem !important;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .specialties-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md);
    }
    
    .specialty-item {
        min-height: 100px;
        padding: var(--spacing-md);
    }
    
    .specialty-item i {
        font-size: 2rem;
    }
    
    .specialties-title {
        font-size: 2rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 新闻标签页响应式：手机端保持横向标签，优化排版 */
    .news-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 1.25rem;
        padding: 0 0 12px;
        border-bottom: 2px solid #e2e8f0;
    }
    
    .tab-btn {
        width: auto !important;
        min-width: 0;
        padding: 10px 16px !important;
        font-size: 14px !important;
        text-align: center;
        white-space: nowrap;
        border-radius: 20px;
        border: 1px solid #e2e8f0;
    }
    
    .tab-btn.active {
        border-color: var(--primary-blue);
        color: var(--white);
        background: var(--primary-blue);
    }
    
    .news-pagination {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 中等屏幕响应式设计 */
@media (max-width: 1200px) and (min-width: 1025px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .specialties-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* 平板响应式设计 */
@media (max-width: 1024px) and (min-width: 769px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialties-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* 关于我们响应式 */
@media (max-width: 768px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .about-text {
        padding-right: 0;
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.25rem;
    }

    .about-content p {
        text-align: left;
    }

    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .service-card-home {
        min-height: 220px;
        padding: var(--spacing-md);
    }
    
    .service-icon-home {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .service-title-home {
        font-size: 1.125rem;
    }
    
    .service-desc-home {
        font-size: 0.9rem;
    }

    .firm-photo {
        max-width: 100%;
        height: auto;
        background: var(--white);
        padding: 5px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .info-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .intro-card,
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .team-card,
    .news-card {
        margin: 0 var(--spacing-xs);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .services-grid-home {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card-home {
        min-height: 200px;
    }
    
    .service-icon-home {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title-home {
        font-size: 1rem;
    }
    
    .service-desc-home {
        font-size: 0.85rem;
    }
    
    .team-image {
        height: 260px;
    }
    
    .team-content {
        min-height: 160px;
        padding: var(--spacing-md);
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .team-title {
        font-size: 0.95rem;
    }
    
    .team-info p {
        font-size: 0.85rem;
    }
    
    /* 关于我们小屏幕优化 */
    .about-intro {
        margin-top: var(--spacing-md);
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .intro-main-title {
        font-size: 2rem;
    }
    
    .motto-text {
        font-size: 1.75rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content p {
        font-size: 1rem;
        text-align: left;
        text-indent: 2em;
    }
    
    .business-scope-intro {
        padding: var(--spacing-md);
    }
    
    .scope-title {
        font-size: 1.3rem;
    }
    
    .scope-list li span {
        font-size: 0.9rem;
    }

    .firm-photo {
        height: auto;
        background: var(--white);
        padding: 5px;
    }
    
    .info-item {
        max-width: 100%;
        padding: var(--spacing-md);
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .info-text h4 {
        font-size: 1.1rem;
    }
    
    .info-text p {
        font-size: 0.9rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 1.75rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

/* 选择文本样式 */
::selection {
    background: var(--light-blue);
    color: var(--primary-blue);
}

/* 焦点样式 */
*:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* 加载动画 */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* 自动浏览指示器 */
#auto-scroll-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    animation: slideInRight 0.3s ease-out;
}

.auto-scroll-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.auto-scroll-content i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.stop-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stop-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* 响应式设计 - 自动浏览指示器 */
@media (max-width: 768px) {
    #auto-scroll-indicator {
        top: 10px;
        right: 10px;
        padding: 10px 12px;
    }
    
    .auto-scroll-content {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .stop-btn {
        padding: 3px 8px;
        font-size: 0.75rem;
    }
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 页脚样式 ===== */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* 主要内容区域 */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* 左侧：律所信息和联系方式 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #60a5fa;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-text strong {
    color: white;
    font-size: 0.9rem;
}

.contact-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

/* 中间：快捷导航和专业领域 */
.footer-center {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-nav h4,
.footer-links-inline h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-nav a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

/* 右侧：二维码区域 */
.footer-right {
    display: flex;
    justify-content: center;
}

.qr-codes h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.qr-item {
    text-align: center;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qr-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #1e40af;
    font-size: 0.7rem;
    font-weight: 600;
}

.qr-placeholder i {
    font-size: 1.5rem;
}

.qr-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qr-code-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.qr-code-link:hover {
    color: inherit;
}

/* 内联友情链接样式 */
.footer-links-inline {
    margin-top: 1.5rem;
}

.links-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.link-category-inline h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #60a5fa;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    padding-bottom: 0.25rem;
}

.link-category-inline ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-category-inline li {
    margin-bottom: 0.4rem;
}

.link-category-inline a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.2rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-category-inline a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}


/* 底部版权信息 */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #60a5fa;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-right {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .links-inline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-center {
        order: 2;
    }
    
    .footer-right {
        order: 3;
    }
    
    .footer-nav ul {
        grid-template-columns: 1fr;
    }
    
    .links-inline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .qr-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .qr-code {
        width: 60px;
        height: 60px;
    }
    
    /* 移动端允许地址换行 */
    .contact-text span {
        white-space: normal;
        text-overflow: unset;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .qr-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .qr-code {
        width: 50px;
        height: 50px;
    }
    
    .qr-item p {
        font-size: 0.7rem;
    }
    
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
