1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* pages/findStudent/findStudent.wxss */
- .studentWrapper{
- height: 100%;
- background-color: #E2F0D9;
- padding: 20rpx;
- }
- .studentList{
- display: flex;
- position: relative;
- /* border: 1rpx solid gray; */
- border-radius: 20rpx;
- background-color: #FFF2CC;
- margin-bottom: 20rpx;
- }
- /* 左侧部分 */
- .studentLeft{
- padding: 10rpx;
- font-weight: bold;
- font-size: 28rpx;
- }
- .studentLeftTitle,
- .studentExpect,
- .studentNeedCourse{
- padding: 6rpx 0;
- }
- /* 科目 */
- .studentNeedCourse{
- display: flex;
- }
- /* 期望目标 */
- .studentExpect{
- display: flex;
- }
- /* 期望目标和需求科目详情 */
- .needCourse,
- .expect{
- margin-left: 10rpx;
- width: 160rpx;
- display: block;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- /* 右侧部分定位 */
- .studentRight{
- position: absolute;
- left: 65%;
- color: #FF0000;
- font-size: 28rpx;
- }
- .studentRight,
- .studentSex{
- padding: 10rpx 0;
- }
- /* 设置性别的字体 */
- .studentSex{
- font-weight: bold;
- color: #00B050;
- }
|