<script setup>

</script>

<template>
<div>
  <div class="content2">
    <van-uploader>
      <div class="wrap1">
        <div class="wrap1_1">
          <img src="@/assets/images/zu1172@2x.png" alt="">
        </div>
        <div class="wrap1_2">上传身份证人像面</div>
      </div>
    </van-uploader>
  </div>
  <div class="content3">
    <van-uploader>
      <div class="wrap1">
        <div class="wrap1_1">
          <img src="@/assets/images/zu1169@2x.png" alt="">
        </div>
        <div class="wrap1_2">上传身份证国徽面</div>
      </div>
    </van-uploader>
  </div>
</div>
</template>

<style scoped lang="scss">
.content3 {
  .wrap1 {
    width: 332px;
    height: 220px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    .wrap1_2{
      margin-top: 3px;
      color: #2159C4;
      font-size: 12px;
    }
    .wrap1_1 {
      width: 293px;
      height: 170px;

      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
.content2 {
  margin-bottom: 20px;
  .wrap1 {
    width: 332px;
    height: 220px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    .wrap1_2{
      margin-top: 3px;
      color: #2159C4;
      font-size: 12px;
    }
    .wrap1_1 {
      width: 293px;
      height: 170px;

      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
</style>