sdk.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <template>
  2. <section>
  3. <section class="video-section">
  4. <div class="right-bg"></div>
  5. <div class="video-title">
  6. <h1>DDAC游戏盾——让APP自带</h1>
  7. <div class="video-subtitle">“国家级别”防御</div>
  8. <div class="video-text">
  9. <p>我们把7层防护做成了一根函数 StartService</p>
  10. <p>客户端程序员几分钟就能完成集成,黑产却要</p>
  11. <p>重新设计整条攻击链</p>
  12. </div>
  13. </div>
  14. </section>
  15. <Introduction />
  16. <section class="main-text">
  17. <h2 class="main-text-title">一体化解决游戏安全问题</h2>
  18. <p class="main-text-subtitle">整合资源、强化防御,让安全从未如此简单</p>
  19. </section>
  20. <Card />
  21. <section class="products-server">
  22. <h2>为您定制的企业级安全服务包</h2>
  23. <PlansSection style="margin-top: 40px;" />
  24. </section>
  25. <section class="products-sdk">
  26. <h2>安全加速SDK防护架构</h2>
  27. <NuxtImg width="1920" loading="eager" src="/images/products/flowchart.png" alt="安全加速SDK防护架构" />
  28. </section>
  29. </section>
  30. </template>
  31. <script setup>
  32. import { ref } from 'vue'
  33. import Introduction from '~/components/products/Introduction.vue'
  34. import Card from '~/components/products/Card.vue'
  35. const videoRef = ref(null)
  36. const onVideoLoaded = () => {
  37. if (videoRef.value) {
  38. videoRef.value.play().catch(() => {
  39. // 自动播放失败时静默处理
  40. })
  41. }
  42. }
  43. useHead(() => ({
  44. title: 'SDK安全加固',
  45. meta: [
  46. { name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' },
  47. { name: 'description', content: '一体化解决游戏安全问题' },
  48. { name: 'keywords', content: '全链加密 | DDoS 防护 | 智能加速 ' }
  49. ]
  50. }))
  51. </script>
  52. <style scoped lang="scss">
  53. .video-section {
  54. position: relative;
  55. width: 100%;
  56. margin: 0 auto;
  57. overflow: hidden;
  58. height: 790px;
  59. .right-bg {
  60. position: absolute;
  61. top: 0;
  62. right: 10%;
  63. width: 1216px;
  64. height: 840px;
  65. background-image: url('/images/products/sdk-bg1.png');
  66. background-size: contain;
  67. background-position: center;
  68. background-repeat: no-repeat;
  69. z-index: 3;
  70. // opacity: 0.6;
  71. }
  72. .video-title {
  73. position: absolute;
  74. top: 30%;
  75. left: 48%;
  76. transform: translateX(-50%);
  77. width: 100%;
  78. max-width: 1200px;
  79. z-index: 3;
  80. color: #fff;
  81. font-style: normal;
  82. display: flex;
  83. flex-direction: column;
  84. gap: 30px;
  85. h1 {
  86. font-size: 45px;
  87. font-weight: 500;
  88. line-height: 45px;
  89. background: linear-gradient(91deg, #D8D3FF -6.9%, #E6D2FF 111.73%);
  90. background-clip: text;
  91. }
  92. .video-subtitle {
  93. margin-left: -4%;
  94. color: #DBB9FF;
  95. font-size: 45px;
  96. font-weight: 500;
  97. line-height: 45px;
  98. }
  99. .video-text {
  100. margin-top: 20px;
  101. display: flex;
  102. flex-direction: column;
  103. gap: 20px;
  104. }
  105. p {
  106. color: #E2D9FF;
  107. font-size: 20px;
  108. font-weight: 400;
  109. line-height: 20px;
  110. }
  111. }
  112. }
  113. .main-text {
  114. width: 100%;
  115. text-align: center;
  116. margin-top: 92px;
  117. .main-text-title {
  118. font-size: 45px;
  119. font-style: normal;
  120. font-weight: 500;
  121. line-height: 80px;
  122. background: linear-gradient(90deg, #B8AFFF 20.05%, #C597FF 101.05%);
  123. background-clip: text;
  124. -webkit-background-clip: text;
  125. -webkit-text-fill-color: transparent;
  126. }
  127. .main-text-subtitle {
  128. color: #E2D9FF;
  129. font-size: 24px;
  130. font-style: normal;
  131. font-weight: 400;
  132. line-height: 80px;
  133. }
  134. }
  135. .products-server {
  136. width: 100%;
  137. height: 1280px;
  138. display: flex;
  139. flex-direction: column;
  140. align-items: center;
  141. margin-top: 150px;
  142. position: relative;
  143. h2 {
  144. font-size: 45px;
  145. font-style: normal;
  146. font-weight: 500;
  147. line-height: 80px;
  148. background: linear-gradient(91deg, #B8AFFF 10.8%, #C597FF 108.3%);
  149. background-clip: text;
  150. -webkit-background-clip: text;
  151. -webkit-text-fill-color: transparent;
  152. }
  153. &::before {
  154. content: '';
  155. position: absolute;
  156. left: 50%;
  157. top: -14%;
  158. width: 1280px;
  159. height: 1280px;
  160. transform: translate(-50%) rotate(173.992deg);
  161. border-radius: 50%;
  162. background: linear-gradient(189deg, #7A41FF 6.39%, rgba(3, 0, 20, 0.20) 30.53%);
  163. filter: blur(50px);
  164. z-index: 0;
  165. }
  166. }
  167. .products-sdk {
  168. display: flex;
  169. flex-direction: column;
  170. align-items: center;
  171. gap: 50px;
  172. margin-bottom: 92px;
  173. h2 {
  174. font-size: 62px;
  175. font-style: normal;
  176. font-weight: 500;
  177. line-height: 80px;
  178. background: linear-gradient(91deg, #C597FF 4.96%, #C597FF 109.07%);
  179. background-clip: text;
  180. -webkit-background-clip: text;
  181. -webkit-text-fill-color: transparent;
  182. }
  183. }
  184. </style>