App.vue 1.6 KB

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