| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <section class="mb-intr-container">
- <div>
- <p class="mb-intr-title">
- 1800+
- </p>
- <p class="mb-intr-description">
- 实用至上 - 全球 1800+ 边缘哨兵帮你的游戏"开挂"
- </p>
- </div>
- <div>
- <p class="mb-intr-title">
- 1.5T
- </p>
- <p class="mb-intr-description">
- 抗打峰值:1.5 Tbps,单日轻松吃掉 5 万次 DDoS 攻击
- </p>
- </div>
- <div>
- <p class="mb-intr-title">
- 10Min
- </p>
- <p class="mb-intr-description">
- 不拆架构、不动服务器、不写一条 waf 防御规则,老项目也能 10 分钟老兵新枪
- </p>
- </div>
- <div>
- <p class="mb-intr-title">
- 99.999%
- </p>
- <p class="mb-intr-description">
- 99.999% 可用性,全年停机时间< 5 分钟 </p>
- </div>
- </section>
- </template>
- <script setup></script>
- <style lang="scss" scoped>
- .mb-intr-container {
- margin-top: 40px;
- display: grid;
- grid-template-columns: repeat(2, minmax(0, 1fr));
- grid-template-rows: repeat(2, auto);
- gap: 20px;
- position: relative;
- width: 100%;
- padding: 16px;
- box-sizing: border-box;
- background: url("/images/products/bg-text1.png") no-repeat center center;
- background-size: contain;
- background-origin: border-box;
- z-index: 3;
- }
- .mb-intr-title {
- color: #EADBFF;
- font-size: 18px;
- font-weight: 700;
- }
- .mb-intr-description {
- margin-top: 4px;
- color: rgba(222, 200, 255, 0.50);
- font-size: 10px;
- font-weight: 400;
- }
- </style>
|