1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @import "../../../../src/theme.less";
- .save {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.4);
- z-index: 99;
- .modalBody {
- width: 1000px;
- background: #fff;
- border-radius: 5px;
- padding: 10px 20px;
- color: #333;
- .title {
- width: 100%;
- text-align: center;
- font-size: 18px;
- position: relative;
- i {
- position: absolute;
- right: 0;
- top: 0;
- font-size: 20px;
- color: #666;
- cursor: pointer;
- padding: 0 5px;
- }
- }
- .content {
- width: 100%;
- border: 1px solid #e5e9ed;
- border-radius: 5px;
- overflow: hidden;
- margin-top: 12px;
- .conItem {
- color: #333;
- .jiTit {
- height: 50px;
- line-height: 50px;
- border-bottom: 1px solid #e5e9ed;
- padding: 0 32px;
- }
- .defeat {
- font-size: 14px;
- color: #333;
- padding: 15px 32px;
- min-height: 125px;
- }
- &.noCon {
- background: #f9fafb;
- padding: 16px 32px 24px 32px;
- border-top: 1px solid #e5e9ed;
- .title {
- text-align: left;
- font-size: 14px;
- margin-bottom: 8px;
- }
- textarea {
- min-height: 210px;
- }
- }
- }
- }
- button {
- margin-top: 10px;
- margin-left: 10px;
- }
- }
- .txtL {
- text-align: left !important;
- }
- .txtR {
- text-align: right !important;
- }
- }
|