myHistoryTest.scss 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. .page {
  2. padding: 60px 0px;
  3. width: 100%;
  4. height: 100%;
  5. background: rgba(237,239,247,1);
  6. }
  7. .history-tools {
  8. width: 1180px;
  9. height: 64px;
  10. margin: 0 auto;
  11. margin-top: 20px;
  12. display: flex;
  13. flex-direction: row;
  14. justify-content: space-between;
  15. align-items:center;
  16. .left {
  17. margin-left: 8px;
  18. .el-button{
  19. padding: 7px 20px;
  20. position: relative
  21. }
  22. .el-button--primary{
  23. width: 220px;
  24. border-radius: 17px;
  25. font-size: 14px;
  26. color: #4E5DFF;
  27. background-color: #fff;
  28. border-color: #fff;
  29. }
  30. .el-button--primary:focus,.el-button--primary:hover {
  31. background: #4E5DFF;
  32. border-color: #4E5DFF;
  33. color: #fff;
  34. }
  35. .icon-right {
  36. position: absolute;
  37. right: 10px;
  38. }
  39. }
  40. .right {
  41. margin-right: 14px;
  42. .el-button{
  43. padding: 6px 20px;
  44. }
  45. .el-button--primary{
  46. width: 220px;
  47. border-radius: 17px;
  48. font-size: 16px;
  49. font-weight: 350;
  50. color: #fff;
  51. background-color: #4E5DFF;;
  52. border-color: #4E5DFF;;
  53. }
  54. }
  55. }
  56. .test-list {
  57. width: 1180px;
  58. margin: 0 auto;
  59. display: flex;
  60. flex-direction: row;
  61. flex-wrap: wrap;
  62. .item {
  63. position: relative;
  64. width: 220px;
  65. height: 270px;
  66. background: #FFFFFF;
  67. box-shadow: 0 5px 11px 0 rgba(78,93,255,0.14);
  68. border-radius: 6px;
  69. margin: 15px 6px 0px 8px;
  70. border-radius: 10px;
  71. display: flex;
  72. flex-direction: column;
  73. color:rgba(153,160,182,1);
  74. .morelist{
  75. position: absolute;
  76. top: 40px;
  77. left: 0px;
  78. }
  79. .tools {
  80. display: none;
  81. position:absolute;
  82. top: 10px;
  83. width: 100%;
  84. padding-left: 10px;
  85. .item-img {
  86. display:inline-block;
  87. width: 28px;
  88. height: 28px;
  89. cursor:pointer;
  90. margin-right: 5px;
  91. .more{
  92. width: 28px;
  93. height: 28px;
  94. background: url(../../assets/images/more_nor.png) center no-repeat;
  95. background-size: cover;
  96. }
  97. .more:hover {
  98. background: url(../../assets/images/more_sel.png) center no-repeat;
  99. background-size: cover;
  100. }
  101. }
  102. .delete {
  103. background: url(../../assets/images/delete_nor.png) center no-repeat;
  104. background-size: cover;
  105. }
  106. .delete:hover {
  107. background: url(../../assets/images/delete_sel.png) center no-repeat;
  108. background-size: cover;
  109. }
  110. .copy {
  111. background: url(../../assets/images/copy_nor.png) center no-repeat;
  112. background-size: cover;
  113. }
  114. .copy:hover {
  115. background: url(../../assets/images/copy_sel.png) center no-repeat;
  116. background-size: cover;
  117. }
  118. .share {
  119. background: url(../../assets/images/share_nor.png) center no-repeat;
  120. background-size: cover;
  121. }
  122. .share:hover {
  123. background: url(../../assets/images/share_sel.png) center no-repeat;
  124. background-size: cover;
  125. }
  126. .edit {
  127. background: url(../../assets/images/edit_nor.png) center no-repeat;
  128. background-size: cover;
  129. }
  130. .edit:hover {
  131. background: url(../../assets/images/edit_sel.png) center no-repeat;
  132. background-size: cover;
  133. }
  134. }
  135. .item-img {
  136. width: 100%;
  137. height:156px;
  138. border-radius:6px 6px 0px 0px;
  139. object-fit: cover;
  140. display: flex;
  141. justify-content: center;
  142. align-items: center;
  143. .item-img-outline{
  144. width: 98px;
  145. height: 69px;
  146. object-fit: contain;
  147. }
  148. }
  149. .title {
  150. flex-grow: 2;
  151. margin: 10px;
  152. color:rgba(51,51,51,1);
  153. line-height:21px;
  154. font-size: 16px;
  155. max-height: 42px;
  156. min-height: 42px;
  157. }
  158. .desc {
  159. margin: 10px;
  160. font-size: 14px;
  161. }
  162. .bottom {
  163. margin: 0px 10px 10px;
  164. font-size: 12px;
  165. display: flex;
  166. flex-direction: row;
  167. justify-content: space-between;
  168. }
  169. .remarkBg{
  170. margin: 0 10px 10px;
  171. border: 1px solid #EDEFF7;
  172. border-radius: 3px;
  173. padding: 10px 5px 5px;
  174. .remark{
  175. height: 34px;
  176. line-height: 17px;
  177. margin-bottom: 5px;
  178. }
  179. .editBtn{
  180. border: 1px solid #4F5DFF;
  181. border-radius: 10px;
  182. font-size: 10px;
  183. color: #000000;
  184. padding: 0 5px;
  185. height: 20px;
  186. line-height: 20px;
  187. text-align: center;
  188. margin-left: 120px;
  189. }
  190. }
  191. }
  192. .morehover {
  193. box-shadow:0px 5px 11px 0px rgba(78,93,255,0.42);
  194. .tools {
  195. display: block;
  196. }
  197. .title {
  198. color: rgba(78,93,255,1);
  199. }
  200. }
  201. .item:hover{
  202. box-shadow:0px 5px 11px 0px rgba(78,93,255,0.42);
  203. .tools {
  204. display: block;
  205. }
  206. .title {
  207. color: rgba(78,93,255,1);
  208. }
  209. }
  210. .itemCopy {
  211. border:4px solid rgba(78,93,255,1);
  212. }
  213. .add {
  214. display: flex;
  215. flex-direction: column;
  216. justify-content: center;
  217. align-items:center;
  218. font-size:16px;
  219. font-weight:400;
  220. color:rgba(78,93,255,1);
  221. line-height:22px;
  222. text-align: center;
  223. cursor:pointer;
  224. .add-icon {
  225. font-size:28px;
  226. margin-bottom: 10px;
  227. }
  228. }
  229. .el-button--primary {
  230. color: #fff;
  231. background-color: #4E5DFF;;
  232. border-color: #4E5DFF;;
  233. }
  234. .el-icon-my-export{
  235. background: url(../../assets/images/diaoyanbao-log.png) center no-repeat;
  236. background-size: cover;
  237. }
  238. .el-icon-my-export:before{
  239. content: "替";
  240. font-size: 16px;
  241. visibility: hidden;
  242. color: red;
  243. }
  244. }
  245. .el-dropdown-menu{
  246. max-height: 200px;
  247. overflow-y: auto;
  248. }
  249. .loading ,.noMore{
  250. text-align: center;
  251. height: 40px;
  252. line-height: 40px;
  253. color: #4E5DFF;
  254. }
  255. .popView{
  256. display: flex;
  257. justify-content: center;
  258. align-items: center;
  259. .el-dialog {
  260. max-width: 600px;
  261. max-height: 400px;
  262. padding: 30px 40px 40px;
  263. box-sizing: border-box;
  264. border-radius: 15px;
  265. // background-color:red;
  266. .el-dialog__header,
  267. .el-dialog__footer {
  268. display: none;
  269. }
  270. .el-dialog__body {
  271. padding: 0;
  272. .content {
  273. width: 100%;
  274. .main {
  275. width: 100%;
  276. .title {
  277. width: 100%;
  278. font-size: 20px;
  279. line-height: 28px;
  280. color: #000;
  281. }
  282. .textarea{
  283. margin-top: 15px;
  284. .el-textarea__inner{
  285. padding: 10px 20px 30px;
  286. color: #75797D;
  287. font-size: 14px;
  288. line-height: 26px;
  289. box-sizing: border-box;
  290. height: 212px;
  291. width: 100%;
  292. resize: none;
  293. }
  294. }
  295. }
  296. .btns{
  297. display: flex;
  298. margin-top: 30px;
  299. justify-content: center;
  300. align-items: center;
  301. .Btn {
  302. width: 102px;
  303. height: 44px;
  304. font-size: 20px;
  305. line-height: 44px;
  306. border-radius: 22px;
  307. text-align: center;
  308. }
  309. .okBtn {
  310. background-color: #4F5DFF ;
  311. color: #fff;
  312. }
  313. .cancleBtn {
  314. background-color: #EAECF5;
  315. color: #56616D;
  316. margin-left: 20px;
  317. }
  318. }
  319. }
  320. }
  321. }
  322. }