1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* pages/stuList/stuList.wxss */
- /* 头部搜索区 */
- .searchContainer{
- display: flex;
- height: 60rpx;
- line-height: 60rpx;
- margin-left: -20rpx;
- /* border-bottom: 1rpx solid red; */
- justify-content: space-around;
- font-size: 28rpx;
- }
- /* 间隔线 */
- .stuListInterval{
- height: 10rpx;
- margin-left: -20rpx;
- background-color: #F1F1F1;
- }
- /* 学生列表区 */
- .stuListContainer{
- margin-left: 20rpx;
- font-size: 28rpx;
- position: relative;
- }
- .stuListDetail{
- display: flex;
- }
- /* 左侧部分 */
- .stuLeft{
- display: flex;
- flex-direction: column;
- width: 60%;
- margin-top: 10rpx;
- }
- .stuTitle{
- font-weight: bold;
- color: yellowgreen;
- }
- .stuDesc{
- margin: 20rpx 0;
- }
- /* 右侧部分 */
- .stuRight{
- display: flex;
- flex-direction: column;
- position: absolute;
- right: 20rpx;
- color: #979797;
- margin-top: 10rpx;
- }
- .salary{
- color: #FF970F;
- }
|