RiskTips.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <div class="risk-tips">
  3. <div class="risk-mask"></div>
  4. <div class="risk-content">
  5. <div class="slide-line"></div>
  6. <div class="risk-text pf600 fs18 fc121212">风险提示</div>
  7. <div class="risk-desc pf400 fs14 fc333333">
  8. 务必仔细阅读以下风险提示,以确保您充分了解交 易的本质及其相关风险。 <br />
  9. 1.高杠杆风险: <br />
  10. 本产品提供最高1000倍杠杆服务,在您放大杠杆倍
  11. 数的同时,意味着放大您的盈利和亏损。请确保您 了解高杠杆交易的风险。 <br />
  12. 2.市场波动风险: <br />
  13. 加密货币行情可能会经历极端波动,这将导致价格
  14. 迅速变动,需要加强对风险的把控,尽量避免更大 的损失。 <br />
  15. 3.系统和技术风险: <br />
  16. 我们已经采取了多重安全保障措施,但任何交易平
  17. 台都无法避免受到技术故障或网络攻击的威胁。请
  18. 确保您的设备和网络安全,增强安全意识。 <br />
  19. 在使用我们的合约交易之前,请确保您已充分了解
  20. 这些风险,并只投入您能够承受的保证金。过度交
  21. 易可能导致重大亏损。如有疑问,请随时联系我们 的客户支持团队。 <br />
  22. </div>
  23. <div class="not-tips">
  24. <CheckBox v-model="tipsFlag"></CheckBox>
  25. <div class="not-text pf500 fs12 fc333333">不再提示</div>
  26. </div>
  27. <div class="sure-btn pf600 fs14 fcFFFFFF">我知道了</div>
  28. </div>
  29. </div>
  30. </template>
  31. <script setup>
  32. import CheckBox from "../../components/ui/CheckBox.vue.vue";
  33. import { ref } from "vue";
  34. const tipsFlag = ref(false);
  35. </script>
  36. <style lang="less" scoped>
  37. .risk-tips {
  38. position: fixed;
  39. left: 0;
  40. top: 0;
  41. z-index: 1;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: flex-end;
  45. width: 100%;
  46. min-height: 100vh;
  47. .risk-mask {
  48. position: fixed;
  49. left: 0;
  50. top: 0;
  51. z-index: -1;
  52. width: 100%;
  53. min-height: 100vh;
  54. background: #b3b3b3;
  55. }
  56. .risk-content {
  57. display: flex;
  58. flex-direction: column;
  59. justify-content: flex-start;
  60. align-items: center;
  61. width: 375px;
  62. height: 626px;
  63. background: #ffffff;
  64. border-radius: 24px 24px 0px 0px;
  65. .slide-line {
  66. margin-top: 12px;
  67. width: 32px;
  68. height: 4px;
  69. border-radius: 2px;
  70. opacity: 0.4;
  71. background: rgba(0, 0, 0, 0.5);
  72. }
  73. .risk-text {
  74. margin-top: 20px;
  75. height: 24px;
  76. line-height: 24px;
  77. letter-spacing: 0.2px;
  78. }
  79. .risk-desc {
  80. margin-top: 5px;
  81. width: 319px;
  82. height: 450px;
  83. line-height: 25px;
  84. letter-spacing: 0.2px;
  85. }
  86. .not-tips {
  87. display: flex;
  88. flex-direction: row;
  89. justify-content: flex-start;
  90. align-items: center;
  91. margin-top: 9px;
  92. width: 311px;
  93. height: 16px;
  94. .not-text {
  95. margin-left: 6px;
  96. }
  97. }
  98. .sure-btn {
  99. margin-top: 9px;
  100. width: 311px;
  101. height: 40px;
  102. line-height: 40px;
  103. text-align: center;
  104. border-radius: 100px;
  105. background: #df384c;
  106. }
  107. }
  108. }
  109. </style>