common.scss 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. font-family: Inter, -apple-system, BlinkMacSystemFont, PingFang SC,
  6. Hiragino Sans GB, noto sans, Helvetica Neue, Helvetica,
  7. Arial, sans-serif;
  8. }
  9. ul,
  10. li {
  11. list-style: none;
  12. margin: 0;
  13. padding: 0;
  14. }
  15. //页面最高层级 统一最底层背景色 #F0F4FB
  16. .layout {
  17. position: relative;
  18. min-height: 100%;
  19. margin: 0 auto;
  20. padding-bottom: 30px;
  21. overflow-y: hidden;
  22. background-color: #f0f4fb;
  23. }
  24. .layoutMain {
  25. width: 1200px;
  26. margin: 0 auto;
  27. margin-top: 60px;
  28. min-height: 100%;
  29. margin-left: 0;
  30. margin-right: 0;
  31. }
  32. #app > div {
  33. height: 100%;
  34. }
  35. html,
  36. body {
  37. width: 100%;
  38. height: 100%;
  39. overflow: hidden;
  40. -webkit-font-smoothing: antialiased;//控制字体在 WebKit 浏览器(如 Chrome、Safari)中的抗锯齿方式。antialiased 表示使用“无锯齿”的字体渲染方式,使文字更清晰平滑,尤其适用于浅色或白色背景上的深色字体。
  41. text-rendering: optimizeLegibility;//告诉浏览器优先考虑文字的可读性而不是渲染速度或几何精度
  42. background: #F0F4FB;
  43. }
  44. .el-select .el-select__wrapper,
  45. .el-input .el-input__wrapper,
  46. .el-date-editor.el-input,
  47. .el-button {
  48. height: 36px;
  49. }
  50. .el-button:focus {
  51. outline: none;
  52. }
  53. .el-input-group__append {
  54. width: 36px;
  55. }
  56. .el-button.is-text {
  57. padding: 0 5px;
  58. font-weight: 400;
  59. }
  60. .el-button.is-text:not(.is-disabled):active,
  61. .el-button.is-text:not(.is-disabled):hover
  62. {
  63. background: none;
  64. }
  65. .el-button.button_background {
  66. background: #2E64FA;
  67. border: 1px solid #2E64FA;
  68. color: #fff;
  69. &:hover {
  70. background: #2E64FA;
  71. }
  72. &.actiive {
  73. border: none;
  74. }
  75. }
  76. .el-button.button_border {
  77. background: #fff;
  78. border: 1px solid #2E64FA;
  79. color: #2E64FA;
  80. &:hover {
  81. background: none;
  82. }
  83. }
  84. .el-button.button_border_gray {
  85. background: #fff;
  86. border: 1px solid #DCDFE6;
  87. color: #BBBBBB;
  88. &:hover {
  89. background: none;
  90. }
  91. &.cancel {
  92. color: #606266;
  93. }
  94. }
  95. .el-button.button_refresh {
  96. min-width: 72px!important;
  97. background: #fff;
  98. border: 1px solid #DCDFE6;
  99. color: #606266;
  100. &:hover {
  101. background: none;
  102. }
  103. &.cancel {
  104. color: #606266;
  105. }
  106. }
  107. .el-checkbox__input.is-indeterminate .el-checkbox__inner,
  108. .el-checkbox__input.is-checked .el-checkbox__inner {
  109. background: #2E64FA;
  110. border-color: #2E64FA;
  111. }
  112. .el-checkbox__inner:hover, .el-radio__inner:hover {
  113. border-color: #2E64FA;
  114. }
  115. .el-radio__input.is-checked .el-radio__inner {
  116. background: #2E64FA;
  117. border-color: #2E64FA;
  118. }
  119. .el-radio__input.is-checked+.el-radio__label {
  120. color: #2E64FA;
  121. }
  122. .el-radio-button.is-active .el-radio-button__original-radio:not(:disabled)+.el-radio-button__inner {
  123. background: #2E64FA;
  124. border-color: #2E64FA;
  125. }
  126. .el-checkbox__input.is-checked+.el-checkbox__label {
  127. color: #2E64FA;
  128. }
  129. .el-select-dropdown__item.is-selected {
  130. color: #2E64FA;
  131. }
  132. .el-dropdown-menu__item:not(.is-disabled):focus, .el-dropdown-menu__item:not(.is-disabled):hover {
  133. color: #2E64FA;
  134. }
  135. button:focus, button:focus-visible {
  136. outline: none;
  137. }
  138. .el-picker-panel__icon-btn:focus-visible {
  139. color: #2E64FA;
  140. }
  141. .el-picker-panel__icon-btn:hover {
  142. color: #2E64FA;
  143. }
  144. .el-date-picker__header-label:hover {
  145. color: #2E64FA;
  146. }
  147. .el-date-table td.available:hover {
  148. color: #2E64FA;
  149. }
  150. .el-date-table, .el-year-table, .el-month-table {
  151. td.today .el-date-table-cell__text {
  152. color: #2E64FA;
  153. }
  154. td .el-date-table-cell__text:hover {
  155. color: #2E64FA;
  156. }
  157. td.current:not(.disabled) .el-date-table-cell__text {
  158. background-color: #2E64FA;
  159. }
  160. }
  161. .el-message-box__btns .el-button:active {
  162. color: #606266;
  163. border-color: #DCDFE6;
  164. background: none;
  165. }
  166. .el-message-box__btns .el-button:hover {
  167. border-color: #DCDFE6;
  168. }
  169. .el-message-box__headerbtn:focus .el-message-box__close,
  170. .el-message-box__headerbtn:hover .el-message-box__close {
  171. color: #999;
  172. }
  173. .el-select__wrapper.is-focused,
  174. .el-input__wrapper.is-focus {
  175. box-shadow: 0 0 0 1px #2E64FA inset;
  176. }
  177. .el-select-dropdown.is-multiple .el-select-dropdown__item.is-selected:after {
  178. background: #2E64FA;
  179. }
  180. .el-pagination button.is-active, .el-pagination button:hover {
  181. color: #2E64FA;
  182. }
  183. .el-pagination.is-background .el-pager li.is-active {
  184. background: #2E64FA;
  185. }
  186. // 全局滚动条样式修改
  187. /* 滚动条轨道区域样式 */
  188. ::-webkit-scrollbar {
  189. width: 8px;
  190. height: 8px;
  191. /* 设置滚动条宽度为8像素 */
  192. background-color: transparent;
  193. }
  194. /* 滑块样式 */
  195. ::-webkit-scrollbar-thumb {
  196. background-color: #b8b8b8;
  197. /* 设置滑块颜色为深灰色 */
  198. border-radius: 4px;
  199. max-height: 150px;//设置手柄最大高度
  200. /* 设置滑块边角半径为4像素 */
  201. }
  202. /* 滚动条轨道内部空白区域样式 */
  203. ::-webkit-scrollbar-track {
  204. background-color: #f0f0f0;
  205. /* 设置轨道背景色为浅灰色 */
  206. }
  207. /* 滚动条两端按钮样式 */
  208. ::-webkit-scrollbar-button {
  209. display: none;
  210. /* 不显示按钮 */
  211. }
  212. /* 交叉点处的区域样式 */
  213. ::-webkit-scrollbar-corner {
  214. background-color: transparent;
  215. /* 设置交叉点处的背景色为透明 */
  216. }
  217. /* 调整大小手柄样式 */
  218. ::-webkit-resizer {
  219. display: none;
  220. /* 不显示调整大小手柄 */
  221. }
  222. .vxe-table {
  223. // font-family: revert;
  224. /* 不设置 font-family,浏览器使用默认字体 */
  225. }
  226. .page_tree {
  227. width: 100%;
  228. border: 1px solid rgb(238, 238, 238);
  229. overflow-y: auto;
  230. border-radius: 6px;
  231. .el-tree--highlight-current
  232. .el-tree-node.is-current
  233. > .el-tree-node__content {
  234. background: #e3eeff !important;
  235. color: #2e64fa !important;
  236. border-radius: 4px;
  237. padding: 5px 4px;
  238. .el-icon-caret-right {
  239. color: #2e64fa !important;
  240. }
  241. }
  242. .el-tree--highlight-current
  243. .el-tree-node.is-current
  244. > .el-tree-node__content {
  245. background-color: red;
  246. }
  247. .el-tree-node .el-tree-node__content:hover {
  248. background-color: #f0f2f5;
  249. /* 悬浮时的背景色 */
  250. border-radius: 4px;
  251. padding: 5px 4px;
  252. }
  253. .el-tree-node .el-tree-node__content {
  254. padding: 5px 4px;
  255. }
  256. }
  257. //通用间隔
  258. .page_jg {
  259. clear: both;
  260. height: 12px;
  261. width: 100%;
  262. }
  263. //通用间隔20px
  264. .page_jg_20 {
  265. clear: both;
  266. height: 20px;
  267. width: 100%;
  268. }
  269. //通用间隔18px
  270. .page_jg_18 {
  271. clear: both;
  272. height: 18px;
  273. width: 100%;
  274. }
  275. //通用间隔16px
  276. .page_jg_16 {
  277. clear: both;
  278. height: 16px;
  279. width: 100%;
  280. }
  281. //通用间隔10px
  282. .page_jg_10 {
  283. clear: both;
  284. height: 10px;
  285. width: 100%;
  286. }
  287. //页面表格公共样式
  288. .page_table {
  289. .el-table {
  290. border-radius: 8px;
  291. border: 1px solid #f0f2f5;
  292. border-bottom: 0px solid #f0f2f5;
  293. //表格竖着的边框线样式
  294. th.el-table__cell {
  295. border-right: 1px solid #ebeef5;
  296. }
  297. .el-table__body-wrapper {
  298. table {
  299. tr {
  300. td {
  301. border-right: 1px solid #ebeef5;
  302. }
  303. td:last-child,
  304. th:last-child {
  305. border-right: 0px solid green;
  306. }
  307. }
  308. }
  309. }
  310. .el-table__empty-block {
  311. min-height: 120px;
  312. background-image: url("../assets/bg/table_no_data.png");
  313. background-size: 64px 72px;
  314. background-position: 50% 50%;
  315. background-repeat: no-repeat;
  316. .el-table__empty-text {
  317. display: none;
  318. }
  319. }
  320. }
  321. //表格加载动画字体
  322. .el-loading-spinner .el-loading-text {
  323. font-size: 14px;
  324. }
  325. .el-loading-spinner i {
  326. font-size: 20px;
  327. color:#2E64FA;
  328. }
  329. //表格里的输入框 选择框样式覆盖
  330. .el-input__inner {
  331. height: 36px !important;
  332. line-height: 36px !important;
  333. }
  334. // 下拉选择框 中间箭头上下居中
  335. .el-select .el-input .el-select__caret {
  336. height: 36px;
  337. }
  338. // 下拉选择框 中间箭头上下居中
  339. .el-input__icon {
  340. line-height: 36px;
  341. }
  342. //去掉滚动条后的表格整体宽度
  343. .el-table__body {
  344. width: 100% !important;
  345. }
  346. //标题栏背景色
  347. .el-table tr th.el-table__cell {
  348. background-color: #f4f6f8 !important;
  349. font-size: 16px;
  350. color: #333;
  351. font-weight: 600;
  352. }
  353. .el-table .cell {
  354. padding: 0 5px !important;
  355. }
  356. .el-table thead {
  357. color: #333 !important;
  358. font-weight: 500;
  359. font-size: 14px;
  360. height: 52px;
  361. .is-left {
  362. padding-left: 10px; //靠左的标题加10边距
  363. }
  364. }
  365. .el-table .el-table__cell {
  366. padding: 0;
  367. height: 52px;
  368. color:#666;
  369. }
  370. }
  371. .table_no_bg {
  372. .el-table__empty-block {
  373. // background-color: red;
  374. // min-height: 120px;
  375. min-height: auto !important;
  376. background-image: none !important;
  377. background-size: 64px 72px;
  378. background-position: 50% 50%;
  379. background-repeat: no-repeat;
  380. .el-table__empty-text {
  381. display: block !important;
  382. }
  383. }
  384. }
  385. //状态
  386. .table_row_status {
  387. // font-family:"Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "WenQuanYi Zen Hei", sans-serif;
  388. font-weight: 400;
  389. font-size: 14px;
  390. color: #666666;
  391. display: flex;
  392. align-items: center;
  393. justify-content: center;
  394. gap: 5px;
  395. //不计入 灰色
  396. .not_included_icon
  397. {
  398. margin-left: 5px;
  399. width: 6px;
  400. height: 6px;
  401. border-radius: 50%;
  402. background: #C0C4CC;
  403. }
  404. //异常的 红色
  405. .abnormal_icon {
  406. margin-left: 5px;
  407. width: 6px;
  408. height: 6px;
  409. border-radius: 50%;
  410. background: #fa3a2e;
  411. }
  412. //正常的 绿色的
  413. .normal_icon {
  414. margin-left: 5px;
  415. width: 6px;
  416. height: 6px;
  417. background: #2bc644;
  418. border-radius: 50%;
  419. }
  420. //分析管理 已发布
  421. .yes_release_icon {
  422. margin-left: 5px;
  423. width: 6px;
  424. height: 6px;
  425. background: #2bc644;
  426. border-radius: 50%;
  427. }
  428. //分析管理 未发布 缺考
  429. .no_release_icon {
  430. margin-left: 5px;
  431. width: 6px;
  432. height: 6px;
  433. background: #fb9f34;
  434. border-radius: 50%;
  435. }
  436. //分析管理 已关闭 违纪
  437. .ready_close_icon {
  438. margin-left: 5px;
  439. width: 6px;
  440. height: 6px;
  441. background: #f56c6c;
  442. border-radius: 50%;
  443. }
  444. //分析管理 需汇总
  445. .need_summary_icon {
  446. margin-left: 5px;
  447. width: 6px;
  448. height: 6px;
  449. background: #2e64fa;
  450. border-radius: 50%;
  451. }
  452. //分析管理 成绩中
  453. .score_look_icon {
  454. margin-left: 5px;
  455. width: 6px;
  456. height: 6px;
  457. background: #995FB3;
  458. border-radius: 50%;
  459. }
  460. }
  461. // 分页公共样式
  462. .page_pagination {
  463. width: 100%;
  464. height: 30px;
  465. margin-top: 20px;
  466. margin-bottom: 2px;
  467. display: flex;
  468. justify-content: flex-end;
  469. align-items: center;
  470. .el-pagination {
  471. padding: 0 !important;
  472. display: flex;
  473. align-items: center;
  474. }
  475. .el-input--mini .el-input__inner {
  476. height: 30px !important;
  477. line-height: 30 !important;
  478. }
  479. // 上一页
  480. .el-pagination .btn-prev {
  481. width: 30px !important;
  482. height: 30px;
  483. padding: 0 !important;
  484. background: #f3f3f3;
  485. border-radius: 4px 4px 4px 4px;
  486. }
  487. // 下一页
  488. .el-pagination .btn-next {
  489. width: 30px !important;
  490. height: 30px;
  491. padding: 0 !important;
  492. background: #f3f3f3;
  493. border-radius: 4px 4px 4px 4px;
  494. margin-left: 8px;
  495. }
  496. .el-pagination span:not([class*="suffix"]),
  497. .el-pagination button {
  498. min-width: 30px;
  499. }
  500. .el-pagination .el-pager li {
  501. min-width: 30px;
  502. height: 30px;
  503. width: 30px;
  504. line-height: 30px;
  505. background: #f3f3f3;
  506. border-radius: 4px 4px 4px 4px;
  507. padding: 0 !important;
  508. margin-left: 8px;
  509. font-weight: 400;
  510. font-size: 14px;
  511. color: #666;
  512. }
  513. .el-pagination .el-pager li.active {
  514. background: #2f51ff;
  515. font-weight: 400;
  516. font-size: 14px;
  517. color: #ffffff;
  518. }
  519. }
  520. //页面公共样式
  521. .page_item {
  522. width: 100%;
  523. // height: 100%;
  524. background: #fff;
  525. border-radius: 10px;
  526. padding: 20px;
  527. // box-sizing: border-box;
  528. }
  529. .page_tag {
  530. width: calc(100% - 20px);
  531. height: 100%;
  532. border-radius: 0px 4px 4px 0px;
  533. .el-radio-button__inner {
  534. padding: 0 20px;
  535. height: 36px;
  536. line-height: 36px;
  537. color: #666666;
  538. }
  539. .el-radio-button__orig-radio:checked + .el-radio-button__inner {
  540. color: #fff !important;
  541. }
  542. .tab_item {
  543. font-weight: 400;
  544. font-size: 14px;
  545. color:#999999;
  546. }
  547. .tag_item {
  548. max-width: 100px;
  549. white-space: nowrap; /* 禁止换行 */
  550. overflow: hidden; /* 隐藏溢出内容 */
  551. text-overflow: ellipsis; /* 溢出部分显示省略号 */
  552. }
  553. }
  554. //页面筛选公共样式
  555. .page_search {
  556. width: 100%;
  557. .search_content {
  558. width: 100%;
  559. display: flex;
  560. justify-content: space-between;
  561. align-items: center;
  562. .el_button_item {
  563. width: auto;
  564. height: 36px !important;
  565. line-height: 36px;
  566. padding: 0 10px;
  567. margin-left: 20px;
  568. font-size: 14px !important;
  569. }
  570. .el-select {
  571. width: 120px;
  572. }
  573. .el-input {
  574. width: 200px;
  575. }
  576. .content_left {
  577. display: flex;
  578. gap: 10px;
  579. flex-wrap: wrap;
  580. width: auto;
  581. // height: 36px;
  582. line-height: 36px;
  583. .tab_button {
  584. width: auto;
  585. height: 36px !important;
  586. line-height: 36px;
  587. padding: 0 10px;
  588. // margin-right: 20px;
  589. font-size: 14px !important;
  590. }
  591. .select_cur {
  592. background:#2E64FA;
  593. color:#fff;
  594. border:1px solid #2E64FA;
  595. }
  596. .left_title {
  597. width: 42px;
  598. font-weight: 600;
  599. font-size: 14px;
  600. color: #333333;
  601. margin-right: 8px;
  602. }
  603. .grade_title {
  604. font-weight: 600;
  605. font-size: 16px;
  606. color: #333333;
  607. margin-right: 10px;
  608. }
  609. // 通用select
  610. .select_width
  611. {
  612. width: 120px;
  613. margin-right: 10px;
  614. }
  615. //通用input
  616. // .input_width
  617. // {
  618. // width: 230px;
  619. // }
  620. //学年
  621. .select_year
  622. {
  623. width: 160px;
  624. margin-right: 10px;
  625. }
  626. .search_item
  627. {
  628. display: inline-block;
  629. margin-right: 10px;
  630. text-align: left;
  631. color:#333;
  632. .el-button {
  633. margin-left: 0px;
  634. min-width: 72px;
  635. height: 36px;
  636. line-height: 34px;
  637. padding: 0 10px;
  638. span {
  639. display: inline-flex;
  640. align-items: center;
  641. padding:0;
  642. }
  643. img {
  644. width: 16px;
  645. height: 16px;
  646. margin-right: 4px;
  647. vertical-align: middle;
  648. /* 使图标垂直居中 */
  649. }
  650. }
  651. }
  652. }
  653. .content_right
  654. {
  655. width: auto;
  656. height: 36px;
  657. line-height: 36px;
  658. display: flex;
  659. justify-content: flex-end;
  660. gap: 10px;
  661. // .el-button
  662. // {
  663. // height: 36px !important;
  664. // line-height: 36px;
  665. // padding: 0 10px;
  666. // font-size: 14px !important;
  667. // margin: 0 !important;
  668. // }
  669. .el-button {
  670. margin-left: 0px;
  671. min-width: 96px;
  672. height: 36px;
  673. line-height: 36px;
  674. padding: 0 10px;
  675. span {
  676. display: inline-flex;
  677. align-items: center;
  678. padding:0;
  679. }
  680. img {
  681. width: 16px;
  682. height: 16px;
  683. margin-right: 4px;
  684. vertical-align: middle;
  685. /* 使图标垂直居中 */
  686. }
  687. }
  688. .el-button--default {
  689. color: #666;
  690. font-weight: 400;
  691. }
  692. .el-button--primary.is-plain:hover {
  693. color: #2e64fa;
  694. background-color: #c0d1fe;
  695. font-size: 14px;
  696. }
  697. .button_border
  698. {
  699. }
  700. .add_button
  701. {
  702. border:1px solid #2e64fa;
  703. background-color: #fff;
  704. color: #2e64fa;
  705. }
  706. .add_button:hover
  707. {
  708. color: #2e64fa;
  709. background-color: #c0d1fe;
  710. }
  711. .el_bttton_72
  712. {
  713. width: 72px;
  714. height: 36px;
  715. }
  716. }
  717. }
  718. .is-active
  719. {
  720. color:#2e64fa !important;
  721. }
  722. .el-tabs__item{
  723. font-size:16px;
  724. font-weight: 600;
  725. color:#666;
  726. }
  727. .el-tabs__header
  728. {
  729. margin: 0 0 16px
  730. }
  731. .el-tabs__nav-wrap::after
  732. {
  733. height: 1px !important;
  734. }
  735. }
  736. .dialog_warning {
  737. .el-dialog__header {
  738. // background-color: red !important;
  739. background-image: url("../assets/icon/warning_icon.png");
  740. background-size: 20px 20px;
  741. background-position: 20px 50%;
  742. background-repeat: no-repeat;
  743. text-indent: 50px !important;
  744. }
  745. .center_align {
  746. text-align: center;
  747. }
  748. .warning_footer {
  749. width: calc(100% - 30px);
  750. margin: auto;
  751. display: flex;
  752. justify-content: flex-end;
  753. align-items: center;
  754. // background-color: red;
  755. height: 100%;
  756. }
  757. }
  758. //弹窗公共样式
  759. .page_dialog {
  760. border-radius: 8px;
  761. //饿了么样式覆盖
  762. .el-dialog {
  763. padding: 0;
  764. }
  765. .el-dialog__headerbtn:focus .el-dialog__close,
  766. .el-dialog__headerbtn:hover .el-dialog__close {
  767. color: #999;
  768. }
  769. .el-dialog__header {
  770. width: 100%;
  771. height: 48px;
  772. line-height: 48px;
  773. text-indent: 20px;
  774. background-color: #f5f7fa;
  775. border-bottom: 1px solid #f5f7fa;
  776. border-top-right-radius: 8px;
  777. border-top-left-radius: 8px;
  778. padding: 0 !important;
  779. text-align: left;
  780. .el-dialog__title {
  781. font-weight: 600;
  782. font-size: 16px;
  783. color: #303133;
  784. }
  785. button:focus, button:focus-visible {
  786. outline: none;
  787. }
  788. .el-dialog__headerbtn {
  789. // display: none;
  790. // width: 100px;
  791. // height: 24px;
  792. // margin-top: -8px;
  793. // background-image: url("../assets/icon/close-line.png");
  794. // background-position: 100% 50%;
  795. // background-repeat: no-repeat;
  796. // background-size: 24px 24px;
  797. // // background-color: red;
  798. // cursor: pointer;
  799. // i {
  800. // display: none;
  801. // }
  802. }
  803. }
  804. //饿了么内容样式覆盖
  805. .el-dialog__body {
  806. font-weight: 400;
  807. font-size: 16px;
  808. color: #666666;
  809. padding: 20px;
  810. width: 100%;
  811. margin: auto;
  812. // min-height: 99px;
  813. // display: flex;
  814. // justify-content: flex-start;
  815. // align-items: center;
  816. .el-date-editor.el-input, .el-date-editor.el-input__wrapper {
  817. width: 140px;
  818. }
  819. .el-form .el-form-item:last-child {
  820. margin-bottom: 0;
  821. }
  822. .el-form-item__label {
  823. font-size: 16px;
  824. color: #000000CC;
  825. }
  826. }
  827. .max_height_540 {
  828. margin: 20px 0;
  829. max-height: 540px;
  830. overflow-y: auto;
  831. }
  832. .max_height_650 {
  833. overflow-y: auto;
  834. /* 小屏幕笔记本的样式 常见分辨率:1366x768 */
  835. @media (max-height: 768px) {
  836. max-height: 480px;
  837. }
  838. /* 中等屏幕笔记本的样式(14-15英寸) 常见分辨率:1600x900, 1920x1080*/
  839. @media (min-height: 767px) {
  840. max-height: 650px;
  841. }
  842. }
  843. .padding_20 {
  844. // width: calc(100% - 40px);
  845. padding: 20px 20px;
  846. }
  847. //个人中心 年级科目弹窗
  848. .content_course_tree
  849. {
  850. width: calc(100% - 40px);
  851. margin: auto;
  852. display: flex;
  853. justify-content:space-around;
  854. .tree_item
  855. {
  856. width: 30%;
  857. height: auto;
  858. .header_title
  859. {
  860. font-weight: 600;
  861. font-size: 16px;
  862. color: #333333;
  863. line-height: 30px;
  864. }
  865. .item_content
  866. {
  867. margin-top: 10px;
  868. width: 100%;
  869. height: 350px;
  870. border-radius: 6px;
  871. border: 1px solid #eeeeee;
  872. .check_all
  873. {
  874. width:100%;
  875. margin: auto;
  876. height: 34px;
  877. border-bottom: 1px solid #eeeeee;
  878. line-height: 34px;
  879. text-indent: 4px;
  880. }
  881. .check_content
  882. {
  883. width: 100%;
  884. height: 350px;
  885. overflow: auto;
  886. .el-checkbox-group
  887. {
  888. margin-top: 10px;
  889. .el-checkbox
  890. {
  891. width: 80%;
  892. text-indent: 6px;
  893. margin-bottom: 10px;
  894. }
  895. }
  896. }
  897. .page_tree
  898. {
  899. border: none !important;
  900. margin-top: 0px !important;
  901. }
  902. .select_item
  903. {
  904. width: calc(100% - 40px);
  905. margin: auto;
  906. line-height: 20px;
  907. display: flex;
  908. justify-content: space-between;
  909. margin-top: 10px;
  910. align-items: center;
  911. i{
  912. font-size: 18px;
  913. cursor: pointer;
  914. }
  915. }
  916. }
  917. }
  918. }
  919. //通用内容区域
  920. .dialog_center {
  921. width: calc(100% - 40px);
  922. margin: auto;
  923. .center_header
  924. {
  925. width: 100%;
  926. height: auto;
  927. display: flex;
  928. justify-content: space-between;
  929. .header_left
  930. {
  931. display: flex;
  932. justify-content: flex-start;
  933. align-items: center;
  934. .left_name
  935. {
  936. width: 120px;
  937. font-size: 16px;
  938. color:#666;
  939. font-weight: 400;
  940. }
  941. .el-input__inner
  942. {
  943. width: 216px;
  944. height: 36px;
  945. line-height: 36px;
  946. }
  947. }
  948. .left_center
  949. {
  950. align-items: center;
  951. }
  952. .left_count
  953. {
  954. color:#333;
  955. font-size: 16px;
  956. font-weight: 600;
  957. }
  958. .header_right
  959. {
  960. display: flex;
  961. justify-content: flex-end;
  962. }
  963. }
  964. //弹窗 check选择框公共样式
  965. .select_check_content
  966. {
  967. width: calc(100% - 40px);
  968. margin: auto;
  969. height: auto;
  970. // align-items: center;
  971. .el-checkbox-group
  972. {
  973. display: flex;
  974. flex-wrap: wrap;
  975. height: auto;
  976. }
  977. .el-checkbox
  978. {
  979. width:20%;
  980. box-sizing: border-box; /* 确保 padding 和 border 不影响宽度 */
  981. // padding: 5px; /* 可选:添加一些内边距 */
  982. margin-bottom: 23px;
  983. margin-right: 0px;
  984. font-size: 16px;
  985. color:#333333;
  986. }
  987. .el-checkbox__label
  988. {
  989. font-weight: 400;
  990. font-size: 16px;
  991. color:#333;
  992. }
  993. }
  994. .center_message_title {
  995. text-indent: 20px;
  996. font-size: 16px;
  997. font-weight: 600;
  998. color: #000000;
  999. }
  1000. .center_message_content {
  1001. width: calc(100% - 40px);
  1002. margin: auto;
  1003. display: flex;
  1004. justify-content: space-between;
  1005. .content_lable {
  1006. width: 70px;
  1007. font-weight: 400;
  1008. font-size: 14px;
  1009. color: #666666;
  1010. line-height: 16px;
  1011. text-align: right;
  1012. padding-top: 20px;
  1013. }
  1014. .content_radio {
  1015. width: calc(100% - 70px);
  1016. padding-top: 20px;
  1017. .radio_item {
  1018. width: 100%;
  1019. height: auto;
  1020. display: flex;
  1021. justify-content: flex-start;
  1022. margin-bottom: 15px;
  1023. .item_radio {
  1024. }
  1025. .item_right {
  1026. .right_title {
  1027. font-weight: 500;
  1028. font-size: 16px;
  1029. color: #666666;
  1030. }
  1031. .right_message {
  1032. font-weight: 400;
  1033. font-size: 14px;
  1034. color: #999999;
  1035. margin-top: 10px;
  1036. .input_number {
  1037. width: 80px;
  1038. height: 32px;
  1039. margin-left: 5px;
  1040. margin-right: 5px;
  1041. }
  1042. }
  1043. }
  1044. }
  1045. }
  1046. }
  1047. .center_message_tishi {
  1048. width: calc(100% - 40px);
  1049. margin: auto;
  1050. margin-top: 20px;
  1051. font-weight: 500;
  1052. font-size: 16px;
  1053. line-height: 25px;
  1054. color: #333333;
  1055. }
  1056. //导入文件 提示信息
  1057. .import_message
  1058. {
  1059. font-size: 12px;
  1060. color:#999;
  1061. line-height: 20px;
  1062. margin-top: 10px;
  1063. }
  1064. .center_message_input {
  1065. width: calc(100% - 40px);
  1066. margin: auto;
  1067. margin-top: 20px;
  1068. margin-bottom: 20px;
  1069. font-weight: 400;
  1070. font-size: 16px;
  1071. color: #666666;
  1072. display: flex;
  1073. justify-content: flex-end;
  1074. align-items: center;
  1075. .el-icon-view {
  1076. margin-top: 4px;
  1077. cursor: pointer;
  1078. }
  1079. .el-input--small .el-input__icon {
  1080. height: 36px;
  1081. line-height: 36px;
  1082. }
  1083. .el-input--small .el-input__inner {
  1084. width: 244px;
  1085. height: 36px;
  1086. line-height: 36px;
  1087. }
  1088. .el-input__suffix {
  1089. top: 8px;
  1090. }
  1091. }
  1092. .center_message {
  1093. font-size: 16px;
  1094. color: #333;
  1095. padding: 15px 0;
  1096. font-weight: 400;
  1097. font-size: 14px;
  1098. color: #666666;
  1099. line-height: 20px;
  1100. text-align: left;
  1101. }
  1102. .score_input {
  1103. width: 74px !important;
  1104. margin-left: 8px;
  1105. .el-input__inner {
  1106. width: 48px !important;
  1107. height: 36px !important;
  1108. line-height: 36px !important;
  1109. font-size: 14px;
  1110. padding: 0 5px;
  1111. text-align: center;
  1112. }
  1113. }
  1114. .select_width_160
  1115. {
  1116. .el-input
  1117. {
  1118. width: 160px !important;
  1119. }
  1120. .el-input__inner
  1121. {
  1122. width: 160px !important;
  1123. }
  1124. }
  1125. .span_center
  1126. {
  1127. margin-left: 5px;
  1128. margin-right: 5px;
  1129. }
  1130. .input_91 {
  1131. width: 91px !important;
  1132. .el-input__inner {
  1133. width: 91px !important;
  1134. height: 36px !important;
  1135. line-height: 36px !important;
  1136. font-size: 14px;
  1137. padding: 0 0px;
  1138. text-align: center;
  1139. }
  1140. }
  1141. .list_content
  1142. {
  1143. display: flex;
  1144. justify-content: flex-start;
  1145. flex-wrap: wrap;
  1146. gap: 16px;
  1147. .select_item
  1148. {
  1149. width: auto;
  1150. display: flex;
  1151. justify-content: flex-start;
  1152. .el-checkbox__label
  1153. {
  1154. padding: 0 0 0 5px;
  1155. }
  1156. .el-input
  1157. {
  1158. width: 120px;
  1159. margin-left: 5px;
  1160. }
  1161. .el-input__inner
  1162. {
  1163. width: 120px;
  1164. padding:0 0 0 8px !important;
  1165. }
  1166. }
  1167. }
  1168. .tab_item
  1169. {
  1170. // min-width:80px;
  1171. padding:0 10px;
  1172. height: 34px;
  1173. border:1px solid #DCDFE6;
  1174. line-height: 34px;
  1175. text-align: center;
  1176. border-radius: 4px;
  1177. font-size: 14px;
  1178. color:#666;
  1179. margin-right: 10px;
  1180. cursor: pointer;
  1181. }
  1182. .tab_active
  1183. {
  1184. background-color: #2E64FA;
  1185. color:#fff;
  1186. }
  1187. .table_info {
  1188. font-weight: 600;
  1189. font-size: 16px;
  1190. color: #303133;
  1191. line-height: 24px;
  1192. margin-bottom: 10px;
  1193. display: flex;
  1194. justify-content: space-between;
  1195. }
  1196. .el-form {
  1197. width: 100% !important;
  1198. .el-form-item {
  1199. margin-bottom: 20px;
  1200. }
  1201. }
  1202. //弹窗 el-from-item__content
  1203. .el-form-item__content {
  1204. display: flex;
  1205. align-items: center;
  1206. font-size: 16px;
  1207. min-height: 40px;
  1208. .upload_file_name
  1209. {
  1210. margin-left: 10px;
  1211. line-height: 20px;
  1212. }
  1213. .el-input.is-disabled .el-input__inner
  1214. {
  1215. color:#333;
  1216. }
  1217. .score {
  1218. padding-left: 5px;
  1219. }
  1220. // 下拉选择框 中间箭头上下居中
  1221. .el-select .el-input .el-select__caret {
  1222. height: 36px;
  1223. }
  1224. // 下拉选择框 中间箭头上下居中
  1225. .el-input__icon {
  1226. line-height: 36px;
  1227. }
  1228. .el-button--small
  1229. {
  1230. height: 36px !important;
  1231. font-size: 14px;
  1232. }
  1233. .el-input {
  1234. width: 240px;
  1235. }
  1236. .check_select
  1237. {
  1238. .el-input {
  1239. width: 87px !important;
  1240. }
  1241. }
  1242. .el-input__inner {
  1243. width: 240px;
  1244. height: 36px;
  1245. line-height: 36px;
  1246. font-size: 14px;
  1247. }
  1248. .el-input--mini {
  1249. width: 240px;
  1250. }
  1251. .el-input-number {
  1252. width: 240px;
  1253. }
  1254. // 数字输入框
  1255. .el-input-number--mini {
  1256. line-height: 34px;
  1257. }
  1258. // 开关
  1259. .el-switch {
  1260. height: 40px;
  1261. }
  1262. .radio_box {
  1263. width: 180px;
  1264. height: 40px;
  1265. }
  1266. .radio_number_horizontal {
  1267. background-image: url("../assets/icon/question_number_horizontal.png");
  1268. background-size: 78px 30px;
  1269. background-repeat: no-repeat;
  1270. background-position: 60px 50%;
  1271. }
  1272. .radio_number_vertical {
  1273. background-image: url("../assets/icon/question_number_vertical.png");
  1274. background-size: 40px 40px;
  1275. background-repeat: no-repeat;
  1276. background-position: 60px 50%;
  1277. }
  1278. .radio_answer_horizontal {
  1279. background-image: url("../assets/icon/answer_direction_horizontal.png");
  1280. background-size: 78px 30px;
  1281. background-repeat: no-repeat;
  1282. background-position: 60px 50%;
  1283. }
  1284. .radio_answer_vertical {
  1285. background-image: url("../assets/icon/answer_direction_vertical.png");
  1286. background-size: 40px 40px;
  1287. background-repeat: no-repeat;
  1288. background-position: 60px 50%;
  1289. }
  1290. // 组
  1291. .el-radio-group {
  1292. font-size: 14px;
  1293. min-height: 40px;
  1294. line-height: 40px;
  1295. // display: flex;
  1296. // align-items: center;
  1297. .radio_question_number_horizontal {
  1298. width: auto;
  1299. height: 40px;
  1300. line-height: 40px;
  1301. // background-image: url('../assets/icon/question_number_horizontal.png');
  1302. // background-size: 100% 100%;
  1303. // background-repeat: no-repeat;
  1304. // background-position: 0 0;
  1305. img {
  1306. width: 78px;
  1307. height: 30px;
  1308. }
  1309. }
  1310. .el-radio__label {
  1311. padding-left: 5px !important;
  1312. font-size: 16px !important;
  1313. }
  1314. .el-radio {
  1315. margin-right: 20px !important;
  1316. }
  1317. }
  1318. .group_item {
  1319. line-height: 40px;
  1320. }
  1321. .el-input-group__append {
  1322. width: 26px !important;
  1323. }
  1324. .el-checkbox__label {
  1325. line-height: 36px;
  1326. }
  1327. }
  1328. .el-form-item {
  1329. // margin-bottom: 15px !important;
  1330. min-height: 40px;
  1331. .el-form-item__label {
  1332. font-size: 16px !important;
  1333. padding: 0 !important;
  1334. color:#666666;
  1335. }
  1336. .el-checkbox__label
  1337. {
  1338. color:#666;
  1339. font-size: 16px;
  1340. }
  1341. }
  1342. .label_left {
  1343. margin-left: 20px;
  1344. }
  1345. .dialog_search {
  1346. width: 100%;
  1347. height: auto;
  1348. .search_title_info {
  1349. font-weight: 600;
  1350. font-size: 14px;
  1351. color: #303133;
  1352. span {
  1353. margin-right: 20px;
  1354. }
  1355. }
  1356. .search_input {
  1357. .el-input-group {
  1358. width: auto !important;
  1359. }
  1360. }
  1361. .search_filter {
  1362. margin-top: 8px;
  1363. margin-bottom: 8px;
  1364. }
  1365. }
  1366. .dialog_table {
  1367. width: 100%;
  1368. .el-table--group, .el-table--border {
  1369. border-radius: 4px;
  1370. }
  1371. //表格顶部标题栏
  1372. .el-table tr th.el-table__cell {
  1373. background-color: #f4f6f8;
  1374. font-size: 14px;
  1375. color: #333;
  1376. font-weight: 600;
  1377. }
  1378. .el-table__empty-block {
  1379. // background-color: red;
  1380. background-image: url("../assets/bg/table_no_data.png");
  1381. background-size: 64px 72px;
  1382. background-position: 50% 50%;
  1383. background-repeat: no-repeat;
  1384. .el-table__empty-text {
  1385. display: none;
  1386. }
  1387. }
  1388. .el-table__body .el-table__cell {
  1389. padding: 0 !important; //去掉弹窗表格的padding
  1390. height: 42px;
  1391. border-right: 1px solid #e9e9e9;
  1392. .el-input--mini .el-input__inner {
  1393. width: 100%;
  1394. }
  1395. .el-input-number__decrease {
  1396. height: 16px !important;
  1397. line-height: 16px;
  1398. border-bottom: 1px solid #dcdfe6;
  1399. }
  1400. .el-input-number__increase {
  1401. height: 16px !important;
  1402. line-height: 16px;
  1403. border-top: 1px solid #dcdfe6;
  1404. }
  1405. .el-input-number {
  1406. width: 100%;
  1407. height: 38px;
  1408. }
  1409. .el-input__inner {
  1410. width: 100%;
  1411. }
  1412. }
  1413. }
  1414. .el-table__header,
  1415. .el-table__body,
  1416. .el-table__foote {
  1417. width: 100%;
  1418. }
  1419. .el_table {
  1420. box-shadow: 1px 1px 1px #e4e7ed;
  1421. border-radius: 4px;
  1422. }
  1423. .default_pass {
  1424. font-size: 12px;
  1425. color:#666;
  1426. }
  1427. }
  1428. //饿了么底部按钮样式覆盖
  1429. .el-dialog__footer {
  1430. padding: 0 20px;
  1431. text-align: right;
  1432. border-top: 1px solid #e6e6e6;
  1433. height: 66px;
  1434. line-height: 66px;
  1435. border-radius: 0 0 8px 8px;
  1436. .dialog_footer {
  1437. padding: 0 !important;
  1438. margin: auto;
  1439. height: 64px;
  1440. display: flex;
  1441. justify-content: space-between;
  1442. .footer_left {
  1443. width: auto;
  1444. height: 64px;
  1445. }
  1446. .footer_right {
  1447. width: auto;
  1448. height: 64px;
  1449. display: flex;
  1450. justify-content: flex-end;
  1451. align-items: center;
  1452. }
  1453. }
  1454. .el-button {
  1455. width: 68px;
  1456. height: 36px;
  1457. padding: 0 !important;
  1458. font-size: 14px;
  1459. }
  1460. //饿了么按钮样式覆盖
  1461. .el-button--primary {
  1462. width: 68px;
  1463. height: 36px;
  1464. margin-left: 15px;
  1465. }
  1466. .el-button--default {
  1467. width: 68px;
  1468. height: 36px;
  1469. }
  1470. // 自定义特殊按钮样式
  1471. .no_save_button {
  1472. width: 82px;
  1473. height: 36px;
  1474. background: #ffffff;
  1475. border-radius: 4px 4px 4px 4px;
  1476. border: 1px solid #dcdfe6;
  1477. }
  1478. .save_button {
  1479. width: 68px;
  1480. height: 36px;
  1481. margin-left: 20px;
  1482. }
  1483. .cancel_button {
  1484. width: 68px;
  1485. height: 36px;
  1486. background: #ffffff;
  1487. border-radius: 4px 4px 4px 4px;
  1488. border: 1px solid #dcdfe6;
  1489. margin-left: 20px;
  1490. }
  1491. }
  1492. //消息提醒弹窗
  1493. .el-message-box__header {
  1494. padding: 0 !important;
  1495. height: 48px;
  1496. line-height: 48px;
  1497. background-color: #f5f7fa;
  1498. .el-message-box__title {
  1499. height: 48px;
  1500. line-height: 48px;
  1501. font-weight: 500;
  1502. font-size: 16px;
  1503. color: #333;
  1504. text-indent: 50px;
  1505. background-image: url("../assets/icon/warning_icon.png");
  1506. background-size: 20px 20px;
  1507. background-position: 20px 50%;
  1508. background-repeat: no-repeat;
  1509. }
  1510. .el-message-box__headerbtn {
  1511. width: 36px;
  1512. height: 36px;
  1513. margin-top: -8px;
  1514. background-image: url("../assets/icon/close-line.png");
  1515. background-position: 100% 50%;
  1516. background-repeat: no-repeat;
  1517. background-size: 24px 24px;
  1518. .el-icon-close {
  1519. display: none;
  1520. }
  1521. }
  1522. }
  1523. .el-message-box__content {
  1524. min-height: 55px;
  1525. padding: 0px 0px !important;
  1526. display: flex;
  1527. justify-content: left;
  1528. align-items: center;
  1529. .el-message-box__message {
  1530. padding: 20px 10px 20px 20px !important;
  1531. font-weight: 400;
  1532. font-size: 14px;
  1533. color: #666666;
  1534. line-height: 25px;
  1535. max-height: 250px;
  1536. overflow-y: auto;
  1537. white-space: normal;
  1538. word-break: break-all;
  1539. }
  1540. }
  1541. .el-message-box__status {
  1542. display: none !important;
  1543. }
  1544. .el-message-box__btns {
  1545. padding: 13px 20px 4px 20px;
  1546. border-top: 1px solid #e4e7ed;
  1547. .el-button {
  1548. width: 68px;
  1549. height: 36px;
  1550. border-radius: 4px 4px 4px 4px;
  1551. border: 1px solid #dcdfe6;
  1552. font-size: 14px;
  1553. }
  1554. }
  1555. .el-upload-list {
  1556. display: none;
  1557. }
  1558. }
  1559. //弹窗全屏
  1560. .page_full_dialog
  1561. {
  1562. //饿了么样式覆盖
  1563. .el-dialog__header {
  1564. display: none;
  1565. }
  1566. .el-dialog
  1567. {
  1568. border-radius: 0;
  1569. }
  1570. //饿了么内容样式覆盖
  1571. .el-dialog__body {
  1572. font-weight: 400;
  1573. font-size: 14px;
  1574. color: #666666;
  1575. padding: 0 !important;
  1576. width: 100%;
  1577. height: 100%;
  1578. margin: auto;
  1579. // min-height: 99px;
  1580. // display: flex;
  1581. // justify-content: flex-start;
  1582. // align-items: center;
  1583. }
  1584. }
  1585. .el-popover
  1586. {
  1587. border-radius: 4px;
  1588. }
  1589. //悬浮层公共样式 成绩单表头设置使用
  1590. .page_popover
  1591. {
  1592. width: 100%;
  1593. height: auto;
  1594. .popover_content
  1595. {
  1596. width: auto;
  1597. height:calc(100% - 46px) ;
  1598. .vertical_checkbox_group
  1599. {
  1600. width:auto;
  1601. display: flex;
  1602. flex-direction:column;
  1603. flex-wrap: wrap;
  1604. // overflow-y: auto;
  1605. height: 300px;
  1606. .el-checkbox
  1607. {
  1608. width:auto;
  1609. // box-sizing: border-box; /* 确保 padding 和 border 不影响宽度 */
  1610. // padding: 5px 0px; /* 可选:添加一些内边距 */
  1611. margin-bottom: 10px;
  1612. // margin-right: 20px;
  1613. font-weight: 400;
  1614. font-size: 14px;
  1615. color:#666;
  1616. }
  1617. }
  1618. .el-checkbox__input.is-disabled + span.el-checkbox__label
  1619. {
  1620. color:#666;
  1621. }
  1622. }
  1623. .popover_button
  1624. {
  1625. width: 100%;
  1626. height: 36px;
  1627. display: flex;
  1628. justify-content: flex-end;
  1629. align-items: center;
  1630. gap: 10px;
  1631. .el-button
  1632. {
  1633. margin-left: 0px;
  1634. min-width: 68px;
  1635. height: 36px;
  1636. padding: 0;
  1637. font-weight: 500;
  1638. font-size: 14px;
  1639. color: #666666;
  1640. }
  1641. .el-button--primary
  1642. {
  1643. color:#ffffff;
  1644. }
  1645. }
  1646. }
  1647. .el-time-panel {
  1648. width: 130px !important;
  1649. }
  1650. //抽屉弹窗公共样式
  1651. .page_drawer {
  1652. //日期选择弹窗组件样式覆盖
  1653. .el-date-picker {
  1654. background-color: red;
  1655. width: 200px !important;
  1656. .el-picker-panel__body {
  1657. width: 200px !important;
  1658. }
  1659. .el-time-panel {
  1660. width: 130px !important;
  1661. }
  1662. }
  1663. .el-drawer__header {
  1664. display: none;
  1665. }
  1666. .drawer_content {
  1667. width: 100%;
  1668. .set_search_title {
  1669. width: 100%;
  1670. height: 56px;
  1671. line-height: 56px;
  1672. text-indent: 20px;
  1673. font-weight: 600;
  1674. font-size: 16px;
  1675. color: #303133;
  1676. }
  1677. }
  1678. .drawer_footer {
  1679. width: 360px;
  1680. position: fixed;
  1681. bottom: 0;
  1682. right: 0;
  1683. }
  1684. .drawer_title {
  1685. font-size: 16px;
  1686. color: #fff;
  1687. width: 100%;
  1688. height: 48px;
  1689. line-height: 48px;
  1690. text-indent: 20px;
  1691. font-weight: 600;
  1692. font-size: 16px;
  1693. color: #303133;
  1694. border-bottom: 1px solid #14191f25;
  1695. border-radius: 0px 0px 0px 0px;
  1696. // background-image: url("@/assets/markDetailScore/close_drawer.png");
  1697. // background-repeat: no-repeat;
  1698. // background-size: 24px 24px;
  1699. // background-position: calc(100% - 20px) 50%;
  1700. cursor: pointer;
  1701. }
  1702. .sel_item {
  1703. width: calc(100% - 40px);
  1704. margin: auto;
  1705. margin-bottom: 16px;
  1706. .selItem_title {
  1707. line-height: 28px;
  1708. font-weight: 400;
  1709. font-size: 16px;
  1710. color: #303133;
  1711. }
  1712. .selValItem_line {
  1713. margin: 0 9px;
  1714. }
  1715. }
  1716. .button_content {
  1717. width: 100%;
  1718. height: auto;
  1719. text-align: center;
  1720. margin-top: 20px;
  1721. margin-bottom: 20px;
  1722. }
  1723. .drawer_button {
  1724. width: calc(100% - 40px);
  1725. margin: auto;
  1726. font-weight: 600;
  1727. font-size: 14px;
  1728. color: #ffffff;
  1729. height: 36px;
  1730. }
  1731. .end_content {
  1732. width: 100%;
  1733. height: 64px;
  1734. display: flex;
  1735. align-items: center;
  1736. justify-content: center;
  1737. border-top: 1px solid rgba(25, 31, 37, 0.08);
  1738. .end_button {
  1739. width: calc(100% - 40px);
  1740. height: 36px;
  1741. border-radius: 4px 4px 4px 4px;
  1742. border: 1px solid #f56c6c;
  1743. font-weight: 500;
  1744. font-size: 14px;
  1745. color: #f56c6c;
  1746. }
  1747. }
  1748. .w173 {
  1749. width: 231px;
  1750. }
  1751. }
  1752. /* 小屏幕笔记本的样式 常见分辨率:1366x768 */
  1753. @media (max-width: 1366px) {
  1754. .exam_aside {
  1755. width: 206px;
  1756. }
  1757. }
  1758. /* 中等屏幕笔记本的样式(14-15英寸) 常见分辨率:1600x900, 1920x1080*/
  1759. @media (min-width: 1367px) and (max-width: 1920px) {
  1760. .exam_aside {
  1761. width: 15%;
  1762. }
  1763. }
  1764. /* 大屏幕笔记本的样式(17-20英寸) 常见分辨率:2560x1440*/
  1765. @media screen and (min-width: 1920px) {
  1766. .exam_aside {
  1767. width: 19%;
  1768. }
  1769. }
  1770. /* 高分辨率设备的样式 */
  1771. @media only screen and (-webkit-min-device-pixel-ratio: 2),
  1772. only screen and (min-resolution: 192dpi),
  1773. only screen and (min-resolution: 2dppx) {
  1774. }
  1775. // 应用滚动条样式到三个类下的 .el-table__body-wrapper
  1776. .page_table, .dialog_table, .area_table, .right_table, .card_table
  1777. {
  1778. .el-table__body-wrapper {
  1779. // 滚动条样式修改
  1780. /* 滚动条轨道区域样式 */
  1781. &::-webkit-scrollbar {
  1782. width: 8px;
  1783. /* 设置滚动条宽度为8像素 */
  1784. height: 8px;
  1785. /* 设置滚动条高度为8像素 */
  1786. background-color: transparent;
  1787. }
  1788. /* 滑块样式 */
  1789. &::-webkit-scrollbar-thumb {
  1790. background-color: #b8b8b8;
  1791. /* 设置滑块颜色为深灰色 */
  1792. border-radius: 4px;
  1793. /* 设置滑块边角半径为4像素 */
  1794. min-height: 60px;//设置手柄最小高度
  1795. }
  1796. /* 滚动条轨道内部空白区域样式 */
  1797. &::-webkit-scrollbar-track {
  1798. background-color: #f0f0f0;
  1799. /* 设置轨道背景色为浅灰色 */
  1800. }
  1801. /* 滚动条两端按钮样式 */
  1802. &::-webkit-scrollbar-button {
  1803. display: none;
  1804. /* 不显示按钮 */
  1805. }
  1806. /* 交叉点处的区域样式 */
  1807. &::-webkit-scrollbar-corner {
  1808. background-color: transparent;
  1809. /* 设置交叉点处的背景色为透明 */
  1810. }
  1811. /* 调整大小手柄样式 */
  1812. &::-webkit-resizer {
  1813. display: none;
  1814. /* 不显示调整大小手柄 */
  1815. }
  1816. }
  1817. // 表格列表标题栏滚动条
  1818. .el-table th.gutter {
  1819. // display: none !important;
  1820. width: 8px !important;
  1821. }
  1822. // 表格滚动条列宽
  1823. .el-table colgroup col[name="gutter"] {
  1824. // display: ;
  1825. width: 8px;
  1826. }
  1827. }
  1828. .el-message-box__btns {
  1829. .el-button + .el-button {
  1830. margin-left: 10px!important;
  1831. }
  1832. .el-button {
  1833. &:hover {
  1834. background: none;
  1835. color: #606266;
  1836. }
  1837. &.active {
  1838. background: none;
  1839. color: #606266;
  1840. }
  1841. .el-button:focus-visible {
  1842. background: inherit;
  1843. border: none;
  1844. }
  1845. &.fouce {
  1846. background: inherit;
  1847. border: none;
  1848. }
  1849. }
  1850. .el-button--primary {
  1851. background: #2E64FA;
  1852. &:hover {
  1853. background: #2E64FA;
  1854. color: #fff;
  1855. }
  1856. &.active {
  1857. background: #2E64FA;
  1858. color: #fff;
  1859. }
  1860. }
  1861. }
  1862. //列表行操作
  1863. .table_row_option {
  1864. width: 100%;
  1865. text-align: center;
  1866. display: flex;
  1867. justify-content: center;
  1868. align-items: center;
  1869. gap: 10px;
  1870. .move_icon {
  1871. width: 36px;
  1872. height: 36px;
  1873. background-image: url("../assets/icon/move_icon_hover.png");
  1874. background-size: 20px 20px;
  1875. background-repeat: no-repeat;
  1876. background-position: 0% 50%;
  1877. cursor: move;
  1878. }
  1879. .sort_move
  1880. {
  1881. width: 36px;
  1882. height: 36px;
  1883. background-image: url("../assets/icon/sort_move.webp");
  1884. background-size: 20px 21px;
  1885. background-repeat: no-repeat;
  1886. background-position: 50% 50%;
  1887. cursor: move;
  1888. }
  1889. .editor_icon {
  1890. width: 36px;
  1891. height: 36px;
  1892. background-image: url("../assets/icon/editor_icon_hover.png");
  1893. background-size: 20px 20px;
  1894. background-repeat: no-repeat;
  1895. background-position: 0% 50%;
  1896. cursor: pointer;
  1897. }
  1898. .delete_icon {
  1899. width: 36px;
  1900. height: 36px;
  1901. background-image: url("../assets/icon/delete_icon.png");
  1902. background-size: 20px 20px;
  1903. background-repeat: no-repeat;
  1904. background-position: 0% 50%;
  1905. cursor: pointer;
  1906. }
  1907. .el_button_editor {
  1908. width: 30px;
  1909. height: 36px !important;
  1910. line-height: 36px;
  1911. font-size: 14px;
  1912. color: #2e64fa;
  1913. cursor: pointer;
  1914. }
  1915. .option_button_editor {
  1916. width: auto;
  1917. height: 36px !important;
  1918. line-height: 36px;
  1919. font-size: 14px;
  1920. color: #2e64fa;
  1921. cursor: pointer;
  1922. }
  1923. .editor_disable {
  1924. color: #bbbbbb !important;
  1925. cursor: not-allowed !important;
  1926. }
  1927. .el_button_delete {
  1928. width: 30px;
  1929. height: 36px !important;
  1930. line-height: 36px;
  1931. font-size: 14px;
  1932. color: #F56C6C;
  1933. cursor: pointer;
  1934. }
  1935. .button_editor {
  1936. width: auto;
  1937. height: 36px;
  1938. line-height: 36px;
  1939. margin-right: 5px;
  1940. font-size: 14px;
  1941. color: #2e64fa;
  1942. cursor: pointer;
  1943. }
  1944. .button_delete {
  1945. width: auto;
  1946. height: 36px;
  1947. line-height: 36px;
  1948. font-size: 14px;
  1949. color: #F56C6C;
  1950. cursor: pointer;
  1951. }
  1952. .option_delete {
  1953. color: #f56c6c;
  1954. font-size: 14px;
  1955. font-weight: 400;
  1956. cursor: pointer;
  1957. }
  1958. .option_editor {
  1959. color: #2e64fa;
  1960. font-size: 14px;
  1961. font-weight: 400;
  1962. cursor: pointer;
  1963. }
  1964. .option_add {
  1965. font-weight: 400;
  1966. font-size: 14px;
  1967. color: #f56c6c;
  1968. cursor: pointer;
  1969. }
  1970. .option_disabled
  1971. {
  1972. font-weight: 400;
  1973. font-size: 14px;
  1974. color: #C0C4CC;
  1975. }
  1976. }
  1977. // 表格滚动条样式通用
  1978. .el-table__body-wrapper {
  1979. // 滚动条样式修改
  1980. /* 滚动条轨道区域样式 */
  1981. &::-webkit-scrollbar {
  1982. width: 10px;
  1983. /* 设置滚动条宽度为8像素 */
  1984. background-color: transparent;
  1985. }
  1986. /* 滑块样式 */
  1987. &::-webkit-scrollbar-thumb {
  1988. background-color: #b8b8b8;
  1989. /* 设置滑块颜色为深灰色 */
  1990. border-radius: 4px;
  1991. /* 设置滑块边角半径为4像素 */
  1992. min-height: 60px;//设置手柄最小高度
  1993. }
  1994. /* 滚动条轨道内部空白区域样式 */
  1995. &::-webkit-scrollbar-track {
  1996. background-color: #f0f0f0;
  1997. /* 设置轨道背景色为浅灰色 */
  1998. }
  1999. /* 滚动条两端按钮样式 */
  2000. &::-webkit-scrollbar-button {
  2001. display: none;
  2002. /* 不显示按钮 */
  2003. }
  2004. /* 交叉点处的区域样式 */
  2005. &::-webkit-scrollbar-corner {
  2006. background-color: transparent;
  2007. /* 设置交叉点处的背景色为透明 */
  2008. }
  2009. /* 调整大小手柄样式 */
  2010. &::-webkit-resizer {
  2011. display: none;
  2012. /* 不显示调整大小手柄 */
  2013. }
  2014. }
  2015. // 表格列表标题栏滚动条
  2016. .el-table th.gutter {
  2017. // display: none !important;
  2018. width: 8px !important;
  2019. }
  2020. // 表格滚动条列宽
  2021. .el-table colgroup col[name="gutter"] {
  2022. display: none;
  2023. width: 8px;
  2024. }
  2025. // 使用element-ui按钮后的 公共按钮样式 导入 导出 其他等等可追加
  2026. .el_button {
  2027. .el-button .is-disabled {
  2028. background-color: #f5f7fa;
  2029. border-color: #dcdfe6;
  2030. color: #c0c4cc;
  2031. cursor: not-allowed;
  2032. background-color: red !important;
  2033. }
  2034. .el-button {
  2035. min-width: 72px;
  2036. width: auto;
  2037. height: 36px;
  2038. padding: 0 !important;
  2039. }
  2040. //导出
  2041. .export_btn {
  2042. width: auto;
  2043. height: 36px !important;
  2044. font-weight: 400;
  2045. font-size: 14px;
  2046. color: #666666;
  2047. text-indent: 20px;
  2048. background-image: url("../assets/icon/exam_exports.png");
  2049. background-repeat: no-repeat;
  2050. background-size: 16px 16px;
  2051. background-position: 12px 50%;
  2052. cursor: pointer;
  2053. }
  2054. .export_btn:hover {
  2055. color: #2e64fa;
  2056. background-image: url("../assets/icon/exam_export.png");
  2057. }
  2058. //导入
  2059. .import_btn {
  2060. width: auto;
  2061. height: 36px !important;
  2062. line-height: 36px;
  2063. font-weight: 400;
  2064. font-size: 14px;
  2065. color: #666666;
  2066. margin-left: 10px;
  2067. text-indent: 20px;
  2068. background-image: url("../assets/icon/exam_imports.png");
  2069. background-repeat: no-repeat;
  2070. background-size: 16px 16px;
  2071. background-position: 12px 50%;
  2072. cursor: pointer;
  2073. }
  2074. .import_btn:hover {
  2075. color: #2e64fa;
  2076. background-image: url("../assets/icon/exam_import.png");
  2077. }
  2078. //返回扫描
  2079. .back_scan_button {
  2080. width: 120px;
  2081. height: 36px !important;
  2082. font-weight: 400;
  2083. font-size: 14px;
  2084. color: #666666;
  2085. text-indent: 20px;
  2086. background-image: url("../assets/icon/exam_back.png");
  2087. background-repeat: no-repeat;
  2088. background-size: 20px 20px;
  2089. background-position: 17px 50%;
  2090. cursor: pointer;
  2091. }
  2092. //刷新
  2093. .refresh_btn {
  2094. width: 68px;
  2095. height: 36px !important;
  2096. font-weight: 400;
  2097. font-size: 14px;
  2098. color: #666666;
  2099. text-indent: 20px;
  2100. background-image: url("../assets/icon/refresh_default.png");
  2101. background-repeat: no-repeat;
  2102. background-size: 16px 16px;
  2103. background-position: 10px 50%;
  2104. cursor: pointer;
  2105. }
  2106. //适合屏幕
  2107. .fit_screen_btn {
  2108. width: 96px;
  2109. height: 36px;
  2110. font-weight: 400;
  2111. font-size: 14px;
  2112. color: #666666;
  2113. text-align: center;
  2114. background-image: url("../assets/icon/fit_screen_default.png");
  2115. background-size: 16px 16px;
  2116. background-position: 8px 50%;
  2117. background-repeat: no-repeat;
  2118. text-indent: 20px;
  2119. margin-left: 10px;
  2120. margin-right: 0px;
  2121. }
  2122. // 删除
  2123. .delete_btn {
  2124. width: 96px;
  2125. height: 36px !important;
  2126. font-weight: 400;
  2127. font-size: 14px;
  2128. color: #f56c6c;
  2129. text-align: center;
  2130. border: 1px solid #f56c6c;
  2131. cursor: pointer;
  2132. margin-left: 20px;
  2133. }
  2134. // 编辑
  2135. .editor_btn {
  2136. width: 96px;
  2137. height: 36px !important;
  2138. font-weight: 400;
  2139. font-size: 14px;
  2140. color: #2E64FA;
  2141. text-align: center;
  2142. border: 1px solid #2E64FA;
  2143. cursor: pointer;
  2144. margin-left: 20px;
  2145. }
  2146. //标记为正常
  2147. .marke_normal_btn {
  2148. width: 96px;
  2149. height: 36px !important;
  2150. font-weight: 400;
  2151. font-size: 14px;
  2152. color: #2e64fa;
  2153. text-align: center;
  2154. border: 1px solid #2e64fa;
  2155. cursor: pointer;
  2156. margin-left: 20px;
  2157. }
  2158. //标记为正常 禁用
  2159. .marke_normal_btn_disable {
  2160. width: 110px;
  2161. height: 36px !important;
  2162. font-weight: 400;
  2163. font-size: 14px;
  2164. color: #c0c4cc;
  2165. cursor: not-allowed;
  2166. background-image: none;
  2167. background-color: #ffffff;
  2168. border-color: #ebeef5;
  2169. margin-left: 20px;
  2170. }
  2171. // 标记为缺考
  2172. .marke_miss_exam_btn {
  2173. width: 110px;
  2174. height: 36px !important;
  2175. font-weight: 400;
  2176. font-size: 14px;
  2177. color: #2e64fa;
  2178. text-align: center;
  2179. border: 1px solid #2e64fa;
  2180. cursor: pointer;
  2181. margin-left: 20px;
  2182. }
  2183. //重新切割
  2184. .re_cut_btn {
  2185. width: calc(50% - 10px);
  2186. height: 36px !important;
  2187. font-weight: 400;
  2188. font-size: 14px;
  2189. color: #2e64fa;
  2190. text-align: center;
  2191. border: 1px solid #2e64fa;
  2192. cursor: pointer;
  2193. }
  2194. //灰色按钮
  2195. .abnormal_other_btn {
  2196. width: calc(50% - 10px);
  2197. height: 36px !important;
  2198. font-weight: 400;
  2199. font-size: 14px;
  2200. color: #666666;
  2201. text-align: center;
  2202. border: 1px solid #e9e9e9;
  2203. cursor: pointer;
  2204. }
  2205. //删除试卷
  2206. .delete_paper_btn {
  2207. width: calc(50% - 10px);
  2208. height: 36px !important;
  2209. font-weight: 400;
  2210. font-size: 14px;
  2211. color: #f56c6c;
  2212. text-align: center;
  2213. border: 1px solid #f56c6c;
  2214. cursor: pointer;
  2215. }
  2216. // 回收站
  2217. .recycle_bin_btn {
  2218. width: calc(100% - 40px);
  2219. margin: auto;
  2220. height: 36px !important;
  2221. font-weight: 400;
  2222. font-size: 14px;
  2223. color: #dcdfe6;
  2224. text-align: center;
  2225. border: 1px solid #dcdfe6;
  2226. cursor: pointer;
  2227. margin-left: 20px;
  2228. }
  2229. //结束批阅
  2230. .end_review {
  2231. width: 96px;
  2232. height: 36px;
  2233. background: #f56c6c;
  2234. border-radius: 4px 4px 4px 4px;
  2235. border: 0px solid #f56c6c;
  2236. font-size: 14px;
  2237. font-weight: 500;
  2238. color: #fff;
  2239. }
  2240. //处理异常卷
  2241. .review_abnormal {
  2242. width: 110px !important;
  2243. height: 36px;
  2244. background: #ffffff;
  2245. border-radius: 4px 4px 4px 4px;
  2246. border: 1px solid #f56c6c;
  2247. font-weight: 400;
  2248. font-size: 14px;
  2249. color: #f56c6c;
  2250. }
  2251. .other_button_review {
  2252. width: 68px;
  2253. height: 36px;
  2254. background: #ffffff;
  2255. border-radius: 4px 4px 4px 4px;
  2256. border: 1px solid #dcdfe6;
  2257. font-weight: 400;
  2258. font-size: 14px;
  2259. color: #666666;
  2260. }
  2261. //重新导入名单
  2262. .other_btn {
  2263. width: 120px !important;
  2264. height: 36px !important;
  2265. border-radius: 4px 4px 4px 4px;
  2266. border: 1px solid #dcdfe6;
  2267. font-weight: 400;
  2268. font-size: 14px;
  2269. color: #666666;
  2270. }
  2271. //通用蓝色无背景编辑按钮
  2272. .editor_item
  2273. {
  2274. width: 96px;
  2275. height: 36px !important;
  2276. font-weight: 400;
  2277. font-size: 14px;
  2278. color: #2E64FA;
  2279. text-align: center;
  2280. border: 1px solid #2E64FA;
  2281. cursor: pointer;
  2282. }
  2283. .editor_item:hover
  2284. {
  2285. background: rgba(46,100,250,0.1);
  2286. color: #2E64FA;
  2287. border: 1px solid #2E64FA;
  2288. }
  2289. // 通用红色无背景删除
  2290. .delete_item
  2291. {
  2292. width: 96px;
  2293. height: 36px !important;
  2294. font-weight: 400;
  2295. font-size: 14px;
  2296. color: #f56c6c;
  2297. text-align: center;
  2298. border: 1px solid #f56c6c;
  2299. cursor: pointer;
  2300. }
  2301. .delete_item:hover
  2302. {
  2303. background: rgba(245,108,108,0.1);
  2304. color: #f56c6c;
  2305. border: 1px solid #f56c6c;
  2306. }
  2307. }
  2308. .pic_item_list {
  2309. width: 100%;
  2310. padding-top: 10px;
  2311. // overflow-x: auto;
  2312. // height: 160px;
  2313. display: flex;
  2314. justify-content: flex-start;
  2315. .draggable_move {
  2316. display: flex;
  2317. span {
  2318. display: flex;
  2319. justify-content: flex-start;
  2320. align-items: center;
  2321. }
  2322. }
  2323. .pic_item_img_detail {
  2324. width: 181px;
  2325. height: auto;
  2326. position: relative;
  2327. margin-right: 10px;
  2328. .pic_item_img_title {
  2329. font-weight: 500;
  2330. font-size: 14px;
  2331. color: #303133;
  2332. margin-bottom: 5px;
  2333. display: flex;
  2334. justify-content: space-between;
  2335. .title_left {
  2336. font-weight: 500;
  2337. font-size: 14px;
  2338. color: #303133;
  2339. }
  2340. .title_right {
  2341. font-weight: 400;
  2342. font-size: 14px;
  2343. color: #666666;
  2344. }
  2345. }
  2346. .pic_item_img_content {
  2347. width: 181px;
  2348. height: 128px;
  2349. // background-color: red;
  2350. img {
  2351. width: 100%;
  2352. height: 100%;
  2353. cursor: pointer;
  2354. border-radius: 5px;
  2355. object-fit: contain;
  2356. }
  2357. }
  2358. .button_group {
  2359. position: absolute;
  2360. display: flex;
  2361. display: none;
  2362. width: 181px;
  2363. height: 128px;
  2364. z-index: 10;
  2365. top: 20px;
  2366. left: 0;
  2367. background: rgba(0, 0, 0, 0.4);
  2368. align-items: center;
  2369. justify-content: center;
  2370. gap: 16px;
  2371. .pic_button_view {
  2372. width: 68px;
  2373. height: 34px;
  2374. text-align: center;
  2375. line-height: 34px;
  2376. cursor: pointer;
  2377. background-color: rgba(255, 255, 255, 1);
  2378. border: 1px solid rgba(220, 223, 230, 1);
  2379. border-radius: 4px;
  2380. color: #666666;
  2381. text-indent: 15px;
  2382. background-image: url("../assets/icon/pic_show_view.png");
  2383. background-size: 16px 16px;
  2384. background-position: 10px 50%;
  2385. background-repeat: no-repeat;
  2386. font-size: 14px;
  2387. }
  2388. .pic_button_delete {
  2389. width: 68px;
  2390. height: 34px;
  2391. text-align: center;
  2392. line-height: 34px;
  2393. cursor: pointer;
  2394. background-color: rgba(255, 255, 255, 1);
  2395. border: 1px solid rgba(220, 223, 230, 1);
  2396. border-radius: 4px;
  2397. text-indent: 10px;
  2398. background-image: url("../assets/icon/pic_show_delete.png");
  2399. background-size: 16px 16px;
  2400. background-position: 10px 50%;
  2401. background-repeat: no-repeat;
  2402. color: #f56c6c;
  2403. font-size: 14px;
  2404. }
  2405. }
  2406. }
  2407. .pic_item_img_detail:hover .button_group {
  2408. display: flex;
  2409. }
  2410. }
  2411. // 42行高表格公共样式
  2412. .table_42 {
  2413. width: 100%;
  2414. padding-bottom: 10px;
  2415. .el-table {
  2416. width: 100%;
  2417. border-left: 1px solid #e9e9e9;
  2418. border-right: 1px solid #e9e9e9;
  2419. border-radius: 4px;
  2420. }
  2421. .el-table--border .no-border {
  2422. border-right: none !important; // 移除右边框
  2423. }
  2424. .el-table--border .no-border + .el-table__cell {
  2425. border-left: none !important; // 移除左边框
  2426. }
  2427. .el-table .cell {
  2428. padding: 0 !important;
  2429. display: flex;
  2430. justify-content: center;
  2431. align-items: center;
  2432. }
  2433. .el-table .el-table__cell {
  2434. padding: 0 !important;
  2435. height: 42px;
  2436. }
  2437. .el-table tr th.el-table__cell {
  2438. background-color: #f0f2f5 !important;
  2439. }
  2440. .el-table th.el-table__cell > .cell {
  2441. padding: 0 !important;
  2442. }
  2443. .el-table thead {
  2444. width: 100%;
  2445. height: 42px !important;
  2446. background-color: #f0f2f5 !important;
  2447. }
  2448. .el-table .el-table__body tr {
  2449. height: 42px;
  2450. font-size: 14px;
  2451. }
  2452. .table_row_title {
  2453. width: 100%;
  2454. display: inline-block;
  2455. // display: block;
  2456. overflow: hidden;
  2457. /* 隐藏超出容器的内容 */
  2458. white-space: nowrap;
  2459. /* 保持文本在一行内 */
  2460. text-overflow: ellipsis;
  2461. /* 超出部分显示省略号 */
  2462. cursor: pointer;
  2463. }
  2464. }
  2465. //无数据显示
  2466. .no_content_data
  2467. {
  2468. background-image: url("../assets/bg/no_content_bg.png");
  2469. background-repeat: no-repeat;
  2470. background-size:360px auto;
  2471. background-position: 50% 30%;
  2472. color: #999999;
  2473. justify-content: center;
  2474. display: flex;
  2475. align-items: center;
  2476. }