transactionFinanceGuide.vue 2.66 KB
<template>
  <div class="transactionFinanceGuide">
    <div class="box">
      <div class="title">·交易融资指南</div>
      <div class="content">
        <div class="title">交易指南</div>
        <hr class="line" />
        <div class="text">
          通过数据交易所进行合规的流通交易;在数据交易所挂牌的数据有数据经纪商去撮合,然后隐私加密计算进行交付。
        </div>
        <div class="guide1">
          <img :src="guide1" alt="">
        </div>
        <div class="title">融资指南</div>
        <hr class="line" />
        <div class="text">
          数据资产登记价值评估后,企业提出贷款申请,然后银行对该笔数据资产合法性、可靠性、稳定性等进行审核,审核后办理质押登记,发放相应贷款。
        </div>
        <div class="guide2">
          <img :src="guide2" alt="">
        </div>
      </div>
    </div>
  </div>
  
</template>

<script setup name="transactionFinanceGuide">
import guide1 from "@/assets/images/guide1.png"
import guide2 from "@/assets/images/guide2.png"
</script>
<style lang="scss" scoped>
.transactionFinanceGuide {
  width: 100%;
  height: 100%;
  background: rgb(242, 243, 248);
  overflow: auto;

  .box {
    background: #fff;
    padding-bottom: 20px;
    padding: 0 16px;
    padding-bottom: 16px;

    .title {
      font-size: 18px;
      color: #212121;
      letter-spacing: 0;
      line-height: 27px;
      font-weight: 600;
      padding: 16px 0 8px 0;
    }

    .content {
      border: 1px solid rgba(217, 217, 217, 1);
      padding: 20px;

      .title {
        font-size: 20px;
        color: #1161BF;
        letter-spacing: 0;
        line-height: 30px;
        font-weight: 600;
      }

      .line {
        width: 100%;
        height: 1px;
        background: #A4BFEC;
        border: none;
      }

      .text {
        margin-top: 20px;
        font-size: 14px;
        color: #666666;
        letter-spacing: 0;
        line-height: 21px;
        font-weight: 400;
      }

      .guide1 {
        width: 100%;
        margin-top: 20px;
        background: #FFFFFF;
        border-right: none;

        img {
          width: 100%;
          height: auto;
          display: block;
        }
      }

      .guide2 {
        width: 100%;
        margin-top: 20px;
        background: #FFFFFF;

        img {
          width: 100%;
          height: auto;
          display: block;
        }
      }
    }
  }

  .footer {
    position: fixed;
    width: 100%;
    text-align: center;

    .text1 {
      font-size: 12px;
      color: #4FA1A4;
      letter-spacing: 0;
      line-height: 18px;
      font-weight: 400;
    }
  }
}
</style>