web.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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. <NuxtPicture width="541" height="626" class="item-img" src="/images/products/cdn.png" alt="cdn分发" />
  33. </div>
  34. <div class="cdn-item">
  35. <NuxtPicture width="500" height="692" 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. <NuxtPicture 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. </div>
  58. </template>
  59. <script setup>
  60. definePageMeta({
  61. layout: 'pc'
  62. })
  63. useHead(() => ({
  64. title: 'WEB安全加速',
  65. meta: [
  66. { name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' },
  67. { name: 'description', content: '智能路由/动态优化/实时处理' },
  68. { name: 'keywords', content: 'CDN分发|网站保护' }
  69. ]
  70. }))
  71. import icon1 from '~/assets/svg/products/web/icon.svg'
  72. import icon2 from '~/assets/svg/products/web/icon2.svg'
  73. import icon3 from '~/assets/svg/products/web/icon3.svg'
  74. import icon4 from '~/assets/svg/products/web/icon4.svg'
  75. import icon5 from '~/assets/svg/products/web/icon5.svg'
  76. import icon6 from '~/assets/svg/products/web/icon6.svg'
  77. const cards = [
  78. {
  79. icon: icon1,
  80. title: 'Anycast',
  81. text: '通过单一IP地址在全球范围内提供所有内容,并确保低延迟的访问体验。',
  82. },
  83. {
  84. icon: icon2,
  85. title: 'HTTP/2',
  86. text: '除了支持HTTP/1.0和HTTP/1.1外,还支持更加高效的HTTP/2协议,进一步提升性能。',
  87. },
  88. {
  89. icon: icon3,
  90. title: 'HTTPS',
  91. text: '提供自定义SSL/TLS证书,确保使用您选定的域名以保障内容的安全性。',
  92. },
  93. {
  94. icon: icon4,
  95. title: '失效操作',
  96. text: '缓存内容删除仅需几分钟,快速响应并更新内容。',
  97. },
  98. {
  99. icon: icon5,
  100. title: '日志记录',
  101. text: '与Stackdriver Logging集成,为您提供每次缓存命中与未命中的详细日志信息。',
  102. },
  103. {
  104. icon: icon6,
  105. title: '安全',
  106. text: '多维度拦截(国家、URL、IP)、请求和带宽限制、CC保护。',
  107. }
  108. ]
  109. </script>
  110. <style lang="scss" scoped>
  111. .video-section {
  112. position: relative;
  113. width: 100%;
  114. margin: 0 auto;
  115. overflow: hidden;
  116. .video-bg {
  117. width: 100%;
  118. height: auto;
  119. display: block;
  120. z-index: 1;
  121. position: relative;
  122. object-fit: cover;
  123. clip-path: inset(0 0 9% 0);
  124. }
  125. .video-title {
  126. position: absolute;
  127. top: 30%;
  128. left: 48%;
  129. transform: translateX(-50%);
  130. width: 100%;
  131. max-width: 1200px;
  132. z-index: 3;
  133. color: #fff;
  134. font-style: normal;
  135. display: flex;
  136. flex-direction: column;
  137. h1 {
  138. color: #D8D3FF;
  139. font-size: 45px;
  140. font-style: normal;
  141. font-weight: 500;
  142. line-height: 80px;
  143. span {
  144. color: #997DFF;
  145. }
  146. }
  147. .video-subtitle {
  148. margin-top: 20px;
  149. color: #E2D9FF;
  150. font-size: 20px;
  151. font-style: normal;
  152. font-weight: 400;
  153. line-height: 30px;
  154. }
  155. .video-text {
  156. color: #E2D9FF;
  157. font-size: 20px;
  158. font-style: normal;
  159. font-weight: 300;
  160. line-height: 30px;
  161. }
  162. p {
  163. color: #E2D9FF;
  164. font-size: 20px;
  165. font-weight: 400;
  166. line-height: 20px;
  167. }
  168. .video-btn {
  169. cursor: pointer;
  170. margin-top: 112px;
  171. display: flex;
  172. box-sizing: border-box;
  173. width: 255px;
  174. height: 60px;
  175. padding: 7px 21px 7px 45px;
  176. justify-content: center;
  177. align-items: center;
  178. gap: 10px;
  179. border-radius: 10px;
  180. background: linear-gradient(91deg, #A39DFF 1.24%, #7D46FF 122.93%);
  181. }
  182. }
  183. }
  184. .cdn-container {
  185. width: 100%;
  186. display: flex;
  187. flex-direction: column;
  188. align-items: center;
  189. .cdn-title {
  190. display: flex;
  191. flex-direction: column;
  192. align-items: center;
  193. gap: 20px;
  194. h2 {
  195. font-size: 45px;
  196. font-style: normal;
  197. font-weight: 500;
  198. line-height: 45px;
  199. background: linear-gradient(90deg, #B8AFFF 20.05%, #C597FF 101.05%);
  200. background-clip: text;
  201. -webkit-background-clip: text;
  202. -webkit-text-fill-color: transparent;
  203. }
  204. p {
  205. width: 842px;
  206. color: #E2D9FF;
  207. text-align: center;
  208. font-size: 24px;
  209. font-style: normal;
  210. font-weight: 400;
  211. line-height: 36px;
  212. }
  213. }
  214. .cdn-content {
  215. display: grid;
  216. width: 100%;
  217. max-width: 1200px;
  218. position: relative;
  219. margin: 0 auto;
  220. grid-template-columns: 1fr 1fr;
  221. grid-template-rows: repeat(3, 1fr);
  222. gap: 20px 100px;
  223. &::before,
  224. &::after {
  225. content: '';
  226. position: absolute;
  227. width: 520px;
  228. height: 520px;
  229. border-radius: 50%;
  230. background: rgba(137, 87, 255, 0.50);
  231. filter: blur(250px);
  232. }
  233. &::before {
  234. top: 12%;
  235. left: -40%;
  236. }
  237. &::after {
  238. right: -12%;
  239. bottom: 20%;
  240. }
  241. .cdn-item {
  242. display: contents;
  243. }
  244. // First Item
  245. .cdn-item:nth-child(1) {
  246. .item-text {
  247. grid-column: 1 / 2;
  248. grid-row: 1 / 2;
  249. align-self: flex-end;
  250. }
  251. .item-img {
  252. grid-column: 2 / 3;
  253. grid-row: 1 / 3;
  254. }
  255. }
  256. // Second Item
  257. .cdn-item:nth-child(2) {
  258. .item-img {
  259. grid-column: 1 / 2;
  260. grid-row: 2 / 4;
  261. }
  262. .item-text {
  263. grid-column: 2 / 3;
  264. grid-row: 3 / 4;
  265. align-self: flex-start;
  266. }
  267. }
  268. .item-text {
  269. display: flex;
  270. flex-direction: column;
  271. gap: 36px;
  272. h3 {
  273. font-size: 40px;
  274. font-style: normal;
  275. font-weight: 500;
  276. line-height: 40px;
  277. background: linear-gradient(91deg, #B8AFFF 10.8%, #C597FF 108.3%);
  278. background-clip: text;
  279. -webkit-background-clip: text;
  280. -webkit-text-fill-color: transparent;
  281. }
  282. p {
  283. width: 100%;
  284. color: #E2D9FF;
  285. font-size: 18px;
  286. font-style: normal;
  287. font-weight: 400;
  288. line-height: 36px;
  289. }
  290. }
  291. }
  292. }
  293. .cdn-bg {
  294. width: 100%;
  295. position: relative;
  296. &::before {
  297. position: absolute;
  298. content: "678CDN 特性";
  299. bottom: 42px;
  300. left: 50%;
  301. transform: translate(-50%);
  302. background: linear-gradient(90deg, #B8AFFF 20.05%, #C597FF 101.05%);
  303. background-clip: text;
  304. -webkit-background-clip: text;
  305. -webkit-text-fill-color: transparent;
  306. font-size: 45px;
  307. font-style: normal;
  308. font-weight: 500;
  309. line-height: 45px;
  310. }
  311. :deep(img) {
  312. width: 100%;
  313. height: auto;
  314. display: block;
  315. object-fit: cover;
  316. }
  317. }
  318. .cdn-cards {
  319. padding: 30px 0 50px 0;
  320. width: 100%;
  321. max-width: 1200px;
  322. margin: 0 auto;
  323. display: grid;
  324. grid-template-columns: repeat(3, 1fr);
  325. gap: 35px 30px;
  326. .card-item {
  327. display: flex;
  328. flex-direction: column;
  329. gap: 16px;
  330. padding: 35px;
  331. border-radius: 10px;
  332. border: 1px solid rgba(255, 255, 255, 0.10);
  333. background: rgba(255, 255, 255, 0.10);
  334. &:hover {
  335. border: 1px solid #9162FF;
  336. background: linear-gradient(129deg, rgba(122, 55, 255, 0.30) 16.95%, rgba(175, 70, 255, 0.30) 98.61%);
  337. }
  338. .item-title {
  339. display: flex;
  340. gap: 20px;
  341. align-items: center;
  342. img {
  343. width: 50px;
  344. height: 50px;
  345. }
  346. h4 {
  347. color: #FFF;
  348. font-size: 34px;
  349. font-style: normal;
  350. font-weight: 700;
  351. line-height: 36px;
  352. }
  353. }
  354. .item-text {
  355. width: 100%;
  356. color: rgba(255, 255, 255, 0.60);
  357. font-size: 18px;
  358. font-style: normal;
  359. font-weight: 400;
  360. line-height: 30px;
  361. }
  362. }
  363. }
  364. </style>