| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <template>
- <div class="risk-tips">
- <div class="risk-mask"></div>
- <div class="risk-content">
- <div class="slide-line"></div>
- <div class="risk-text pf600 fs18 fc121212">风险提示</div>
- <div class="risk-desc pf400 fs14 fc333333">
- 务必仔细阅读以下风险提示,以确保您充分了解交 易的本质及其相关风险。 <br />
- 1.高杠杆风险: <br />
- 本产品提供最高1000倍杠杆服务,在您放大杠杆倍
- 数的同时,意味着放大您的盈利和亏损。请确保您 了解高杠杆交易的风险。 <br />
- 2.市场波动风险: <br />
- 加密货币行情可能会经历极端波动,这将导致价格
- 迅速变动,需要加强对风险的把控,尽量避免更大 的损失。 <br />
- 3.系统和技术风险: <br />
- 我们已经采取了多重安全保障措施,但任何交易平
- 台都无法避免受到技术故障或网络攻击的威胁。请
- 确保您的设备和网络安全,增强安全意识。 <br />
- 在使用我们的合约交易之前,请确保您已充分了解
- 这些风险,并只投入您能够承受的保证金。过度交
- 易可能导致重大亏损。如有疑问,请随时联系我们 的客户支持团队。 <br />
- </div>
- <div class="not-tips">
- <CheckBox v-model="tipsFlag"></CheckBox>
- <div class="not-text pf500 fs12 fc333333">不再提示</div>
- </div>
- <div class="sure-btn pf600 fs14 fcFFFFFF">我知道了</div>
- </div>
- </div>
- </template>
- <script setup>
- import CheckBox from "../../components/ui/CheckBox.vue.vue";
- import { ref } from "vue";
- const tipsFlag = ref(false);
- </script>
- <style lang="less" scoped>
- .risk-tips {
- position: fixed;
- left: 0;
- top: 0;
- z-index: 1;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- width: 100%;
- min-height: 100vh;
- .risk-mask {
- position: fixed;
- left: 0;
- top: 0;
- z-index: -1;
- width: 100%;
- min-height: 100vh;
- background: #b3b3b3;
- }
- .risk-content {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- width: 375px;
- height: 626px;
- background: #ffffff;
- border-radius: 24px 24px 0px 0px;
- .slide-line {
- margin-top: 12px;
- width: 32px;
- height: 4px;
- border-radius: 2px;
- opacity: 0.4;
- background: rgba(0, 0, 0, 0.5);
- }
- .risk-text {
- margin-top: 20px;
- height: 24px;
- line-height: 24px;
- letter-spacing: 0.2px;
- }
- .risk-desc {
- margin-top: 5px;
- width: 319px;
- height: 450px;
- line-height: 25px;
- letter-spacing: 0.2px;
- }
- .not-tips {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- margin-top: 9px;
- width: 311px;
- height: 16px;
- .not-text {
- margin-left: 6px;
- }
- }
- .sure-btn {
- margin-top: 9px;
- width: 311px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- border-radius: 100px;
- background: #df384c;
- }
- }
- }
- </style>
|