123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- @charset "utf-8";
- #paper-process-sentence {
- height: 100%;
- .layout {
- background: #fff;
- height: 100%;
- display: flex;
- flex-direction: column;
- position: relative;
- .layout-header {
- height: 84px;
- margin: 0 30px;
- border-bottom: 1px solid rgba(233, 239, 248, 1);
- text-align: center;
- .left {
- line-height: 84px;
- position: absolute;
- .title {
- color: #000000;
- display: inline-block;
- font-size: 20px;
- font-weight: 600;
- }
- }
- .right {
- float: right;
- text-align: right;
- padding: 20px 0;
- color: #5E677B;
- .text {
- line-height: 22px;
- img {
- margin-right: 5px;
- }
- }
- .b {
- margin-left: 30px;
- .s {
- color: #4299FF;
- }
- }
- .icon {
- margin-left: 10px;
- }
- }
- }
- }
- .layout-footer {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 60px;
- line-height: 60px;
- box-shadow: 0px -4px 14px 0px rgba(189, 199, 215, 0.16);
- .left {
- position: absolute;
- left: 30px;
- top: 0;
- }
- .right {
- position: absolute;
- right: 30px;
- top: 0;
- .button.lager {
- font-weight: 500;
- }
- }
- .center {
- padding-left: 108px;
- padding-right: 165px;
- display: flex;
- .p {
- flex: 1;
- margin-top: 22px;
- }
- .t {
- width: 40px;
- text-align: right;
- }
- }
- .progress.basic {
- background: #8897A8;
- .progress-item {
- background: #217DFF;
- }
- }
- }
- .layout-body {
- background: #fff;
- flex: 1;
- overflow: hidden;
- overflow-y: auto;
- position: relative;
- padding: 20px 30px;
- margin-bottom: 60px;
- .title {
- color: #050930;
- margin-bottom: 10px;
- }
- .desc {
- color: #050930;
- margin-bottom: 30px;
- user-select: none;
- cursor: pointer;
- font-size: 14px;
- span.user {
- color: #217DFF;
- }
- span.true {
- background-color: rgba(23, 165, 27, 0.06);
- }
- span.false {
- background-color: rgba(253, 247, 247, 1);
- }
- }
- .label {
- color: #000000;
- margin-bottom: 10px;
- font-weight: 600;
- }
- .input {
- margin-bottom: 20px;
- display: block;
- }
- .select {
- border-radius: 2px;
- border: 1px solid rgba(200, 209, 218, 1);
- padding: 10px 20px;
- margin-bottom: 40px;
- .select-title {
- color: #050930;
- margin-bottom: 10px;
- }
- }
- .analysis {
- .tabs {
- width: 320px;
- .tab.active,
- .tab:hover {
- background: #F4F9FE;
- }
- }
- .text-block {
- padding: 20px;
- background: #F4F9FE;
- }
- }
- }
- }
|