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

        }

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

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

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

        /* 响应式调整 */





        /* 律师列表样式 */

        .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: #999;
            margin-bottom: 5px;
        }

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

        /* 律师介绍与办公地点 */
        .leftContent h4 {
            font-size: 22px;
            font-weight: 400;
        }

        .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: #121212;
        }

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

        /* 获赠锦旗 */

        .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: auto;
             /* object-fit: cover; */
            border-radius: 4px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

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

        /* 相关案例 */

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

        .case-title {
            font-size: 16px;
            margin-bottom: 10px;
            color: #121212;
            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: 38px;
            background: url('../jiangzuoxqimg/xjangbfn2.png') no-repeat center center;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: center;
            margin: 20px 0;
        }

        .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: 410px;
            /* transition: box-shadow 0.3s; */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

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

        .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 .banner_btn {
            height: 51px;
            background: #CC9522;
            text-align: center;
            color: rgba(255, 255, 255, 1);
            font-weight: 700;
            border-radius: 300px;
            margin-top: 40px;
            margin-left: 15px;
            font-size: 20px;
        }

        .banner {
            position: relative;
            height: 525px;
            /* margin-top: 50px; */
            display: flex;
            justify-content: center;
            max-width: 2560px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 公共的banner */
        .banner_bg {
            width: 100%;
            height: 100%;
        }

        .banner_box {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 2;
            padding: 0 20px;
        }

        .banner_content {
            max-width: 100%;
        }

        .banner_title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .banner_subtitle {
            font-size: 48px;
            margin-bottom: 25px;
            font-weight: bold;
            opacity: 0.9;
        }

        .banner_btn {
            display: inline-block;
            background-color: #CC9522;
            color: #fff;
            padding: 12px 64px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .banner_btn:hover {
            background-color: #CC9522;
            transform: translateY(-2px);
        }


        .breadcrumb a:hover {
            opacity: 0.8;
        }

        /* banner红色字体 */
        .banner_color .banner_box {
            color: #CC9522;
        }

        .center-pagination {
            justify-content: right;
            width: 66%;
        }

        .leftContent {
            width: 67%;
        }

        .lawyer-intro {
            position: relative;
        }

        .publications-lawyer-show-des-btn {
            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;
        }

        /* 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: 10px;
            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);
        }

        .extracted-style-0 {
            width: 100%;
        }

        .extracted-style-1 {
            width: 60%;
            height: 0.5px;
            background-color: #999;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .extracted-style-2 {
            margin-top: 10px;
        }

        .extracted-style-3 {
            display: flex;
        }

        @media (max-width: 1560px) {

            .container,
            .footer-container {
                max-width: 1560px;
            }
        }

        @media (max-width :1024px) {
            .container {
                width: 100%;
            }

            .leftContent {
                width: 50%;
            }

            .publications-lawyer {
                width: 45%;
            }
        }

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

            .publications-lawyer {
                display: none;
            }

            .leftContent {
                width: 100%;
            }
        }

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

            .banner {
                height: 200px;
            }

            .banner-content h2 {
                font-size: 20px;
            }
        }
        .banner_btn{
  margin-left: 0!important;
}
.banner_title{
    margin-bottom: 0!important;
}
.banner_subtitle{
    margin-bottom: 0!important;
}
.banner_content{
    padding: 0 20px;
}