﻿
.container1{
	/* 此处宽度为div宽度 ，rem单位是响应式布局*/
    width: 71.875rem; 
    /* 相对定位 */
    position: relative;
    /* 溢出隐藏 */
    overflow: hidden;
}
.container1 ul{
	/* 增删图片后,此处大小为每张图片大小乘以图片张数 */
    width: 3000px;
    height: 300px;
    overflow: hidden;
    display: flex;
    position: relative;
}
.container1 li{
    list-style: none;
    height: 100%;
    padding-right: 5px;
}
.container1 li img{
    width: 500px;
    height: 300px;
    /* 保持原有尺寸比例，裁切长边 */
    object-fit: cover;
    /* 图片定位正中间 */
    object-position: center;
}
