aboutUs.vue 1.88 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template>
  <div class="instructions">
    <div class="content">
      <p class="paragraph">
        <span
          >请您仔细阅读以下条款,并确认您已完全理解本协议之规定,尤其是免除及限制责任的条款、知识产权条款、法律适用及争议解决条款。请您仔细阅读以下条款,并确认您已完全理解本协议之规定,尤其是免除及限制责任的条款、知识产权条款、法律适用及争议解决条款。
        </span>
      </p>
      <p class="paragraph">
        <span>
          请您仔细阅读以下条款,并确认您已完全理解本协议之规定,尤其是免除及限制责任的条款、知识产权条款、法律适用及争议解决条款。请您仔细阅读以下条款,并确认您已完全理解本协议之规定,尤其是免除及限制责任的条款、知识产权条款、</span
        >
      </p>
      <p class="paragraph">
        <span>
          法律适用及争议解决条款。请您仔细阅读以下条款,并确认您已完全理解本协议之规定,尤其是免除及限制责任的条款、知识产权条款、法律适用及争议解决条款。</span
        >
      </p>
    </div>
  </div>
</template>

<script>
export default {
leiqingsong's avatar
leiqingsong committed
25
  name: "AboutUs"
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
};
</script>

<style lang="scss" scoped>
.instructions {
  box-sizing: border-box;
  padding: 10px 16px;
  p {
    margin: 0;
  }
  .title {
    font-family: PingFang-SC-Bold;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 20px;
    color: #333333;
    text-align: center;
    margin-bottom: 10px;
  }
  .paragraph {
    font-family: PingFang-SC-Regular;
    font-size: 13px;
    color: #333;
    line-height: 21px;
    text-indent: 2em;
  }
  .content {
    box-sizing: border-box;
    width: 345px;
    min-height: 100vh;
    padding: 10px 16px;
    background-color: #ffffff;
  }
}
</style>