web.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. <template>
  2. <div>
  3. <section class="video-section">
  4. <video ref="videoRef" class="video-bg" src="~/assets/video/web.mp4" autoplay loop muted playsinline
  5. @loadedmetadata="onVideoLoaded"></video>
  6. <div class="video-title">
  7. <p class="video-text">Intelligent routing / dynamic optimization / real-time processing</p>
  8. <h1><span>智能</span>路由/<span>动态</span>优化/<span>实时</span>处理</h1>
  9. <div class="video-subtitle">不止于快,更稳更安全,为您的业务保驾护航</div>
  10. <div class="video-btn">
  11. <span>联系我们</span>
  12. <Icon name="line-md:chevron-right" />
  13. </div>
  14. </div>
  15. </section>
  16. <section class="cdn-container">
  17. <div class="cdn-title">
  18. <h2>
  19. 678CDN功能
  20. </h2>
  21. <p>让科技为您的业务发光发亮,CDN功能助力您的网站顺畅、高效、安全地运作,
  22. 同时提供数据防范和预防技术,让您的网站免于遭受恶意攻击</p>
  23. </div>
  24. <div class="cdn-content">
  25. <div class="cdn-item">
  26. <div class="item-text">
  27. <h3>CDN内容分发</h3>
  28. <p>
  29. 加速您的网站,最速达优化性能。CDN内容分发网络遍布五大洲,我们的CDN将使您的网站前所未有的更流畅,提升您的用户体验,而我们的数据中心则提供商业的资讯管理和保护,确保您的数据平安无误。
  30. </p>
  31. </div>
  32. <NuxtImg width="400" height="462" class="item-img" src="/images/products/cdn.png" alt="cdn分发" />
  33. </div>
  34. <div class="cdn-item">
  35. <NuxtImg width="316" height="436" class="item-img" src="/images/products/678yun.png" alt="678云盾" />
  36. <div class="item-text">
  37. <h3>网站保护</h3>
  38. <p>
  39. 使用678云盾高防CDN网站保护,网站攻击将无处遁形!我们的专业服务团队利用最佳技术和技巧为您提供安全性和可靠性保护,确保您的业务安全运营,稳步前进。
  40. </p>
  41. </div>
  42. </div>
  43. </div>
  44. </section>
  45. <section class="cdn-bg">
  46. <NuxtImg src="/images/products/web-bg.png" width="100%" height="auto" alt="背景图" />
  47. </section>
  48. <section class="cdn-cards">
  49. <div class="card-item" v-for="(card, index) in cards" :key="index">
  50. <div class="item-title">
  51. <img :src="card.icon" alt="icon" />
  52. <h4>{{ card.title }}</h4>
  53. </div>
  54. <div class="item-text">{{ card.text }}</div>
  55. </div>
  56. </section>
  57. <SecurityServicesSuite />
  58. <CaseCard />
  59. <div class="bg-img">
  60. <NuxtImg src="/images/products/web-bg2.png" class="bg-img" alt="bg-img" />
  61. </div>
  62. </div>
  63. </template>
  64. <script setup>
  65. useHead(() => ({
  66. title: 'WEB安全加速',
  67. meta: [
  68. { name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' },
  69. { name: 'description', content: '智能路由/动态优化/实时处理' },
  70. { name: 'keywords', content: 'CDN分发|网站保护' }
  71. ]
  72. }))
  73. import icon1 from '~/assets/svg/products/web/icon.svg'
  74. import icon2 from '~/assets/svg/products/web/icon2.svg'
  75. import icon3 from '~/assets/svg/products/web/icon3.svg'
  76. import icon4 from '~/assets/svg/products/web/icon4.svg'
  77. import icon5 from '~/assets/svg/products/web/icon5.svg'
  78. import icon6 from '~/assets/svg/products/web/icon6.svg'
  79. import SecurityServicesSuite from '~/components/products/SecurityServicesSuite.vue'
  80. import CaseCard from '~/components/products/CaseCard.vue'
  81. const cards = [
  82. {
  83. icon: icon1,
  84. title: 'Anycast',
  85. text: '通过单一IP地址在全球范围内提供所有内容,并确保低延迟的访问体验。',
  86. },
  87. {
  88. icon: icon2,
  89. title: 'HTTP/2',
  90. text: '除了支持HTTP/1.0和HTTP/1.1外,还支持更加高效的HTTP/2协议,进一步提升性能。',
  91. },
  92. {
  93. icon: icon3,
  94. title: 'HTTPS',
  95. text: '提供自定义SSL/TLS证书,确保使用您选定的域名以保障内容的安全性。',
  96. },
  97. {
  98. icon: icon4,
  99. title: '失效操作',
  100. text: '缓存内容删除仅需几分钟,快速响应并更新内容。',
  101. },
  102. {
  103. icon: icon5,
  104. title: '日志记录',
  105. text: '与Stackdriver Logging集成,为您提供每次缓存命中与未命中的详细日志信息。',
  106. },
  107. {
  108. icon: icon6,
  109. title: '安全',
  110. text: '多维度拦截(国家、URL、IP)、请求和带宽限制、CC保护。',
  111. }
  112. ]
  113. </script>
  114. <style lang="scss" scoped>
  115. .video-section {
  116. position: relative;
  117. width: 100%;
  118. margin: 0 auto;
  119. overflow: hidden;
  120. .video-bg {
  121. width: 100%;
  122. height: auto;
  123. display: block;
  124. z-index: 1;
  125. position: relative;
  126. object-fit: cover;
  127. clip-path: inset(0 0 9% 0);
  128. }
  129. .video-title {
  130. position: absolute;
  131. top: 30%;
  132. left: 48%;
  133. transform: translateX(-50%);
  134. width: 100%;
  135. max-width: 1200px;
  136. z-index: 3;
  137. color: #fff;
  138. font-style: normal;
  139. display: flex;
  140. flex-direction: column;
  141. h1 {
  142. color: #D8D3FF;
  143. font-size: 45px;
  144. font-style: normal;
  145. font-weight: 500;
  146. line-height: 80px;
  147. span {
  148. color: #997DFF;
  149. }
  150. }
  151. .video-subtitle {
  152. margin-top: 20px;
  153. color: #E2D9FF;
  154. font-size: 20px;
  155. font-style: normal;
  156. font-weight: 400;
  157. line-height: 30px;
  158. }
  159. .video-text {
  160. color: #E2D9FF;
  161. font-size: 20px;
  162. font-style: normal;
  163. font-weight: 300;
  164. line-height: 30px;
  165. }
  166. .video-btn {
  167. cursor: pointer;
  168. margin-top: 112px;
  169. display: flex;
  170. box-sizing: border-box;
  171. width: 255px;
  172. height: 60px;
  173. padding: 7px 21px 7px 45px;
  174. justify-content: center;
  175. align-items: center;
  176. gap: 10px;
  177. border-radius: 10px;
  178. background: linear-gradient(91deg, #A39DFF 1.24%, #7D46FF 122.93%);
  179. }
  180. }
  181. }
  182. .cdn-container {
  183. width: 100%;
  184. display: flex;
  185. flex-direction: column;
  186. align-items: center;
  187. .cdn-title {
  188. display: flex;
  189. flex-direction: column;
  190. align-items: center;
  191. gap: 20px;
  192. h2 {
  193. font-size: 45px;
  194. font-style: normal;
  195. font-weight: 500;
  196. line-height: 45px;
  197. background: linear-gradient(90deg, #B8AFFF 20.05%, #C597FF 101.05%);
  198. background-clip: text;
  199. -webkit-background-clip: text;
  200. -webkit-text-fill-color: transparent;
  201. }
  202. p {
  203. width: 842px;
  204. color: #E2D9FF;
  205. text-align: center;
  206. font-size: 24px;
  207. font-style: normal;
  208. font-weight: 400;
  209. line-height: 36px;
  210. }
  211. }
  212. .cdn-content {
  213. display: flex;
  214. flex-direction: column;
  215. width: 100%;
  216. max-width: 1200px;
  217. position: relative;
  218. margin: 136px auto 0;
  219. gap: 20px;
  220. &::before,
  221. &::after {
  222. content: '';
  223. position: absolute;
  224. width: 520px;
  225. height: 520px;
  226. border-radius: 50%;
  227. background: rgba(137, 87, 255, 0.50);
  228. filter: blur(250px);
  229. }
  230. &::before {
  231. top: 12%;
  232. left: -40%;
  233. }
  234. &::after {
  235. right: -12%;
  236. bottom: 20%;
  237. }
  238. .cdn-item {
  239. display: flex;
  240. align-items: center;
  241. justify-content: space-between;
  242. gap: 100px;
  243. .item-img {
  244. flex-shrink: 0;
  245. }
  246. }
  247. .item-text {
  248. flex: 1;
  249. display: flex;
  250. flex-direction: column;
  251. gap: 36px;
  252. h3 {
  253. font-size: 40px;
  254. font-style: normal;
  255. font-weight: 500;
  256. line-height: 40px;
  257. background: linear-gradient(91deg, #B8AFFF 10.8%, #C597FF 108.3%);
  258. background-clip: text;
  259. -webkit-background-clip: text;
  260. -webkit-text-fill-color: transparent;
  261. }
  262. p {
  263. width: 100%;
  264. color: #E2D9FF;
  265. font-size: 18px;
  266. font-style: normal;
  267. font-weight: 400;
  268. line-height: 36px;
  269. }
  270. }
  271. }
  272. }
  273. .cdn-bg {
  274. width: 100%;
  275. position: relative;
  276. &::before {
  277. position: absolute;
  278. content: "678CDN 特性";
  279. bottom: 42px;
  280. left: 50%;
  281. transform: translate(-50%);
  282. background: linear-gradient(90deg, #B8AFFF 20.05%, #C597FF 101.05%);
  283. background-clip: text;
  284. -webkit-background-clip: text;
  285. -webkit-text-fill-color: transparent;
  286. font-size: 45px;
  287. font-style: normal;
  288. font-weight: 500;
  289. line-height: 45px;
  290. }
  291. :deep(img) {
  292. width: 100%;
  293. height: auto;
  294. display: block;
  295. object-fit: cover;
  296. }
  297. }
  298. .cdn-cards {
  299. padding: 30px 0 50px 0;
  300. width: 100%;
  301. max-width: 1200px;
  302. margin: 0 auto;
  303. display: grid;
  304. grid-template-columns: repeat(3, 1fr);
  305. gap: 35px 30px;
  306. .card-item {
  307. display: flex;
  308. flex-direction: column;
  309. gap: 16px;
  310. padding: 35px;
  311. border-radius: 10px;
  312. border: 1px solid rgba(255, 255, 255, 0.10);
  313. background: rgba(255, 255, 255, 0.10);
  314. &:hover {
  315. border: 1px solid #9162FF;
  316. background: linear-gradient(129deg, rgba(122, 55, 255, 0.30) 16.95%, rgba(175, 70, 255, 0.30) 98.61%);
  317. }
  318. .item-title {
  319. display: flex;
  320. gap: 20px;
  321. align-items: center;
  322. img {
  323. width: 50px;
  324. height: 50px;
  325. }
  326. h4 {
  327. color: #FFF;
  328. font-size: 34px;
  329. font-style: normal;
  330. font-weight: 700;
  331. line-height: 36px;
  332. }
  333. }
  334. .item-text {
  335. width: 100%;
  336. color: rgba(255, 255, 255, 0.60);
  337. font-size: 18px;
  338. font-style: normal;
  339. font-weight: 400;
  340. line-height: 30px;
  341. }
  342. }
  343. }
  344. .bg-img {
  345. width: 100%;
  346. height: 450px;
  347. position: relative;
  348. :deep(img) {
  349. width: 100%;
  350. height: auto;
  351. position: absolute;
  352. top: 0;
  353. left: 0;
  354. }
  355. }
  356. </style>