| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <section class="intr-container">
- <div>
- <p class="intr-title">
- 1800+
- </p>
- <p class="intr-description">
- 实用至上-全球 1800+ 边缘哨兵帮你的游戏“开挂”
- </p>
- </div>
- <div>
- <p class="intr-title">
- 1.5T
- </p>
- <p class="intr-description">
- 抗打峰值:1.5 Tbps,单日轻松吃掉 5 万次 DDoS 攻击
- </p>
- </div>
- <div>
- <p class="intr-title">
- 10Min
- </p>
- <p class="intr-description">
- 不拆架构、不动服务器、不写一条 waf 防御规则,老项目也能 10 分钟老兵新枪
- </p>
- </div>
- <div>
- <p class="intr-title">
- 99.999%
- </p>
- <p class="intr-description">
- 99.999% 可用性,全年停机时间< 5 分钟 </p>
- </div>
- </section>
- </template>
- <script setup></script>
- <style lang="scss" scoped>
- .intr-container {
- display: flex;
- position: relative;
- width: 100%;
- max-width: 1200px;
- margin: -64px auto 0;
- padding: 64px 48px 110px 48px;
- box-sizing: border-box;
- border-radius: 20px;
- z-index: 3;
- // background: linear-gradient(180deg, #A86AFD -110.27%, rgba(3, 0, 20, 0.00) 44.89%);
- background: linear-gradient(179deg, #A86AFD -65.5%, rgba(3, 0, 20, 0.80) 44.94%);
- border-top: 2px solid #953FFF;
- justify-content: space-between;
- gap: 35px;
- }
- .intr-title {
- color: #EADBFF;
- font-size: 54px;
- font-style: normal;
- font-weight: 700;
- line-height: 58px;
- }
- .intr-description {
- margin-top: 14px;
- width: 218px;
- color: rgba(222, 200, 255, 0.50);
- font-size: 16px;
- font-style: normal;
- font-weight: 400;
- line-height: 22.937px;
- }
- </style>
|