AboutUs.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .page{
  2. position: absolute;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. background-color: #161616;
  7. }
  8. .logo{
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. width: 100%;
  13. height: 200rpx;
  14. image{
  15. width: 140rpx;
  16. height: 140rpx;
  17. }
  18. }
  19. .versions{
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. width: 100%;
  24. height: 80rpx;
  25. text{
  26. font-size: 26rpx;
  27. color: #ffffff;
  28. }
  29. }
  30. .code{
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. justify-content: center;
  35. width: 100%;
  36. image{
  37. width: 620rpx;
  38. }
  39. text{
  40. color: #ffffff;
  41. font-size: 26rpx;
  42. margin-top: 20rpx;
  43. }
  44. }
  45. .about-list{
  46. padding: 0 4%;
  47. background-color: #161616;
  48. border-radius: 20rpx;
  49. margin: 20rpx auto;
  50. .list{
  51. display: flex;
  52. align-items: center;
  53. justify-content: space-between;
  54. width: 100%;
  55. height: 80rpx;
  56. border-bottom: 2rpx solid #f6f6f6;
  57. .title{
  58. display: flex;
  59. align-items: center;
  60. text{
  61. font-size: 26rpx;
  62. color: #222222;
  63. }
  64. }
  65. .more{
  66. display: flex;
  67. align-items: center;
  68. text{
  69. font-size: 26rpx;
  70. color: #666666;
  71. }
  72. }
  73. }
  74. }
  75. .faq-list{
  76. padding: 0 4%;
  77. border-radius: 20rpx;
  78. margin: 20rpx auto;
  79. .list{
  80. display: flex;
  81. align-items: flex-start;
  82. justify-content: space-between;
  83. flex-direction: column;
  84. width: 100%;
  85. border-bottom: 2rpx solid #f6f6f6;
  86. padding-bottom: 20rpx;
  87. padding-top: 10rpx;
  88. .title{
  89. display: flex;
  90. align-items: center;
  91. text{
  92. font-size: 26rpx;
  93. line-height: 42rpx;
  94. color: #222222;
  95. }
  96. }
  97. .content{
  98. display: flex;
  99. align-items: center;
  100. padding-left: 40rpx;
  101. text{
  102. font-size: 26rpx;
  103. line-height: 42rpx;
  104. color: #666666;
  105. }
  106. }
  107. }
  108. }
  109. .xy-list{
  110. padding: 0 4%;
  111. border-radius: 20rpx;
  112. margin: 20rpx auto;
  113. .list{
  114. display: flex;
  115. align-items: flex-start;
  116. justify-content: space-between;
  117. flex-direction: column;
  118. width: 100%;
  119. border-bottom: 2rpx solid #f6f6f6;
  120. padding-bottom: 20rpx;
  121. padding-top: 10rpx;
  122. .content{
  123. display: flex;
  124. align-items: center;
  125. padding-left: 20rpx;
  126. text{
  127. font-size: 26rpx;
  128. line-height: 42rpx;
  129. color: #ffffff;
  130. }
  131. }
  132. }
  133. }
  134. .copyright{
  135. position: fixed;
  136. left: 0;
  137. bottom: 0;
  138. display: flex;
  139. flex-direction:column;
  140. align-items: center;
  141. justify-content: center;
  142. width: 100%;
  143. height: 200rpx;
  144. text{
  145. font-size: 26rpx;
  146. color: #ffffff;
  147. margin-bottom: 10rpx;
  148. }
  149. }