| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div class="background">
- <div class="bigbox">
- <PerLeft></PerLeft>
- <PerRight></PerRight>
- </div>
- </div>
- </template>
- <script>
- import PerLeft from "./PerLeft";
- import PerRight from "./PerRight";
- export default {
- name: "PerCent",
- components: {
- PerRight,
- PerLeft,
- },
- };
- </script>
- <style scoped>
- .background {
- width: 100%;
- background-color: rgb(237, 244, 237);
- padding-top: 4rem;
- padding-bottom: 4rem;
- }
- .bigbox {
- background: rgb(255, 255, 255);
- width: 90%;
- left: 50%;
- top: 6rem;
- translate: -50% 0;
- margin-left: 48rem;
- margin-top: 2rem;
- padding: 2rem;
- }
- </style>
|