wui.css 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607
  1. @charset "UTF-8";
  2. * {
  3. padding: 0;
  4. margin: 0;
  5. box-sizing: border-box;
  6. list-style: none;
  7. }
  8. .noselect {
  9. -webkit-touch-callout: none;
  10. /* iOS Safari */
  11. -webkit-user-select: none;
  12. /* Chrome/Safari/Opera */
  13. -khtml-user-select: none;
  14. /* Konqueror */
  15. -moz-user-select: none;
  16. /* Firefox */
  17. -ms-user-select: none;
  18. /* Internet Explorer/Edge */
  19. user-select: none;
  20. /* Non-prefixed version, currently*/
  21. }
  22. .nowrap {
  23. white-space: nowrap;
  24. }
  25. .nowrap-etc {
  26. white-space: nowrap;
  27. text-overflow: ellipsis;
  28. overflow: hidden;
  29. }
  30. .pointer {
  31. cursor: pointer;
  32. }
  33. input.pointer {
  34. cursor: pointer!important;
  35. }
  36. input.pointer:focus {
  37. cursor: text!important;
  38. }
  39. .h1,
  40. .h2,
  41. .h3 {
  42. margin-bottom: 15px;
  43. }
  44. .h4,
  45. .h5,
  46. .h6 {
  47. margin-bottom: 10px;
  48. }
  49. .h1 {
  50. font-size: 30px;
  51. }
  52. .h2 {
  53. font-size: 24px;
  54. }
  55. .h3 {
  56. font-size: 18px;
  57. }
  58. .h4 {
  59. font-size: 16px;
  60. }
  61. .h5 {
  62. font-size: 14px;
  63. }
  64. .h6 {
  65. font-size: 12px;
  66. }
  67. /* 内容居中 */
  68. .wui-tc {
  69. text-align: center;
  70. }
  71. input {
  72. height: 30px;
  73. line-height: 30px;
  74. padding: 0 10px;
  75. border-radius: 4px;
  76. border: 1px solid #dddee1;
  77. }
  78. /*
  79. ** 清除浮动
  80. */
  81. .clearfloat:after {
  82. clear: both;
  83. display: table;
  84. content: " ";
  85. }
  86. .clearfloat:before {
  87. display: table;
  88. content: " ";
  89. }
  90. /*
  91. ** border样式
  92. */
  93. .wui-bd-t {
  94. border-top: 1px solid #e0e0e0;
  95. }
  96. /*
  97. ** 显示隐藏
  98. */
  99. /* display:none */
  100. .wui-hidden {
  101. display: none;
  102. }
  103. /* display:block */
  104. .wui-show {
  105. display: block;
  106. }
  107. /* tanslate */
  108. @font-face {
  109. font-family: 'iconfont';
  110. src: url('font/iconfont.eot');
  111. src: url('font/iconfont.eot?#iefix') format('embedded-opentype'), url('font/iconfont.woff') format('woff'), url('font/iconfont.ttf') format('truetype'), url('font/iconfont.svg#iconfont') format('svg');
  112. }
  113. .iconfont {
  114. font-family: "iconfont" !important;
  115. font-size: 16px;
  116. font-style: normal;
  117. -webkit-font-smoothing: antialiased;
  118. -webkit-text-stroke-width: 0.2px;
  119. -moz-osx-font-smoothing: grayscale;
  120. }
  121. /* wui content */
  122. .wui-content {
  123. width: 1170px;
  124. padding: 15px;
  125. margin-right: auto;
  126. margin-left: auto;
  127. }
  128. /* wui area */
  129. .wui-area {
  130. margin-bottom: 50px;
  131. }
  132. /* wui item */
  133. .wui-form-item {
  134. margin-bottom: 15px;
  135. clear: both;
  136. }
  137. /* 行内 */
  138. .wui-inline {
  139. position: relative;
  140. display: inline-block;
  141. }
  142. /* 块级 */
  143. .wui-block {
  144. position: relative;
  145. display: block;
  146. }
  147. /* display:inline-block */
  148. .wui-inline-block {
  149. display: inline-block !important;
  150. }
  151. /* width样式 */
  152. .wui-w-5 {
  153. width: 5%;
  154. }
  155. .wui-w-6 {
  156. width: 6%;
  157. }
  158. .wui-w-7 {
  159. width: 7%;
  160. }
  161. .wui-w-8 {
  162. width: 8%;
  163. }
  164. .wui-w-9 {
  165. width: 9%;
  166. }
  167. .wui-w-10 {
  168. width: 10%;
  169. }
  170. .wui-w-11 {
  171. width: 11%;
  172. }
  173. .wui-w-12 {
  174. width: 12%;
  175. }
  176. .wui-w-13 {
  177. width: 13%;
  178. }
  179. .wui-w-14 {
  180. width: 14%;
  181. }
  182. .wui-w-15 {
  183. width: 15%;
  184. }
  185. .wui-w-16 {
  186. width: 16%;
  187. }
  188. .wui-w-17 {
  189. width: 17%;
  190. }
  191. .wui-w-18 {
  192. width: 18%;
  193. }
  194. .wui-w-19 {
  195. width: 19%;
  196. }
  197. .wui-w-20 {
  198. width: 20%;
  199. }
  200. .wui-w-21 {
  201. width: 21%;
  202. }
  203. .wui-w-22 {
  204. width: 22%;
  205. }
  206. .wui-w-23 {
  207. width: 23%;
  208. }
  209. .wui-w-24 {
  210. width: 24%;
  211. }
  212. .wui-w-25 {
  213. width: 25%;
  214. }
  215. .wui-w-30 {
  216. width: 30%;
  217. }
  218. .wui-w-40 {
  219. width: 40%;
  220. }
  221. .wui-w-50 {
  222. width: 50%;
  223. }
  224. .wui-f-l {
  225. float: left;
  226. }
  227. .wui-f-r {
  228. float: right;
  229. }
  230. .wui-f-n {
  231. float: none;
  232. }
  233. /* margin-top margin-bottom margin-left margin-right */
  234. .wui-mg-5 {
  235. margin: 5px;
  236. }
  237. .wui-mg-10 {
  238. margin: 10px;
  239. }
  240. .wui-mg-15 {
  241. margin: 15px;
  242. }
  243. .wui-mg-20 {
  244. margin: 20px;
  245. }
  246. /* margin-top margin-bottom */
  247. .wui-mtb-5 {
  248. margin: 5px 0;
  249. }
  250. .wui-mtb-10 {
  251. margin: 10px 0;
  252. }
  253. .wui-mtb-15 {
  254. margin: 15px 0;
  255. }
  256. .wui-mtb-20 {
  257. margin: 20px 0;
  258. }
  259. /* margin-left margin-right */
  260. .wui-mlr-5 {
  261. margin: 0 5px;
  262. }
  263. .wui-mlr-10 {
  264. margin: 0 10px;
  265. }
  266. .wui-mlr-15 {
  267. margin: 0 15px;
  268. }
  269. .wui-mlr-20 {
  270. margin: 0 20px;
  271. }
  272. /* margin-top */
  273. .wui-mt-5 {
  274. margin-top: 5px;
  275. }
  276. .wui-mt-10 {
  277. margin-top: 10px;
  278. }
  279. .wui-mt-15 {
  280. margin-top: 15px;
  281. }
  282. .wui-mt-20 {
  283. margin-top: 20px;
  284. }
  285. /* margin-bottom */
  286. .wui-mb-0 {
  287. margin-bottom: 0;
  288. }
  289. .wui-mb-5 {
  290. margin-bottom: 5px;
  291. }
  292. .wui-mb-10 {
  293. margin-bottom: 10px;
  294. }
  295. .wui-mb-15 {
  296. margin-bottom: 15px;
  297. }
  298. .wui-mb-20 {
  299. margin-bottom: 20px;
  300. }
  301. /* margin-left */
  302. .wui-ml-5 {
  303. margin-left: 5px;
  304. }
  305. .wui-ml-10 {
  306. margin-left: 10px;
  307. }
  308. .wui-ml-15 {
  309. margin-left: 15px;
  310. }
  311. .wui-ml-20 {
  312. margin-left: 20px;
  313. }
  314. /* margin-right */
  315. .wui-mr-5 {
  316. margin-right: 5px;
  317. }
  318. .wui-mr-10 {
  319. margin-right: 10px;
  320. }
  321. .wui-mr-15 {
  322. margin-right: 15px;
  323. }
  324. .wui-mr-20 {
  325. margin-right: 20px;
  326. }
  327. /* padding-top */
  328. .wui-pt-0 {
  329. padding-top: 0;
  330. }
  331. .wui-pt-10 {
  332. padding-top: 10px;
  333. }
  334. .wui-pt-15 {
  335. padding-top: 15px;
  336. }
  337. .wui-pt-20 {
  338. padding-top: 20px;
  339. }
  340. /* padding-bottom */
  341. .wui-pb-10 {
  342. padding-bottom: 10px;
  343. }
  344. .wui-pb-15 {
  345. padding-bottom: 15px;
  346. }
  347. .wui-pb-20 {
  348. padding-bottom: 20px;
  349. }
  350. /* padding-left */
  351. .wui-pl-10 {
  352. padding-left: 10px;
  353. }
  354. .wui-pl-15 {
  355. padding-left: 15px;
  356. }
  357. .wui-pl-20 {
  358. padding-left: 20px;
  359. }
  360. /* padding-right */
  361. .wui-pr-10 {
  362. padding-right: 10px;
  363. }
  364. .wui-pr-15 {
  365. padding-right: 15px;
  366. }
  367. .wui-pr-20 {
  368. padding-right: 20px;
  369. }
  370. /* 基础button样式 */
  371. .wui-btn {
  372. display: inline-block;
  373. height: 38px;
  374. line-height: 38px;
  375. padding: 0 18px;
  376. /*background-color: #fff;*/
  377. border: 1px solid #dcdfe6;
  378. /*color: #606266;*/
  379. white-space: nowrap;
  380. text-align: center;
  381. font-size: 14px;
  382. border-radius: 3px;
  383. cursor: pointer;
  384. transition: all .2s;
  385. outline: none;
  386. }
  387. /* 默认button样式 */
  388. .wui-btn-default {
  389. color: #606266;
  390. background-color: #fff;
  391. border-color: #dcdfe6;
  392. }
  393. .wui-btn-default:hover {
  394. color: #409eff;
  395. border: 1px solid #c6e2ff;
  396. background-color: #ecf5ff;
  397. }
  398. .wui-btn-default:active {
  399. color: #3a8ee6;
  400. border-color: #3a8ee6;
  401. outline: none;
  402. }
  403. /* 主要button样式 */
  404. .wui-btn-primary {
  405. color: #fff;
  406. background-color: #409eff;
  407. border-color: #409eff;
  408. }
  409. .wui-btn-primary:hover {
  410. background-color: #66b1ff;
  411. border-color: #66b1ff;
  412. color: #fff;
  413. }
  414. .wui-btn-primary:active {
  415. background-color: #3a8ee6;
  416. border-color: #3a8ee6;
  417. color: #fff;
  418. }
  419. /* 白色button样式 */
  420. .wui-btn-white {
  421. color: #606266;
  422. background-color: #fff;
  423. border-color: #dcdfe6;
  424. }
  425. .wui-btn-white:hover {
  426. background-color: #eee;
  427. border-color: #dcdfe6;
  428. color: #606266;
  429. }
  430. .wui-btn-white:active {
  431. background-color: #e0e0e0;
  432. border-color: #dcdfe6;
  433. color: #606266;
  434. }
  435. /* 成功button样式 */
  436. .wui-btn-success {
  437. color: #fff;
  438. background-color: #4dea00;
  439. border-color: #4dea00;
  440. }
  441. .wui-btn-success:hover {
  442. background-color: #50f300;
  443. border-color: #50f300;
  444. color: #fff;
  445. }
  446. .wui-btn-success:active {
  447. background-color: #40c100;
  448. border-color: #40c100;
  449. color: #fff;
  450. }
  451. /* 危险button样式 */
  452. .wui-btn-danger {
  453. color: #fff;
  454. background-color: #f56c6c;
  455. border-color: #f56c6c;
  456. }
  457. .wui-btn-danger:hover {
  458. background-color: #f78989;
  459. border-color: #f78989;
  460. color: #fff;
  461. }
  462. .wui-btn-danger:active {
  463. background-color: #dd6161;
  464. border-color: #dd6161;
  465. color: #fff;
  466. }
  467. /* 信息button样式 */
  468. .wui-btn-info {
  469. color: #fff;
  470. background-color: #2e3192;
  471. border-color: #2e3192;
  472. }
  473. .wui-btn-info:hover {
  474. background-color: #4649b9;
  475. border-color: #4649b9;
  476. color: #fff;
  477. }
  478. .wui-btn-info:active {
  479. background-color: #131792;
  480. border-color: #131792;
  481. color: #fff;
  482. }
  483. /* 禁用buuton */
  484. button.disabled,
  485. button[disabled] {
  486. cursor: not-allowed;
  487. opacity: 0.6;
  488. }
  489. button.wui-btn-primary.disabled:hover,
  490. button.wui-btn-primary[disabled]:hover {
  491. background-color: #409eff;
  492. border-color: #409eff;
  493. color: #fff;
  494. }
  495. button.wui-btn-primary.disabled:active,
  496. button.wui-btn-primary[disabled]:active {
  497. background: #409eff;
  498. border-color: #409eff;
  499. color: #fff;
  500. }
  501. button.wui-btn-default.disabled:hover,
  502. button.wui-btn-default[disabled]:hover {
  503. background-color: #fff;
  504. border-color: #dcdfe6;
  505. color: #606266;
  506. }
  507. button.wui-btn-default.disabled:active,
  508. button.wui-btn-default[disabled]:active {
  509. background-color: #fff;
  510. border-color: #dcdfe6;
  511. color: #606266;
  512. }
  513. button.wui-btn-white.disabled:hover,
  514. button.wui-btn-white[disabled]:hover {
  515. color: #606266;
  516. background-color: #fff;
  517. border-color: #dcdfe6;
  518. }
  519. button.wui-btn-white.disabled:active,
  520. button.wui-btn-white[disabled]:active {
  521. color: #606266;
  522. background-color: #fff;
  523. border-color: #dcdfe6;
  524. }
  525. button.wui-btn-danger.disabled:hover,
  526. button.wui-btn-danger[disabled]:hover {
  527. color: #fff;
  528. background-color: #f56c6c;
  529. border-color: #f56c6c;
  530. }
  531. button.wui-btn-danger.disabled:active,
  532. button.wui-btn-danger[disabled]:active {
  533. color: #fff;
  534. background-color: #f56c6c;
  535. border-color: #f56c6c;
  536. }
  537. button.wui-btn-info.disabled:hover,
  538. button.wui-btn-info[disabled]:hover {
  539. color: #fff;
  540. background-color: #2e3192;
  541. border-color: #2e3192;
  542. }
  543. button.wui-btn-info.disabled:active,
  544. button.wui-btn-info[disabled]:active {
  545. color: #fff;
  546. background-color: #2e3192;
  547. border-color: #2e3192;
  548. }
  549. button.wui-btn-success.disabled:hover,
  550. button.wui-btn-success[disabled]:hover {
  551. color: #fff;
  552. background-color: #4dea00;
  553. border-color: #4dea00;
  554. }
  555. button.wui-btn-success.disabled:active,
  556. button.wui-btn-success[disabled]:active {
  557. color: #fff;
  558. background-color: #4dea00;
  559. border-color: #4dea00;
  560. }
  561. button[radius] {
  562. border-radius: 38px;
  563. }
  564. /* 短按钮 */
  565. .wui-btn-short {
  566. padding: 0 10px;
  567. min-width: 38px;
  568. }
  569. /* 长按钮 */
  570. .wui-btn-long {
  571. padding: 0 35px;
  572. }
  573. /* 超大按钮 */
  574. .wui-btn-xlarge {
  575. height: 54px;
  576. line-height: 54px;
  577. padding: 0 28px;
  578. }
  579. /* 大按钮 */
  580. .wui-btn-large {
  581. height: 46px;
  582. line-height: 46px;
  583. padding: 0 22px;
  584. }
  585. /* 小按钮 */
  586. .wui-btn-small {
  587. height: 30px;
  588. line-height: 30px;
  589. padding: 0 14px;
  590. }
  591. /* 超小按钮 */
  592. .wui-btn-xsmall {
  593. height: 24px;
  594. line-height: 24px;
  595. padding: 0 7px;
  596. font-size: 12px;
  597. }
  598. /* 块级按钮 */
  599. .wui-btn-block {
  600. width: 100%;
  601. display: block;
  602. }
  603. /* input基础样式 默认200px宽度 */
  604. .wui-input {
  605. display: inline-block;
  606. width: 200px;
  607. height: 32px;
  608. padding: 4px 7px;
  609. font-size: 12px;
  610. border: 1px solid #dddee1;
  611. border-radius: 4px;
  612. color: #495060;
  613. background-color: #fff;
  614. position: relative;
  615. cursor: text;
  616. transition: border 0.2s ease-in-out, background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  617. }
  618. .wui-input:hover {
  619. border-color: #57a3f3;
  620. }
  621. .wui-input:focus {
  622. outline: 0;
  623. box-shadow: 0 0 0 2px rgba(45, 140, 240, 0.2);
  624. border-color: #57a3f3;
  625. }
  626. /* 块级input */
  627. .wui-input-block {
  628. width: 100%;
  629. }
  630. /* 错误提示input */
  631. .wui-input-error {
  632. border-color: #ed3f14;
  633. }
  634. .wui-input-error:hover {
  635. border-color: #ed3f14;
  636. }
  637. .wui-input-error:active {
  638. border-color: #ed3f14;
  639. }
  640. .wui-input-error:focus {
  641. outline: 0;
  642. box-shadow: 0 0 0 2px rgba(237, 63, 20, 0.2);
  643. border-color: #ed3f14;
  644. }
  645. /* 成功提示input */
  646. .wui-input-success {
  647. border-color: #4dea00;
  648. }
  649. .wui-input-success:hover {
  650. border-color: #4dea00;
  651. }
  652. .wui-input-success:active {
  653. border-color: #4dea00;
  654. }
  655. .wui-input-success:focus {
  656. outline: 0;
  657. box-shadow: 0 0 0 2px rgba(77, 234, 0, 0.2);
  658. border-color: #4dea00;
  659. }
  660. /* 行内 带label的input */
  661. .wui-inline .wui-input-label {
  662. height: 32px;
  663. line-height: 32px;
  664. font-size: 12px;
  665. text-align: right;
  666. margin-right: 7px;
  667. }
  668. .wui-inline .wui-input {
  669. margin: 0 10px 0 0;
  670. }
  671. /* 块级 带label的input */
  672. .wui-block .wui-input-label {
  673. position: absolute;
  674. width: 72px;
  675. overflow: hidden;
  676. white-space: nowrap;
  677. height: 32px;
  678. line-height: 32px;
  679. font-size: 12px;
  680. text-align: right;
  681. }
  682. .wui-block .wui-input {
  683. width: 100%;
  684. margin-left: 83px;
  685. }
  686. /* 单选框样式 */
  687. .wui-select {
  688. width: 200px;
  689. position: relative;
  690. }
  691. .wui-select .wui-select-selection {
  692. display: block;
  693. width: 100%;
  694. box-sizing: border-box;
  695. -webkit-user-select: none;
  696. -moz-user-select: none;
  697. -ms-user-select: none;
  698. user-select: none;
  699. cursor: pointer;
  700. background-color: #fff;
  701. border-radius: 4px;
  702. border: 1px solid #dddee1;
  703. transition: all 0.2s ease-in-out;
  704. height: 32px;
  705. line-height: 32px;
  706. position: relative;
  707. border-color: #57a3f3;
  708. outline: 0;
  709. box-shadow: 0 0 0 2px rgba(45, 140, 240, 0.2);
  710. }
  711. .wui-select .wui-select-selection .wui-select-placeholder {
  712. display: block;
  713. height: 30px;
  714. line-height: 30px;
  715. font-size: 12px;
  716. overflow: hidden;
  717. text-overflow: ellipsis;
  718. white-space: nowrap;
  719. padding-left: 8px;
  720. padding-right: 24px;
  721. }
  722. .wui-select .wui-select-selection .wui-select-selected-value {
  723. display: none;
  724. height: 30px;
  725. line-height: 30px;
  726. font-size: 12px;
  727. overflow: hidden;
  728. text-overflow: ellipsis;
  729. white-space: nowrap;
  730. padding-left: 8px;
  731. padding-right: 24px;
  732. }
  733. .wui-select .wui-select-menu {
  734. width: inherit;
  735. max-height: 200px;
  736. overflow: auto;
  737. margin: 5px 0;
  738. padding: 5px 0;
  739. background-color: #fff;
  740. box-sizing: border-box;
  741. border-radius: 4px;
  742. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  743. z-index: 900;
  744. transition: width 1s;
  745. display: none;
  746. width: 200px;
  747. transform-origin: center top 0px;
  748. position: absolute;
  749. top: 30px;
  750. left: 0px;
  751. will-change: top, left;
  752. }
  753. .wui-select .wui-select-menu .wui-select-item {
  754. margin: 0;
  755. line-height: normal;
  756. padding: 7px 16px;
  757. clear: both;
  758. color: #495060;
  759. font-size: 12px!important;
  760. white-space: nowrap;
  761. list-style: none;
  762. cursor: pointer;
  763. transition: background 0.2s ease-in-out;
  764. }
  765. .wui-select .wui-select-menu .wui-select-item:hover {
  766. background: #f3f3f3;
  767. }
  768. .wui-select .wui-select-menu .wui-select-item-selected {
  769. color: #fff;
  770. background: rgba(45, 140, 240, 0.9);
  771. }
  772. .wui-select .wui-select-menu .wui-select-item-selected:hover {
  773. color: #fff;
  774. background: rgba(45, 140, 240, 0.9);
  775. }
  776. .wui-select .wui-select-icon {
  777. position: absolute;
  778. top: 0;
  779. right: 3px;
  780. }
  781. .wui-select-block {
  782. width: 100%;
  783. }
  784. .wui-selecter {
  785. width: 100%;
  786. position: relative;
  787. }
  788. .wui-selecter .selection {
  789. position: relative;
  790. }
  791. .wui-selecter .selection .title {
  792. display: block;
  793. width: 100%;
  794. box-sizing: border-box;
  795. outline: 0;
  796. -webkit-user-select: none;
  797. -moz-user-select: none;
  798. -ms-user-select: none;
  799. user-select: none;
  800. cursor: pointer;
  801. position: relative;
  802. background-color: #fff;
  803. border-radius: 4px;
  804. border: 1px solid #ccc;
  805. transition: all 0.2s ease-in-out;
  806. font-size: 12px;
  807. height: 30px;
  808. line-height: 30px;
  809. padding: 0 24px 0 16px;
  810. color: #999;
  811. }
  812. .wui-selecter .selection .selected-title {
  813. color: #555;
  814. }
  815. .wui-selecter .selection .opened {
  816. border-color: #ea8010;
  817. }
  818. .wui-selecter .selection .icon-arrow {
  819. position: absolute;
  820. top: 50%;
  821. right: 8px;
  822. margin-top: -2.5px;
  823. display: inline-block;
  824. width: 0px;
  825. height: 0px;
  826. border: 5px solid;
  827. border-color: #7f838e transparent transparent transparent;
  828. transition: all 0.2s ease-in-out;
  829. }
  830. .wui-selecter .selection .icon-arrow.up {
  831. transform: rotate(180deg);
  832. margin-top: -7.5px;
  833. transition: all 0.2s ease-in-out;
  834. }
  835. .wui-selecter .dropdown-list {
  836. position: absolute;
  837. z-index: 999;
  838. width: 100%;
  839. max-height: 240px;
  840. overflow: auto;
  841. margin: 5px 0;
  842. padding: 5px 0;
  843. background-color: #fff;
  844. box-sizing: border-box;
  845. border-radius: 4px;
  846. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  847. -webkit-user-select: none;
  848. -moz-user-select: none;
  849. -ms-user-select: none;
  850. user-select: none;
  851. transition: all 0.2s ease-in-out;
  852. }
  853. .wui-selecter .dropdown-list .item {
  854. margin: 0;
  855. line-height: normal;
  856. padding: 7px 16px;
  857. clear: both;
  858. color: #495060;
  859. font-size: 12px!important;
  860. white-space: nowrap;
  861. list-style: none;
  862. cursor: pointer;
  863. transition: background 0.2s ease-in-out;
  864. }
  865. .wui-selecter .dropdown-list .item:hover {
  866. background-color: #f3f3f3;
  867. }
  868. .wui-selecter .dropdown-list .item-select {
  869. background-color: #3b87d7!important;
  870. color: white!important;
  871. }
  872. .wui-selecter input::-webkit-input-placeholder {
  873. color: #999;
  874. }
  875. .wui-selecter input::-moz-placeholder {
  876. /* Mozilla Firefox 19+ */
  877. color: #999;
  878. }
  879. .wui-selecter input:-moz-placeholder {
  880. /* Mozilla Firefox 4 to 18 */
  881. color: #999;
  882. }
  883. .wui-selecter input:-ms-input-placeholder {
  884. /* Internet Explorer 10-11 */
  885. color: #999;
  886. }
  887. .wui-selecter.inline {
  888. width: 200px;
  889. }
  890. .wui-selecter.bootstrap .selection .title {
  891. height: 46px;
  892. line-height: 46px;
  893. font-size: 16px;
  894. padding: 10px 16px;
  895. border: 1px solid #ccc;
  896. color: #555;
  897. }
  898. .wui-selecter.bootstrap .selection .opened {
  899. border-color: #ea8010;
  900. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(234, 128, 16, 0.6);
  901. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(234, 128, 16, 0.6);
  902. }
  903. .wui-tooltip {
  904. font-size: 12px;
  905. margin-bottom: 10px;
  906. position: absolute;
  907. bottom: 30px;
  908. left: 103px;
  909. }
  910. .wui-tooltip .wui-tooltip-content {
  911. position: relative;
  912. }
  913. .wui-tooltip .wui-tooltip-content i {
  914. position: absolute;
  915. bottom: -11px;
  916. left: 22px;
  917. overflow: hidden;
  918. width: 0;
  919. height: 0;
  920. z-index: 999;
  921. border-width: 6px;
  922. border-style: solid;
  923. border-color: transparent transparent transparent transparent;
  924. border-top-color: #fff7e9;
  925. }
  926. .wui-tooltip .wui-tooltip-inner {
  927. position: relative;
  928. z-index: 998;
  929. max-width: 380px;
  930. min-height: 30px;
  931. padding: 5px 12px;
  932. color: #e75c00;
  933. text-align: left;
  934. text-decoration: none;
  935. background-color: rgba(255, 247, 233, 0.9);
  936. border-radius: 4px;
  937. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  938. border: 1px solid #ffd999;
  939. white-space: nowrap;
  940. line-height: 1.5;
  941. overflow: hidden;
  942. }
  943. .wui-tooltip .wui-tooltip-arrow {
  944. position: absolute;
  945. bottom: -15px;
  946. left: 20px;
  947. overflow: hidden;
  948. width: 0;
  949. height: 0;
  950. z-index: 999;
  951. border-width: 8px;
  952. border-style: solid;
  953. border-color: transparent transparent transparent transparent;
  954. border-top-color: #ffd999;
  955. }
  956. /* 下拉框样式 */
  957. .wui-dropdown {
  958. position: relative;
  959. }
  960. .wui-dropdown .iconfont {
  961. padding: 10px;
  962. font-size: 16px;
  963. color: #2e3192;
  964. user-select: none;
  965. -moz-user-select: none;
  966. }
  967. .open .wui-dropdown-menu {
  968. display: block;
  969. }
  970. .wui-dropdown-menu {
  971. position: absolute;
  972. top: 100%;
  973. left: 0;
  974. z-index: 1000;
  975. display: none;
  976. float: left;
  977. min-width: 100px;
  978. padding: 5px 0;
  979. margin: 2px 0 0;
  980. font-size: 14px;
  981. text-align: left;
  982. list-style: none;
  983. background-color: #fff;
  984. -webkit-background-clip: padding-box;
  985. background-clip: padding-box;
  986. border: 1px solid #ccc;
  987. border: 1px solid rgba(0, 0, 0, 0.15);
  988. border-radius: 4px;
  989. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  990. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  991. }
  992. .wui-dropdown-menu li {
  993. line-height: 20px;
  994. padding: 3px 20px;
  995. cursor: pointer;
  996. }
  997. .wui-dropdown-menu li:hover {
  998. background-color: #f5f5f5;
  999. }
  1000. .wui-page {
  1001. box-sizing: border-box;
  1002. }
  1003. .wui-page .wui-page-wrap > li {
  1004. float: left;
  1005. margin: 0 4px;
  1006. }
  1007. .wui-page-total {
  1008. display: inline-block;
  1009. font-size: 12px;
  1010. min-width: 32px;
  1011. height: 32px;
  1012. line-height: 30px;
  1013. }
  1014. .wui-page-total > span {
  1015. padding: 0 3px;
  1016. }
  1017. .wui-page-prev,
  1018. .wui-page-item,
  1019. .wui-page-spr,
  1020. .wui-page-next {
  1021. display: inline-block;
  1022. vertical-align: middle;
  1023. min-width: 32px;
  1024. height: 32px;
  1025. line-height: 30px;
  1026. list-style: none;
  1027. text-align: center;
  1028. cursor: pointer;
  1029. color: #666;
  1030. font-family: Arial;
  1031. border: 1px solid #ddd;
  1032. border-radius: 2px;
  1033. }
  1034. .wui-page-item span {
  1035. font-size: 12px;
  1036. color: #303133;
  1037. font-weight: 700;
  1038. }
  1039. .wui-page-prev:hover,
  1040. .wui-page-item:hover,
  1041. .wui-page-next:hover {
  1042. background-color: #f9f9f9;
  1043. }
  1044. .wui-page-select {
  1045. position: relative;
  1046. display: inline-block;
  1047. box-sizing: border-box;
  1048. vertical-align: middle;
  1049. color: #606266;
  1050. font-size: 12px;
  1051. width: 100px;
  1052. height: 32px;
  1053. line-height: 30px;
  1054. border: 1px solid #ddd;
  1055. cursor: pointer;
  1056. border-radius: 2px;
  1057. -webkit-touch-callout: none;
  1058. /* iOS Safari */
  1059. -webkit-user-select: none;
  1060. /* Chrome/Safari/Opera */
  1061. -khtml-user-select: none;
  1062. /* Konqueror */
  1063. -moz-user-select: none;
  1064. /* Firefox */
  1065. -ms-user-select: none;
  1066. /* Internet Explorer/Edge */
  1067. user-select: none;
  1068. /* Non-prefixed version, currently*/
  1069. }
  1070. .wui-page-select:hover {
  1071. border-color: #2d8cf0;
  1072. }
  1073. .wuiPageSelectActive {
  1074. border-color: #2d8cf0;
  1075. }
  1076. .wui-page-select-selected,
  1077. .wuiPageSelectSelected {
  1078. border-color: #2e3192;
  1079. }
  1080. .wui-page-select-value {
  1081. text-align: center;
  1082. position: relative;
  1083. }
  1084. .wui-page-select-value .wui-page-icon {
  1085. position: absolute;
  1086. right: 9px;
  1087. }
  1088. .wui-page-select-dropdown {
  1089. position: absolute;
  1090. width: 100px;
  1091. top: 35px;
  1092. left: -1px;
  1093. border: 1px solid #ddd;
  1094. padding: 6px 0;
  1095. z-index: 999;
  1096. background-color: #fff;
  1097. -webkit-touch-callout: none;
  1098. /* iOS Safari */
  1099. -webkit-user-select: none;
  1100. /* Chrome/Safari/Opera */
  1101. -khtml-user-select: none;
  1102. /* Konqueror */
  1103. -moz-user-select: none;
  1104. /* Firefox */
  1105. -ms-user-select: none;
  1106. /* Internet Explorer/Edge */
  1107. user-select: none;
  1108. /* Non-prefixed version, currently*/
  1109. }
  1110. .wui-page-select-item {
  1111. padding: 7px 16px;
  1112. line-height: normal;
  1113. text-align: center;
  1114. }
  1115. .wui-page-select-item:hover {
  1116. background-color: #eee;
  1117. }
  1118. .wui-page-select-item-selected,
  1119. .wuiPageSelectItemSelected {
  1120. background-color: #2d8cf0;
  1121. border-color: #2d8cf0;
  1122. color: #fff;
  1123. }
  1124. .wui-page-select-item-selected:hover,
  1125. .wuiPageSelectItemSelected:hover {
  1126. background-color: #2d8cf0;
  1127. border-color: #2d8cf0;
  1128. }
  1129. .wui-page-select-item-selected span,
  1130. .wuiPageSelectItemSelected span {
  1131. color: #fff;
  1132. }
  1133. .wui-page-jump {
  1134. display: inline-block;
  1135. font-size: 12px;
  1136. margin: 0 10px 0 20px!important;
  1137. }
  1138. .wui-page-jump .wui-page-jump-input {
  1139. display: inline-block;
  1140. width: 40px;
  1141. margin: 0 7px;
  1142. }
  1143. .wui-page-jump .wui-page-jump-input input {
  1144. width: 100%;
  1145. height: 32px;
  1146. line-height: 32px;
  1147. border: 1px solid #e0e0e0;
  1148. border-radius: 5px;
  1149. outline: none;
  1150. padding: 0 8px;
  1151. text-align: center;
  1152. }
  1153. .wui-page-jump .wui-page-jump-input input:hover {
  1154. border-color: #2d8cf0;
  1155. }
  1156. .wui-page-jump .wui-page-jump-input input:focus {
  1157. border-color: #2d8cf0;
  1158. }
  1159. .wui-page-confirm {
  1160. display: inline-block;
  1161. font-size: 12px;
  1162. }
  1163. .wui-page-confirm .wui-page-confirm-btn {
  1164. color: #fff;
  1165. background-color: #2d8cf0;
  1166. padding: 0px 12px;
  1167. line-height: 32px;
  1168. text-align: center;
  1169. border-radius: 4px;
  1170. cursor: pointer;
  1171. box-sizing: border-box;
  1172. border: 0;
  1173. outline: none;
  1174. }
  1175. .wui-page-confirm .wui-page-confirm-btn:hover {
  1176. background-color: #2d8cf0;
  1177. border-color: #2d8cf0;
  1178. }
  1179. .wui-page-confirm .wui-page-confirm-btn:active {
  1180. background-color: #57a3f3;
  1181. }
  1182. .wui-page-total,
  1183. .wui-page-prev,
  1184. .wui-page-item,
  1185. .wui-page-next,
  1186. .wui-page-select,
  1187. .wui-page-confirm-btn {
  1188. -webkit-touch-callout: none;
  1189. /* iOS Safari */
  1190. -webkit-user-select: none;
  1191. /* Chrome/Safari/Opera */
  1192. -khtml-user-select: none;
  1193. /* Konqueror */
  1194. -moz-user-select: none;
  1195. /* Firefox */
  1196. -ms-user-select: none;
  1197. /* Internet Explorer/Edge */
  1198. user-select: none;
  1199. /* Non-prefixed version, currently*/
  1200. }
  1201. .wui-date {
  1202. position: relative;
  1203. display: inline-block;
  1204. }
  1205. .wui-date-editor {
  1206. position: relative;
  1207. width: 100%;
  1208. display: inline-block;
  1209. }
  1210. .wui-date-editor .wui-date-input {
  1211. padding-left: 24px;
  1212. }
  1213. .wui-date-editor .iconfont {
  1214. position: absolute;
  1215. top: 50%;
  1216. margin-top: -8.5px;
  1217. color: #aaa;
  1218. }
  1219. .wui-date-editor .icon1 {
  1220. left: 6px;
  1221. }
  1222. .wui-date-editor .icon2 {
  1223. color: #c0c4cc;
  1224. right: 6px;
  1225. font-size: 12px;
  1226. margin-top: -6.5px;
  1227. cursor: pointer;
  1228. -webkit-touch-callout: none;
  1229. /* iOS Safari */
  1230. -webkit-user-select: none;
  1231. /* Chrome/Safari/Opera */
  1232. -khtml-user-select: none;
  1233. /* Konqueror */
  1234. -moz-user-select: none;
  1235. /* Firefox */
  1236. -ms-user-select: none;
  1237. /* Internet Explorer/Edge */
  1238. user-select: none;
  1239. /* Non-prefixed version, currently*/
  1240. }
  1241. .time-select {
  1242. /*滚动条样式*/
  1243. }
  1244. .time-select .time-icon {
  1245. left: 7px;
  1246. }
  1247. .time-select .cancle-icon {
  1248. color: #c0c4cc;
  1249. }
  1250. .time-select .placeholder,
  1251. .time-select .value {
  1252. padding-left: 26px!important;
  1253. }
  1254. .time-select .time-menu {
  1255. width: 100%;
  1256. display: block;
  1257. max-height: 285px;
  1258. padding: 0;
  1259. margin: 0;
  1260. top: 35px;
  1261. border-radius: 0px;
  1262. }
  1263. .time-select .time-menu .time-menu-item {
  1264. transition: none;
  1265. }
  1266. .time-select .time-menu .time-menu-item:hover {
  1267. background: #409eff;
  1268. color: #fff;
  1269. }
  1270. .time-select .time-selection {
  1271. box-shadow: none;
  1272. border-color: #e4e7ed;
  1273. }
  1274. .time-select .wui-select-item {
  1275. padding: 6px 16px!important;
  1276. }
  1277. .time-select .time-menu::-webkit-scrollbar {
  1278. /*滚动条整体样式*/
  1279. width: 6px;
  1280. /*高宽分别对应横竖滚动条的尺寸*/
  1281. height: 6px;
  1282. }
  1283. .time-select .time-menu::-webkit-scrollbar-thumb {
  1284. /*滚动条里面小方块*/
  1285. border-radius: 6px;
  1286. background: #ddd;
  1287. }
  1288. .time-select .time-menu::-webkit-scrollbar-track {
  1289. /*滚动条里面轨道*/
  1290. border-radius: 0;
  1291. background: #fff;
  1292. }
  1293. .wui-date-picker {
  1294. position: absolute;
  1295. z-index: 9999;
  1296. display: inline-block;
  1297. color: #606266;
  1298. border: 1px solid #e4e7ed;
  1299. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  1300. background: #fff;
  1301. border-radius: 4px;
  1302. min-width: 423px;
  1303. margin-top: 5px;
  1304. }
  1305. .wui-date-picker .wui-date-picker_body {
  1306. border-bottom: 1px solid #e4e7ed;
  1307. }
  1308. .wui-date-picker .wui-date-picker_body:after {
  1309. clear: both;
  1310. display: table;
  1311. content: " ";
  1312. }
  1313. .wui-date-picker .wui-date-picker_body:before {
  1314. display: table;
  1315. content: " ";
  1316. }
  1317. .wui-date-picker .wui-date-picker_footer {
  1318. padding: 5px;
  1319. text-align: center;
  1320. }
  1321. .wui-date-picker .wui-date-picker_footer button {
  1322. margin: 0 10px;
  1323. }
  1324. .wui-date-picker .wui-date-picker_panel {
  1325. width: 320px;
  1326. float: left;
  1327. border-right: 1px solid #e4e7ed;
  1328. }
  1329. .wui-date-picker .month_panel .wui-date-panel_header .title {
  1330. width: 249px;
  1331. }
  1332. .wui-date-picker .month_panel .wui-data-table {
  1333. border-top: 1px solid #e4e7ed;
  1334. padding: 2px 0;
  1335. }
  1336. .wui-date-picker .month_panel .wui-data-table td {
  1337. padding: 35px 0;
  1338. }
  1339. .wui-date-picker .month_panel .wui-data-table td .cell:hover {
  1340. color: #409eff;
  1341. }
  1342. .wui-date-picker .year_panel .wui-date-panel_header .title {
  1343. width: 249px;
  1344. }
  1345. .wui-date-picker .year_panel .wui-data-table {
  1346. border-top: 1px solid #e4e7ed;
  1347. padding: 2px 0;
  1348. }
  1349. .wui-date-picker .year_panel .wui-data-table td {
  1350. padding: 35px 0;
  1351. }
  1352. .wui-date-picker .year_panel .wui-data-table td .cell:hover {
  1353. color: #409eff;
  1354. }
  1355. .wui-date-picker .wui-date-picker_aside {
  1356. width: 100px;
  1357. float: right;
  1358. }
  1359. .wui-date-picker .wui-date-picker_aside .time-select .time-icon {
  1360. left: 0px;
  1361. }
  1362. .wui-date-picker .wui-date-picker_aside .time-select .placeholder,
  1363. .wui-date-picker .wui-date-picker_aside .time-select .value {
  1364. padding-left: 22px!important;
  1365. height: 22px!important;
  1366. line-height: 22px!important;
  1367. }
  1368. .wui-date-picker .wui-date-picker_aside .time-select .time-selection {
  1369. box-shadow: none;
  1370. height: 24px;
  1371. line-height: 24px;
  1372. border-color: #e4e7ed;
  1373. }
  1374. .wui-date-picker .wui-date-picker_aside .time-select .time-menu {
  1375. box-shadow: none;
  1376. }
  1377. .wui-date-picker .wui-date-picker_aside .iconfont {
  1378. display: inline-block;
  1379. font-size: 13px;
  1380. cursor: pointer;
  1381. -webkit-touch-callout: none;
  1382. /* iOS Safari */
  1383. -webkit-user-select: none;
  1384. /* Chrome/Safari/Opera */
  1385. -khtml-user-select: none;
  1386. /* Konqueror */
  1387. -moz-user-select: none;
  1388. /* Firefox */
  1389. -ms-user-select: none;
  1390. /* Internet Explorer/Edge */
  1391. user-select: none;
  1392. /* Non-prefixed version, currently*/
  1393. padding: 0 1px 0 5px;
  1394. }
  1395. .wui-date-picker .wui-date-panel_header {
  1396. margin: 12px;
  1397. line-height: 24px;
  1398. font-size: 0;
  1399. }
  1400. .wui-date-picker .wui-date-panel_header .title {
  1401. display: inline-block;
  1402. width: 203px;
  1403. font-size: 16px;
  1404. font-weight: 500;
  1405. color: #606266;
  1406. text-align: center;
  1407. }
  1408. .wui-date-picker .wui-date-panel_header .title .txt {
  1409. cursor: pointer;
  1410. -webkit-touch-callout: none;
  1411. /* iOS Safari */
  1412. -webkit-user-select: none;
  1413. /* Chrome/Safari/Opera */
  1414. -khtml-user-select: none;
  1415. /* Konqueror */
  1416. -moz-user-select: none;
  1417. /* Firefox */
  1418. -ms-user-select: none;
  1419. /* Internet Explorer/Edge */
  1420. user-select: none;
  1421. /* Non-prefixed version, currently*/
  1422. }
  1423. .wui-date-picker .wui-date-panel_header .title .txt:hover {
  1424. color: #409eff;
  1425. }
  1426. .wui-date-picker .wui-date-panel_header .iconfont {
  1427. display: inline-block;
  1428. font-size: 13px;
  1429. cursor: pointer;
  1430. -webkit-touch-callout: none;
  1431. /* iOS Safari */
  1432. -webkit-user-select: none;
  1433. /* Chrome/Safari/Opera */
  1434. -khtml-user-select: none;
  1435. /* Konqueror */
  1436. -moz-user-select: none;
  1437. /* Firefox */
  1438. -ms-user-select: none;
  1439. /* Internet Explorer/Edge */
  1440. user-select: none;
  1441. /* Non-prefixed version, currently*/
  1442. padding: 0 5px;
  1443. }
  1444. .wui-date-picker .wui-date-panel_header .iconfont:hover {
  1445. color: #66b1ff;
  1446. }
  1447. .wui-date-picker .wui-date-aside_header {
  1448. margin: 12px 5px;
  1449. }
  1450. .wui-date-picker .wui-date-picker_content {
  1451. margin: 12px;
  1452. }
  1453. .wui-date-picker .wui-data-table {
  1454. table-layout: fixed;
  1455. width: 100%;
  1456. font-size: 12px;
  1457. -webkit-touch-callout: none;
  1458. /* iOS Safari */
  1459. -webkit-user-select: none;
  1460. /* Chrome/Safari/Opera */
  1461. -khtml-user-select: none;
  1462. /* Konqueror */
  1463. -moz-user-select: none;
  1464. /* Firefox */
  1465. -ms-user-select: none;
  1466. /* Internet Explorer/Edge */
  1467. user-select: none;
  1468. /* Non-prefixed version, currently*/
  1469. }
  1470. .wui-date-picker .wui-data-table th {
  1471. padding: 5px;
  1472. color: #606266;
  1473. font-weight: 400;
  1474. border-bottom: 1px solid #ebeef5;
  1475. }
  1476. .wui-date-picker .wui-data-table td {
  1477. width: 32px;
  1478. height: 30px;
  1479. padding: 4px 0;
  1480. box-sizing: border-box;
  1481. text-align: center;
  1482. cursor: pointer;
  1483. position: relative;
  1484. }
  1485. .wui-date-picker .wui-data-table td div {
  1486. height: 30px;
  1487. padding: 3px 0;
  1488. box-sizing: border-box;
  1489. }
  1490. .wui-date-picker .wui-data-table td span {
  1491. width: 24px;
  1492. height: 24px;
  1493. display: block;
  1494. margin: 0 auto;
  1495. line-height: 24px;
  1496. position: absolute;
  1497. left: 50%;
  1498. transform: translateX(-50%);
  1499. border-radius: 50%;
  1500. }
  1501. .wui-date-picker .wui-data-table td a {
  1502. color: #606266;
  1503. }
  1504. .wui-date-picker .wui-data-table .prev-date,
  1505. .wui-date-picker .wui-data-table .next-date {
  1506. color: #c0c4cc;
  1507. }
  1508. .wui-date-picker .wui-data-table .date span:hover {
  1509. color: #66b1ff;
  1510. }
  1511. .wui-date-picker .wui-data-table .date span.current {
  1512. color: #fff;
  1513. background-color: #409eff;
  1514. }
  1515. .wui-date-picker .wui-data-table .today {
  1516. color: #66b1ff;
  1517. }
  1518. .wui-date.small .time-select .time-menu {
  1519. max-height: 210px!important;
  1520. top: 33px!important;
  1521. }
  1522. .wui-date.small .wui-date-picker {
  1523. min-width: 342px;
  1524. }
  1525. .wui-date.small .wui-date-picker .wui-date-picker_body {
  1526. min-height: 250px;
  1527. }
  1528. .wui-date.small .wui-date-picker .wui-date-picker_panel {
  1529. width: 260px;
  1530. height: 260px;
  1531. float: left;
  1532. border-right: 1px solid #e4e7ed;
  1533. }
  1534. .wui-date.small .wui-date-picker .month_panel .wui-date-panel_header .title {
  1535. width: 193px;
  1536. font-size: 14px;
  1537. }
  1538. .wui-date.small .wui-date-picker .month_panel .wui-data-table {
  1539. border-top: 1px solid #e4e7ed;
  1540. padding: 2px 0 3px 0;
  1541. }
  1542. .wui-date.small .wui-date-picker .month_panel .wui-data-table td {
  1543. padding: 25px 0;
  1544. }
  1545. .wui-date.small .wui-date-picker .month_panel .wui-data-table td .cell:hover {
  1546. color: #409eff;
  1547. }
  1548. .wui-date.small .wui-date-picker .year_panel .wui-date-panel_header .title {
  1549. width: 193px;
  1550. font-size: 14px;
  1551. }
  1552. .wui-date.small .wui-date-picker .year_panel .wui-data-table {
  1553. border-top: 1px solid #e4e7ed;
  1554. padding: 2px 0 3px 0;
  1555. }
  1556. .wui-date.small .wui-date-picker .year_panel .wui-data-table td {
  1557. padding: 25px 0;
  1558. }
  1559. .wui-date.small .wui-date-picker .year_panel .wui-data-table td .cell:hover {
  1560. color: #409eff;
  1561. }
  1562. .wui-date.small .wui-date-picker .wui-date-panel_header {
  1563. margin: 10px 10px 0 10px;
  1564. }
  1565. .wui-date.small .wui-date-picker .wui-date-panel_header .title {
  1566. width: 147px;
  1567. }
  1568. .wui-date.small .wui-date-picker .wui-date-picker_content {
  1569. margin: 0 10px 10px 10px;
  1570. }
  1571. .wui-date.small .wui-date-picker .wui-data-table td {
  1572. width: 35.7px;
  1573. height: 20px;
  1574. }
  1575. .wui-date.small .wui-date-picker .wui-data-table td div {
  1576. width: 35.7px;
  1577. height: 20px;
  1578. padding: 0;
  1579. }
  1580. .wui-date.small .wui-date-picker .wui-data-table td span {
  1581. width: 20px;
  1582. height: 20px;
  1583. line-height: 20px;
  1584. font-size: 12px;
  1585. }
  1586. .wui-date.small .wui-date-picker .wui-date-aside_header {
  1587. margin: 10px 3px 5px 3px;
  1588. }
  1589. .wui-date.small .wui-date-picker .wui-date-picker_aside {
  1590. width: 80px;
  1591. }
  1592. .wui-date.small .wui-date-picker .wui-date-picker_aside .placeholder {
  1593. padding-right: 0px;
  1594. }
  1595. .wui-date.small .wui-date-picker .wui-date-picker_aside .time-menu-item {
  1596. padding: 5px 0px 5px 5px!important;
  1597. margin: 0 5px;
  1598. }
  1599. .wui-date-picker.left {
  1600. left: 0;
  1601. }
  1602. .wui-date-picker.right {
  1603. right: 0;
  1604. }
  1605. .wui-date-picker.no_timer {
  1606. min-width: 0!important;
  1607. }