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

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

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



        .banner {
            /* margin-top: 50px; */
            width: 100%;
            min-height: 525px;
            background: url('../img/image13.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;
            display: flex;
            justify-items: center;
            align-items: center;
            flex-direction: column;
        }

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

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

        .container {
            margin: 0 auto;
            max-width: 1560px;
            padding: 0 20px;
        }



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



      

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

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

        .banner-btn {
            padding: 12px 64px;
            background-color: #fff;
            border: none;
            color: #CC9522;
            font-size: 20px;
            cursor: pointer;
            border-radius: 100px;
            margin-top: 10px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
            will-change: transform, box-shadow;
        }

        .banner-btn:hover{
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 10px 24px rgba(204,149,34,0.28), 0 2px 6px rgba(0,0,0,0.06);
            color: #b88410;
        }

        .banner-btn:active{
            transform: translateY(0) scale(1.0);
            box-shadow: 0 6px 16px rgba(204,149,34,0.22);
        }

        .banner-btn:focus-visible{
            outline: 2px solid rgba(204,149,34,0.6);
            outline-offset: 2px;
        }

        /* 律师列表样式 */

        .lawyer-list {
           
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            padding: 32px 0px;
            justify-content: center;
             flex-wrap: wrap;
        }

        .lawyer-item {
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            will-change: transform, box-shadow;
        }

        .lawyer-avatar {
            border-radius: 8px 8px 0px 0px;
            width: 100%;
            height: 268px;
            transition: transform 0.45s ease;
            will-change: transform;
        }

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

        .lawyer-name {
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: 600;
        }

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

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

        /* 悬浮动效：卡片上浮、阴影增强，图片放大 */
        .lawyer-item:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
        }

        .lawyer-item:hover .lawyer-avatar {
            transform: scale(1.06);
        }

        /* 公共的面包屑 */
        .breadcrumb {
            display: flex;
            align-items: center;
            padding: 52px 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;
        }
        .lawyer-business-time{
            margin-top: 5px;
        }
        .businessCard{
            padding: 20px;
        }
          @media (max-width: 1560px) {

            .container,
            .footer-container {
                /* width: 1460px; */
            }
        }
@media (max-width :1024px) {
            .banner-title{
                font-size: 48px;
            }
            .lawyer-list{
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @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: row;
                gap: 20px;
            }

            .footer-middle {
                width: 100%;
            }
        }
        
        @media (max-width:650px) {
            .lawyer-list{
                grid-template-columns: repeat(1, 1fr);
            }
        }
        @media (max-width: 480px) {
            .banner-title{
                font-size: 24px;
            }
            .banner-btn{
                font-size: 14px;
            }
            .case-item {
                width: 100%;
            }

            .banner {
                height: 200px;
            }

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