| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <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%);
- border-top: 2px solid #953FFF;
- justify-content: space-between;
- gap: 35px;
- }
- .intr-title {
- color: #EADBFF;
- font-family: "Source Han Sans CN";
- 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-family: "Source Han Sans CN";
- font-size: 16px;
- font-style: normal;
- font-weight: 400;
- line-height: 22.937px;
- }
- </style>
|