/* css reset 重置样式 */ body{ margin: 0; } ul{ padding: 0; margin: 0; } li{ list-style: none; } /* 工具类 */ .clearfix::after{ content: ""; display: block; /* 清除所有方向的浮动 */ clear: both; } /* 左侧图片部分 */ .left-img{ height: 100vh; width:375px; float: left; /* ../ 表示返回上一级目录*/ background-image: url("../img/banner.jpg"); background-size: cover; background-position: center center; } /* 登录页面主要功能部分 */ .right-content{ height: 100vh; width: calc(100vw - 375px); background-color: #f5f5f5; float: left; }