1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <div class="container">
- <div class="review-main">
- <h1>往届回顾1231</h1>
- </div>
- </div>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- }
- },
- methods: {
- },
- mounted() {
- }
- }
- </script>
- <style scoped>
- html, body, #app {
- height: 100% !important;
- user-select: none;
- }
- .main-content {
- background:rgb(248,248,248) !important;
- }
- .container {
- width: 1200px;
- margin: 100px auto;
- display:flex;
- flex-direction:row;
- justify-content:space-between;
- }
- .review-main {
- background:#fff;
- width:100%;
- height:600px;
- }
- .container .left-box {
- width:25%;
- height:600px;
- background:#fff;
- }
- .container .right-box {
- width:73%;
- height:600px;
- background:#fff;
- }
- .center-col {
- }
- </style>
|