footer.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .footer {
  2. background: #000 ;
  3. margin: 0;
  4. padding: 0;
  5. border: 0;
  6. font-size: 12px;
  7. //height: 150px;
  8. color: #888;
  9. width: 100%;
  10. text-align: center;
  11. position: relative;
  12. .footer-item-wrapper {
  13. width: 1200px;
  14. margin: 0 auto;
  15. display: flex;
  16. justify-content: center;
  17. padding: 25px 0;
  18. .footer-item-logo {
  19. height: 66px;
  20. width: 64px;
  21. margin: auto 0;
  22. a {
  23. width: 100%;
  24. height: 100%;
  25. display: block;
  26. background: url('https://file.funcheergame.com/office/image/footer-logo.png') center no-repeat;
  27. background-size: contain;
  28. }
  29. }
  30. .footer-item-content {
  31. height: 100%;
  32. text-align: left;
  33. display: inline-block;
  34. font-size: 12px;
  35. padding: 0 20px;
  36. margin-left: 50px;
  37. border-left: 1px solid #888;
  38. border-shadow: 0px 1px 1px 1px #666;
  39. p {
  40. font-size: 12px;
  41. font-family: "宋体";
  42. color: #888;
  43. a{
  44. display: inline-block;
  45. color: #888;
  46. }
  47. }
  48. }
  49. }
  50. }