| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .content{
- flex-direction: column;
- display: flex;
- }
- .student{
- position: relative;
- width: 702rpx;
- height: 300rpx;
- margin-top: 148rpx;
- margin-left: 24rpx;
- border-radius: 32rpx;
- background-color: rgba(42, 69, 228, 0.89);
- }
- .student .stu{
- position: absolute;
- top: 34rpx;
- left: 50rpx;
- font-size: 56rpx;
- font-weight: 700;
- color: rgba(255, 255, 255, 1);
- }
- .student .stu_point{
- position: absolute;
- top: 140rpx;
- left: 160rpx;
- font: 32rpx;
- color: rgba(255, 255, 255, 1);
- }
- .student image{
- position: absolute;
- right: 40rpx;
- top: 72rpx;
- width: 152rpx;
- height: 152rpx;
- }
- .worker{
- position: relative;
- width: 702rpx;
- height: 300rpx;
- margin-top: 114rpx;
- margin-left: 24rpx;
- border-radius: 32rpx;
- background-color: rgba(42, 130, 228, 1);
- }
- .worker .work {
- position: absolute;
- top: 34rpx;
- left: 50rpx;
- font-size: 56rpx;
- font-weight: 700;
- color: rgba(255, 255, 255, 1);
- }
- .worker .work_point{
- position: absolute;
- top: 140rpx;
- left: 160rpx;
- font: 32rpx;
- color: rgba(255, 255, 255, 1);
- }
- .worker image{
- position: absolute;
- right: 40rpx;
- top: 72rpx;
- width: 152rpx;
- height: 152rpx;
- }
|