index.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .footer-page{
  2. position: relative;
  3. }
  4. .footer-page.mobile{
  5. display: none;
  6. }
  7. .footer-page .bg{
  8. position: absolute;
  9. top: -6.97vw;
  10. left: 0;
  11. width: 100%;
  12. height: calc(24.32vw + 1.71vw);
  13. margin-bottom: 33px;
  14. background-image: url("../../../assets/images/common/bg1.png");
  15. background-size: 100% 100%;
  16. padding: 6.97vw 12.55vw 0 12.55vw;
  17. box-sizing: border-box;
  18. }
  19. .footer-page .content{
  20. padding-top: 1.71vw;
  21. display: flex;
  22. justify-content: space-between;
  23. }
  24. .footer-page .content .left .down{
  25. font-size: 1.56vw;
  26. font-family: Gilroy, Gilroy-Bold;
  27. font-weight: 700;
  28. text-align: left;
  29. color: #018cff;
  30. margin-bottom: 1.3vw;
  31. }
  32. .footer-page .content .left img{
  33. width: 7.81vw;
  34. height: 2.5vw;
  35. }
  36. .footer-page .content .right{
  37. display: flex;
  38. justify-content: space-between;
  39. width: 40.36vw;
  40. }
  41. .footer-page .content .right .item {
  42. display: flex;
  43. justify-content: space-around;
  44. flex-flow: column;
  45. }
  46. .footer-page .content .right .item .title{
  47. font-size: 0.93vw;
  48. font-family: EuclidSquare, EuclidSquare-Medium;
  49. font-weight: 500;
  50. color: #242a30;
  51. line-height: 3.8vw;
  52. }
  53. .footer-page .content .right .item .link{
  54. font-size: 0.729vw;
  55. font-family: EuclidSquare, EuclidSquare-Medium;
  56. font-weight: 500;
  57. color: #8E9DAA;
  58. line-height: 1.56vw;
  59. }
  60. .footer-page .split{
  61. width: 75vw;
  62. height: 1px;
  63. opacity: 0.2;
  64. background: #a0acb7;
  65. margin: 3.38vw auto 0 auto;
  66. }
  67. .footer-page .bottom{
  68. display: flex;
  69. justify-content: space-between;
  70. margin-top: 1.4vw;
  71. color: #97a5b0;
  72. }
  73. .footer-page .bottom .copyright {
  74. font-size: 14px;
  75. font-family: EuclidSquare, EuclidSquare-Medium;
  76. font-weight: 500;
  77. color: #97a5b0;
  78. }
  79. .footer-page .bottom img{
  80. width: 1.87vw;
  81. height: 1.87vw;
  82. }
  83. /*移动端*/
  84. @media screen and (max-width: 960px) {
  85. .footer-page.mobile{
  86. display: block;
  87. }
  88. .footer-page.mobile .bg{
  89. padding: 6.97vw 4vw 5.33vw 4vw;
  90. background-size: 100%;
  91. height: auto;
  92. }
  93. .footer-page.pc{
  94. display: none;
  95. }
  96. .footer-page.mobile .accordion-item{
  97. border-top: none;
  98. border-left:none;
  99. border-right: none;
  100. }
  101. .footer-page.mobile .copyright{
  102. margin: 8vw 0 0 4vw;
  103. text-align: center;
  104. font-size: 3.2vw;
  105. font-family: NexaBold, NexaBold-Regular;
  106. font-weight: 400;
  107. color: #97a5b0;
  108. }
  109. .footer-page.mobile .down{
  110. font-size: 6.4vw;
  111. font-family: NexaBold, NexaBold-Regular;
  112. font-weight: 400;
  113. color: #018cff;
  114. margin-bottom: 4vw;
  115. text-align: center;
  116. }
  117. .footer-page.mobile .img-box{
  118. display: flex;
  119. justify-content: space-between;
  120. }
  121. .footer-page.mobile .img-box img{
  122. width: 26vw;
  123. }
  124. }