123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- @import "../../../../src/theme.less";
- :host ::ng-deep .on {
- color: #fff !important;
- }
- .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;
- }
- }
|