        /* 全局基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Microsoft Yahei", sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }
        .font-bold { font-weight: bold; }
        .font-12 { font-size: 16px; }
        .font-14 { font-size: 16px; }
        .font-16 { font-size: 16px; }
        .font-18 { font-size: 18px; }
        .font-20 { font-size: 20px; }
        .font-24 { font-size: 24px; }
        .color-red { color: #d81e06; }
        .color-white { color: #fff; }
        .bg-red { background-color: #d81e06; }
        .bg-white { background-color: #fff; }
        .bg-gray { background-color: #f5f5f5; }
        .py-10 { padding-top: 10px; padding-bottom: 10px; }
        .py-20 { padding-top: 20px; padding-bottom: 20px; }
        .py-30 { padding-top: 30px; padding-bottom: 30px; }
        .px-10 { padding-left: 10px; padding-right: 10px; }
        .px-20 { padding-left: 20px; padding-right: 20px; }
        .mb-10 { margin-bottom: 10px; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }

        /* 头部样式 */
        .header {
            width: 100%;
            background-color: #d81e06;
        }
        .header-title {
            text-align: center;
            padding: 15px 0;
        }
        .header-title h1 {
            font-size: 28px;
            color: #fff;
            font-weight: bold;
        }
        
        /* 移动端导航样式 */
        .mobile-nav-header {
            display: none;
            background-color: #d81e06;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .mobile-logo {
            height: 40px;
            width: auto;
        }
        .hamburger-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav {
            background-color: #b71c1c;
        }
        .nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-item {
            padding: 10px 30px;
            position: relative;
        }
        .nav-item:not(:last-child)::after {
            content: "|";
            color: #fff;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        .nav-link {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
        }
        .nav-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .header-title { display: none; }
            .nav .container { padding: 0; }
            .mobile-nav-header { display: flex; }
            .nav-list {
                display: none;
                flex-direction: column;
                text-align: center;
            }
            .nav-list.active { display: flex; }
            .nav-item:not(:last-child)::after { display: none; }
            .nav-item {
                padding: 12px 0;
                border-bottom: 1px solid #c72c2c;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-nav-header { display: none !important; }
        }

        /* 轮播图 */
        .banner {
            width: 100%;
            margin-bottom: 20px;
        }
        .banner-img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 中心概况 - 新增样式 */
        .overview {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
            position: relative;
            padding-top: 10px;
        }

        /* 左侧轮播容器 - 核心修改：移除固定高度，适配响应式 */
        .overview-left {
            flex: 1;
            min-width: 100%; /* 移动端占满宽度 */
            max-width: 582px; /* PC端最大宽度582px */
            padding-right: 0; /* 移动端取消右内边距 */
            margin: 0 auto 20px; /* 居中 + 底部间距 */
            position: relative;
            overflow: hidden;
        }
        /* PC端适配左侧轮播容器 */
        @media (min-width: 768px) {
            .overview-left {
                min-width: 582px; 
                max-width: 582px;
                padding-right: 20px;
                margin: 0 0 0 0;
                height: 362px; /* PC端保留固定高度 */
            }
        }
        /* 轮播图片容器 */
        .overview-carousel {
            width: 100%;
            height: 100%;
            position: relative;
        }
        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .carousel-item.active {
            opacity: 1;
        }
        .carousel-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持图片比例，裁剪溢出部分 */
            display: block;
        }
        /* 移动端轮播容器高度适配 */
        @media (max-width: 767px) {
            .overview-carousel {
                height: 250px; /* 移动端固定合理高度 */
            }
            .carousel-img {
                object-fit: contain; /* 移动端图片完整显示，不裁剪 */
                background-color: #f5f5f5;
            }
        }
        /* 轮播指示器 */
        .carousel-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.7);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .carousel-dot.active {
            background-color: #d81e06;
        }
        /* 右侧概况内容 - 核心修改 */
        .overview-right {
            flex: 2;
            min-width: 100%; /* 移动端占满宽度 */
            padding: 0 10px; /* 移动端增加左右内边距 */
            position: relative; /* 新增：让伪元素相对当前容器定位 */
            padding-top: 10px; /* 新增：给顶部红线留出空间 */
            /* background-color: #f9f9f9; 可选：增加背景色区分区域，和人物访谈保持视觉一致 */
            padding: 15px; /* 新增：增加内边距，让内容和边框有间距 */
            border-radius: 5px; /* 可选：圆角，和人物访谈卡片样式统一 */
        }
        /* 新增：中心概况右侧顶部红线（参照人物访谈样式） */
        .overview-right::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d81e06;
            z-index: 1;
        }
        /* 新增：中心概况右侧标题栏红色背景（参照人物访谈样式） */
        .overview-right .section-title-tag {
            background-color: #d81e06; /* 确保标题标签红色背景 */
        }
		
        /* PC端右侧内容适配 */
        @media (min-width: 768px) {
            .overview-right {
                min-width: 300px;
                padding: 15px; /* 修改：统一内边距 */
            }
        }
        /* 通用斜角标题样式 */
        .section-title-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            position: relative; /* 新增：确保标题栏层级 */
            z-index: 2; /* 新增：让标题栏在红线上方 */
        }
        .section-title-tag {
            background-color: #d81e06;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            padding: 8px 25px 8px 15px;
            margin-right: 10px;
            white-space: nowrap;
            clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
            flex-shrink: 0;
        }
        .section-title-line {
            flex: 1;
            height: 1px;
            background-color: #ddd;
        }
        .section-more {
            font-size: 12px;
            color: #666;
            text-decoration: none;
            margin-left: 10px;
            white-space: nowrap;
        }
        .section-more:hover {
            color: #d81e06;
        }
        /* 原有section-title样式兼容 */
        .section-title {
            font-size: 16px;
            color: #d81e06;
            border-bottom: 1px solid #ddd;
            padding-bottom: 8px;
            margin-bottom: 15px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .section-title .more {
            font-size: 12px;
            color: #666;
            text-decoration: none;
        }
        .section-title .more:hover {
            color: #d81e06;
        }

        /* 名律名师 - 样式 */
        .lawyers {
            margin-bottom: 30px;
            width: 100%;
            max-width: 100%;
            position: relative;
        }
        .lawyers::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d81e06;
            z-index: 1;
        }
        .lawyer-header-bar {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-top: 10px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .lawyer-header-title {
            background-color: #d81e06;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            padding: 8px 25px 8px 15px;
            margin-right: 20px;
            white-space: nowrap;
            clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
            flex-shrink: 0;
            z-index: 2;
        }
        .lawyer-nav-wrapper {
            flex: 1;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 5px;
        }
        .lawyer-nav-wrapper::-webkit-scrollbar {
            display: none;
        }
        .lawyer-nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            white-space: nowrap;
        }
        .lawyer-nav-item {
            margin-right: 60px;
            cursor: pointer;
            font-size: 16px;
            color: #555;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 5px;
        }
        .lawyer-nav-item:hover,
        .lawyer-nav-item.active {
            color: #d81e06;
            font-weight: bold;
        }
        .lawyer-nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background-color: #d81e06;
        }
        .lawyer-nav-plus {
            cursor: pointer;
            font-size: 18px;
            color: #555;
            font-weight: bold;
        }
        .lawyer-nav-plus:hover {
            color: #d81e06;
        }
        .lawyer-content {
            width: 100%;
        }
        .lawyer-list {
            display: none;
            flex-wrap: wrap;
            justify-content: space-between;
            width: 100%;
        }
        .lawyer-list.active {
            display: flex;
        }
        .lawyer-item {
            width: calc(16.66% - 10px);
            margin-bottom: 15px;
            text-align: center;
        }
        @media (max-width: 992px) {
            .lawyer-item { width: calc(25% - 10px); }
        }
        @media (max-width: 768px) {
            .lawyer-item { width: calc(33.33% - 10px); }
            .lawyer-header-title { font-size: 16px; padding: 6px 15px 6px 10px; }
            .lawyer-nav-item { margin-right: 15px; font-size: 16px; }
            .section-title-tag { font-size: 16px; padding: 6px 15px 6px 10px; }
        }
        @media (max-width: 576px) {
            .lawyer-item { width: calc(50% - 10px); }
        }
        .lawyer-card {
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .lawyer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .lawyer-img {
            width: 100%;
            height: auto;
            display: block;
        }
        .lawyer-info {
            padding: 8px;
        }
        .lawyer-name {
            font-size: 14px;
            color: #333;
            margin-bottom: 5px;
        }
        .lawyer-desc {
            font-size: 12px;
            color: #666;
            height: 36px;
            overflow: hidden;
        }
        .lawyer-tag {
            background-color: #d81e06;
            color: #fff;
            font-size: 12px;
            padding: 2px 5px;
            display: inline-block;
            margin-top: 5px;
            cursor: pointer;
            border-radius: 2px;
        }

        /* 名律动态 & 品牌活动 & 人物访谈 */
        .dynamic {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .dynamic-left {
            flex: 2;
            min-width: 100%; /* 移动端占满宽度 */
            padding-right: 0; /* 移动端取消右内边距 */
            margin-bottom: 20px; /* 移动端底部间距 */
            position: relative;
            padding-top: 10px;
        }
        /* PC端动态左侧适配 */
        @media (min-width: 768px) {
            .dynamic-left {
                min-width: 300px;
                padding-right: 20px;
                margin-bottom: 0;
            }
            
        }
        .dynamic-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d81e06;
            z-index: 1;
        }
        .dynamic-right {
            flex: 1;
            min-width: 100%; /* 移动端占满宽度 */
        }
        /* PC端动态右侧适配 */
        @media (min-width: 768px) {
                .dynamic-img {
        width: 140px;       /* 这里修改为您想要的宽度，如果觉得大可改为 120px */
        height: 90px;       /* 高度建议按比例调整，或设为 auto */
        min-width: 140px;   /* 关键：防止图片被长标题文字挤压变形 */
        margin-right: 10px; /* 保持图片与文字的间距 */
        object-fit: cover;  /* 确保图片填充且不变形 */
        flex-shrink: 0;     /* 关键：禁止 flex 布局压缩图片宽度 */
    }
    /* 可选：调整文字大小以适应剩余空间 */
    .dynamic-title {
        font-size: 15px;
        line-height: 1.4;
    }
    .dynamic-desc {
        font-size: 13px;
        /* 限制描述显示 2 行，超出省略，保持整齐 */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* 确保列表项在移动端也是 flex 布局且对齐 */
    .dynamic-item {
        align-items: flex-start; /* 顶部对齐，防止图片被垂直拉长 */
        padding: 12px 0;         /* 稍微增加上下间距，呼吸感更好 */
    }
            .dynamic-right {
                min-width: 300px;
            }
        }
        .brand-activity {
            position: relative;
            padding-top: 10px;
            margin-bottom: 20px;
        }
        .brand-activity::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d81e06;
            z-index: 1;
        }
        .dynamic-list {
            list-style: none;
        }
        .dynamic-item {
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            align-items: center;
        }
        .dynamic-item:last-child {
            border-bottom: none;
        }
        .dynamic-img {
            width: 195px;
            height: 116px;
            object-fit: cover;
            margin-right: 10px;
        }
        .dynamic-content {
            flex: 1;
        }
        .dynamic-title {
            font-size: 16px;
            color: #333;
            text-decoration: none;
            margin-bottom: 5px;
            display: block;
        }
        .dynamic-title:hover {
            color: #d81e06;
        }
        .dynamic-desc {
            font-size: 12px;
            color: #666;
        }
        .event-img {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
        }
        .event-list {
            list-style: none;
            font-size: 16px;
        }
        .event-list li {
            padding: 5px 0;
            color: #333;
        }
        .event-list li::before {
            content: "•";
            color: #d81e06;
            margin-right: 5px;
        }
        .interview {
            margin-top: 30px;
            position: relative;
            padding-top: 10px;
        }
        .interview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d81e06;
            z-index: 1;
        }
        .interview-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
