/* 内容栏 */
.banner {
    width: 100%;
    overflow: hidden; /* 防止图片溢出 */
}

.banner img {
    margin-top: 132px;
    display: block;
    width: 100%; /* 强制宽度 100% */
    height: auto; /* 高度自适应 */
}

.inner_content {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.contact .list {
    background-color: #f8f8f8;
    border: 10px solid #e5e5e5;
    padding: 40px 20px;
    margin-top: 35px;
    display: flex;
    justify-content: space-between; /* 大屏时紧密排列 */
    flex-wrap: wrap;
}

.contact .list dl {
    width: 30%; /* 固定宽度 */
    margin-bottom: 3.2%;
}

.contact .list .d1 {
    width: 30%;
}

.contact .list .d2 {
    width: 30%;
    margin-left: 4.5%;
}

.contact .list .d3 {
    width: 30%;
    margin-left: 4.5%;
}

.contact .list dt {
    font-size: 17px;
    color: #009049;
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.layout {
    max-width: 1480px;
    margin: 0 auto;
}



@media screen and (max-width: 1480px) {
    .contact .list {
        justify-content: center; /* 改为居中 */
        gap: 4.5%;              /* 添加间距 */
    }
    .contact .list dl {
        margin-left: 0 !important; /* 移除旧版 margin */
    }

    .layout {
        max-width: 97%;
    }
}