* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }

        body {
            background-color: #F9F9F9;
            color: #121212;
        }

        a {
            text-decoration: none;
            color: #121212;
        }

        header {
            width: 100%;
            background-color: #F9F9F9;
            border-bottom: 1px solid #eee;
        }

        .nav-container {
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 100px;
            position: fixed;
            z-index: 2;
            background-color: white;
        }

        .logo {
            width: 150px;
        }

        .nav-list {
            display: flex;
            list-style: none;
        }

        .nav-list li {
            margin: 0 15px;
        }

        .banner {
            /* margin-top: 50px; */
            width: 100%;
            height: 300px;
            background: url('../img/jiangzuobanner.png') no-repeat center center;
            background-size: cover;
            position: relative;
        }

        .banner .overlay {
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-content {
            width: 1560px;
            padding: 0 20px;
        }

        .banner-content h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #333;
        }

        .banner-content p {
            line-height: 1.8;
            color: #666;
        }

        .container {
            width: 1560px;
            margin: 0px auto;
        }

        .breadcrumb {
            color: #000;
        }

        .case-filter {
            margin-bottom: 20px;
        }

        .case-filter a {
            margin-right: 15px;
            color: #666;
        }

        .case-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .case-item {
            width: 31%;
            background-color: #fff;
            border: 1px solid #eee;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            transition: box-shadow 0.3s ease;
        }

        .case-item:hover {
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }

        .case-item .date {
            color: #000;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .case-item h3 {
            font-size: 16px;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .case-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }



        /* 响应式调整 */

      
        .zixun-button {
            height: 30px;
            padding: 0 10px;
            background-color: #e3c78d;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            color: white;
        }

        .footer-logo {
            width: 250px;
            height: 150px;
        }

        .banner-title {
            font-size: 24px;
            color: #CC9522;
            margin-bottom: 20px;
        }

        .banner-btn {
            padding: 8px 35px;
            background-color: #CC9522;
            border: none;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            border-radius: 20px;
        }

        /* 律师列表样式 */

        .lawyer-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 20px;
        }

        .lawyer-item {
            width: calc(30% - 20px);
            margin-bottom: 20px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            overflow: hidden;
            display: flex;
        }

        .lawyer-avatar {
            border-radius: 4px 4px 0px 0px;
            width: 100%;
            height: 160px;
             /* object-fit: cover; */
        }

        .lawyer-info {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .lawyer-name {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .lawyer-location {
            font-size: 14px;
            color: #000;
            margin-bottom: 5px;
        }

        .lawyer-business {
            font-size: 13px;
            line-height: 1.4;
            color: #000;
        }

        /* 律师介绍与办公地点 */

        .intro-section {
            display: flex;
            margin-bottom: 40px;
            flex-direction: row;
        }

        .lawyer-intro,
        .office-location {
            flex: 1;
            min-width: 200px;
            border-radius: 4px;
        }

        .lawyer-intro h3,
        .office-location h3,
        .banner-section h3,
        .related-cases h3 {
            font-size: 20px;
            margin-bottom: 15px;
            border-left: 4px solid #f7c37b;
            padding-left: 10px;
            color: #333;
        }

        .lawyer-intro p,
        .office-location p {
            margin-bottom: 15px;
        }

        .office-location img {
            width: 90%;
            height: 200px;
            border-radius: 4px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        }

        .case-list li {
            margin-bottom: 10px;
            line-height: 1.6;
            position: relative;
            padding-left: 20px;
        }

        .case-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #f7c37b;
            font-weight: bold;
        }

        /* 获赠锦旗 */


        .case-card p{
            margin-bottom: 0;
        }
        /* 相关案例 */

        .related-cases {
            margin-bottom: 40px;
        }

        .related-cases h3 {
            margin-bottom: 20px;
        }

        .case-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .case-card {
            flex: 1 1 calc(50% - 20px);
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            min-width: 300px;
            /* transition: box-shadow 0.3s; */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .case-card:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        }

        .case-date {
            color: #666;
            margin-bottom: 10px;
            font-size: 30px;
        }

        .case-title {
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
            font-weight: 500;
        }

        .case-info li {
            margin-bottom: 5px;
            line-height: 1.6;
            font-size: 14px;
        }

        /* 图片悬停效果 */

        .img-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .img-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .wengbg-class {
            width: 60%;
            height: 55px;
            background: url('../img/xjangbfn2.png') no-repeat center center;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: center;
            margin: 40px 0;
            background-size: 100%;
        }

        .rig-class {
            margin-left: 5%;
            width: 25%;
            background-color: #fff;
            padding: 20px;
            height: 750px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            min-width: 300px;
            /* transition: box-shadow 0.3s; */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .rightContent {
            width: 67%;
        }

        /* 公共的面包屑 */
        .breadcrumb {
            display: flex;
            align-items: center;
            padding: 20px 0;
            font-size: 18px;
            padding-top: 30px;
            color: #CC9522;
            padding-bottom: 32px;
        }

        .breadcrumb .home-icon {
            width: 32px;
            height: 32px;
            vertical-align: middle;
            margin-right: 16px;
        }

        .breadcrumb .separator {
            margin: 0 8px;
            color: #CC9522;
        }

        .breadcrumb .current {
            color: #CC9522;
        }

        .breadcrumb a {
            display: flex;
            align-items: center;
            color: #CC9522;
        }

        .breadcrumb a:hover {
            opacity: 0.8;
        }

        .banner {
            /* margin-top: 50px; */
            max-width: 2560px;
            height: 525px;
            background: url('../img/jiangzuobanner.png') no-repeat center center;
            background-size: cover;
            position: relative;
        }

        .banner .overlay {
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-content {
            width: 1560px;
            padding: 0 20px;
        }

        .banner-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #333;
        }

        .banner-content p {
            line-height: 1.8;
            color: #666;
        }

        .container {
            width: 1560px;
            margin: 40px auto;
            margin: 0 auto;
        }




        .leftContent {
            width: 67%;

        }

        /* h4{
            font-size: 22px;
            font-weight: 400;
        } */
        .leftContent h4 {
            font-size: 24px;
            font-weight: 600;
        }

        .related-cases {
            font-size: 22px;
            font-weight: 400;
            color: #333;
        }

        .banner-section h4 {
            font-size: 22px;
            font-weight: 400;
            color: #000;
        }

        .lawyer-intro {
            position: relative;
        }

        .publications-lawyer-show-des-btn {
            font-size: 16px;
            line-height: 46px;
            font-weight: 600;
            text-align: right;
            color: #cc9522;
            cursor: pointer;
            margin-bottom: 0!important;
        }

        .publications-lawyer-show-des-btn a {
            vertical-align: middle;
            display: inline-flex;
            align-items: center;
            height: 46px;
        }

        .publications-lawyer-show-des-btn img {
            width: 20px;
            height: 20px;
            display: block;
        }

        /* Publications card styles (from Work page) */
        .publications-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            display: flex;
            position: relative;
            padding: 15px;
            min-height: 180px;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.2s;
            border: 2px solid transparent;
            margin-bottom: 30px;
            height: 320px;
        }

        .publications-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 2px 10px 24px rgba(0, 0, 0, 0.15);
        }

        .publications-card-img {
            width: 230px;
            padding: 20px 30px;
            transition: transform 0.45s ease;
        }

        .publications-card:hover .publications-card-img {
            transform: scale(1.06);
        }

        .publications-card-content {
            flex: 1;
            overflow: hidden;
        }

        .publications-title {
            font-size: 28px;
            font-weight: bold;
            margin-top: 12px;
            color: #CC9522;
            margin-bottom: 20px;
        }

        .publications-title a {
            color: #CC9522;
        }

        .publications-desc {
            font-size: 18px;
            color: #585656;
            margin-bottom: 12px;
            line-height: 30px;
            overflow: hidden;
        }

        .publications-meta {
            font-size: 20px;
            color: #585656;
            display: flex;
            border-top: 1px solid #ECECEC;
            padding-top: 20px;
            margin-bottom: 10px;
        }

        .publications-meta-left {
            width: 60%;
            display: inline-block;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            padding-right: 20px;
        }

        /* Fix consult button bottom spacing */
        .publications-lawyer-show-des {
            position: relative;
            padding-bottom: 56px;
        }

        .publications-lawyer-show-des-btn {
            position: absolute;
            right: 0;
            bottom: 20px;
            font-size: 16px;
            line-height: 46px;
            font-weight: 500;
            text-align: right;
            color: #cc9522;
            cursor: pointer;
        }

        .publications-lawyer-show-des-btn a {
            vertical-align: middle;
            display: inline-flex;
            align-items: center;
            height: 46px;
        }

        .publications-lawyer-show-des-btn img {
            width: 20px;
            height: 20px;
            display: block;
        }

        /* Hover effects for right-side lawyer items */
        .publications-lawyer-show {
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        .publications-lawyer-show:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }

        .publications-lawyer-show-img img {
            transition: transform 0.45s ease;
            will-change: transform;
        }

        .publications-lawyer-show:hover .publications-lawyer-show-img img {
            transform: scale(1.06);
        }

        /* Anchor for absolute positioned sidebar like work page */
        .container {
            position: relative;
        }

        /* === 优秀律师 1:1 from work/css/publications.css === */
        .publications-lawyer {
            width: 30%;
            position: absolute;
            top: 10px;
            right: 0;
            background-color: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .publications-lawyer-title {
            font-size: 24px;
            line-height: 24px;
            color: #cc9522;
            margin-bottom: 36px;
            font-weight: 600;
        }

        .publications-lawyer-show {
            display: flex;
            margin-bottom: 38px;
            border-bottom: 1px solid #cc9522;
        }

        .publications-lawyer-show-img {
            width: 44%;
            display: grid;
            align-items: end;
        }

        .publications-lawyer-show-img img {
            width: 100%;
        }

        .publications-lawyer-show-des {
            margin-left: 20px;
            flex: 1;
        }

        .publications-lawyer-show-des-name {
            font-size: 24px;
            line-height: 24px;
            color: #cc9522;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .publications-lawyer-show-des-ul {
            font-size: 12px;
            line-height: 22px;
            color: rgba(18, 18, 18, 1);
            font-weight: 400;
        }

        .publications-lawyer-show-des-ul li {
            list-style-type: disc;
        }

        .publications-lawyer-show-des-ul li::marker {
            color: rgba(18, 18, 18, 1);
            font-size: 6px;
        }

        .publications-lawyer-show-des-btn {
            font-size: 16px;
            line-height: 46px;
            font-weight: 500;
            text-align: right;
            color: #cc9522;
            cursor: pointer;
            padding-top: 30px !important;
            position: static;
            right: auto;
            bottom: auto;
        }

        .publications-lawyer-show-des-btn img {
            margin-left: 20px;
            margin-right: 15px;
            width: 20px;
            padding-bottom: 4px;
        }

        /* Reset earlier hover/position overrides to match exactly */
        .publications-lawyer-show {
            transition: none;
            border-radius: 0;
        }

        .publications-lawyer-show:hover {
            transform: none;
            box-shadow: none;
        }

        .publications-lawyer-show-img img {
            transition: none;
        }

        .publications-lawyer-show:hover .publications-lawyer-show-img img {
            transform: none;
        }

        .publications-lawyer-show-des {
            position: static;
            padding-bottom: 0;
        }
  

        /* Bottom align lawyer image and consult button */
        .publications-lawyer-show-img {
            display: flex;
            align-items: flex-end;
        }

        .publications-lawyer-show-des {
            position: relative;
            padding-bottom: 56px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .publications-lawyer-show-des-btn {
            position: absolute;
            right: 0;
            bottom: 10px;
            padding-top: 0 !important;
        }

        /* Dropdown submenu styles */
        .menu {
            position: relative;
        }

        .menu .menu-item {
            position: relative;
        }

        .menu .menu-item>a {
            display: inline-block;
            padding: 12px 10px;
        }

        .menu .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: none;
            border-radius: 0;
            box-shadow: none;
            min-width: 120px;
            padding: 6px 0;
            margin: 0;
            z-index: 1000;
        }

        .menu .submenu li {
            list-style: none;
        }

        .menu .submenu a {
            display: block;
            padding: 8px 14px;
            color: #121212;
            white-space: nowrap;
        }

        .menu .submenu a:hover {
            background: #f5f5f5;
            color: #cc9522;
        }

        .menu .menu-item:hover>.submenu {
            display: block;
        }

        /* Submenu visual refinements: bottom radius + shadow, seamless top edge */
        .menu .submenu {
            border: 1px solid #eee;
            border-top: none;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }

        .menu .submenu a {
            background: #fff;
        }

     

        /* Theme-following caret color states */
        .menu .menu-item.has-sub>a::after {
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .menu .menu-item>a:hover::after,
        .menu .menu-item>a:focus-visible::after,
        .menu .menu-item>a.active::after,
        .menu .menu-item.open>a::after {
            border-right-color: #cc9522;
            border-bottom-color: #cc9522;
        }
           /* Mobile navigation with second-level menus */
       

        /* 获赠锦旗：单行排列，左右间距60 */
        .banner-list {
            display: flex;
            flex-wrap: nowrap;
            gap: 60px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .banner-item {
            flex: 0 0 auto;
        }

        /* 获赠锦旗：悬浮仅显示阴影，无白色背景 */
        .banner-item {
            background-color: transparent;
        }

        .banner-list .img-hover:hover {
            box-shadow: none;
            transform: none;
            background-color: transparent;
        }

        .banner-item img {
            display: block;
            border-radius: 8px;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            box-shadow: none;
            background-color: transparent;
        }

        .banner-item:hover img {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
            background-color: transparent;
        }

        .banner-list {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
            flex-wrap: wrap;
        }

        .banner-item {
            flex: 0 0 auto;
        }

        .banner-item img {
            width: 200px;
            height: 250px;
             /* object-fit: cover; */
            border-radius: 4px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .banner-item img:hover {
            transform: scale(1.06);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
        }

        .office-location img:hover {
            transform: scale(1.06);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }

        .banner-section {
            /* margin-bottom: 40px; */
        }

        .banner-section h3 {
            margin-bottom: 20px;
        }

        .awards-item {
            break-inside: avoid;
            /* 防止项目被分割到不同列 */
            margin-bottom: 48px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding-bottom: 20px;
            /* 添加与testimonial-item一致的padding */
        }

        .awards-item:hover {
            /* transform: translateY(-5px); */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .awards-img {
            width: 100%;
            overflow: hidden;
            justify-content: center;

        }

        .awards-img img {
            width: 309px;
            height: 360px;
            margin: 0 auto;
            /* height: 558px; */
            display: block;
            transition: transform 0.5s ease;
        }

        .awards-item:hover .awards-img img {
            transform: scale(1.05);
        }

        .awards-text {
            padding: 15px 10px;
            /* 修改padding，顶部留间距，左右不需要因为item已有padding */
            margin: 0;
            font-size: 16px;
            color: #211512;
            line-height: 1.5;
            word-wrap: break-word;
            overflow-wrap: break-word;
            text-align: left;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            border-radius: 4px;
            /* 移除高度限制和文本截断相关样式，使其与testimonial-text一致 */
        }

        .banner-title {
            font-size: 48px;
            color: #CC9522;
            margin-bottom: 40px;
        }

        .banner-subTitle {
            margin-bottom: 15px;
        }

        .banner-btn {
            padding: 12px 64px;
            background-color: #CC9522;
            border: none;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            border-radius: 100px;
        }
        .case-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        justify-content: center;
    }
  
  .case-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 24px 20px;
    min-height: 180px;
  }
  .case-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    background: linear-gradient(180deg, #E3c78d 0%, #d8a12d 100%);
    color: #fff !important;
  }

  .case-card:hover span {
    color: #fff !important;
  }

  .case-arrow-icon {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  }
  
  /* 鼠标移入父容器时，子元素向右移动30px */
  .case-card:hover .case-arrow-icon {
    transform: translateX(30px);
  }

  .case-card:hover img {
    filter: brightness(100);
  }
  

  .case-date {
    font-size: 28px;
    margin-bottom: 8px;
    color: rgba(102, 102, 102, 1);
    line-height: 30px;
  }
  .case-date span{
    font-size: 18px;
    color: rgba(102, 102, 102, 1);
    line-height: 20px;
  }
  .case-card:hover .case-date {
    color: #fff;
  }
  .case-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    margin-top: 12px;
    margin-bottom: 11px;
    color: #211512;
  }
  .case-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
    line-height: 24px;
    -webkit-line-clamp:2;
    
  }
  .case-card:hover .case-desc {
    color: #fff;
  }
  .case-card:hover .case-desc.underline {
    border-bottom: 3px solid #2196f3;
    padding-bottom: 2px;
    width: fit-content;
    margin-bottom: 12px;
  }
  .case-meta {
    font-size: 16px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
  }
  .case-meta div{display: flex;align-items: center; color: #888;}
  .case-meta div span{color: #888;}
  .case-meta-icon1{
        width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon1.png) no-repeat;
        background-size: 100% 100%;
        margin-right: 6px;
    }
  .case-card:hover .case-meta-icon1  {
    width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon_active1.png) no-repeat;
        background-size: 100% 100%;
        margin-right: 6px;
  }

  .case-meta-icon2{
    width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon2.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 6px;
}
.case-card:hover .case-meta-icon2 {
width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon_active2.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 6px;
}

.case-meta-icon3{
    width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon3.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 6px;
}
.case-card:hover .case-meta-icon3  {
width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon_active3.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 6px;
}
.case-meta-icon4{
    width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon4.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 6px;
}
.case-card:hover .case-meta-icon4  {
width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon4.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 6px;
}
.case-meta-icon5{
    width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon5.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 6px;
}
.case-card:hover .case-meta-icon5  {
width: 21px;height: 21px; margin: 5px 0; background: url(../img/icon5.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 6px;
}

  .case-card:hover .case-meta {
    color: #fff;
  }
  .case-arrow-icon{width: 20px;height: 20px; }
  .case-card:hover .case-arrow {
    color: #fff;
  }

  /* 悬浮时将箭头替换为背景图，保持现有位移动画与尺寸 */
  .case-arrow { position: relative; display: inline-block; }
  .case-card:hover .case-arrow-icon { opacity: 0; }
  .case-card:hover .case-arrow::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/arrow_active.png) no-repeat center/contain;
    vertical-align: middle;
    transform: translateX(30px);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  }


  .case-desc {
      font-size: 13px;
      line-height: 20px;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      -webkit-line-clamp:2;
  }
  
  .case-meta {
      font-size: 18px;
      flex-direction: column;
      flex-wrap: wrap;
      gap: 0px;
  }
  
  .case-meta div {
      margin-bottom: 0;
      margin-right: 10px;
  }
  
  .case-meta-icon {
      width: 16px;
      height: 16px;
      margin-right: 4px;
  }
  .case-date {
    font-size: 28px;
    margin-bottom: 8px;
    color: rgba(102, 102, 102, 1);
    line-height: 30px;
  }
  .case-date span{
    font-size: 18px;
    color: rgba(102, 102, 102, 1);
    line-height: 20px;
  }
  .case-card:hover .case-date {
    color: #fff;
  }
        /* 修复 case-meta 悬浮间距变大问题：锁定尺寸/间距/行高 */
        .case-meta{ display:flex; flex-direction:column; gap:6px; }
        .case-card:hover .case-meta{ gap:6px; }
        .case-meta div{ display:flex; align-items:center; gap:6px; margin:0 !important; }
        .case-meta div span{ line-height:1.4; }
        .case-card:hover .case-meta div span{ line-height:1.4; }
        .case-meta-icon1,.case-meta-icon2,.case-meta-icon3,.case-meta-icon4,.case-meta-icon5{
          flex: 0 0 21px; width:21px; height:21px; margin:0; background-size:100% 100%; background-position:center; background-repeat:no-repeat;
        }
        .case-card:hover .case-meta-icon1,.case-card:hover .case-meta-icon2,.case-card:hover .case-meta-icon3,.case-card:hover .case-meta-icon4,.case-card:hover .case-meta-icon5{
          flex: 0 0 21px; width:21px; height:21px; margin:0; background-size:100% 100%; background-position:center; background-repeat:no-repeat;
        }
    
