 .info-table {
     border-collapse: collapse;
     width: 100%;
     font-family: Arial, sans-serif;
 }

 .info-table td {
     padding: 10px 8px;
     border: none;
     vertical-align: top;
 }

 .info-table td:first-child {
     font-weight: bold;
     width: 120px;
     color: #000000;
 }

 .info-table td:last-child {
     font-weight: bold;
     color: #000000;
 }




 /* =========================
   公司简介区域
========================= */

.service-grid1{
    display:grid;
    grid-template-columns:700px 350px;
    justify-content:space-between;
    align-items:start;
    gap:100px;
}

.company-title {
    text-align: left;
    margin-bottom: 30px;
}

/* =========================
   平板（1024px以下）
========================= */

@media (max-width:1200px){

    .service-grid1{
        grid-template-columns:1.6fr 1fr;
        gap:60px;
    }

}

/* =========================
   小平板（900px以下）
========================= */

@media (max-width:900px){

    .service-grid1{
        grid-template-columns:1fr;
        gap:50px;
    }

    /* 图片区域居中 */
    .service-card:last-child{
        text-align:center;
    }

    .service-card:last-child img{
        max-width:350px;
        width:100%;
        margin:auto;
    }

}

/* =========================
   手机（768px以下）
========================= */

@media (max-width:768px){

    .service-grid1{
        grid-template-columns:1fr;
        gap:40px;
    }

    .info-table{
        width:100%;
    }

    .info-table td{
        padding:12px 6px;
        font-size:14px;
    }

    .info-table td:first-child{
        width:110px;
        min-width:110px;
        white-space:nowrap;
    }

    .service-card:last-child img{
        max-width:280px;
    }

}

/* =========================
   小屏手机（480px以下）
========================= */

@media (max-width:480px){

    .info-table td{
        font-size:13px;
        padding:10px 4px;
    }

    .info-table td:first-child{
        width:90px;
        min-width:90px;
    }

    .service-card:last-child img{
        max-width:220px;
    }

}
