foot.css 962 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. a {
  6. text-decoration: none;
  7. }
  8. .foot {
  9. width: 100%;
  10. height: 108px;
  11. min-width: 1300px;
  12. background-color: #133A66;
  13. overflow: hidden;
  14. }
  15. .foot_content {
  16. height: 110px;
  17. margin: 0 auto;
  18. /* padding-top: 24px; */
  19. background-color: #A79675;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. .three_pic {
  25. display: flex;
  26. }
  27. .three_pic>a:nth-child(1) {
  28. width: 49px;
  29. height: 60px;
  30. margin-right: 15px;
  31. }
  32. .three_pic>a:nth-child(2) {
  33. width: 36px;
  34. height: 60px;
  35. margin-right: 15px;
  36. }
  37. .three_pic>span:nth-child(3) {
  38. width: 110px;
  39. height: 55px;
  40. margin-right: 15px;
  41. cursor: pointer;
  42. }
  43. .f_text {
  44. color: #fff;
  45. font-size: 14px;
  46. line-height: 24px;
  47. padding-top: 8px;
  48. width: 727px;
  49. }
  50. .f_list {
  51. padding-top: 34px;
  52. }
  53. .f_list a,
  54. .f_list span {
  55. display: inline-block;
  56. color: #fff;
  57. font-size: 14.58px;
  58. margin-right: 6px;
  59. }
  60. @media screen and (max-width:1200px){
  61. .foot {
  62. min-width: 0px;
  63. }
  64. }