ChairMan.scss 902 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .com-chair-man{
  2. width:100%;
  3. background:#f9f9f9;
  4. padding-top:5px;
  5. height:150px;
  6. .title{
  7. font-size: 14px;
  8. color:#000;
  9. font-weight: bold;
  10. height:30px;
  11. line-height: 30px;
  12. margin-left:10px;
  13. }
  14. .content{
  15. display: flex;
  16. flex-direction: row;
  17. height:80px;
  18. .header{
  19. display: flex;
  20. width:25%;
  21. height:100%;
  22. justify-content: center;
  23. align-items: center;
  24. .icon{
  25. width:80px;
  26. height:80px;
  27. margin-top:20px;
  28. border-radius: 10px;
  29. }
  30. }
  31. .intro{
  32. display: flex;
  33. width:70%;
  34. justify-content: flex-start;
  35. align-items: flex-start;
  36. flex-direction: column;
  37. margin-left:10px;
  38. .name{
  39. font-size:14px;
  40. font-weight: bold;
  41. height:40px;
  42. line-height: 40px;
  43. }
  44. .tags{
  45. display:flex;
  46. flex-direction: row;
  47. .uni-tag{
  48. font-size:12px;
  49. margin-right: 10px;
  50. }
  51. }
  52. .point{
  53. margin-top:5px;
  54. }
  55. }
  56. }
  57. }