| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /* 结果处理页面 */
- .prompt-set-target {
- display: flex;
- margin: 0 auto;
- overflow: hidden;
- }
- .prompt-set-target .panel {
- margin-bottom: 0;
- padding: 0;
- width: 100%;
- max-width: none;
- min-width: auto;
- }
- .prompt-set-target .panel-body {
- height: calc(100vh - 116px);
- }
- .prompt-set-target .panel-body form {
- height: 100%;
- }
- .prompt-set-target .panel-container {
- display: flex;
- gap: 24px;
- height: calc(100vh - 116px - 96px);
- }
- .prompt-set-target .panel-container > div {
- flex: 1;
- display: flex;
- flex-direction: column;
- gap: 10px;
- }
- .prompt-set-target .section-header {
- display: flex;
- align-items: center;
- gap: 6px;
- }
- .prompt-set-target .panel-container > div .section-content {
- flex: 1;
- overflow-y: auto;
- }
- .prompt-set-target .form-panel .section-content {
- border: solid 1px #E6EAF1;
- border-radius: 4px;
- }
- .prompt-set-target .option-group {
- display: flex;
- position: relative;
- }
- .prompt-set-target .option-group:not(:last-child)::after {
- content: "";
- display: block;
- width: 100%;
- height: 1px;
- background-color: #E6EAF1;
- position: absolute;
- left: 0;
- bottom: 0;
- }
- .prompt-set-target .option-group h5 {
- padding: 0 12px;
- background-color: #F8F8F8;
- color: #838A9D;
- font-weight: normal;
- display: flex;
- align-items: center;
- width: 120px;
- }
- .prompt-set-target .option-group .options {
- flex: 1;
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 16px 4px;
- padding: 16px 20px;
- }
- .prompt-set-target .preview-panel .section-content {
- border: solid 1px #E6EAF1;
- border-radius: 4px;
- padding: 12px;
- background-color: #F8F8F8;
- }
- .prompt-set-target .preview-panel ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
- display: flex;
- flex-direction: column;
- gap: 32px;
- }
- .prompt-set-target .preview-panel li {
- position: relative;
- }
- .prompt-set-target .preview-panel li:not(:last-child)::after {
- content: "";
- display: block;
- width: 100%;
- height: 1px;
- background-color: #E6EAF1;
- position: absolute;
- left: 0;
- bottom: -16px;
- }
- .prompt-set-target .preview-panel h5 {
- margin: 0;
- margin-bottom: 8px;
- font-size: 14px;
- color: #838A9D;
- font-weight: normal;
- }
- .prompt-set-target .preview-panel p {
- min-height: 20px;
- }
- .prompt-set-target .preview-panel p.pre {
- white-space: pre-wrap;
- }
- .prompt-set-target .preview-panel p + p {
- margin: 0;
- margin-top: 4px;
- }
|