.interview-item {
    width: calc(33.33% - 5px);
    margin-bottom: 10px;
    text-align: center;
}
@media (max-width: 768px) {
    .interview-item { 
        width: calc(50% - 5px); 
    }
}
@media (max-width: 576px) {
    .interview-item { 
        width: calc(50% - 5px) !important;  /* ← 改为 50%，保持一排 2 个 */
    }
}
        .interview-card {
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        .interview-img {
            width: 100%;
            height: auto;
            display: block;
        }
        .interview-name {
            font-size: 12px;
            color: #333;
            padding: 5px;
        }

        /* 精彩图集 */
        .gallery {
            margin-bottom: 30px;
        }
        .gallery-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .gallery-item {
            width: calc(25% - 10px);
            margin-bottom: 15px;
        }
        @media (max-width: 992px) {
            .gallery-item { width: calc(33.33% - 10px); }
        }
        @media (max-width: 768px) {
            .gallery-item { width: calc(50% - 10px); }
        }
        @media (max-width: 576px) {
            .gallery-item { width: 100%; }
        }
        .gallery-card {
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        .gallery-img {
            width: 100%;
            height: auto;
            display: block;
        }
        .gallery-desc {
            font-size: 12px;
            color: #666;
            padding: 8px;
            text-align: center;
        }

        /* 底部 */
        .footer {
            background-color: #f5f5f5;
            padding: 20px 0;
            border-top: 2px solid #d81e06;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
        }
        .contact-info {
            font-size: 14px;
            color: #666;
        }
        .qrcode-list {
            display: flex;
        }
        .qrcode-item {
            margin-left: 20px;
            text-align: center;
        }
        .qrcode-img {
            width: 100px;
            height: 100px;
        }
        .qrcode-text {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }
        @media (max-width: 576px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .qrcode-list {
                margin-top: 15px;
                justify-content: center;
            }
            .qrcode-item {
                margin: 0 10px;
            }
        }
        /* --- 移动端名律动态图片调整 (强制覆盖) --- */
@media (max-width: 768px) {
    .dynamic-img {
        width: 140px !important;      /* 强制宽度为 140px */
        height: 90px !important;      /* 强制高度 */
        min-width: 140px !important;  /* 防止被文字挤压 */
        flex-shrink: 0 !important;    /* 禁止弹性收缩 */
        margin-right: 10px;
        object-fit: cover;
    }
    
    .dynamic-item {
        align-items: flex-start;      /* 顶部对齐 */
        padding: 12px 0;
    }
    
    .dynamic-content {
        flex: 1;
        min-width: 0;                 /* 允许文字区域换行 */
    }
}
/* 对应 CSS */
.gallery {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
}
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d81e06;
    z-index: 1;
}
.gallery .section-title-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}