 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }
        
        body {
            background-color: #F9F9F9;
            color: #333;
        }
        
        a {
            text-decoration: none;
            color: #333;
        }
        
        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/liaxibanner.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 {
            margin-bottom: 20px;
            color: #999;
        }
        
        .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: #999;
            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: 1560px) {
            .container,
            .footer-container {
                /* width: 1460px; */
            }
        }
        
        @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;
            }
        }
        
        .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: #fff;
            margin-bottom: 20px;
        }
        
        .banner-btn {
            padding: 8px 35px;
            background-color: #fff;
            border: none;
            color: #CC9522;
            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: #999;
            margin-bottom: 5px;
        }
        
        .lawyer-business {
            font-size: 13px;
            line-height: 1.4;
            color: #999;
        }
        /* 律师介绍与办公地点 */
        
        .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 #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;
        }
        /* 获赠锦旗 */
        
        .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 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: grid;
            gap: 40px;
            grid-template-columns: repeat(2, 1fr);
        }
        
        .case-card {
            align-self: start;
            overflow: hidden;
            background-color: #fff;
            padding: 30px;
            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: 14px;
        }
        
        .case-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #CC9522;
            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;
            width: 100%;
            height: auto;
        }
        
        .img-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .zhankai-class {
            width: 20px;
            height: 20px;
            background: url('../gangweiimg/zhankaiicon.png') no-repeat center center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
        }

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

.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; */
            width: 100%;
            height: 525px;
            background: url('../img/liaxibanner.png') no-repeat center center;
            background-size: cover;
            position: relative;
        }
        
        .banner .overlay {
            height: 525px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner-content {
            width: 1560px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .banner-content h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .banner-content p {
            line-height: 1.8;
            color: #666;
        }
        .banner-title {
            font-size: 24px;
            color: #fff;
            margin-bottom: 20px;
        }
        
        .banner-btn {
            padding: 14px 70px;
            background-color: #fff;
            border: none;
            color: #CC9522;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 100px;
            margin-top: 30px;
        }
        .commonImg{
            position: relative
        }
        .commonImg .left{
            margin-bottom: 120px;
            width: 100%;
        }
        .commonImg .right{
            width: 655px;
            height: 606px;
            position: absolute;
            right: 0;
            top: 94px;
            background: url(../img/bg1Right.png) no-repeat center center;
            padding: 57px 62px;
            background-size: 100%;
        }
        .right .content{
            
        }
        .content .title{
            font-size: 38px;
            color: #fff;
        }
        .content .subtitle{
            font-size: 20px;
            color: #fff;
            margin-bottom: 20px;
        }
        .hr{
            border-bottom: 1px solid transparent;
            margin: 24px 0;
        }
        .banner-title{
            color: white;
            font-size: 80px;
        }
        .banner-subTitle{
            color: white;font-size: 30px;
        }
         @media (max-width:1024px) {
            .commonImg {
            }

        .commonImg .left img {
            height: 40vh;
            width: initial;

        }
        .commonImg .right {
            width: 355px;
            height: 355px;
            top: 6%;
        }
        .content .title{
            font-size: 18px;

        }
        .content .subtitle{
            font-size: 16px;
        }
        }

    @media (max-width:768px) {
        .commonImg .left img {
            height: 35vh;
            width: initial;

        }
        
        .commonImg .right {
            width: 285px;
            height: 355px;
            top: -2%;
            padding:57px 30px
        }
        .content .title{
            font-size: 16px;

        }
        .content .subtitle{
            font-size: 14px;
        }
    }
        @media (max-width:650px) {
        .commonImg .left img {
            height: 25vh;
            width: initial;

        }
        .commonImg .right {
            width: 285px;
            height: 355px;
            top: -12%;
            padding:77px 15px
        }
        .content .title{
            font-size: 14px;

        }
        .content .subtitle{
            font-size: 12px;
           
        }
        .hr{
            margin: 8px 0;
        }
    }

    @media (max-width:585px) {
        .commonImg .left img {
            height: 25vh;
            width: initial;

        }
        .commonImg .right {
            width: 205px;
            height: 355px;
            top: -20%;
            padding:100px 15px
        }
        .content .title{
            font-size: 14px;

        }
        .content .subtitle{
            font-size: 12px;
            margin-bottom: 0;
           
        }
        
    }
    .banner-title{
        font-size: 48px;
        margin-bottom: 0!important;
    }
    .banner-subTile{
        color: white;
        font-size: 48px;
        font-weight: 600;
    }