/*  相对定位，宽度 ，高度 ，背景颜色  */
.he {
    position: relative;  
    width: 100%;  
    height: 600px;  
    background-color: #f8f8f8;  
}

/* 宽度，高度，背景图片填充方式*/
.back-g {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.center-container{
    display:grid;
    grid-template-columns:90%;
    justify-content: space-around;
    align-items: center;
}

/* 响应式设计 */
@media (max-width: 820px) {
    .he {
        height: 300px; 
    }
}

