App.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. margin-bottom: 16px;
  26. padding-left: 32px;
  27. box-shadow: inset -1px -1px 1px #e8e8e8;
  28. }
  29. .full-container-p24 {
  30. padding: 24px;
  31. min-height: 100%;
  32. background: #fff;
  33. max-width: 1200px;
  34. }
  35. .container-title {
  36. font-size: 18px;
  37. font-family: PingFangSC-Medium, PingFang SC;
  38. font-weight: 500;
  39. color: #0094fe;
  40. margin: 16px 0 10px 0;
  41. padding-left: 16px;
  42. max-width: 1200px;
  43. }
  44. .container-second-title {
  45. font-size: 16px;
  46. font-family: PingFangSC-Medium, PingFang SC;
  47. font-weight: 500;
  48. color: #0094fe;
  49. margin: 15px 0 15px 0;
  50. }
  51. .line {
  52. display: flex;
  53. align-items: center;
  54. align-content: flex-start;
  55. margin: 20px;
  56. }
  57. .info-line {
  58. display: flex;
  59. align-items: center;
  60. align-content: flex-start;
  61. margin-right: 20px;
  62. }
  63. .info-line-title {
  64. width: 120px;
  65. height: 100%;
  66. font-size: 14px;
  67. font-family: PingFangSC-Regular, PingFang SC;
  68. font-weight: 400;
  69. color: #353a42;
  70. line-height: 100%;
  71. text-align: right;
  72. padding-right: 20px;
  73. }
  74. .info-line-text {
  75. width: 240px !important;
  76. height: 100%;
  77. line-height: 100%;
  78. }
  79. .info-line-textarea {
  80. width: 640px;
  81. height: 100%;
  82. line-height: 100%;
  83. }
  84. </style>