robot.css 928 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .content{
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: center;
  5. align-items: center;
  6. position: relative;
  7. }
  8. .content>img{
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. width: 100%;
  13. }
  14. .content>.content-dis{
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. width: 100%;
  19. height: 100%;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. color: #ffffff;
  24. }
  25. .content>.content-dis>h5{
  26. font-size: 16px;
  27. margin: 16px 0 0 0;
  28. font-family: "微软雅黑";
  29. letter-spacing: 1px;
  30. font-weight: 600;
  31. }
  32. .content>.content-dis>h3{
  33. font-size: 20px;
  34. margin: 6px 0 6px 0;
  35. font-family: "微软雅黑";
  36. font-weight: 600;
  37. letter-spacing: 2px;
  38. }
  39. .content>.content-dis>a{
  40. font-size: 14px;
  41. margin: 2px 0 6px 0;
  42. font-family: "微软雅黑";
  43. color: #ffffff;
  44. }