about.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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 class="about-matrix">
  26. <h2>驱动业务持续稳定运行的全域安</h2>
  27. <h2>全产品矩阵</h2>
  28. <p>以全球节点、智能调度与多层防护为底座,构建覆盖业务接入、传输、抗攻击与终端安全的全</p>
  29. <p>链路产品体系,为企业提供可扩展、可进化的稳态安全能力。</p>
  30. </section>
  31. <MatrixCard />
  32. <section class="about-a">
  33. <h3>万千攻击,1 盾尽消</h3>
  34. <p>"T级清洗能力 × 智能流量调度 × 全链路产品联防 — 这就是1盾的底气"</p>
  35. </section>
  36. <DCard />
  37. </section>
  38. </template>
  39. <script setup>
  40. import Flowchart from '~/components/about/Flowchart.vue';
  41. import MatrixCard from '~/components/about/MatrixCard.vue';
  42. import DCard from '~/components/about/DCard.vue';
  43. useHead({
  44. title: '了解我们'
  45. })
  46. </script>
  47. <style lang="scss" scoped>
  48. .about {
  49. width: 100%;
  50. padding-top: 88px;
  51. position: relative;
  52. margin: 0 auto;
  53. .about-bg {
  54. position: absolute;
  55. top: 0;
  56. left: 50%;
  57. transform: translateX(-50%);
  58. width: 1430px;
  59. height: auto;
  60. z-index: 1;
  61. }
  62. .about-content {
  63. padding-top: 180px;
  64. display: flex;
  65. flex-direction: column;
  66. align-items: center;
  67. justify-content: center;
  68. .about-title {
  69. position: relative;
  70. z-index: 2;
  71. display: flex;
  72. flex-direction: column;
  73. align-items: center;
  74. justify-content: center;
  75. color: #FFF;
  76. h1 {
  77. font-size: 45px;
  78. font-weight: 400;
  79. }
  80. p {
  81. font-size: 18px;
  82. font-weight: 400;
  83. }
  84. }
  85. .about-box {
  86. position: relative;
  87. width: 1200px;
  88. height: 487px;
  89. margin-top: 192px;
  90. border-radius: 30px;
  91. background: linear-gradient(179deg, rgba(3, 0, 20, 0.50) 1.22%, rgba(151, 87, 255, 0.10) 41.19%);
  92. box-shadow: 0 4px 4px 0 rgba(98, 0, 255, 0.30) inset;
  93. backdrop-filter: blur(25px);
  94. z-index: 2;
  95. background: url('/images/about/text-bg.png') no-repeat center;
  96. background-size: cover;
  97. .about-box-text {
  98. width: 520px;
  99. height: 260px;
  100. display: flex;
  101. flex-direction: column;
  102. align-items: start;
  103. justify-content: space-between;
  104. margin: 102px 0 125px 50px;
  105. color: #FFF;
  106. font-size: 16px;
  107. font-weight: 400;
  108. }
  109. .about-box-img {
  110. position: absolute;
  111. top: 50%;
  112. right: 90px;
  113. transform: translateY(-50%);
  114. width: 400px;
  115. height: auto;
  116. }
  117. }
  118. }
  119. .about-subtitle {
  120. margin-top: 96px;
  121. display: flex;
  122. flex-direction: column;
  123. align-items: center;
  124. justify-content: center;
  125. color: #FFF;
  126. h2 {
  127. font-size: 45px;
  128. font-weight: 700;
  129. margin-bottom: 32px;
  130. }
  131. p {
  132. font-size: 16px;
  133. font-weight: 400;
  134. line-height: 36px;
  135. }
  136. }
  137. .about-matrix {
  138. display: flex;
  139. flex-direction: column;
  140. align-items: center;
  141. justify-content: center;
  142. color: #FFF;
  143. margin-top: 160px;
  144. h2 {
  145. font-size: 45px;
  146. font-weight: 700;
  147. line-height: 60px;
  148. }
  149. p {
  150. font-size: 16px;
  151. font-weight: 400;
  152. line-height: 36px;
  153. &:first-of-type {
  154. margin-top: 32px;
  155. }
  156. }
  157. }
  158. .about-a {
  159. margin-top: 160px;
  160. display: flex;
  161. flex-direction: column;
  162. align-items: center;
  163. justify-content: center;
  164. color: #FFF;
  165. gap: 20px;
  166. h3 {
  167. font-size: 45px;
  168. font-weight: 700;
  169. }
  170. p {
  171. font-size: 16px;
  172. font-weight: 400;
  173. }
  174. }
  175. }
  176. </style>