button.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. .c_pub_button_confirm {
  2. color: #fff;
  3. background-color: #0061FF;
  4. padding: 0 24px;
  5. font-size: 14px;
  6. min-width: 64px;
  7. font-weight: 500;
  8. border-radius: 4px;
  9. box-sizing: border-box;
  10. border: none;
  11. cursor: pointer;
  12. transition: all 0.2s ease-in-out;
  13. height: 36px;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. line-height: 1;
  18. }
  19. .c_pub_button_confirm:hover {
  20. background-color: #3681FC !important;
  21. }
  22. .c_pub_button_confirm + .c_pub_button_confirm {
  23. margin-left: 20px;
  24. }
  25. .c_pub_button_add {
  26. color: #0061FF;
  27. background-color: #fff;
  28. border: 1.5px solid #0061FF;
  29. padding: 0 12px;
  30. font-size: 14px;
  31. min-width: 64px;
  32. font-weight: 500;
  33. border-radius: 4px;
  34. box-sizing: border-box;
  35. cursor: pointer;
  36. transition: all 0.2s ease-in-out;
  37. height: 36px;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. line-height: 1;
  42. }
  43. .c_pub_button_add:hover {
  44. background: #E0EAFB !important;
  45. /* background-color: #f0f4fa !important; */
  46. }
  47. .c_pub_button_add + .c_pub_button_add {
  48. margin-left: 20px;
  49. }
  50. .c_pub_button_return {
  51. color: #060E17;
  52. background-color: #F0F4FA;
  53. border: 1.5px solid #CAD1DC;
  54. padding: 0 24px;
  55. font-size: 14px;
  56. min-width: 64px;
  57. font-weight: 500;
  58. border-radius: 4px;
  59. box-sizing: border-box;
  60. cursor: pointer;
  61. transition: all 0.2s ease-in-out;
  62. height: 36px;
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. line-height: 1;
  67. }
  68. .c_pub_button_return:hover {
  69. /* background-color: #e1e5ea !important; */
  70. /* background-color: #dbdbdb !important; */
  71. background: #CAD1DC !important;
  72. }
  73. .c_pub_button_return + .c_pub_button_return {
  74. margin-left: 20px;
  75. }
  76. .c_pub_button_return + .c_pub_button_confirm {
  77. margin-left: 20px;
  78. }
  79. .c_pub_button_delete {
  80. color: #717c8d;
  81. background-color: #e7ebf1;
  82. padding: 0 24px;
  83. font-size: 14px;
  84. min-width: 64px;
  85. font-weight: 500;
  86. border-radius: 4px;
  87. box-sizing: border-box;
  88. border: none;
  89. cursor: pointer;
  90. transition: all 0.2s ease-in-out;
  91. height: 36px;
  92. display: flex;
  93. align-items: center;
  94. justify-content: center;
  95. line-height: 1;
  96. }
  97. .c_pub_button_delete:hover {
  98. background-color: #e1e5ea !important;
  99. }
  100. .c_pub_button_delete + .c_pub_button_delete {
  101. margin-left: 20px;
  102. }
  103. .c_pub_button_delete + .c_pub_button_confirm {
  104. margin-left: 15px;
  105. }
  106. .pub_btn_add_img2::before,
  107. .pub_btn_add_task_img::before,
  108. .pub_btn_finish_img::before,
  109. .pub_btn_last_img::before,
  110. .pub_btn_next_img::before,
  111. .pub_btn_return_img::before,
  112. .pub_btn_delete_img::before,
  113. .pub_btn_paste_img::before,
  114. .pub_btn_add_img::before {
  115. content: "";
  116. width: 17px;
  117. height: 17px;
  118. min-width: 17px;
  119. min-height: 17px;
  120. background-size: 100% 100%;
  121. display: block;
  122. margin-right: 7px;
  123. }
  124. .pub_btn_add_img::before {
  125. width: 20px;
  126. height: 20px;
  127. background-image: url(../icon/new/addStage.png);
  128. }
  129. .pub_btn_add_img2::before {
  130. background-image: url(../icon/new/icon_add.png);
  131. }
  132. .pub_btn_paste_img::before {
  133. /* background-image: url(../icon/new/icon_paste.png); */
  134. background-image: url(../icon/new/aiPaste.png);
  135. }
  136. .pub_btn_finish_img::before {
  137. background-image: url(../icon/new/icon_finish.png);
  138. }
  139. .pub_btn_last_img::before {
  140. transform: rotate(180deg);
  141. background-image: url(../icon/new/icon_last.png);
  142. /* background-image: url(../icon/new/icon_last.png); */
  143. }
  144. .pub_btn_next_img::before {
  145. background-image: url(../icon/new/icon_next.png);
  146. }
  147. .pub_btn_return_img::before {
  148. background-image: url(../icon/new/icon_return.png);
  149. }
  150. .pub_btn_delete_img::before {
  151. background-image: url(../icon/new/delete_u.png);
  152. }
  153. .pub_btn_add_task_img::before {
  154. background-image: url(../icon/new/icon_addTask.png);
  155. }
  156. .r_pub_button_retrun {
  157. color: #0061FF;
  158. font-size: 14px;
  159. cursor: pointer;
  160. display: flex;
  161. align-items: center;
  162. justify-content: center;
  163. }
  164. .r_pub_button_retrun::before {
  165. content: "";
  166. width: 14px;
  167. height: 14px;
  168. min-width: 14px;
  169. min-height: 14px;
  170. background-size: 100% 100%;
  171. display: block;
  172. margin-right: 7px;
  173. background-image: url(../icon/new/icon_return2.png);
  174. }
  175. .r_pub_button_course {
  176. color: #fff;
  177. background-color: #466b99;
  178. font-size: 16px;
  179. font-weight: 500;
  180. border-radius: 4px;
  181. box-sizing: border-box;
  182. border: none;
  183. cursor: pointer;
  184. transition: all 0.2s ease-in-out;
  185. padding: 12px 20px;
  186. display: flex;
  187. align-items: center;
  188. justify-content: center;
  189. line-height: 1;
  190. position: relative;
  191. }
  192. .r_pub_button_course::before {
  193. content: "";
  194. width: 14px;
  195. height: 14px;
  196. min-width: 14px;
  197. min-height: 14px;
  198. background-size: 100% 100%;
  199. display: block;
  200. margin-right: 7px;
  201. background-image: url(../icon/new/upload.png);
  202. }