App.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <Layout></Layout>
  3. </template>
  4. <script setup></script>
  5. <style>
  6. .main-app {
  7. width: 100%;
  8. height: calc(100% - 120px);
  9. display: flex;
  10. }
  11. .section {
  12. width: 100%;
  13. background: #f4f5f6;
  14. overflow: auto;
  15. }
  16. .line-container-p18 {
  17. padding: 18px;
  18. background: #fff;
  19. max-width: 1200px;
  20. }
  21. .line-container-p24 {
  22. padding: 24px;
  23. background: #fff;
  24. max-width: 1200px;
  25. }
  26. .full-container-p24 {
  27. padding: 24px;
  28. min-height: 100%;
  29. background: #fff;
  30. max-width: 1200px;
  31. }
  32. .container-title {
  33. font-size: 18px;
  34. font-family: PingFangSC-Medium, PingFang SC;
  35. font-weight: 500;
  36. color: #0094fe;
  37. margin: 15px 0 15px 0;
  38. padding-left: 20px;
  39. }
  40. .container-second-title {
  41. font-size: 16px;
  42. font-family: PingFangSC-Medium, PingFang SC;
  43. font-weight: 500;
  44. color: #0094fe;
  45. margin: 15px 0 15px 0;
  46. }
  47. .line {
  48. display: flex;
  49. align-items: center;
  50. align-content: flex-start;
  51. margin: 20px;
  52. }
  53. .info-line {
  54. display: flex;
  55. align-items: center;
  56. align-content: flex-start;
  57. margin-right: 20px;
  58. }
  59. .info-line-title {
  60. width: 120px;
  61. height: 100%;
  62. font-size: 14px;
  63. font-family: PingFangSC-Regular, PingFang SC;
  64. font-weight: 400;
  65. color: #353a42;
  66. line-height: 100%;
  67. text-align: right;
  68. padding-right: 20px;
  69. }
  70. .info-line-text {
  71. width: 240px !important;
  72. height: 100%;
  73. line-height: 100%;
  74. }
  75. .info-line-textarea {
  76. width: 640px;
  77. height: 100%;
  78. line-height: 100%;
  79. }
  80. </style>