foot.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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: #133a66;
  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. .three_pic>a:nth-child(1){
  65. width: 30px;
  66. margin-right: 2px;
  67. }
  68. .three_pic>a:nth-child(1) img {
  69. width: 30px;
  70. }
  71. .three_pic>a:nth-child(2){
  72. width: 20px;
  73. margin-right:2px;
  74. }
  75. .three_pic>a:nth-child(2) img {
  76. width: 20px;
  77. }
  78. .three_pic>span:nth-child(3){
  79. width: 94px;
  80. margin-right: 2px;
  81. }
  82. .three_pic>span:nth-child(3) img {
  83. width: 84px;
  84. cursor: pointer;
  85. }
  86. .f_list a,
  87. .f_list span {
  88. font-size: 10px;
  89. }
  90. .f_list {
  91. padding-top: 18px;
  92. }
  93. .f_text {
  94. color: #fff;
  95. font-size: 8px;
  96. line-height: normal;
  97. width: auto;
  98. }
  99. }