.extracted-style-0 { width: 100%; }
.extracted-style-1 { width: 70%; }
.extracted-style-2 { width: 100%;height: 1px;background-color: #000;margin-top: 20px;margin-bottom: 20px; }
.extracted-style-3 { margin-top: 10px; }
.extracted-style-4 { width: 100%;height: auto; }
.extracted-style-5 { margin-left: 40px;color: white;font-size: 18px;font-weight: 600; }
.extracted-style-6 { margin-top: 30px;width:67%; }
.extracted-style-7 { width: 100%;height: 1px;background-color: #000;margin-top: 5px;margin-bottom: 40px; }
.extracted-style-8 { width:67%; }
.extracted-style-9 { display: flex; }

 @media (max-width: 1560px) {

            .container,
            .footer-container {
                max-width: 1560px;
            }
        }
 @media (max-width: 1024px) {
            .publications-lawyer {
                width: 100%;
                position: static;
                margin-top: 30px;
            }

            .publications-lawyer-title {
                font-size: 20px;
                margin-bottom: 20px;
                text-align: center;
            }

            .publications-lawyer-show {
                flex-direction: column;
                align-items: center;
                margin-bottom: 25px;
                padding-bottom: 15px;
            }

            .publications-lawyer-show-img {
                width: 50%;
                margin-right: 0;
                margin-bottom: 15px;
                max-width: 150px;
            }

            .publications-lawyer-show-des {
                text-align: center;
            }

            .publications-lawyer-show-des-name {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .publications-lawyer-show-des-ul {
                display: inline-block;
                text-align: left;
                margin: 0 auto;
                font-size: 14px;
                line-height: 24px;
            }

            .publications-lawyer-show-des-btn {
                margin-top: 10px;
            }
            .menu {
                position: static;
                display: none;
                flex-direction: column;
                background: #fff;
                gap: 0;
            }

            .menu.is-open {
                display: flex;
            }

            .menu .menu-item {
                width: 100%;
            }

            .menu .menu-item>a {
                padding: 14px 16px;
                width: 100%;
                border-bottom: 1px solid #eee;
            }

            .menu .submenu {
                position: static;
                display: none;
                border: none;
                border-radius: 0;
                box-shadow: none;
                padding: 6px 0;
                background: #fafafa;
            }

            .menu .menu-item.open>.submenu {
                display: block;
            }

            .menu .submenu a {
                padding: 10px 20px;
            }
             .menu .submenu {
                display: block;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-2px);
                transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
            }

            .menu .menu-item.open>.submenu {
                max-height: 600px;
                opacity: 1;
                transform: translateY(0);
            }
            .container{
                width: 100%;
                padding: 0 20px;
            }
            .leftContent{
                width: 55%;
            }
            .publications-lawyer{
                width: 40%;
                position: absolute;
                top: 10px;
                margin-top: 0;
                right: 0px;
            }
  
        }
        @media (max-width: 768px) {
            .nav-container {
                padding: 10px 20px;
            }
            .leftContent{
                width: 100%;
            }
            .extracted-style-6{
                width: 100%;

            }
            .banner-list{
                flex-wrap: nowrap;
            }
            .extracted-style-8{
                width: 100%;
            }
            .publications-lawyer{
                display: none;
            }
            .nav-list {
                display: none;
            }

            .case-item {
                width: 48%;
            }

            .consult .container {
                flex-direction: column;
                gap: 10px;
            }

            .consult input {
                width: 100%;
                margin: 0;
            }

            .footer-container {
                flex-direction: column;
                gap: 20px;
            }

            .footer-middle {
                width: 100%;
            }
            .case-list {
               grid-template-columns: repeat(1, 1fr);
            }
        }

        @media (max-width: 480px) {
            .case-item {
                width: 100%;
            }

            .banner {
                height: 200px;
            }

            .banner-content h2 {
                font-size: 20px;
            }
        }

        /* Responsive overrides consistent with work page */
        .toDetail{
            margin-top: 40px;
            font-size: 16px;
            
        }
        .left{
            margin-bottom: 10px;
            font-size: 500;
        }
        .left span,.right span{
            margin-left: 10px;
        }
        .right{
            font-size: 500;
        }
       
        .banner .banner_txt{
    transform: translate(0%);
    max-width: 1560px;
    height: 319px;
    top: 96px;
    /* left: 178px; */
    border-radius: 16px;
    border-left-width: 2px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: absolute;
    margin: 0 12%;
    padding: 52px 94px;
    /* padding-top: 64px; */
    display: flex;
    flex-direction: column;
    z-index: 10000;
}
.banner .banner_txt_1{font-size: 32px;
    font-weight: 700;
    color: #CC9522;
    line-height: 37px;
    letter-spacing: 0px;
    text-align: left;
}
.banner .banner_txt_2{font-size: 24px;
    font-weight: 400;
    color: #585656;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: left;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}
@media (max-width:1024px) {
    /* Banner区域适配 */
  .banner {
      /* height: 220px; */
      /* margin-top: 80px; */
  }
  
  .banner .banner_img {
      /* height: 220px;
      width: 100%; */
       /* object-fit: cover; */
  }
  
  .banner .banner_txt {
      /* width: 90%; */
      height: auto;
      top: 50%;
      /* left: 50%; */
      transform: translate(0%, -50%);
      padding: 20px;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.35);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  
  .banner .banner_txt_1 {
      font-size: 20px;
      line-height: 24px;
      text-align: center;
  }
  
  .banner .banner_txt_2 {
      font-size: 14px;
      line-height: 20px;
      margin-top: 15px;
      width: 100%;
      text-align: center;
  }
  
  .banner .banner_btn1 {
      width: 150px;
      height: 40px;
      line-height: 40px;
      font-size: 16px;
      margin: 20px auto 0;
  }
    
}