123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- .save {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.4);
- z-index: 99;
- .modalBody {
- width: 350px;
- background: #fff;
- border-radius: 5px;
- padding: 10px 20px;
- color: #333;
- .title {
- width: 100%;
- text-align: center;
- font-size: 16px;
- position: relative;
- padding: 16px 0;
- i {
- position: absolute;
- right: 0;
- top: 50%;
- font-size: 20px;
- color: #666;
- cursor: pointer;
- transform: translateY(-50%);
- }
- }
- .content {
- width: 100%;
- height: 117px;
- background: #f9fafb;
- border: 1px solid #e5e9ed;
- border-radius: 5px;
- overflow: hidden;
- div {
- text-align: center;
- margin: 0;
- &.icon {
- margin-top: 17px;
- i {
- color: #34b349;
- font-size: 30px !important;
- &.transport-wenhao {
- color: #f5a523;
- }
- &.transport-shibai {
- color: #ff3a52;
- }
- }
- }
- &.defeat {
- color: #333;
- font-size: 16px;
- }
- &:nth-child(3) {
- font-size: 14px;
- color: #666;
- }
- }
- }
- button {
- margin-top: 10px;
- margin-bottom: 10px;
- }
- }
- // 新增
- &.add {
- .modalBody {
- width: 578px;
- padding: 0 24px;
- .content {
- width: 100%;
- min-height: 166px;
- padding: 10px 24px 0;
- height: auto;
- overflow-y: auto;
- .addForm {
- .ant-form-item {
- margin-bottom: 14px;
- .ant-form-item-label {
- text-align: left;
- }
- &.mb0{
- margin-bottom: 6px;
- }
- .ant-radio-wrapper{
- margin-right: 0;
- }
- }
- }
- }
- button:nth-child(1) {
- margin-right: 8px;
- }
- }
- }
- }
|