| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <Layout></Layout>
- </template>
- <script setup></script>
- <style>
- .main-app {
- width: 100%;
- height: calc(100% - 120px);
- display: flex;
- }
- .section {
- width: 100%;
- background: #f4f5f6;
- overflow: auto;
- }
- .line-container-p18 {
- padding: 18px;
- background: #fff;
- max-width: 1200px;
- }
- .line-container-p24 {
- padding: 24px;
- background: #fff;
- max-width: 1200px;
- margin-bottom: 16px;
- padding-left: 32px;
- box-shadow: inset -1px -1px 1px #e8e8e8;
- }
- .full-container-p24 {
- padding: 24px;
- min-height: 100%;
- background: #fff;
- max-width: 1200px;
- }
- .container-title {
- font-size: 18px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #0094fe;
- margin: 16px 0 10px 0;
- padding-left: 16px;
- max-width: 1200px;
- }
- .container-second-title {
- font-size: 16px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #0094fe;
- margin: 15px 0 15px 0;
- }
- .line {
- display: flex;
- align-items: center;
- align-content: flex-start;
- margin: 20px;
- }
- .info-line {
- display: flex;
- align-items: center;
- align-content: flex-start;
- margin-right: 20px;
- }
- .info-line-title {
- width: 120px;
- height: 100%;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #353a42;
- line-height: 100%;
- text-align: right;
- padding-right: 20px;
- }
- .info-line-text {
- width: 240px !important;
- height: 100%;
- line-height: 100%;
- }
- .info-line-textarea {
- width: 640px;
- height: 100%;
- line-height: 100%;
- }
- </style>
|