 /* ================= 基础重置 ================= */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: #fafafa; 
            color: #1a1a1a; 
            font-family: 'Helvetica Neue', 'Arial', sans-serif; 
            overflow-x: hidden; 
            -webkit-font-smoothing: antialiased;
        }
        ::selection { background: #D6131B; color: #fff; }

        /* ================= 导航栏 ================= */
        header { 
            position: fixed; width: 100%; height: 110px; padding: 0 5vw; 
            display: flex; justify-content: space-between; align-items: center;
            z-index: 100;
            background: transparent;
            transition: all 0.4s ease;
        }
        header.header-scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .logo { display: flex; align-items: center; position: relative; }
        .logo img { height: 80px; width: auto; transition: opacity 0.3s ease; }
        .logo .logo-white { position: absolute; top: 0; left: 0; }
        .logo .logo-black { opacity: 0; }
        header.header-scrolled .logo .logo-white { opacity: 0; }
        header.header-scrolled .logo .logo-black { opacity: 1; }
        .nav-menu { display: flex; gap: 35px; list-style: none; }
        .nav-menu li a { 
            font-size: 18px; font-weight: 500; color: #fff; text-decoration: none;
            transition: color 0.3s; position: relative; white-space: nowrap;
        }
        header.header-scrolled .nav-menu li a { color: #333; }
        .nav-menu li a:hover, .nav-menu li a.active { color: #D6131B; }
        .nav-menu li a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
            background: #D6131B; transition: width 0.3s;
        }
        .nav-menu li a:hover::after, .nav-menu li a.active::after { width: 100%; }
        /* 移动端菜单按钮 */
        .mobile-menu-btn span {
            background: #fff;
            transition: background 0.3s ease;
        }
        header.header-scrolled .mobile-menu-btn span {
            background: #333;
        }

        /* ================= 通用动效类 ================= */
        .reveal { opacity: 0; transform: translateY(80px); transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

            /* ================= 1. 首屏 Banner轮播 ================= */
        .hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        .hero-slide.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Banner 1: 图片背景 */
        .hero-slide:first-child {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 110px 5vw 80px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner2.jpg');
            background-size: cover;
            background-position: center;
        }
        /* 第一张banner文字样式 - 黑色文字 */
        .hero-slide:first-child h1 {
            font-size: 100px;
            line-height: 1.1;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #ffffff;
        }
        .hero-slide:first-child .text-outline {
            font-size: clamp(32px, 4vw, 40px);
            line-height: 1.2;
            text-transform: uppercase;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
        }
        .hero-slide:first-child p {
            margin-top: 50px;
            font-size: 1rem;
            max-width: 450px;
            color: #ffffff;
            line-height: 1.6;
            border-left: 2px solid #D6131B;
            padding-left: 20px;
        }
        
        /* Banner 2 & 3: 背景图方式 */
        .hero-slide.bg-slide {
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        .hero-slide.bg-slide .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }
        .hero-slide.bg-slide h1 {
            font-size: 72px;
            font-weight: 900;
            letter-spacing: -2px;
            margin-bottom: 20px;
        }
        .hero-slide.bg-slide p {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        .hero-btn {
            display: inline-block;
            padding: 16px 40px;
            background: #D6131B;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .hero-btn:hover {
            background: #a30f15;
            transform: translateY(-2px);
        }
        
        /* 轮播指示点 */
        .slider-dots {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        .slider-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(220, 203, 203, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slider-dots .dot.active {
            background: #D6131B;
            width: 32px;
            border-radius: 6px;
        }
        .ambient-orb {
            position: absolute; width: 800px; height: 800px; 
            background: radial-gradient(circle, rgba(255,0,51,0.8) 0%, rgba(255,0,51,0) 60%);
            border-radius: 50%; top: 40%; left: 80%; transform: translate(-50%, -50%);
            filter: blur(100px); opacity: 0.3; z-index: 1; animation: pulse 8s infinite alternate;
        }
        .hero h1 { 
            font-size: 100px; line-height: 1.1; 
            font-weight: 900; letter-spacing: -0.02em; z-index: 2; position: relative;
        }
        .text-outline { 
            font-size: clamp(32px, 4vw, 40px); line-height: 1.2; text-transform: uppercase;
            color: transparent; -webkit-text-stroke: 2px rgba(26,26,26,0.3); cursor: default;
        }
        
        /* Hero内容 */
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* Hero SVG 动画容器 */
        .hero-svg-container {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            height: 80%;
            z-index: 3;
            pointer-events: none;
        }
        .hero-svg-icon {
            position: absolute;
            fill: currentColor;
        }
        /* 1. 天平 */
        .hero-icon-scale {
            width: 180px;
            color: rgba(214, 19, 27, 0.9);
            right: 15%;
            top: 20%;
            animation: float-vertical 6s ease-in-out infinite;
        }
        /* 2. 专利文件 */
        .hero-icon-patent {
            width: 80px;
            color: rgba(231, 9, 9, 0.822);
            right: 35%;
            top: 15%;
            animation: float-diagonal 7s ease-in-out infinite;
        }
        /* 3. 法槌 */
        .hero-icon-gavel {
            width: 90px;
            color: rgba(158, 48, 4, 0.938);
            right: 8%;
            bottom: 25%;
            transform-origin: bottom right;
            animation: swing 4s ease-in-out infinite;
        }
        /* 4. 版权 C */
        .hero-icon-copyright {
            width: 60px;
            color: rgba(60, 16, 221, 0.904);
            right: 12%;
            top: 10%;
            animation: spin-slow 15s linear infinite;
        }
        /* 5. 商标 R */
        .hero-icon-trademark {
            width: 160px;
            color: rgba(10, 165, 43, 0.897);
            right: 32%;
            bottom: 20%;
            animation: spin-slow-reverse 18s linear infinite;
        }
        
        /* SVG 动画 */
        @keyframes float-vertical {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        @keyframes float-diagonal {
            0%, 100% { transform: translate(0, 0) rotate(-5deg); }
            50% { transform: translate(-15px, 15px) rotate(5deg); }
        }
        @keyframes swing {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(-15deg); }
        }
        @keyframes spin-slow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes spin-slow-reverse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(-360deg); }
        }
        .hero p { margin-top: 50px; font-size: 1rem; max-width: 450px; color: #666; line-height: 1.6; z-index: 2; border-left: 2px solid #D6131B; padding-left: 20px;}

        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
            100% { transform: translate(-60%, -40%) scale(1.3); opacity: 0.5; }
        }

        /* ================= 2. 跑马灯案例 (Marquee) ================= */
        .marquee-wrapper {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #D6131B; color: #050505; padding: 25px 0; overflow: hidden; white-space: nowrap;
            box-shadow: 0 0 50px rgba(255,0,51,0.3);
            z-index: 10;
        }
        .marquee { display: inline-block; animation: marquee 20s linear infinite; font-size: 1.8rem; font-weight: 700; text-transform: uppercase; }
        .marquee span { margin: 0 30px; }
        .marquee span.dot { color: #fff; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* ================= 3. 关于我们 (About) ================= */
        .about { padding: 150px 5vw; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: start; }
        .sec-label { font-size: 1.5rem;font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: #D6131B; position: sticky; top: 120px; }
        .about-content { display: flex; flex-direction: column; gap: 40px; }
        .about-text h2 { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 40px; letter-spacing: -2px; color: #1a1a1a; }
        .about-text p { font-size: 1.5rem; color: #666; line-height: 1.8; margin-bottom: 30px; max-width: 800px; }
        .about-text p strong { color: #1a1a1a; }
        
        /* 浮动证书图片 */
        .certificates { display: flex; gap: 30px; margin-top: 20px; }
        .certificates .cert-item { 
            width: 400px; height: 280px; overflow: hidden; position: relative; cursor: pointer;
            transition: all 0.4s ease; animation: float 3s ease-in-out infinite;
        }
        .certificates .cert-item:nth-child(2) { animation-delay: 1.5s; }
        .certificates .cert-item:hover { transform: translateY(-10px) scale(1.02); }
        .certificates .cert-item img { width: 100%; height: 100%; object-fit: contain; border-radius: 4px; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

      

        /* ================= 5. 案例展示 (Scrolling Cases) ================= */
        .cases { padding: 150px 5vw; display: grid; grid-template-columns: 1fr 3fr; gap: 50px; }
        
        /* 横向滚动容器 */
        .cases-scroll-container { overflow: hidden; position: relative; cursor: grab; }
        .cases-scroll-container:active { cursor: grabbing; }
        .cases-scroll { 
            display: flex; gap: 30px; animation: scrollCases 25s linear infinite; 
            width: max-content; padding: 20px 0;
            user-select: none;
        }
        .cases-scroll.dragging { animation: none; cursor: grabbing; }
        .cases-scroll-container:hover .cases-scroll { animation-play-state: paused; }
        .cases-scroll-container:hover .cases-scroll.dragging { animation-play-state: running; }
        @keyframes scrollCases { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        
        /* 案例卡片 - 色块+纯文字 */
        .cases-scroll .case-card { 
            width: 350px; height: 400px; border-radius: 16px; padding: 40px;
            display: flex; flex-direction: column; justify-content: space-between;
            transition: all 0.4s ease; cursor: pointer; flex-shrink: 0;
        }
        .cases-scroll .case-card:hover { transform: translateY(-10px) scale(1.02); }
        .cases-scroll .case-card h3 { font-size: 1.6rem; font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
        .cases-scroll .case-card p { font-size: 1rem; line-height: 1.6; opacity: 0.9; }
        .cases-scroll .case-card .case-arrow { font-size: 2rem; align-self: flex-end; transition: transform 0.3s; }
        .cases-scroll .case-card:hover .case-arrow { transform: translateX(10px); }
        
        /* 不同色块 */
        .cases-scroll .case-card.red { background: linear-gradient(135deg, #D6131B, #a30f15); color: #fff; }
        .cases-scroll .case-card.dark { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); color: #fff; border: 1px solid rgba(0,0,0,0.1); }
        .cases-scroll .case-card.gray { background: linear-gradient(135deg, #e0e0e0, #c0c0c0); color: #1a1a1a; }
        .cases-scroll .case-card.white { background: linear-gradient(135deg, #ffffff, #f0f0f0); color: #1a1a1a; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }

        .cases-scroll .case-card:nth-child(4n+1) { background: linear-gradient(135deg, #D6131B, #a30f15); color: #fff; }
        .cases-scroll .case-card:nth-child(4n+2) { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); color: #fff; border: 1px solid rgba(0,0,0,0.1);  }
        .cases-scroll .case-card:nth-child(4n+3) {background: linear-gradient(135deg, #e0e0e0, #c0c0c0); color: #1a1a1a;   }
        .cases-scroll .case-card:nth-child(4n+4) { background: linear-gradient(135deg, #ffffff, #f0f0f0); color: #1a1a1a; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }


        /* ================= 新闻中心 (Bento Grid) ================= */
        .news { padding: 150px 5vw; display: grid; grid-template-columns: 1fr 3fr; gap: 50px; background: #fff; }
        .news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,0,0,0.1); }
        .news-card { background: #fafafa; padding: 50px; transition: all 0.3s; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
        .news-card:hover { background: #fff; box-shadow: inset 0 0 0 2px #D6131B; }
        .news-date { color: #D6131B; font-size: 0.9rem; font-weight: bold; margin-bottom: 20px; display: block; }
        .news-title { font-size: 1.8rem; font-weight: 700; line-height: 1.3; color: #1a1a1a; margin-bottom: 30px; }
        .news-card i { font-size: 2rem; color: #ccc; align-self: flex-end; transition: color 0.3s, transform 0.3s; }
        .news-card:hover i { color: #D6131B; transform: translateX(10px) translateY(-10px); }

        /* ================= 6. 超级页脚 (Mega Footer) ================= */
        footer { 
            padding: 60px 5vw 20px; background: #1a1a1a; color: #fff; 
            display: flex; flex-direction: column; justify-content: space-between;
        }
        .footer-address { text-align: center; padding: 20px 0; margin-bottom: 20px; color: #aaa; font-size: 0.9rem; }

        /* 联系人区域 */
        .footer-contacts { 
            display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; 
            padding: 30px; background: rgba(255,255,255,0.05); border-radius: 16px; margin-bottom: 40px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .contact-person { display: flex; flex-direction: column; gap: 10px; }
        .contact-person h5 { font-size: 1.3rem; font-weight: 800; margin-bottom: 5px; color: #fff; }
        .contact-person .role { font-size: 0.9rem; color: #888; margin-bottom: 10px; }
        .contact-person .info { display: flex; align-items: center; gap: 10px; font-size: 1rem; color: #aaa; }
        .contact-person .info img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

        .footer-bottom { border-top: 2px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: flex-end; }
        .huge-text { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; line-height: 1; letter-spacing: -2px; color: #D6131B; }
        .copyright { font-size: 1rem; font-weight: bold; color: #666; }

        
            
        .page-crumb{ background: #fff; padding: 60px 5vw 0px;}
        .page-crumb ul{display: flex;  gap: 30px;}
        .page-crumb ul li{font-size: 18px; font-weight: 800; line-height: 1.3; color: #1a1a1a;text-decoration: none center;list-style-type: none;overflow: hidden;}
        .page-crumb ul li a{background: #f0f0f0;color: #1a1a1a;display: block;padding: 10px 20px; text-decoration: none;border-radius: 5px; } 
        .page-crumb ul li.cur a{ background: #D6131B; color: #fff; }

        /* ================= 页面标题区域 ================= */
        .page-header {
            padding: 160px 5vw 80px;
            background-size: cover;
            background-position: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            min-height: 450px;
        }
        .page-content {
            position: relative;
            z-index: 1;
        }
        .page-title {
            font-size: 72px;
            font-weight: 900;
            letter-spacing: -2px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .page-subtitle {
            font-size: 20px;
            color: #aaa;
            max-width: 700px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        .breadcrumb {
            margin-top: 30px;
            font-size: 14px;
            color: #666;
            position: relative;
            z-index: 1;
        }
        .breadcrumb a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #D6131B;
        }
        .breadcrumb span {
            margin: 0 10px;
            color: #444;
        }



        /* ================= 通用动效类 ================= */
        .reveal { opacity: 0; transform: translateY(60px); transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* ================= 机构简介 ================= */
        .intro-section {
            padding: 100px 5vw;
            /* max-width: 1400px; */
            margin: 0 auto;
        }
        .section-header {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            margin-bottom: 60px;
            align-items: start;
        }
        .section-label {
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #D6131B;
            font-weight: 600;
        }
        .section-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.2;
            text-align: right;
            letter-spacing: -2px;
            color: #1a1a1a;
        }
        .section-title1{
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.2;
            margin-top: 20px;
            text-align: center;
            letter-spacing: -2px;
            color: #ffffff;

        }
        
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
        }
        .intro-text {
            font-size: 1.2rem;
            line-height: 2;
            color: #555;
        }
        .intro-text p {
            margin-bottom: 24px;
            text-indent: 2em;
        }
        .intro-text strong {
            color: #1a1a1a;
            font-weight: 600;
        }
        .intro-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .stat-item {
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #D6131B;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: #666;
        }

        /* ================= 公司业务 ================= */
        .business-section {
            padding: 100px 5vw;
            background: #fff;
        }
        .business-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .business-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .business-card {
            background: #fafafa;
            border-radius: 20px;
            padding: 50px 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .business-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #D6131B;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .business-card:hover::before {
            transform: scaleX(1);
        }
        .business-card:hover {
            background: #fff;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            transform: translateY(-10px);
        }
        .business-icon {
            width: 60px;
            height: 60px;
            background: #D6131B;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 28px;
            color: #fff;
        }
        .business-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: #1a1a1a;
        }
        .business-list {
            list-style: none;
        }
        .business-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
            position: relative;
            padding-left: 20px;
        }
        .business-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #D6131B;
            font-weight: bold;
        }
        .business-list li:last-child {
            border-bottom: none;
        }

        /* ================= 主任简介 ================= */
        .director-section {
            padding: 100px 0 5vw;
            max-width: 1400px;
            margin: 0 auto;
        }
        .director-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            align-items: start;
        }
        .director-photo {
            position: relative;
        }
        .director-photo img {
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }
        .director-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: #D6131B;
            color: #fff;
            padding: 20px 30px;
            border-radius: 16px;
            text-align: center;
        }
        .director-badge .title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
            opacity: 0.9;
        }
        .director-badge .name {
            font-size: 28px;
            font-weight: 900;
        }
        .director-info h3 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        .director-role {
            font-size: 1.2rem;
            color: #D6131B;
            margin-bottom: 30px;
            font-weight: 600;
        }
        .director-bio {
            font-size: 1.1rem;
            line-height: 2;
            color: #555;
            margin-bottom: 30px;
        }
        .director-bio p {
            margin-bottom: 20px;
            text-indent: 2em;
        }
        .partners-section {
            margin-top: 40px;
            padding: 30px;
            background: #f5f5f5;
            border-radius: 16px;
        }
        .partners-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
            margin-bottom: 15px;
        }
        .partners-list {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
        }
        .positions-section {
            margin-top: 30px;
        }
        .positions-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
            margin-bottom: 15px;
        }
        .positions-list {
            list-style: none;
        }
        .positions-list li {
            padding: 10px 0;
            padding-left: 24px;
            position: relative;
            font-size: 1rem;
            color: #555;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .positions-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #D6131B;
            font-weight: bold;
        }
        .qualifications-section {
            margin-top: 30px;
        }
        .qualifications-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
            margin-bottom: 15px;
        }
        .qualifications-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .qualification-tag {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: #f5f5f5;
            border-radius: 30px;
            font-size: 14px;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .qualification-tag:hover {
            background: #D6131B;
            color: #fff;
        }
        .qualification-tag:hover .qualification-dot {
            background: #fff;
        }
        .qualification-dot {
            width: 8px;
            height: 8px;
            background: #D6131B;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        /* ================= 荣誉资质 ================= */
        .honors-section {
            padding: 100px 5vw;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            color: #fff;
        }
        .honors-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .honors-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .honors-header .section-label {
            color: #D6131B;
        }
        .honors-header .section-title {
            color: #fff;
            font-size: 4rem;
        }
        .qualifications-row {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }
        .qualification-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 30px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .qualification-icon {
            width: 50px;
            height: 50px;
            background: #D6131B;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        .qualification-text {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .honors-gallery {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }
        .honor-item {
            aspect-ratio: 4/3;
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }
        .honor-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(214, 19, 27, 0.2);
            border-color: rgba(214, 19, 27, 0.3);
        }
        .honor-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .honor-item:hover img {
            transform: scale(1.05);
        }
        .honor-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: #fff;
            font-size: 14px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .honor-item:hover .honor-caption {
            opacity: 1;
        }

        /* ================= 图片放大弹窗 ================= */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            cursor: zoom-out;
        }
        .lightbox.active {
            display: flex;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }
        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .lightbox-close:hover {
            background: #D6131B;
        }

      
       

       




        /* ================= 筛选栏 ================= */
        .filter-bar {
            padding: 40px 5vw;
            background: #fff;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .filter-label {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }
        .filter-tags {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .filter-tag {
            padding: 10px 24px;
            background: #f5f5f5;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            color: #333;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        .filter-tag:hover {
            background: #e8e8e8;
        }
        .filter-tag.active {
            background: #D6131B;
            color: #fff;
        }

        /* ================= 律师团队列表 ================= */
        .team-section {
            padding: 80px 0 5vw;
            max-width: 1400px;
            margin: 0 auto;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            align-items: start;
        }
        
        /* 律师卡片 */
        .lawyer-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }
        .lawyer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        /* 照片区域 */
        .lawyer-photo-wrap {
            position: relative;
            height: 380px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            flex-shrink: 0;
        }
        .lawyer-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .lawyer-card:hover .lawyer-photo {
            transform: scale(1.05);
        }
        .lawyer-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(214, 19, 27, 0.9), transparent);
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            align-items: flex-end;
            padding: 30px;
        }
        .lawyer-card:hover .lawyer-overlay {
            opacity: 1;
        }
        .view-profile {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* 信息区域 */
        .lawyer-info {
            padding: 30px;
        }
        .lawyer-name {
            font-size: 24px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        .lawyer-position {
            font-size: 14px;
            color: #D6131B;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .lawyer-specialties {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .specialty-tag {
            padding: 6px 14px;
            background: #f5f5f5;
            border-radius: 20px;
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }
        
        /* 合伙人标识 */
        .partner-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #D6131B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(214, 19, 27, 0.4);
        }

        /* ================= 分页 ================= */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 80px;
        }
        .page-btn {
            width: 50px;
            height: 50px;
            border: 2px solid #e0e0e0;
            background: #fff;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .page-btn:hover {
            border-color: #D6131B;
            color: #D6131B;
        }
        .page-btn.active {
            background: #D6131B;
            border-color: #D6131B;
            color: #fff;
        }
        .page-btn.next {
            width: auto;
            padding: 0 30px;
        }

      
        


        /* ================= 内容容器 ================= */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        /* ================= 案例网格 (Cases Grid) ================= */
        .cases-section { padding: 80px 5vw 150px; background: #fff; }
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .case-card { 
            height: 400px; border-radius: 16px; padding: 40px;
            display: flex; flex-direction: column; justify-content: space-between;
            transition: all 0.4s ease; cursor: pointer;
            text-decoration: none;
        }
        .case-card:hover { transform: translateY(-10px) scale(1.02); }
        .case-card h3 { font-size: 1.6rem; font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
        .case-card p { font-size: 1rem; line-height: 1.6; opacity: 0.9; }
        .case-card .case-arrow { font-size: 2rem; align-self: flex-end; transition: transform 0.3s; }
        .case-card:hover .case-arrow { transform: translateX(10px); }
        
        /* 不同色块 */
        .case-card.red { background: linear-gradient(135deg, #D6131B, #a30f15); color: #fff; }
        .case-card.dark { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); color: #fff; border: 1px solid rgba(0,0,0,0.1); }
        .case-card.gray { background: linear-gradient(135deg, #e0e0e0, #c0c0c0); color: #1a1a1a; }
        .case-card.white { background: linear-gradient(135deg, #ffffff, #f0f0f0); color: #1a1a1a; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        
        .case-card:nth-child(4n+1) { background: linear-gradient(135deg, #D6131B, #a30f15); color: #fff; }
        .case-card:nth-child(4n+2) { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); color: #fff; border: 1px solid rgba(0,0,0,0.1);  }
        .case-card:nth-child(4n+3) {background: linear-gradient(135deg, #e0e0e0, #c0c0c0); color: #1a1a1a;   }
        .case-card:nth-child(4n+4) { background: linear-gradient(135deg, #ffffff, #f0f0f0); color: #1a1a1a; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }

        
    



        /* ================= 业务领域 (Brutalist List) ================= */
        .services { padding: 80px 5vw 150px; background: #fff; }
        .service-list { list-style: none; border-top: 2px solid rgba(0,0,0,0.1); margin-top: 20px; }
        .service-item { 
            display: flex; justify-content: space-between; align-items: center; 
            padding: 50px; border-bottom: 2px solid rgba(0,0,0,0.1); 
            transition: all 0.4s ease; cursor: crosshair; position: relative; overflow: hidden;
        }
       
        .service-num { font-size: 2rem; font-weight: 300; color: #999; transition: color 0.4s; width: 10%; }
        .service-name { font-size: 4rem; font-weight: 900; letter-spacing: -2px; transition: color 0.4s; width: 50%; color: #1a1a1a; }
        .service-desc { font-size: 1.1rem; color: #666; max-width: 400px; line-height: 1.5; transition: color 0.4s; width: 40%; text-align: right; }
        .service-item:hover{background: #D6131B; }
        .service-item:hover .service-num, .service-item:hover .service-name { color: #fff; }
        .service-item:hover .service-num img { filter: brightness(0) invert(1); }
        .service-item:hover .service-desc { color: #f5f5f5; font-weight: bold; }
        
        .service-item.active{background: #D6131B; }
        .service-item.active .service-num, .service-item.active .service-name { color: #fff; }
        .service-item.active .service-num img { filter: brightness(0) invert(1); }
        .service-item.active .service-desc { color: #f5f5f5; font-weight: bold; }   
        
      
        
        
        /* ================= 纯文字列表 (Text List) ================= */
        .text-list-section {
            padding: 40px 5vw 80px;
            background: #fff;
        }
        .text-list {
            list-style: none;
        }
        .text-list li {
            border-bottom: 1px dashed rgba(0,0,0,0.4);
            transition: all 0.3s ease;
        }
        .text-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 20px;
            text-decoration: none;
            color: #333;
        }
        .text-list li:hover {
            background: #fafafa;
            transform: translateX(10px);
        }
        .text-list li:hover a {
            color: #D6131B;
        }
        .text-list .title {
            font-size: 16px;
            font-weight: 500;
            flex-grow: 1;
            padding-right: 30px;
            transition: color 0.3s;
        }
        .text-list .date {
            font-size: 1rem;
            color: #999;
            font-family: monospace;
            white-space: nowrap;
        }

        /* 分页 (Pagination) */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 60px;
        }
        .pagination a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            color: #333;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        .pagination a:hover, .pagination a.active {
            background: #D6131B;
            color: #fff;
            border-color: #D6131B;
        }

   
        



        
        /* ================= 联系方式页面主体 ================= */
        .contact-section {
            padding: 100px 5vw 150px;
            background: #fff;
        }
        
        .contact-main-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            color: #1a1a1a;
            text-align: center;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* 左侧：地址和电话 */
        .contact-basic {
            background: #fafafa;
            padding: 50px;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .contact-basic h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1a1a1a;
            padding-bottom: 15px;
            border-bottom: 2px solid #D6131B;
        }
        .contact-basic .info-item {
            margin-bottom: 25px;
        }
        .contact-basic .info-item:last-child {
            margin-bottom: 0;
        }
        .contact-basic .info-label {
            font-size: 0.9rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .contact-basic .info-value {
            font-size: 1.1rem;
            color: #1a1a1a;
            line-height: 1.6;
        }
        .contact-basic .info-value a {
            color: #D6131B;
            text-decoration: none;
            transition: color 0.3s;
        }
        .contact-basic .info-value a:hover {
            color: #a30f15;
        }

        /* 右侧：人员信息 */
        .contact-people {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .people-section {
            background: #fafafa;
            padding: 30px;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .people-section h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a1a1a;
            padding-bottom: 10px;
            border-bottom: 2px solid #D6131B;
            display: inline-block;
        }
        
        .person-card {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        .person-card:last-child {
            border-bottom: none;
        }
        .person-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
        }
        .person-contact {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .person-contact a {
            font-size: 0.95rem;
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        .person-contact a:hover {
            color: #D6131B;
        }

        


         /* ================= 案例详情主体 ================= */
        .case-detail-section {
            padding: 80px 20px;
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
        }

        .case-detail-grid {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 40px;
            align-items: start;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* 左侧主要内容 */
        .case-main-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* 案例主标题 */
        .case-main-title {
            font-size: 32px;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.4;
            /* letter-spacing: -1px; */
        }

        /* 案例元信息 */
        .case-meta {
            display: flex;
            gap: 30px;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #666;
        }
        .meta-icon {
            width: 18px;
            height: 18px;
            color: #D6131B;
        }
        .meta-label {
            color: #999;
        }
        .meta-value {
            color: #333;
            font-weight: 600;
        }

        /* 卡片样式 */
        .info-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            font-family: 宋体;
        }
        
        .case-content h1 {
            font-size: 24px;
           
            color: #1a1a1a;
            margin-bottom: 20px;
            /*padding-bottom: 15px;*/
            /*border-bottom: 2px solid #D6131B;*/
            /*display: inline-block;*/
            text-align: center;
        }
        /* 案例详情内容 */
        .case-content h2 {
            font-size: 18px;
           
            color: #1a1a1a;
            /*margin-bottom: 20px;*/
            padding-bottom: 15px;
            /*border-bottom: 2px solid #D6131B;*/
            /*display: inline-block;*/
            text-align: center;
        }
        .case-content p {
            font-size: 16px;
            line-height: 2;
            color: #555;
            margin-bottom: 20px;
        }
        .case-content strong {
            color: #1a1a1a;
        }
        .case-content ul {
            margin: 20px 0;
            padding-left: 25px;
        }
        .case-content li {
            font-size: 16px;
            line-height: 2;
            color: #555;
            margin-bottom: 10px;
        }

        /* 右侧热门案例 */
        .sidebar {
            position: sticky;
            top: 140px;
        }

        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .sidebar-title {
            font-size: 18px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: #D6131B;
            border-radius: 2px;
        }

        .hot-case-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hot-case-item {
            padding: 18px;
            background: #f8f8f8;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }
        .hot-case-item:hover {
            background: #fff;
            border-left-color: #D6131B;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transform: translateX(5px);
        }
        .hot-case-rank {
            display: inline-block;
            width: 24px;
            height: 24px;
            background: #D6131B;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            border-radius: 6px;
            text-align: center;
            line-height: 24px;
            margin-bottom: 10px;
        }
        .hot-case-rank.top3 {
            background: linear-gradient(135deg, #D6131B, #ff4757);
        }
        .hot-case-title {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hot-case-date {
            font-size: 12px;
            color: #999;
            margin-top: 8px;
        }

        /* 返回按钮 */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: #1a1a1a;
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s;
            margin-top: 20px;
        }
        .back-btn:hover {
            background: #D6131B;
            transform: translateX(-5px);
        }

      


         /* ================= 律师详情主体 ================= */
        .lawyer-detail-section {
            padding: 80px 0 5vw;
            max-width: 1400px;
            margin: 0 auto;
            line-height: 2;
        }

        .lawyer-detail-grid {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 60px;
            align-items: start;
        }

        /* 左侧照片区域 */
        .lawyer-photo-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: sticky;
            top: 140px;
        }
        .lawyer-photo-main {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
        }
        .lawyer-photo-info {
            padding: 30px;
            background: linear-gradient(135deg, #D6131B 0%, #a30f15 100%);
            color: #fff;
        }
        .lawyer-name-main {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }
        .lawyer-title-main {
            font-size: 16px;
            opacity: 0.9;
            font-weight: 500;
        }

        /* 右侧信息区域 */
        .lawyer-info-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* 资质证书区块 */
        .info-card {
            background: #fff;
            border-radius: 16px;
            padding: 35px;
            line-height: 2;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .info-card-title {
            font-size: 20px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #D6131B;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .info-card-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: #D6131B;
            border-radius: 2px;
        }

        /* 证书编号 */
        .cert-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .cert-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: #f8f8f8;
            border-radius: 12px;
            border-left: 4px solid #D6131B;
        }
        .cert-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #D6131B 0%, #ff4757 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            flex-shrink: 0;
        }
        .cert-content {
            flex: 1;
        }
        .cert-label {
            font-size: 14px;
            color: #888;
            margin-bottom: 4px;
            font-weight: 500;
        }
        .cert-value {
            font-size: 18px;
            color: #1a1a1a;
            font-weight: 700;
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
        }

        /* 业务特色 */
        .info-card .specialty-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .info-card .specialty-tag {
            padding: 12px 24px;
            background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
            border: 2px solid #eee;
            border-radius: 30px;
            font-size: 15px;
            color: #333;
            font-weight: 600;
            transition: all 0.3s;
        }
        .info-card .specialty-tag:hover {
            border-color: #D6131B;
            color: #D6131B;
            transform: translateY(-2px);
        }

        /* 简介 */
        /* .intro-text {
            font-size: 16px;
            line-height: 2;
            color: #555;
        }
        .intro-text p {
            margin-bottom: 20px;
        }
        .intro-text strong {
            color: #1a1a1a;
        } */

        /* 联系方式区块 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #f8f8f8;
            border-radius: 12px;
            transition: all 0.3s;
        }
        .contact-item:hover {
            background: #f0f0f0;
            transform: translateX(5px);
        }
        .contact-icon {
            width: 48px;
            height: 48px;
            background: #D6131B;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }
        .contact-content {
            flex: 1;
        }
        .contact-label {
            font-size: 16px;
            color: #888;
            margin-bottom: 4px;
        }
        .contact-value {
            font-size: 18px;
            color: #1a1a1a;
            font-weight: 600;
        }
        .contact-value a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s;
        }
        .contact-value a:hover {
            color: #D6131B;
        }

        /* 二维码区域 */
        .qr-section {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 30px;
            background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
            border-radius: 16px;
            border: 2px dashed #ddd;
        }
        .qr-code {
            width: 140px;
            height: 140px;
            background: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            flex-shrink: 0;
        }
        .qr-code img {
            width: 120px;
            height: 120px;
        }
        .qr-info {
            flex: 1;
        }
        .qr-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        .qr-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* 经典案例列表 */
        .case-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .case-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 18px 20px;
            background: #f8f8f8;
            border-radius: 10px;
            border-left: 3px solid #D6131B;
            transition: all 0.3s;
        }
        .case-item:hover {
            background: #f0f0f0;
            transform: translateX(5px);
        }
        .case-bullet {
            width: 8px;
            height: 8px;
            background: #D6131B;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }
        .case-text {
            font-size: 15px;
            line-height: 1.7;
            color: #444;
        }
        .case-highlight {
            color: #D6131B;
            font-weight: 600;
        }

        /* 返回按钮 */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: #1a1a1a;
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s;
            margin-top: 20px;
        }
        .back-btn:hover {
            background: #D6131B;
            transform: translateX(-5px);
        }

         @media (max-width: 1200px) {
            .business-grid { grid-template-columns: repeat(2, 1fr); }
            .honors-gallery { grid-template-columns: repeat(3, 1fr); }
            .footer-contacts { display: grid; grid-template-columns: repeat(3, 1fr); }
        }
        
        @media (max-width: 1024px) {
            .director-content { grid-template-columns: 1fr; gap: 50px; }
            .director-photo { text-align: center; }
            .director-photo img { max-width: 350px; }
            .section-header { grid-template-columns: 1fr; gap: 20px; }
            .intro-content { grid-template-columns: 1fr; }
            .intro-stats { grid-template-columns: repeat(4, 1fr); }
        
            .lawyer-detail-grid {grid-template-columns: 1fr;}
            .lawyer-photo-card {position: relative;top: 0;max-width: 400px;margin: 0 auto;}
       
            .case-detail-grid {grid-template-columns: 1fr;}
            .sidebar {position: relative;top: 0; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
        }


         /* ================= 响应式设计 (移动端适配) ================= */
        @media (max-width: 768px) {
            /* 导航栏 */
            .nav-menu li a { color: #333333; }
            /* Hero轮播区域 */
            .hero-slider { height: 100vh; }
            .hero-slide:first-child { padding: 80px 4vw 60px; }
            .hero-slide.bg-slide h1 { font-size: 36px; }
            .hero-slide.bg-slide p { font-size: 16px; }
            .slider-dots { bottom: 80px; }
            .marquee-wrapper { padding: 15px 0; }
            .marquee { font-size: 1.2rem; }
            .marquee span { margin: 0 15px; }
            .hero-slide:first-child h1 { font-size: 48px; line-height: 1.2; }
            .hero-slide:first-child .text-outline { font-size: 24px; -webkit-text-stroke: 1px rgba(26,26,26,0.3); }
            .hero-slide:first-child p { font-size: 14px; margin-top: 30px; }
            .hero-svg-container { display: none; }
            
            .page-crumb{ background: #fff; padding: 20px 5vw 0px;}
            .page-crumb ul{display: flex;  gap: 10px;}
            .page-crumb ul li{ font-weight: 800; line-height: 1.3; color: #1a1a1a;text-decoration: none center;list-style-type: none;overflow: hidden;}
            .page-crumb ul li a{background: #f0f0f0;color: #1a1a1a;display: block;padding: 5px 15px; text-decoration: none;border-radius: 5px;font-size: 16px; } 
            .page-crumb ul li.cur a{ background: #D6131B; color: #fff; }

            
            /* 关于我们 */
            .about { padding: 60px 4vw; grid-template-columns: 1fr; gap: 30px; }
            .sec-label { position: static; margin-bottom: 20px; }
            .about-text h2 { font-size: 2rem; }
            .about-text p { font-size: 16px; }
            .certificates { flex-direction: column; align-items: center; }
            .certificates .cert-item { width: 100%; max-width: 300px; height: auto; }
            
           
            /* 案例展示 */
            .cases { padding: 60px 4vw; grid-template-columns: 1fr; gap: 30px; }
            .case-card { height: auto; min-height: 320px; padding: 30px; }
            .case-card h3 { font-size: 1.2rem; }
            .case-card p { font-size: 14px; }
            
            .case-main-content {
                display: flex;
                flex-direction: column;
                gap: 30px;
                width: 100%;
                overflow: hidden;}
            .case-main-content img { max-width: 100%; height: auto; }

            /* 新闻中心 */
            .news { padding: 60px 4vw; grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: 1fr; }
            .news-card { padding: 30px; }
            .news-title { font-size: 1.2rem; }
            
           
       
            
            header { height: 70px; padding: 0 4vw; }
            .logo img { height: 50px; }
            .mobile-menu-btn { 
                display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px;
            }
            .mobile-menu-btn span {
                width: 25px; height: 2px; background: #333; transition: all 0.3s;
            }
            .nav-menu { display: none; }
            .nav-menu.mobile-open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                padding: 20px;
                gap: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                z-index: 99;
            }
            .page-header { padding: 120px 4vw 60px; min-height: auto; }
            .page-title { font-size: 42px; }
            .page-subtitle { font-size: 16px; }
            
            .case-main-title {   font-size: 24px;}
            .case-detail-section {    padding: 40px 4vw;}
            .case-meta {    flex-wrap: wrap;    gap: 15px;}
            .info-card {  padding: 25px; }
            .case-content h2 {font-size: 20px;}
            .cases-grid { grid-template-columns: 1fr; }
            .case-card { height: auto; min-height: 320px; }

             /* 业务领域 */
            .services { padding: 60px 4vw; }
            .service-item {align-items: center;justify-content: flex-start;flex-wrap: wrap; gap: 10px; padding: 20px; }
            .service-num { font-size: 14px;width: 80px; }
            .service-name { width: auto; font-size: 1.5rem;width: 100px;  }
            .service-desc {text-align: left; font-size: 14px; height: 0px; overflow: hidden;width: 100%;}
            .service-item.active .service-desc { height: auto; }

            .service-item{position: relative;}
            .service-item::before {
                content: '+';
                position: absolute;
                top: 33px;
                left: 300px;
                width: 20px;
                height: 20px;
                line-height: 20px;
                text-align: center;
                z-index: 1;
                font-size: 35px;
                display: block;
              
              
            }
            .service-item::after {
                content: '-';
                position: absolute;
                 top: 33px;
                left: 300px;
                width: 20px;
                height: 20px;
                line-height: 20px;
                text-align: center;
                z-index: 1;
                color: #fff;
                font-size: 35px;
                display: none;
            }
            .service-item.active::before {
                display: none;
            }
            .service-item.active::after {
                display: block;
            }
         

            .text-list li a { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 10px; }
            .text-list .title { font-size: 1.1rem; padding-right: 0; }
            .text-list .date { font-size: 0.9rem; }

            .lawyer-detail-section {padding: 40px 4vw;}
            .lawyer-photo-main {height: 360px;}
            .contact-grid {grid-template-columns: 1fr;}
            .cert-value {font-size: 14px;}
            .qr-section {flex-direction: column;text-align: center;}

            .section-title { font-size: 2.5rem; }
            .business-grid { grid-template-columns: 1fr; }
            .honors-gallery { grid-template-columns: repeat(2, 1fr); }
            .honors-header .section-title { font-size: 2.5rem; }
            .intro-stats { grid-template-columns: repeat(2, 1fr); }
            .qualifications-row { flex-direction: column; align-items: center; }
            .director-info h3 { font-size: 2rem; }
            
            /* 内容区域两侧添加padding */
            .intro-section { padding: 60px 4vw; }
            .business-section { padding: 60px 4vw; }
            .director-section { padding: 60px 4vw; }
            .honors-section { padding: 60px 4vw; }
            .intro-text p { text-indent: 0; }

            .contact-section { padding: 60px 4vw; }
            .contact-main-title { font-size: 1.8rem; margin-bottom: 40px; }
            .contact-content { grid-template-columns: 1fr; gap: 30px; }
            .contact-basic { padding: 30px; }
            .person-contact { flex-direction: column; gap: 5px; }

            .filter-bar { padding: 30px 4vw; }
            .team-section { padding: 40px 4vw; }
            .team-grid { grid-template-columns: 1fr; gap: 30px; }
            .lawyer-photo-wrap { height: 320px; }

            /* 页脚 */
            footer { padding: 40px 4vw 20px; }
            .footer-contacts { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
            .footer-bottom { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
            .huge-text { font-size: 2rem; }
     
            .footer-address { font-size: 12px; padding: 15px 0; }
           
            .copyright { font-size: 12px; }
            

        }

         @media (max-width: 480px) {
            .page-title { font-size: 32px; }
            .lawyer-photo-wrap { height: 280px; }
            .lawyer-name { font-size: 20px; }
            .pagination { flex-wrap: wrap; }
            .case-main-title {font-size: 20px;}
            .info-card {padding: 25px;}
            .lawyer-name-main {font-size: 24px;}

            .section-title { font-size: 2rem; }
            .honors-header .section-title { font-size: 2rem; }
            .stat-number { font-size: 2rem; }
            .stat-item { padding: 25px; }
            .honors-gallery { grid-template-columns: 1fr; }
            .business-card { padding: 35px 25px; }

            .hero-slide:first-child h1 { font-size: 36px; }
            .hero-slide:first-child .text-outline { font-size: 18px; }
            .about-text h2 { font-size: 1.5rem; }
            .service-name { font-size: 1.2rem; }
         
        }


