        .top-row-lx {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px; 
        }
        .card-box-lx {
            background: #ffffff;
            padding: 22px;
            border-radius: 10px;
            display: flex;
            gap: 20px;
            /* 新增悬浮过渡基础 */
            transition: all 0.3s ease;
        }
        /* 商务卡片悬浮特效 */
        .card-box-lx:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(212, 168, 110, 0.18);
        }
        .card-left-img-lx {
            width: 260px; 
            flex-shrink: 0;
            overflow: hidden;
            border-radius: 4px;
        }
        .card-left-img-lx img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        /* 图片轻微放大 */
        .card-box-lx:hover .card-left-img-lx img {
            transform: scale(1.05);
        }
        .card-text-lx h3 {
               color: #EAB983;padding-top: 0.2rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
        }
        .card-text-lxp {
               font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
        }
        .btn-orange-lx {
              color: #fff;
    border: none;
    padding: 6px 16px;
    font-size: 1.05rem;
    cursor: pointer;
    width: 145px;
    height: 45px;
    background: #E7B073;
    border-radius: 5px 5px 5px 5px;
    transition: all 0.3s ease;
        }
        /* 按钮悬浮变色 */
        .btn-orange-lx:hover {
            background: #d49b5c;
            box-shadow: 0 4px 12px rgba(231, 176, 115, 0.35);
        }
.displayfel{display: flex;
    flex-direction: column;
    justify-content: space-between;}
        /* 右侧关注我们卡片 */
        .follow-card-lx {
            background: #fff;
            padding: 22px;
            border-radius: 10px;
            display: flex;
            gap: 18px;
            align-items: flex-start;
            /* 悬浮过渡 */
            transition: all 0.3s ease;
        }
        /* 关注卡片悬浮效果 */
        .follow-card-lx:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(212, 168, 110, 0.18);
        }
        .qrcode-box {
           padding:15px;
         border-radius:10px;
        }
		 .qrcode-box img{width:320px; transition: transform 0.4s ease;}
         .follow-card-lx:hover .qrcode-box img {
             transform: scale(1.04);
         }
		.qrcode-box p{font-size:13px;text-align:center;padding-top:1rem}
        .follow-text h3 {
               color: #EAB983;padding-top: 0.2rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
        }
    
        .follow-text .en-text {
               font-size: 15px;
    color: #E7B073;
    margin-top: 50px;
    letter-spacing: 1px;
        }

        /* 全球办公室板块 */
        .section-title-lx {
            text-align: center;
            margin-bottom: 35px;
        }
         
        .section-title-lx p {
            text-align: center;
    font-size: 16px;
    color: #666666;
    padding-top: 0.3rem;padding-bottom:1rem
        }
        .office-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px; 
        }
        .office-item {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            position: relative; 
            border: 1px solid #fff;
            /* 过渡动画 */
            transition: all 0.3s ease;
        }
        .office-item:hover {
            border: 1px solid #d4a86e;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 168, 110, 0.15);
        }
        .office-item .icon-point {
            color: #d4a86e;
            font-size: 18px;
            margin-bottom: 10px;
        }
		.icon-point img{max-width:36px; transition: transform 0.3s ease;}
        .office-item:hover .icon-point img {
            transform: scale(1.1);
        }
        .office-item h4 {
              font-size: 1.7rem;
    color: #3D3D3D;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;padding-top:0.4rem;
        }
        .office-item p {
            font-size: 20px;
            color: #666;
            line-height: 1.7;
        }

        /* 业务咨询板块 */
        .service-section .section-title-lx {
            margin-bottom: 40px;
        }
        .service-grid-lx {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .service-item-yw {
            background: #f7f7f7;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        /* 业务卡片悬浮效果 */
        .service-item-yw:hover {
            transform: translateY(-6px);
            background: #fff;
            box-shadow: 0 10px 28px rgba(212, 168, 110, 0.16);
        }
        .service-icon {
            width: 100px;
            height: 100px;
     
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4a86e;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        .service-item-yw:hover .service-icon {
            background: rgba(231, 176, 115, 0.1);
        }
        .service-icon img {
            transition: transform 0.3s ease;
        }
        .service-item-yw:hover .service-icon img {
            transform: scale(1.12);
        }
        .service-item-yw h4 {
           color: #E7B073;
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
        }
        .service-item-yw p {
            font-size: 18px;
            color: #666;
        }
.maibgh{background:#F7F7F7}
.maibs{background:#fff}
.maibsaa{height:100%}
        /* 响应式适配 */
        @media screen and (max-width: 992px) {
            .top-row-lx {
                grid-template-columns: 1fr;
            }
            .office-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media screen and (max-width: 640px) {
            .office-grid, .service-grid-lx {
                grid-template-columns: 1fr;
            }
            .card-box-lx {
                flex-direction: column;
            }
            .card-left-img-lx {
                width: 100%;
                height: 160px;
            }
        }