contTwo.vue 5.6 KB

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