/* 内容栏 */
.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;
}

@media screen and (max-width: 1480px) {
    .layout {
        max-width: 97%;
    }
}

@media screen and (max-width: 1080px) {
    .inner_content .inner_about {
        font-size: 14px;
        line-height: 30px;
    }
}

.inner_content .inner_about {
    width: 100%;
    margin: 30px 0;
    font-size: 15px;
    color: #444;
    line-height: 34px;
    overflow: hidden;
}

ul, ol {
    list-style: none;
}

.Ulimg li {
    float: left;
    width: 23%;
    margin-left: 2%;
    text-align: center;
    margin-bottom: 1.5%;
}

a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

/* 图片列表样式 */
.UIimg ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

.UIimg li {
    width: 32%; /* 三列布局，留一点间距 */
    margin-bottom: 20px;
}

.UIimg img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd; /* 可选边框 */
    transition: transform 0.3s ease;
}

.UIimg img:hover {
    transform: scale(1.02); /* 悬停轻微放大效果 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}