| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <section class="Label-container">
- <div class="label-item">
- <section class="label">{{labelProps.label}}</section>
- <section class="first-desc">{{labelProps.firstText}}</section>
- <section class="secoend-desc">{{labelProps.secoendText}}</section>
- </div>
- </section>
- </template>
- <script>
- export default {
- name: "LabelPage",
- props: {
- labelProps: {
- type: Object,
- required: true,
- },
- },
- mounted() {
- },
- };
- </script>
- <style scoped lang="scss">
- .Label-container {
- margin: 100px 0 70px;
- display: flex;
- justify-content: center;
- .label-item {
- position: relative;
- font-size: 16px;
- font-family: PingFangSC-Regular, sans-serif;
- font-weight: 400;
- color: #646A7E;
- line-height: 22px;
- text-align: center;
- .label {
- font-family: PingFangSC-Semibold, sans-serif;
- color: #333333;
- font-size: 34px;
- font-weight: 600;
- line-height: 48px;
- }
- .first-desc {
- margin: 30px 0 5px;
- text-align: center;
- }
- .secoend-desc {
- text-align: center;
- }
- }
- }
- </style>
|