You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB
Vue

<script setup>
</script>
<template>
<div>
<p class="title">多指向性可调</p>
<p class="text">
该技术赋予麦克风多种可切换的拾音模式用户可根据会议场景灵活选择例如在单人发言时使用单指向精准拾音在圆桌讨论时切换至全向模式覆盖全场这种硬件与算法结合的灵活性实现了对拾音区域的精确控制从物理层面有效排除了非发言区域的噪声干扰提升了系统的场景适应性与信噪比
</p>
<div class="bg">
</div>
</div>
</template>
<style scoped lang="less">
.title{
text-align: center;
font-weight: 500;
font-size: 48px;
line-height: 100%;
color: #000000;
margin: 90px 0 50px 0;
}
.text{
width: 1480px;
margin:50px auto;
text-align: center;
font-weight: 400;
font-size: 18px;
line-height: 1.37em;
letter-spacing: 0.17em;
}
.bg{
width: 1232px;
height: 668px;
background-image: url("@/assets/img/tecBg7.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: auto;
background-color: #DEDEDE;
}
</style>