| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <template>
- <Layout></Layout>
- </template>
- <script setup></script>
- <style>
- .footer {
- text-align: center;
- }
- .main-app {
- width: 100%;
- height: calc(100% - 120px);
- display: flex;
- }
- .section {
- width: 100%;
- background: #f4f5f6;
- overflow: auto;
- }
- .first-title {
- height: 52px;
- line-height: 52px;
- width: 100%;
- box-sizing: border-box;
- background: #fff;
- font-size: 18px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333d43;
- padding-left: 20px;
- }
- .line-container-p18 {
- padding: 18px;
- background: #fff;
- }
- .line-container-p24 {
- padding: 24px;
- background: #fff;
- }
- .full-container-p24 {
- padding: 24px;
- height: calc(100% - 48px);
- background: #fff;
- }
- .container-title {
- font-size: 18px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #0094fe;
- margin: 15px 0 15px 0;
- }
- .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>
|