 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

        }

        body {
            background-color: #f9f9f9;
            color: #333;
        }

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

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

        .banner .overlay {
            width: 1560px;
            margin: 0 auto;
            /* position: absolute;
            top: 0;
            left: 0; */
            height: 100%;
            display: flex;
            align-items: center;
            /* 保持文字垂直位置不变 */
            justify-content: flex-start;
            /* 不影响左侧文本的起始位置 */
            padding: 0 80px;
            /* 恢复原有左右内边距，保持左侧文本位置 */
            column-gap: 160px;
            /* 左文与右图固定间距 */
            padding-left: 0;
        }

        .banner-content {
            width: auto;
            /* 不干预布局宽度，避免影响左右间距与图片大小 */
            padding: 20px 0;
            padding-left: 7%;
            padding-top: 150px;
        }

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

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

        .container {
            width: 1560px;
            padding: 0 20px;
            background: #F9F9F9;
        }

        /* .breadcrumb {
            margin-bottom: 20px;
            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; */
        }

        ul {}

        li {}

        .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;
        }

        .pagination {
            text-align: center;
            margin-top: 20px;
        }

        .pagination a {
            margin: 0 5px;
            color: #666;
        }


        /* 响应式调整 */

        @media (max-width: 1200px) {

            .container,
            .footer-container {
                width: 95%;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 10px 20px;
            }

            .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%;
            }
        }

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

            .banner {
                height: 200px;
            }

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



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

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

        .banner-right {
            display: flex;
            align-items: flex-end;
            /* 让图片容器底对齐 */
            height: 100%;
        }

        .banner-right img {
            display: block;
            /* 避免底部空隙影响对齐 */
            object-position: bottom;
            max-width: 100%;
            /* 防止溢出，但不强制缩放高度 */
        }

        /* 律师列表样式 */

        .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;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

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

        .lawyer-intro h3,
        .office-location h3,
        .banner-section h3,
        .related-cases h3 {
            font-size: 20px;
            margin-bottom: 15px;
            border-left: 4px solid #CC9522;
            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 4px 12px rgba(0, 0, 0, 0.12);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            will-change: transform;
        }

        .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: #CC9522;
            font-weight: bold;
        } */

        /* 获赠锦旗 */

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

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

        .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);
        }


        /* 相关案例 */

        .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: #000;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .case-title {
            font-size: 16px;
            margin-bottom: 10px;
            color: #000;
            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);
        }

        .font-bold {
            font-size: 48px;
        }

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

        .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;
        }

        .subTitle {
            color: #CC9522;
            font-size: 30px;
        }

        .awyer-intro h4 {
            font-size: 24px;
        }

        .centertext {
            margin-bottom: 36px !important;
        }

        .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;
            object-fit: cover;
        }

        .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一致 */
        }

        .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: #000;
            line-height: 30px;
        }

        .case-date span {
            font-size: 18px;
            color: #000;
            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);
        }

        .honorContent {
            width: 100%;
            height: 1px;
            background-color: #000;
            margin-top: 5px;
            margin-bottom: 30px;
        }

        .extracted-style-0 {
            display: flex;
            flex-direction: row;
            align-items: flex-end;
        }

        .extracted-style-1 {
            color: black;
            margin-left: 20px;
            font-size: 30px;
        }

        .extracted-style-2 {
            font-size: 40px;
            color: black;
        }

        .extracted-style-3 {
            width: 574px;
            background-color: #000;
            margin-top: 10px;
            color: #000;
            height: 1px;
        }

        .extracted-style-4 {
            margin-top: 10px;
            font-size: 20px;
        }

        .extracted-style-5 {
            flex: 2;
        }

        .extracted-style-6 {
            width: 100%;
            height: 1px;
            background-color: #000;
            margin-top: 5px;
            margin-bottom: 30px;
        }

        .extracted-style-7 {
            margin-top: 16px;
        }

        .extracted-style-8 {
            margin-top: 5px;
        }

        .extracted-style-9 {
            margin-top: 30px;
        }

        .extracted-style-10 {
            display: flex;
        }
        @media (max-width:1024px){
            .banner-list{
                flex-wrap:nowrap;
            }
            .banner{
                height: 300px;
            }
            .banner-right{
                min-width: 240px;
                max-width: 260px;                
            }
            .banner .overlay{
                width: 100%;
            }
            .font-bold{
                font-size: 24px;
            }
            .extracted-style-1{
                font-size: 16px;
            }
            .extracted-style-2{
                font-size: 18px;
            }
            .extracted-style-3{
                width: 100%;
            }
            .extracted-style-4{
                font-size: 14px;
            }
            .banner-content{
                min-width: 215px;
            }
        }

        @media  (max-width:650px) {
            .banner .overlay{
                padding: 0 ;
                column-gap: 0px;
            }
        }
        .text-center{
    max-width: 610px;
}