identity.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .content{
  2. flex-direction: column;
  3. display: flex;
  4. }
  5. .student{
  6. position: relative;
  7. width: 702rpx;
  8. height: 300rpx;
  9. margin-top: 148rpx;
  10. margin-left: 24rpx;
  11. border-radius: 32rpx;
  12. background-color: rgba(42, 69, 228, 0.89);
  13. }
  14. .student .stu{
  15. position: absolute;
  16. top: 34rpx;
  17. left: 50rpx;
  18. font-size: 56rpx;
  19. font-weight: 700;
  20. color: rgba(255, 255, 255, 1);
  21. }
  22. .student .stu_point{
  23. position: absolute;
  24. top: 140rpx;
  25. left: 160rpx;
  26. font: 32rpx;
  27. color: rgba(255, 255, 255, 1);
  28. }
  29. .student image{
  30. position: absolute;
  31. right: 40rpx;
  32. top: 72rpx;
  33. width: 152rpx;
  34. height: 152rpx;
  35. }
  36. .worker{
  37. position: relative;
  38. width: 702rpx;
  39. height: 300rpx;
  40. margin-top: 114rpx;
  41. margin-left: 24rpx;
  42. border-radius: 32rpx;
  43. background-color: rgba(42, 130, 228, 1);
  44. }
  45. .worker .work {
  46. position: absolute;
  47. top: 34rpx;
  48. left: 50rpx;
  49. font-size: 56rpx;
  50. font-weight: 700;
  51. color: rgba(255, 255, 255, 1);
  52. }
  53. .worker .work_point{
  54. position: absolute;
  55. top: 140rpx;
  56. left: 160rpx;
  57. font: 32rpx;
  58. color: rgba(255, 255, 255, 1);
  59. }
  60. .worker image{
  61. position: absolute;
  62. right: 40rpx;
  63. top: 72rpx;
  64. width: 152rpx;
  65. height: 152rpx;
  66. }