Introduction.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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-family: "Source Han Sans CN";
  57. font-size: 54px;
  58. font-style: normal;
  59. font-weight: 700;
  60. line-height: 58px;
  61. }
  62. .intr-description {
  63. margin-top: 14px;
  64. width: 218px;
  65. color: rgba(222, 200, 255, 0.50);
  66. font-family: "Source Han Sans CN";
  67. font-size: 16px;
  68. font-style: normal;
  69. font-weight: 400;
  70. line-height: 22.937px;
  71. }
  72. </style>