query-range.component.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .save {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. height: 100%;
  7. background: rgba(0, 0, 0, 0.4);
  8. z-index: 99;
  9. .modalBody {
  10. width: 350px;
  11. background: #fff;
  12. border-radius: 5px;
  13. padding: 10px 20px;
  14. color: #333;
  15. .title {
  16. width: 100%;
  17. text-align: center;
  18. font-size: 16px;
  19. position: relative;
  20. padding: 16px 0;
  21. i {
  22. position: absolute;
  23. right: 0;
  24. top: 50%;
  25. font-size: 20px;
  26. color: #666;
  27. cursor: pointer;
  28. transform: translateY(-50%);
  29. }
  30. }
  31. .content {
  32. width: 100%;
  33. height: 117px;
  34. background: #f9fafb;
  35. border: 1px solid #e5e9ed;
  36. border-radius: 5px;
  37. overflow: hidden;
  38. div {
  39. text-align: center;
  40. margin: 0;
  41. &.icon {
  42. margin-top: 17px;
  43. i {
  44. color: #34b349;
  45. font-size: 30px !important;
  46. &.transport-wenhao {
  47. color: #f5a523;
  48. }
  49. &.transport-shibai {
  50. color: #ff3a52;
  51. }
  52. }
  53. }
  54. &.defeat {
  55. color: #333;
  56. font-size: 16px;
  57. }
  58. &:nth-child(3) {
  59. font-size: 14px;
  60. color: #666;
  61. }
  62. }
  63. }
  64. button {
  65. margin-top: 10px;
  66. margin-bottom: 10px;
  67. }
  68. }
  69. // 新增
  70. &.add {
  71. .modalBody {
  72. width: 578px;
  73. padding: 0 24px;
  74. .content {
  75. width: 100%;
  76. min-height: 166px;
  77. padding: 10px 24px 0;
  78. height: auto;
  79. overflow-y: auto;
  80. .addForm {
  81. .ant-form-item {
  82. margin-bottom: 14px;
  83. .ant-form-item-label {
  84. text-align: left;
  85. }
  86. &.mb0{
  87. margin-bottom: 6px;
  88. }
  89. .ant-radio-wrapper{
  90. margin-right: 0;
  91. }
  92. }
  93. }
  94. }
  95. button:nth-child(1) {
  96. margin-right: 8px;
  97. }
  98. }
  99. }
  100. }