tanghaolin
2025-02-19 ae33d67ec2a4edc3ccfbb61631c475cfb74bc206
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<template>
  <div class="banner-carousel">
    <el-carousel height="400px" :interval="5000" arrow="always">
      <el-carousel-item>
        <div class="banner-slide bg-blue-900 text-white">
          <div class="container mx-auto px-4 h-full flex items-center">
            <div class="flex justify-between items-center w-full">
              <div class="flex-1">
                <div class="text-4xl font-bold mb-4">
                  全国信标委软件与系统工程
                </div>
                <div class="text-5xl font-bold mb-8">
                  分委会(TC28/SC7)成立40周年
                </div>
                <div class="flex space-x-8 text-xl">
                  <div class="text-center">
                    <div class="text-4xl font-bold text-blue-400">136<sup>+</sup></div>
                    <div>发布国家标准</div>
                  </div>
                  <div class="text-center">
                    <div class="text-4xl font-bold text-blue-400">19<sup>+</sup></div>
                    <div>发布行业标准</div>
                  </div>
                  <div class="text-center">
                    <div class="text-4xl font-bold text-blue-400">211<sup>+</sup></div>
                    <div>对口国际标准化组织</div>
                  </div>
                  <div class="text-center">
                    <div class="text-4xl font-bold text-blue-400">60<sup>+</sup></div>
                    <div>参与的国际标准</div>
                  </div>
                </div>
              </div>
              <div class="w-1/3">
                <!-- <img src="/40th-anniversary.png" alt="40周年" class="w-full" /> -->
              </div>
            </div>
          </div>
        </div>
      </el-carousel-item>
      <!-- 可以添加更多轮播项 -->
    </el-carousel>
  </div>
</template>
 
<script setup lang="ts">
</script>
 
<style scoped>
.banner-slide {
  height: 100%;
}
 
:deep(.el-carousel__arrow) {
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  
  &:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
</style>