Introduction.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <section class="intr-container">
  3. <div>
  4. <p class="intr-title">
  5. 1800+
  6. </p>
  7. <p class="intr-description">
  8. 实用至上-全球 1800+ 边缘哨兵帮你的游戏“开挂”
  9. </p>
  10. </div>
  11. <div>
  12. <p class="intr-title">
  13. 1.5T
  14. </p>
  15. <p class="intr-description">
  16. 抗打峰值:1.5 Tbps,单日轻松吃掉 5 万次 DDoS 攻击
  17. </p>
  18. </div>
  19. <div>
  20. <p class="intr-title">
  21. 10Min
  22. </p>
  23. <p class="intr-description">
  24. 不拆架构、不动服务器、不写一条 waf 防御规则,老项目也能 10 分钟老兵新枪
  25. </p>
  26. </div>
  27. <div>
  28. <p class="intr-title">
  29. 99.999%
  30. </p>
  31. <p class="intr-description">
  32. 99.999% 可用性,全年停机时间< 5 分钟 </p>
  33. </div>
  34. </section>
  35. </template>
  36. <script setup></script>
  37. <style lang="scss" scoped>
  38. .intr-container {
  39. display: flex;
  40. position: relative;
  41. width: 100%;
  42. max-width: 1200px;
  43. margin: -64px auto 0;
  44. padding: 64px 48px 110px 48px;
  45. box-sizing: border-box;
  46. border-radius: 20px;
  47. z-index: 3;
  48. // background: linear-gradient(180deg, #A86AFD -110.27%, rgba(3, 0, 20, 0.00) 44.89%);
  49. background: linear-gradient(179deg, #A86AFD -65.5%, rgba(3, 0, 20, 0.80) 44.94%);
  50. border-top: 2px solid #953FFF;
  51. justify-content: space-between;
  52. gap: 35px;
  53. }
  54. .intr-title {
  55. color: #EADBFF;
  56. font-size: 54px;
  57. font-style: normal;
  58. font-weight: 700;
  59. line-height: 58px;
  60. }
  61. .intr-description {
  62. margin-top: 14px;
  63. width: 218px;
  64. color: rgba(222, 200, 255, 0.50);
  65. font-size: 16px;
  66. font-style: normal;
  67. font-weight: 400;
  68. line-height: 22.937px;
  69. }
  70. </style>