Introduction.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. background: url("/images/products/text-bg.png") no-repeat center center;
  48. z-index: 3;
  49. justify-content: space-between;
  50. gap: 35PX;
  51. }
  52. .intr-title {
  53. color: #EADBFF;
  54. font-size: 54PX;
  55. font-style: normal;
  56. font-weight: 700;
  57. line-height: 58PX;
  58. }
  59. .intr-description {
  60. margin-top: 14PX;
  61. width: 218PX;
  62. color: rgba(222, 200, 255, 0.50);
  63. font-size: 16PX;
  64. font-style: normal;
  65. font-weight: 400;
  66. line-height: 22.937PX;
  67. }
  68. </style>