identity.wxss 1017 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .student{
  2. position: relative;
  3. width: 351px;
  4. height: 149px;
  5. margin-top: 74px;
  6. margin-left: 12px;
  7. border-radius: 16px;
  8. background-color: rgba(42, 69, 228, 0.89);
  9. }
  10. .student .stu{
  11. position: absolute;
  12. top: 17px;
  13. left: 25px;
  14. font-size: 28px;
  15. font-weight: 700;
  16. color: rgba(255, 255, 255, 1);
  17. }
  18. .student .stu_point{
  19. position: absolute;
  20. top: 69px;
  21. left: 79px;
  22. font: 16px;
  23. color: rgba(255, 255, 255, 1);
  24. }
  25. .student image{
  26. position: absolute;
  27. right: 20px;
  28. top: 36px;
  29. width: 76px;
  30. height: 76px;
  31. }
  32. .worker{
  33. position: relative;
  34. width: 351px;
  35. height: 149px;
  36. margin-top: 57px;
  37. margin-left: 12px;
  38. border-radius: 16px;
  39. background-color: rgba(42, 130, 228, 1);
  40. }
  41. .worker .work {
  42. position: absolute;
  43. top: 17px;
  44. left: 25px;
  45. font-size: 28px;
  46. font-weight: 700;
  47. color: rgba(255, 255, 255, 1);
  48. }
  49. .worker .work_point{
  50. position: absolute;
  51. top: 69px;
  52. left: 79px;
  53. font: 16px;
  54. color: rgba(255, 255, 255, 1);
  55. }
  56. .worker image{
  57. position: absolute;
  58. right: 20px;
  59. top: 36px;
  60. width: 76px;
  61. height: 76px;
  62. }