/* 页面的主题部分，也称为"版心" */
.container{
    /* 设置成固定宽度，水平居中 */
    width: 1000px;
    /* 表示上下外边距是0，左右外边距是水平居中，设置成auto浏览器自动调节 */
    margin:0 auto;
    /* 设置高度，和浏览器高度一样高 */
    /* height:100%; */
    height:calc(100% - 50px);
    /* background-color:rgba(255, 255, 255, 0.6); */
    /* 对container中的元素设置弹性布局 */
    display:flex;
     /* 让container中的元素紧靠左右边界，中间等间距等间距铺开 */
    justify-content: space-between;
}
.container-left{
    height:100%;
    width:200px;
    
}
.container-right{
    height:100%;
    /* 留出5px的缝隙 在container中使用justify-content: space-between;让元素紧靠左右两边，中间等间距铺开，这样留出的缝隙就在中间了*/
    width:795px;
    
}