about.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <section class="about">
  3. <NuxtImg class="about-bg" src="/images/about/bg.png" alt="about" />
  4. <section class="about-content">
  5. <div class="about-title">
  6. <h1>层层设防,步步为盾,全产品矩阵协同打造零穿透安全体系</h1>
  7. <p>A collaborative approach across the entire product portfolio creates a zero-penetration security system.</p>
  8. </div>
  9. <div class="about-box">
  10. <div class="about-box-text">
  11. <p style="color: #D2AEFF;">盾网络 — 专注于企业级DDoS/CC防护与安全加速的网络安全服务商。</p>
  12. <p>我们以自研流量清洗架构为核心,构建了覆盖高防CDN、游戏盾、高防服务器、高防IP、SDK防护的全链路安全产品体系。依托全国多节点分布式防御网络,为游戏、电商、金融、直播等行业客户提供T级攻击防御与毫秒级响应保障。
  13. </p>
  14. <p>技术是我们的信仰,稳定是我们的承诺。1盾,让每一次攻击都徒劳无功。</p>
  15. </div>
  16. <NuxtImg class="about-box-img" src="/images/about/dun.png" alt="about-box" />
  17. </div>
  18. </section>
  19. <section class="about-subtitle">
  20. <h2>全维度安全防护矩阵</h2>
  21. <p>以体系化、可持续的安全能力构建覆盖全业务场景的多维联动防护框架,全面提升企业在复杂</p>
  22. <p>环境下的风险抵御与运营保障水平</p>
  23. </section>
  24. <Flowchart />
  25. </section>
  26. </template>
  27. <script setup>
  28. import Flowchart from '~/components/about/Flowchart.vue';
  29. </script>
  30. <style lang="scss" scoped>
  31. .about {
  32. width: 100%;
  33. padding-top: 88px;
  34. position: relative;
  35. margin: 0 auto;
  36. .about-bg {
  37. position: absolute;
  38. top: 0;
  39. left: 50%;
  40. transform: translateX(-50%);
  41. width: 1430px;
  42. height: auto;
  43. }
  44. .about-content {
  45. padding-top: 180px;
  46. display: flex;
  47. flex-direction: column;
  48. align-items: center;
  49. justify-content: center;
  50. .about-title {
  51. display: flex;
  52. flex-direction: column;
  53. align-items: center;
  54. justify-content: center;
  55. color: #FFF;
  56. h1 {
  57. font-size: 45px;
  58. font-weight: 400;
  59. }
  60. p {
  61. font-size: 18px;
  62. font-weight: 400;
  63. }
  64. }
  65. .about-box {
  66. position: relative;
  67. width: 1200px;
  68. height: 487px;
  69. margin-top: 192px;
  70. border-radius: 30px;
  71. border: 1px solid rgba(13, 0, 34, 0.00);
  72. background: linear-gradient(179deg, rgba(3, 0, 20, 0.50) 1.22%, rgba(151, 87, 255, 0.10) 41.19%);
  73. box-shadow: 0 4px 4px 0 rgba(98, 0, 255, 0.30) inset;
  74. backdrop-filter: blur(25px);
  75. .about-box-text {
  76. width: 520px;
  77. height: 260px;
  78. display: flex;
  79. flex-direction: column;
  80. align-items: start;
  81. justify-content: space-between;
  82. margin: 102px 0 125px 50px;
  83. color: #FFF;
  84. font-size: 16px;
  85. font-weight: 400;
  86. }
  87. .about-box-img {
  88. position: absolute;
  89. top: 50%;
  90. right: 90px;
  91. transform: translateY(-50%);
  92. width: 400px;
  93. height: auto;
  94. }
  95. }
  96. }
  97. .about-subtitle {
  98. margin-top: 96px;
  99. display: flex;
  100. flex-direction: column;
  101. align-items: center;
  102. justify-content: center;
  103. color: #FFF;
  104. h2 {
  105. font-size: 45px;
  106. font-weight: 700;
  107. margin-bottom: 32px;
  108. }
  109. p {
  110. font-size: 16px;
  111. font-weight: 400;
  112. line-height: 36px;
  113. }
  114. }
  115. }
  116. </style>