Introduction.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <section class="mb-intr-container">
  3. <div>
  4. <p class="mb-intr-title">
  5. 1800+
  6. </p>
  7. <p class="mb-intr-description">
  8. 实用至上 - 全球 1800+ 边缘哨兵帮你的游戏"开挂"
  9. </p>
  10. </div>
  11. <div>
  12. <p class="mb-intr-title">
  13. 1.5T
  14. </p>
  15. <p class="mb-intr-description">
  16. 抗打峰值:1.5 Tbps,单日轻松吃掉 5 万次 DDoS 攻击
  17. </p>
  18. </div>
  19. <div>
  20. <p class="mb-intr-title">
  21. 10Min
  22. </p>
  23. <p class="mb-intr-description">
  24. 不拆架构、不动服务器、不写一条 waf 防御规则,老项目也能 10 分钟老兵新枪
  25. </p>
  26. </div>
  27. <div>
  28. <p class="mb-intr-title">
  29. 99.999%
  30. </p>
  31. <p class="mb-intr-description">
  32. 99.999% 可用性,全年停机时间< 5 分钟 </p>
  33. </div>
  34. </section>
  35. </template>
  36. <script setup></script>
  37. <style lang="scss" scoped>
  38. .mb-intr-container {
  39. margin-top: 40px;
  40. display: grid;
  41. grid-template-columns: repeat(2, minmax(0, 1fr));
  42. grid-template-rows: repeat(2, auto);
  43. gap: 20px;
  44. position: relative;
  45. width: 100%;
  46. padding: 16px;
  47. box-sizing: border-box;
  48. background: url("/images/products/bg-text1.png") no-repeat center center;
  49. background-size: contain;
  50. background-origin: border-box;
  51. z-index: 3;
  52. }
  53. .mb-intr-title {
  54. color: #EADBFF;
  55. font-size: 18px;
  56. font-weight: 700;
  57. }
  58. .mb-intr-description {
  59. margin-top: 4px;
  60. color: rgba(222, 200, 255, 0.50);
  61. font-size: 10px;
  62. font-weight: 400;
  63. }
  64. </style>