aboutUs.scss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. @import 'global.scss';
  2. .banner{
  3. img{
  4. width: 100%;
  5. }
  6. }
  7. .intro{
  8. padding: 40px 0 60px;
  9. @media(min-width:768px){
  10. padding: 50px 0 80px;
  11. }
  12. @media(min-width:1200px){
  13. padding: 80px 0 120px;
  14. }
  15. h2{
  16. text-align: center;
  17. color: #111;
  18. margin-bottom: 20px;
  19. font-size: 24px;
  20. @media(min-width:768px){
  21. margin-bottom: 30px;
  22. font-size: 32px;
  23. }
  24. @media(min-width:1200px){
  25. margin-bottom: 50px;
  26. font-size: 44px;
  27. }
  28. }
  29. p{
  30. color: #111;
  31. line-height: 2;
  32. font-size: 16px;
  33. }
  34. }
  35. .vision{
  36. height: 300px;
  37. @media(min-width:768px){
  38. height: 400px;
  39. }
  40. @media(min-width:1200px){
  41. height: 580px;
  42. }
  43. background:url("/assets/image/banner-about-2.jpg") no-repeat center;
  44. background-size: cover;
  45. color: #fff;
  46. position: relative;
  47. span{
  48. font-size: 16px;
  49. color: $color;
  50. }
  51. h2{
  52. margin: 20px 0;
  53. font-size: 30px;
  54. @media(min-width:768px){
  55. margin: 35px 0;
  56. font-size: 40px;
  57. }
  58. @media(min-width:1200px){
  59. margin: 50px 0;
  60. font-size: 56px;
  61. }
  62. }
  63. p{
  64. line-height: 2;
  65. font-size: 14px;
  66. @media(min-width:768px){
  67. font-size: 18px;
  68. }
  69. }
  70. .txt{
  71. width: 100%;
  72. display: inline-block;
  73. vertical-align: middle;
  74. position: relative;
  75. z-index: 2;
  76. @media(min-width:768px){
  77. width: 80%;
  78. }
  79. @media(min-width:1200px){
  80. width: 50%
  81. }
  82. }
  83. &:after{
  84. content:"";
  85. position: absolute;
  86. z-index: 1;
  87. top: 0;
  88. left: 0;
  89. right: 0;
  90. bottom: 0;
  91. background: linear-gradient(to right,rgba(0,0,0,.8), rgba(0,0,0,.1))
  92. }
  93. .container{
  94. height: 100%;
  95. font-size: 0;
  96. }
  97. & .container:after{
  98. content: "";
  99. display: inline-block;
  100. vertical-align: middle;
  101. height: 100%;
  102. }
  103. }
  104. .entrance{
  105. padding: 40px 0;
  106. @media(min-width:768px){
  107. padding: 80px 0;
  108. }
  109. @media(min-width:1200px){
  110. padding: 120px 0;
  111. }
  112. .row>div{
  113. margin-bottom: 20px;
  114. @media(min-width:768px){
  115. margin-bottom: 0;
  116. }
  117. }
  118. a{
  119. display: block;
  120. position: relative;
  121. overflow: hidden;
  122. transition: all .5s ease;
  123. &.no-link{
  124. pointer-events: none;
  125. .txt{
  126. span{
  127. background: #999;
  128. }
  129. }
  130. }
  131. &:hover{
  132. transform: translateY(-10px);
  133. box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.2);
  134. .txt{
  135. i{
  136. margin-left: 10px;
  137. }
  138. }
  139. }
  140. }
  141. .img{
  142. img{
  143. height: px2vw(200);
  144. @media(min-width:768px){
  145. height: auto;
  146. }
  147. width: 100%;
  148. transition: all .5s ease;
  149. }
  150. }
  151. .txt{
  152. position: absolute;
  153. top: 0;
  154. left: 0;
  155. right: 0;
  156. bottom: 0;
  157. background:rgba(0,0,0,.45);
  158. padding: 20px;
  159. color: #fff;
  160. @media(min-width:768px){
  161. padding: 30px;
  162. }
  163. span{
  164. display: inline-block;
  165. padding:4px 10px;
  166. text-align: center;
  167. background:$color;
  168. margin: 0px 0 20px 0;
  169. @media(min-width:768px){
  170. padding:6px 12px;
  171. margin: 5px 0 35px 0;
  172. }
  173. }
  174. h2{
  175. font-size: 20px;
  176. transition: all .5s ease;
  177. @media(min-width:768px){
  178. font-size: 28px;
  179. }
  180. @media(min-width:1200px){
  181. font-size: 36px;
  182. }
  183. }
  184. i{
  185. display: inline-block;
  186. width: 14px;
  187. height: 20px;
  188. background: url("/assets/image/arrow-right-on.png") no-repeat center;
  189. background-size: 100%;
  190. position: absolute;
  191. bottom: 30px;
  192. left: 30px;
  193. transition: all .5s ease;
  194. }
  195. }
  196. }
  197. .org{
  198. padding: 70px 0;
  199. background: #ed4747;
  200. text-align: center;
  201. }
  202. .shareholder{
  203. margin-bottom: 60px;
  204. @media(min-width:768px){
  205. margin-bottom: 100px;
  206. }
  207. @media(min-width:1200px){
  208. margin-bottom: 150px;
  209. }
  210. &>h2{
  211. text-align: center;
  212. color: #111;
  213. font-size: 24px;
  214. margin-bottom: 30px;
  215. @media(min-width:768px){
  216. font-size: 32px;
  217. margin-bottom: 40px;
  218. }
  219. @media(min-width:1200px){
  220. font-size: 44px;
  221. margin-bottom: 70px;
  222. }
  223. }
  224. }
  225. #shareholder,#shareholder1{
  226. height: 120px;
  227. padding-bottom: 40px;
  228. @media(min-width:768px){
  229. height: 90px;
  230. padding-bottom: 30px;
  231. }
  232. @media(min-width:1200px){
  233. height: 140px;
  234. padding-bottom: 80px;
  235. }
  236. .swiper-wrapper{
  237. a{
  238. display: block;
  239. text-align: center;
  240. }
  241. }
  242. .swiper-pagination{
  243. display:block;
  244. position: absolute;
  245. bottom: 0;
  246. left: 0;
  247. right: 0;
  248. text-align: center;
  249. span{
  250. display: inline-block;
  251. width:8px;
  252. height: 8px;
  253. background: rgba(0, 0, 0, .3);
  254. border-radius: 50%;
  255. margin: 0 6px;
  256. &.swiper-visible-switch{
  257. background: rgba($color,.5);
  258. }
  259. &.swiper-active-switch{
  260. background: rgba($color,1);
  261. }
  262. }
  263. }
  264. }