Addus.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. <template>
  2. <div>
  3. <div class="add-box">
  4. <div class="wrap">
  5. <div class="title">
  6. <hr/>
  7. <h3>加入我们,可以获得</h3>
  8. <hr/>
  9. </div>
  10. <h4 class="subtitle">To join our agent you will gain the following advantages</h4>
  11. <div class="content-box">
  12. <div class="adv-line">
  13. <div :class="{'adv-line-item':1,'hoverClass':hoverNum===index}" v-for="(item,index) in items" :key="index" @mouseover="overShow(index)" @mouseout="outHide(index)">
  14. <h4>{{item.title}}</h4>
  15. <h5>{{item.enTitle}}</h5>
  16. <p>{{item.intro}}</p>
  17. <img :src="src+(index+1)+'.png'" alt="">
  18. <div class="apply-btn" v-show="hoverNum===index">立即申请经纪商 <span><i class="iconfont icon-jiantou"></i></span></div>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. <div class="plat-block">
  25. <div class="plat-block-back">
  26. <div class="word-box">
  27. <img src="../../static/images/home/platBlock.png" alt="">
  28. <div class="tips1">
  29. <p class="word1">专业严谨</p>
  30. <p class="word2">的交易平台</p>
  31. <p class="word3">Professional and rigorous trading <br/> platform</p>
  32. <hr/>
  33. </div>
  34. <div class="ins-box">
  35. <p>FX66是基于区块链底层技术的数字资产交易所,</p>
  36. <p>拥有撮合交易系统低延迟、高并发的核心技术</p>
  37. <p>勇于突破传统交易所的局限,</p>
  38. <p>把交易、资产写入区块链当中。</p>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </template>
  45. <script>
  46. export default {
  47. name: 'Addus',
  48. data () {
  49. return {
  50. hoverNum: 100,
  51. src: '../../static/images/home/add0',
  52. items: [
  53. {
  54. title: '超高返佣',
  55. enTitle: 'High commission',
  56. intro: '推荐FX66给他人,可以获取被推荐人等比例的交易手续费做为佣金。',
  57. src: ''
  58. },
  59. {
  60. title: 'VIP奖励',
  61. enTitle: 'VIP rewards',
  62. intro: '每个经纪商都会有相应的业绩排名,凡是每个月业绩排名靠前者,均可以得到我们平台的VIP级别奖励。',
  63. src: ''
  64. },
  65. {
  66. title: '市场支持',
  67. enTitle: ' Marketing support',
  68. intro: 'FX66经纪商可以使用我们所可以提供的全部交易工具和交易资源,并且会在市场宣传方面给予相应的支持!',
  69. src: ''
  70. },
  71. {
  72. title: '技术支持',
  73. enTitle: 'Technical support',
  74. intro: '我们拥有强大的技术开发团队,可以制定符合客户营销特点的网站,只收成本费。',
  75. src: ''
  76. }
  77. ]
  78. }
  79. },
  80. methods: {
  81. overShow: function (num) {
  82. this.hoverNum = num
  83. },
  84. outHide: function (num) {
  85. this.hoverNum = 100
  86. }
  87. }
  88. }
  89. </script>
  90. <style scoped>
  91. .add-box {
  92. height: 900px;
  93. width: 100%;
  94. padding-top: 60px;
  95. margin: 0 auto;
  96. }
  97. .subtitle {
  98. font-size: 20px;
  99. color: #999;
  100. margin-top: 12px;
  101. }
  102. .adv-line div.hoverClass{
  103. border:1px solid #1a6fa6;
  104. border-left:4px solid #1a6fa6;
  105. box-sizing: border-box;
  106. }
  107. .adv-line {
  108. display: flex;
  109. margin-top: 80px;
  110. flex-wrap: wrap;
  111. .adv-line-item {
  112. position: relative;
  113. text-align: left;
  114. width: 430px;
  115. height: 250px;
  116. border: 1px solid #eee;
  117. color: #333;
  118. padding: 32px 0 0 20px;
  119. background-color: #fff;
  120. margin-top: 80px;
  121. h4 {
  122. font-size: 25px;
  123. font-weight: 700;
  124. line-height: 1;
  125. }
  126. h5 {
  127. font-size: 20px;
  128. line-height: 1;
  129. color: #999;
  130. font-weight: 500;
  131. margin-top: 10px;
  132. margin-bottom: 40px;
  133. }
  134. p {
  135. width: 255px;
  136. font-size: 15px;
  137. }
  138. img {
  139. position: absolute;
  140. top: 20px;
  141. right: -135px;
  142. width: 270px;
  143. }
  144. .apply-btn {
  145. position: absolute;
  146. bottom: -22px;
  147. width: 170px;
  148. height: 45px;
  149. background-color: #1a6fa6;
  150. color: #fff;
  151. padding-left: 18px;
  152. cursor: pointer;
  153. font-size: 15px;
  154. line-height: 45px;
  155. span {
  156. float: right;
  157. display: block;
  158. width: 47px;
  159. height: 100%;
  160. background-color: #2580bb;
  161. text-align: center;
  162. i {
  163. font-weight: bold;
  164. }
  165. }
  166. }
  167. }
  168. .adv-line-item:first-child, .adv-line-item:nth-child(2) {
  169. margin-top: 0px;
  170. }
  171. .adv-line-item:nth-child(odd) {
  172. margin-right: 200px;
  173. }
  174. }
  175. .plat-block{
  176. height: 900px;
  177. background: url("../../static/images/home/platBg.png") no-repeat center 30px;
  178. background-size: auto;
  179. position: relative;
  180. .plat-block-back{
  181. width: 100%;
  182. height: 417px;
  183. position: absolute;
  184. bottom: 0;
  185. }
  186. }
  187. .word-box{
  188. width: 1200px;
  189. height: 250px;
  190. position: absolute;
  191. left: 50%;
  192. transform: translateX(-50%);
  193. bottom: 85px;
  194. background-color: rgba(2,134,219,.83);
  195. padding-left: 195px;
  196. text-align: left;
  197. color: #fff;
  198. img{
  199. position: absolute;
  200. top: -37px;
  201. left: 158px;
  202. }
  203. }
  204. .tips1{
  205. line-height:1;
  206. .word1{
  207. font-size: 35px;
  208. margin-top: 30px;
  209. font-weight: 700;
  210. }
  211. .word2{
  212. font-size: 24px;
  213. margin-left: 80px;
  214. margin-top: 10px;
  215. font-weight: 700;
  216. }
  217. .word3{
  218. margin-top: 16px;
  219. font-size: 12px;
  220. line-height: 1.5;
  221. }
  222. hr{
  223. width: 45px;
  224. height: 2px;
  225. background-color: #fff;
  226. border: 0;
  227. margin-top: 20px;
  228. }
  229. }
  230. .ins-box{
  231. position: absolute;
  232. width: 400px;
  233. right: 250px;
  234. top: 56px;
  235. font-size: 18px;
  236. text-align: center;
  237. line-height: 1.6;
  238. }
  239. </style>