LiveBroadcast.vue 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <div class="container">
  3. <div class="review-main">
  4. <h1>往届回顾1231</h1>
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. components: {
  11. },
  12. data() {
  13. return {
  14. }
  15. },
  16. methods: {
  17. },
  18. mounted() {
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. html, body, #app {
  24. height: 100% !important;
  25. user-select: none;
  26. }
  27. .main-content {
  28. background:rgb(248,248,248) !important;
  29. }
  30. .container {
  31. width: 1200px;
  32. margin: 100px auto;
  33. display:flex;
  34. flex-direction:row;
  35. justify-content:space-between;
  36. }
  37. .review-main {
  38. background:#fff;
  39. width:100%;
  40. height:600px;
  41. }
  42. .container .left-box {
  43. width:25%;
  44. height:600px;
  45. background:#fff;
  46. }
  47. .container .right-box {
  48. width:73%;
  49. height:600px;
  50. background:#fff;
  51. }
  52. .center-col {
  53. }
  54. </style>