No Description

WantedPublishView.less 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .wrapper {
  2. .wanted_middle {
  3. color: #e1ad28;
  4. font-size: 17px;
  5. margin-top: 21px;
  6. .wanted_cover {
  7. width: 95px;
  8. }
  9. }
  10. .wanted_bottom {
  11. .wanted_bottom_title {
  12. color: #565656;
  13. font-size: 14px;
  14. }
  15. .wanted_input_number {
  16. margin: 11px auto;
  17. width: 266px;
  18. height: 36px;
  19. :global {
  20. .ant-input {
  21. color: #fb4b56;
  22. font-size: 16px;
  23. text-align: center;
  24. &:focus,
  25. &:hover {
  26. outline: none;
  27. box-shadow: none;
  28. border-color: #fb4b56;
  29. }
  30. }
  31. }
  32. }
  33. .wanted_bottom_tips {
  34. color: #9b9b9b;
  35. font-size: 12px;
  36. }
  37. }
  38. footer {
  39. margin-top: 40px;
  40. .wanted_confirm_button {
  41. font-size: 16px;
  42. color: white;
  43. background-color: #71c135;
  44. &:hover,
  45. &:focus {
  46. color: white;
  47. outline: none;
  48. box-shadow: none;
  49. background-color: lighten(#71c135, 10%);
  50. border-color: lighten(#71c135, 50%);
  51. }
  52. }
  53. .wanted_cancel_button {
  54. margin-top: 12px;
  55. color: #787f8c;
  56. font-size: 12px;
  57. cursor: pointer;
  58. &:hover,
  59. &:focus {
  60. color: #787f8c;
  61. text-shadow: #565656;
  62. }
  63. }
  64. }
  65. }
  66. .wantedCancelModal {
  67. width: 320px;
  68. padding: 32px 32px 24px 32px;
  69. box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
  70. background-color: white;
  71. border-radius: 4px;
  72. .top {
  73. display: flex;
  74. .questionIcon {
  75. width: 22px;
  76. height: 22px;
  77. img {
  78. width: 100%;
  79. height: 100%;
  80. }
  81. }
  82. .title {
  83. font-size: 16px;
  84. color: rgba(0, 0, 0, 0.85);
  85. font-weight: bold;
  86. margin-left: 16px;
  87. }
  88. }
  89. .content {
  90. margin-left: 38px;
  91. font-size: 14px;
  92. }
  93. footer {
  94. display: flex;
  95. justify-content: flex-end;
  96. align-items: center;
  97. margin-top: 20px;
  98. .modalCancel {
  99. }
  100. .modalOk {
  101. margin-left: 8px;
  102. background-color: #71c135;
  103. color: white;
  104. &:hover,
  105. &:focus {
  106. color: white;
  107. outline: none;
  108. box-shadow: none;
  109. background-color: lighten(#71c135, 10%);
  110. border-color: lighten(#71c135, 50%);
  111. }
  112. }
  113. }
  114. }