| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .student{
- position: relative;
- width: 351px;
- height: 149px;
- margin-top: 74px;
- margin-left: 12px;
- border-radius: 16px;
- background-color: rgba(42, 69, 228, 0.89);
- }
- .student .stu{
- position: absolute;
- top: 17px;
- left: 25px;
- font-size: 28px;
- font-weight: 700;
- color: rgba(255, 255, 255, 1);
- }
- .student .stu_point{
- position: absolute;
- top: 69px;
- left: 79px;
- font: 16px;
- color: rgba(255, 255, 255, 1);
- }
- .student image{
- position: absolute;
- right: 20px;
- top: 36px;
- width: 76px;
- height: 76px;
- }
- .worker{
- position: relative;
- width: 351px;
- height: 149px;
- margin-top: 57px;
- margin-left: 12px;
- border-radius: 16px;
- background-color: rgba(42, 130, 228, 1);
- }
- .worker .work {
- position: absolute;
- top: 17px;
- left: 25px;
- font-size: 28px;
- font-weight: 700;
- color: rgba(255, 255, 255, 1);
- }
- .worker .work_point{
- position: absolute;
- top: 69px;
- left: 79px;
- font: 16px;
- color: rgba(255, 255, 255, 1);
- }
- .worker image{
- position: absolute;
- right: 20px;
- top: 36px;
- width: 76px;
- height: 76px;
- }
|