web.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <template>
  2. <section class="mb-web">
  3. <section class="mb-video-section">
  4. <div class="mb-cdn-dg">
  5. <NuxtImg class="mb-cdn-bg" src="/images/products/cdn-bg.png" alt="cdn" />
  6. </div>
  7. <div class="mb-video-title">
  8. <p class="mb-video-text">Intelligent routing / dynamic optimization / real-time processing</p>
  9. <h1><span>智能</span>路由/<span>动态</span>优化/<span>实时</span>处理</h1>
  10. <div class="mb-video-subtitle">不止于快,更稳更安全,为您的业务保驾护航</div>
  11. <div class="mb-video-btn">
  12. <span>联系我们</span>
  13. <Icon name="line-md:chevron-right" />
  14. </div>
  15. </div>
  16. <section class="mb-perspective-grid-section">
  17. <div class="mb-perspective-container">
  18. <div class="mb-grid-floor">
  19. <div class="mb-grid-lines"></div>
  20. </div>
  21. </div>
  22. </section>
  23. </section>
  24. <section class="mb-cdn">
  25. <h2>678CDN功能</h2>
  26. <p>让科技为您的业务发光发亮,CDN功能助力您的网站顺畅、高效、安全地运作,同时提供数据防范和预防技术,让您的网站免于遭受恶意攻击</p>
  27. </section>
  28. <section class="mb-cdn-content">
  29. <div class="mb-cdn-item">
  30. <div class="mb-item-text">
  31. <h3>CDN内容分发</h3>
  32. <p>
  33. 加速您的网站,最速达优化性能。CDN内容分发网络遍布五大洲,我们的CDN将使您的网站前所未有的更流畅,提升您的用户体验</p>
  34. </div>
  35. <NuxtImg class="mb-item-img mb-img1" src="/images/products/cdn.png" alt="cdn分发" />
  36. </div>
  37. <div class="mb-cdn-item">
  38. <NuxtImg class="mb-item-img mb-img2" src="/images/products/678yun.png" alt="678云盾" />
  39. <div class="mb-item-text">
  40. <h3>网站保护</h3>
  41. <p>
  42. 使用678云盾高防CDN网站保护,网站攻击将无处遁形!我们的专业服务团队利用最佳技术和技巧为您提供安全性和可靠性保护,确保您的业务安全运营,稳步前进。</p>
  43. </div>
  44. </div>
  45. </section>
  46. <section class="mb-card-text">
  47. <h2>678CDN 特性</h2>
  48. </section>
  49. <section class="mb-cdn-cards">
  50. <div class="mb-card-item" v-for="(card, index) in cards" :key="index">
  51. <div class="mb-item-title">
  52. <img :src="card.icon" alt="icon" />
  53. <h4>{{ card.title }}</h4>
  54. </div>
  55. <div class="mb-item-text">{{ card.text }}</div>
  56. </div>
  57. </section>
  58. <SecurityServicesSuite />
  59. <WebCard />
  60. </section>
  61. </template>
  62. <script setup>
  63. useHead(() => ({
  64. title: 'Web安全加速 - 移动端',
  65. meta: [
  66. { name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' }
  67. ]
  68. }))
  69. import icon1 from '~/assets/svg/products/web/icon.svg'
  70. import icon2 from '~/assets/svg/products/web/icon2.svg'
  71. import icon3 from '~/assets/svg/products/web/icon3.svg'
  72. import icon4 from '~/assets/svg/products/web/icon4.svg'
  73. import icon5 from '~/assets/svg/products/web/icon5.svg'
  74. import icon6 from '~/assets/svg/products/web/icon6.svg'
  75. import SecurityServicesSuite from '~/components/mobile/products/SecurityServicesSuite.vue'
  76. import WebCard from '~/components/mobile/products/WebCard.vue'
  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 scoped lang="scss">
  111. .mb-web {
  112. .mb-video-section {
  113. position: relative;
  114. width: 100%;
  115. height: 200px;
  116. margin: 0 auto;
  117. overflow: hidden;
  118. .mb-cdn-dg {
  119. position: absolute;
  120. top: 0;
  121. right: -26px;
  122. background: url('/images/products/dengg.png') no-repeat center center;
  123. background-size: contain;
  124. width: 212px;
  125. height: 200px;
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. z-index: 1;
  130. .mb-cdn-bg {
  131. position: relative;
  132. z-index: 1;
  133. animation: mb-float 3s ease-in-out infinite;
  134. }
  135. :deep(img) {
  136. width: 140px;
  137. height: auto;
  138. }
  139. }
  140. @keyframes mb-float {
  141. 0%,
  142. 100% {
  143. transform: translateY(0);
  144. }
  145. 50% {
  146. transform: translateY(-10px);
  147. }
  148. }
  149. .mb-video-title {
  150. position: relative;
  151. padding-top: 30px;
  152. width: 100%;
  153. z-index: 3;
  154. color: #fff;
  155. font-style: normal;
  156. display: flex;
  157. flex-direction: column;
  158. h1 {
  159. color: #D8D3FF;
  160. font-size: 15px;
  161. font-weight: 500;
  162. line-height: 16px;
  163. span {
  164. color: #997DFF;
  165. }
  166. }
  167. .mb-video-subtitle {
  168. margin-top: 10px;
  169. width: 140px;
  170. color: #E2D9FF;
  171. font-size: 10px;
  172. font-weight: 400;
  173. line-height: 14px;
  174. }
  175. .mb-video-text {
  176. color: #E2D9FF;
  177. font-size: 8px;
  178. font-weight: 300;
  179. line-height: 8px;
  180. }
  181. .mb-video-btn {
  182. cursor: pointer;
  183. margin-top: 20px;
  184. display: flex;
  185. box-sizing: border-box;
  186. width: 85px;
  187. height: 24px;
  188. justify-content: center;
  189. align-items: center;
  190. gap: 10px;
  191. border-radius: 4px;
  192. color: #FFF;
  193. font-size: 10px;
  194. font-weight: 400;
  195. line-height: 14px;
  196. background: linear-gradient(91deg, #A39DFF 1.24%, #7D46FF 122.93%);
  197. }
  198. }
  199. }
  200. .mb-perspective-grid-section {
  201. width: 100%;
  202. height: 100px;
  203. overflow: hidden;
  204. position: absolute;
  205. bottom: 0;
  206. background: transparent;
  207. perspective: 400px;
  208. z-index: 0;
  209. .mb-perspective-container {
  210. width: 100%;
  211. height: 100%;
  212. display: flex;
  213. justify-content: center;
  214. align-items: flex-start;
  215. transform-style: preserve-3d;
  216. }
  217. .mb-grid-floor {
  218. width: 200%;
  219. height: 400px;
  220. position: relative;
  221. transform: rotateX(60deg);
  222. transform-origin: center top;
  223. overflow: hidden;
  224. }
  225. .mb-grid-lines {
  226. width: 100%;
  227. height: 200%;
  228. background-image:
  229. linear-gradient(rgba(22, 24, 75, 0.5) 1px, transparent 1px),
  230. linear-gradient(90deg, rgba(22, 24, 75, 0.5) 1px, transparent 1px);
  231. background-size: 50px 50px;
  232. animation: mb-gridMove 4s linear infinite;
  233. }
  234. &::after {
  235. content: '';
  236. position: absolute;
  237. bottom: 0;
  238. left: 0;
  239. width: 100%;
  240. height: 100px;
  241. background: linear-gradient(to bottom, transparent 0%, #030014 100%);
  242. pointer-events: none;
  243. z-index: 1;
  244. }
  245. }
  246. @keyframes mb-gridMove {
  247. 0% {
  248. transform: translateY(-50%);
  249. }
  250. 100% {
  251. transform: translateY(0);
  252. }
  253. }
  254. .mb-cdn {
  255. padding-top: 24px;
  256. text-align: center;
  257. h2 {
  258. font-size: 20px;
  259. font-weight: 500;
  260. background: linear-gradient(90deg, #B8AFFF 20.05%, #C597FF 101.05%);
  261. background-clip: text;
  262. -webkit-background-clip: text;
  263. -webkit-text-fill-color: transparent;
  264. }
  265. color: rgba(255, 255, 255, 0.60);
  266. font-size: 12px;
  267. font-weight: 400;
  268. line-height: 24px;
  269. }
  270. .mb-cdn-content {
  271. box-sizing: border-box;
  272. display: flex;
  273. flex-direction: column;
  274. width: 100%;
  275. position: relative;
  276. margin: 30px auto 0;
  277. gap: 10px;
  278. .mb-cdn-item {
  279. display: flex;
  280. align-items: center;
  281. justify-content: space-between;
  282. gap: 20px;
  283. .mb-item-img {
  284. flex-shrink: 0;
  285. }
  286. .mb-img1 {
  287. width: 154px;
  288. height: auto;
  289. }
  290. .mb-img2 {
  291. width: 140px;
  292. height: auto;
  293. }
  294. }
  295. }
  296. .mb-item-text {
  297. flex: 1;
  298. display: flex;
  299. flex-direction: column;
  300. gap: 12px;
  301. h3 {
  302. font-size: 16px;
  303. font-weight: 500;
  304. background: linear-gradient(91deg, #B8AFFF 10.8%, #C597FF 108.3%);
  305. background-clip: text;
  306. -webkit-background-clip: text;
  307. -webkit-text-fill-color: transparent;
  308. }
  309. p {
  310. width: 100%;
  311. color: rgba(255, 255, 255, 0.60);
  312. font-size: 12px;
  313. font-weight: 400;
  314. line-height: 20px;
  315. }
  316. }
  317. .mb-card-text {
  318. padding: 16px 0;
  319. text-align: center;
  320. font-size: 20px;
  321. font-weight: 500;
  322. background: linear-gradient(90deg, #B8AFFF 20.05%, #C597FF 101.05%);
  323. background-clip: text;
  324. -webkit-background-clip: text;
  325. -webkit-text-fill-color: transparent;
  326. }
  327. .mb-cdn-cards {
  328. width: 100%;
  329. margin: 0 auto;
  330. display: grid;
  331. grid-template-columns: repeat(2, 1fr);
  332. gap: 10px;
  333. .mb-card-item {
  334. display: flex;
  335. flex-direction: column;
  336. gap: 6px;
  337. padding: 10px;
  338. border-radius: 4px;
  339. border: 1px solid rgba(255, 255, 255, 0.10);
  340. background: rgba(255, 255, 255, 0.10);
  341. .mb-item-title {
  342. display: flex;
  343. gap: 8px;
  344. align-items: center;
  345. img {
  346. width: 22px;
  347. height: 22px;
  348. }
  349. h4 {
  350. color: #FFF;
  351. font-size: 14px;
  352. font-style: normal;
  353. font-weight: 700;
  354. }
  355. }
  356. .mb-item-text {
  357. width: 100%;
  358. color: rgba(255, 255, 255, 0.60);
  359. font-size: 10px;
  360. font-weight: 400;
  361. line-height: 14px;
  362. }
  363. }
  364. }
  365. }
  366. </style>