_custom.less 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061
  1. @charset "UTF-8";
  2. @import "_config.less";
  3. // +----------------------------------------------------------------------
  4. // | ThinkAdmin
  5. // +----------------------------------------------------------------------
  6. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  7. // +----------------------------------------------------------------------
  8. // | 官方网站: https://thinkadmin.top
  9. // +----------------------------------------------------------------------
  10. // | 开源协议 ( https://mit-license.org )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. .flex {
  16. #flex();
  17. &-inline {
  18. display: inline-flex;
  19. }
  20. &-wrap {
  21. #flexWrap(wrap);
  22. &-no {
  23. #flexWrap(nowrap);
  24. }
  25. &-rev {
  26. #flexWrap(wrap-reverse);
  27. }
  28. }
  29. // 主轴方向
  30. &-direction- {
  31. &row {
  32. #flexDirection(row);
  33. &reverse {
  34. #flexDirection(row-reverse);
  35. }
  36. }
  37. &column {
  38. #flexDirection(column);
  39. &-reverse {
  40. #flexDirection(column-reverse);
  41. }
  42. }
  43. }
  44. // 垂直方向
  45. &-align- {
  46. &start {
  47. #flexAlign(flex-start);
  48. }
  49. &end {
  50. #flexAlign(flex-end);
  51. }
  52. &center {
  53. #flexAlign(center)
  54. }
  55. }
  56. // 横向布局
  57. &-justify- {
  58. &start {
  59. #flexJustify(flex-start);
  60. }
  61. &center {
  62. #flexJustify(center);
  63. }
  64. &end {
  65. #flexJustify(flex-end);
  66. }
  67. &space- {
  68. &between {
  69. #flexJustify(space-between);
  70. }
  71. &around {
  72. #flexJustify(space-around);
  73. }
  74. &evenly {
  75. #flexJustify(space-evenly);
  76. }
  77. }
  78. }
  79. &-1 {
  80. flex: 1;
  81. }
  82. &-2 {
  83. flex: 2;
  84. }
  85. &-3 {
  86. flex: 3;
  87. }
  88. &-4 {
  89. flex: 4;
  90. }
  91. &-5 {
  92. flex: 5;
  93. }
  94. }
  95. .fixed {
  96. position: fixed !important;
  97. }
  98. .absolute {
  99. position: absolute !important;
  100. &-full {
  101. top: 0;
  102. left: 0;
  103. right: 0;
  104. bottom: 0;
  105. position: absolute;
  106. }
  107. }
  108. .relative {
  109. position: relative !important
  110. }
  111. .headimg {
  112. width: 33px;
  113. height: 33px;
  114. display: inline-block;
  115. margin-right: 5px;
  116. border-radius: 50%;
  117. #imageBgCover();
  118. &-no {
  119. border: none;
  120. box-shadow: none;
  121. border-radius: 2px;
  122. }
  123. &-ss {
  124. width: 20px;
  125. height: 20px;
  126. }
  127. &-xs {
  128. width: 25px;
  129. height: 25px;
  130. }
  131. &-sm {
  132. width: 40px;
  133. height: 40px;
  134. }
  135. &-md {
  136. width: 55px;
  137. height: 55px;
  138. }
  139. &-lg {
  140. width: 82px;
  141. height: 82px;
  142. }
  143. > img {
  144. width: 110%;
  145. height: 110%;
  146. max-width: 110%;
  147. max-height: 110%;
  148. margin: -5% 0 0 -5%;
  149. }
  150. & + * {
  151. vertical-align: middle;
  152. }
  153. }
  154. .notdata {
  155. padding: 15px;
  156. display: block;
  157. font-size: 13px;
  158. text-align: center;
  159. line-height: 22px;
  160. border-radius: @BoxBorderRadius;
  161. letter-spacing: 1px;
  162. background-color: #f2f2f2;
  163. border: 1px solid @InputBorderNormalColor;
  164. }
  165. .notselect {
  166. #notSelect();
  167. }
  168. .transition {
  169. #defaTransition();
  170. }
  171. .overhide {
  172. overflow: hidden !important;
  173. }
  174. .overauto {
  175. overflow: auto !important;
  176. }
  177. .pointer {
  178. cursor: pointer !important
  179. }
  180. .nowrap {
  181. white-space: nowrap !important
  182. }
  183. .shadow {
  184. box-shadow: @ShadowOuterMax;
  185. }
  186. .shadow-none {
  187. box-shadow: none !important;
  188. }
  189. .shadow-mini {
  190. box-shadow: @ShadowOuterMax;
  191. }
  192. .shadow-inset {
  193. box-shadow: @ShadowInset;
  194. }
  195. .block {
  196. display: block !important
  197. }
  198. .inline-block {
  199. display: inline-block !important
  200. }
  201. .help-block {
  202. color: #999;
  203. font-size: 12px
  204. }
  205. .help-label {
  206. color: #999 !important;
  207. b {
  208. color: #090 !important;
  209. margin-right: 5px !important;
  210. }
  211. }
  212. .help-checks:not(td) {
  213. padding: 10px 0 10px 10px;
  214. min-height: unset;
  215. line-height: 34px;
  216. border-radius: @BoxBorderRadius;
  217. #flex();
  218. #flexWrap(wrap);
  219. &.layui-input {
  220. padding: 1px 0 1px 5px;
  221. }
  222. }
  223. .help-images:not(td) {
  224. padding: 10px 0 0 10px !important;
  225. min-height: unset;
  226. border-radius: @BoxBorderRadius;
  227. #flex();
  228. #flexWrap(wrap);
  229. .uploadimage {
  230. margin: 0 10px 10px 0;
  231. }
  232. }
  233. /*! 搜索表单样式 */
  234. .form-search {
  235. .layui-btn {
  236. height: 32px;
  237. padding: 0 10px;
  238. font-size: 13px;
  239. line-height: 32px;
  240. .layui-icon {
  241. font-size: 15px
  242. }
  243. }
  244. .layui-form-item {
  245. &:last-child {
  246. border: none
  247. }
  248. white-space: nowrap;
  249. margin-right: 8px;
  250. margin-bottom: 10px;
  251. border: 1px solid @InputBorderNormalColor;
  252. .layui-form-label {
  253. width: auto !important;
  254. border: none;
  255. height: 30px;
  256. padding: 0 8px;
  257. line-height: 32px;
  258. border-right: 1px solid @InputBorderNormalColor;
  259. }
  260. .layui-input-inline {
  261. width: 150px;
  262. margin: 0 !important;
  263. display: inline-block !important;
  264. input, select {
  265. width: 100%;
  266. height: 30px;
  267. padding: 0 8px;
  268. line-height: 32px;
  269. border-width: 0;
  270. }
  271. }
  272. .layui-form-select {
  273. dl {
  274. top: 31px;
  275. padding: 0;
  276. border-width: 0;
  277. box-shadow: @ShadowOuterMax;
  278. border-top-left-radius: 0;
  279. border-top-right-radius: 0;
  280. }
  281. }
  282. }
  283. & + .layui-table {
  284. margin-top: 0 !important;
  285. }
  286. }
  287. /* 自定义表格行高 */
  288. table[data-line] + div tbody {
  289. .layui-table-cell {
  290. line-height: 21px;
  291. padding-top: 10px;
  292. padding-bottom: 2px;
  293. .headimg.pull-left {
  294. margin-top: 4px;
  295. }
  296. &.laytable-cell-checkbox {
  297. line-height: 44px;
  298. }
  299. .layui-btn {
  300. margin-top: 6px;
  301. }
  302. }
  303. }
  304. table[data-line='2'] + div tbody .layui-table-cell {
  305. height: 60px;
  306. .layui-badge-middle {
  307. line-height: 16px;
  308. }
  309. &.laytable-cell-checkbox {
  310. line-height: 40px;
  311. }
  312. }
  313. table[data-line='3'] + div tbody .layui-table-cell {
  314. height: 80px;
  315. .layui-badge-middle {
  316. line-height: 17px;
  317. }
  318. &.laytable-cell-checkbox {
  319. line-height: 60px;
  320. }
  321. }
  322. .layui-table-tips .layui-table-tips-main {
  323. font-size: 12px;
  324. padding-top: 10px;
  325. line-height: 21px;
  326. .headimg.pull-left {
  327. margin-top: 4px;
  328. }
  329. }
  330. /* 表单验证异常提示 */
  331. .label-required {
  332. &-prev:before {
  333. color: red;
  334. width: 0.5em;
  335. content: '*';
  336. margin: -2px 0 0 -0.55em;
  337. display: inline-block;
  338. position: absolute;
  339. font-size: 14px;
  340. text-align: left;
  341. font-weight: bold;
  342. line-height: 1.6em;
  343. }
  344. &:after, &-next:after {
  345. top: 6px;
  346. right: 5px;
  347. color: red;
  348. content: '*';
  349. position: absolute;
  350. margin-left: 4px;
  351. font-weight: 700;
  352. line-height: 1.8em
  353. }
  354. &-null:before {
  355. content: none !important
  356. }
  357. }
  358. /** 手机盒子及微信菜单 */
  359. .mobile-preview {
  360. width: 317px;
  361. height: 580px;
  362. position: relative;
  363. background: url(../img/wechat/mobile_head.png) no-repeat 0 0;
  364. border-radius: @BoxBorderRadius;
  365. .mobile-header {
  366. color: #fff;
  367. width: auto;
  368. margin: 0 30px;
  369. overflow: hidden;
  370. font-size: 15px;
  371. padding-top: 30px;
  372. text-align: center;
  373. white-space: nowrap;
  374. text-overflow: ellipsis;
  375. word-wrap: normal;
  376. user-select: none;
  377. -moz-user-select: none;
  378. -webkit-user-select: none;
  379. pointer-events: none;
  380. -webkit-pointer-events: none;
  381. }
  382. .mobile-body {
  383. top: 60px;
  384. left: 0;
  385. right: 0;
  386. bottom: 0;
  387. position: absolute;
  388. background: #F5F5F5;
  389. border: 1px solid #666;
  390. border-radius: 0 0 @BoxBorderRadius @BoxBorderRadius;
  391. iframe {
  392. width: 100%;
  393. height: 100%;
  394. border: none;
  395. }
  396. }
  397. .mobile-footer {
  398. left: 1px;
  399. right: 1px;
  400. bottom: 1px;
  401. position: absolute;
  402. padding-left: 44px;
  403. border-top: 1px solid rgb(208, 208, 208);
  404. background: url(../img/wechat/mobile_foot.png) no-repeat 0 0;
  405. border-radius: 0 0 @BoxBorderRadius @BoxBorderRadius;
  406. li {
  407. float: left;
  408. width: 33.33%;
  409. position: relative;
  410. text-align: center;
  411. line-height: 50px;
  412. a {
  413. width: auto;
  414. color: #616161;
  415. display: block;
  416. overflow: hidden;
  417. word-wrap: normal;
  418. white-space: nowrap;
  419. text-overflow: ellipsis;
  420. text-decoration: none;
  421. &:after {
  422. top: -1px;
  423. left: 0;
  424. right: 0;
  425. bottom: 0;
  426. border: 1px solid rgb(208, 208, 208);
  427. margin: 0 0 0 -1px;
  428. z-index: 10;
  429. content: '';
  430. display: block;
  431. position: absolute;
  432. }
  433. &.active:after {
  434. border: 1px solid #44b549;
  435. box-shadow: 0 0 3px #44b549;
  436. z-index: 11;
  437. }
  438. &:hover {
  439. background: rgba(0, 0, 0, .02)
  440. }
  441. }
  442. > .close {
  443. top: 1px;
  444. right: 1px;
  445. width: 18px;
  446. height: 18px;
  447. display: none;
  448. cursor: pointer;
  449. position: absolute;
  450. z-index: 13;
  451. text-align: center;
  452. line-height: 18px;
  453. }
  454. &:hover > .close {
  455. display: inline-block;
  456. background: none !important;
  457. &:hover {
  458. color: #C33 !important;
  459. }
  460. }
  461. }
  462. .icon {
  463. &-add, &-sub {
  464. display: inline-block;
  465. vertical-align: middle;
  466. &::before {
  467. content: none;
  468. }
  469. }
  470. &-add {
  471. width: 14px;
  472. height: 14px;
  473. background: url(../img/wechat/index.png) 0 0 no-repeat
  474. }
  475. &-sub {
  476. width: 7px;
  477. height: 7px;
  478. margin-right: 2px;
  479. background: url(../img/wechat/index.png) 0 -3pc no-repeat
  480. }
  481. }
  482. .sub-menu {
  483. width: 100%;
  484. bottom: 60px;
  485. display: block;
  486. position: absolute;
  487. margin-bottom: -1px;
  488. background-color: #fafafa;
  489. ul li {
  490. width: 100%;
  491. padding: 0;
  492. > .close {
  493. top: 0;
  494. }
  495. a:after {
  496. margin: -1px 0 1px 0;
  497. }
  498. }
  499. }
  500. .arrow {
  501. left: 50%;
  502. position: absolute;
  503. margin-left: -6px;
  504. }
  505. .arrow_in,
  506. .arrow_out {
  507. width: 0;
  508. height: 0;
  509. z-index: 10;
  510. border: 6px dashed transparent;
  511. display: inline-block;
  512. border-top-style: solid;
  513. border-bottom-width: 0;
  514. }
  515. .arrow_in {
  516. bottom: -4px;
  517. z-index: 11;
  518. border-top-color: #fafafa
  519. }
  520. .arrow_out {
  521. bottom: -5px;
  522. z-index: 10;
  523. border-top-color: #d0d0d0
  524. }
  525. }
  526. }
  527. /*! 重置 Iframe 页面样式 */
  528. .iframe-pagination {
  529. padding: 20px;
  530. &:not(.not-footer):after {
  531. content: '';
  532. height: 30px;
  533. display: block;
  534. }
  535. .pagination-container {
  536. left: 0;
  537. right: 0;
  538. bottom: 0;
  539. padding: 5px 20px;
  540. position: fixed;
  541. background: #fff;
  542. border-top: 1px solid #ddd;
  543. }
  544. }
  545. @think-elips: {
  546. display: -webkit-box;
  547. overflow: hidden;
  548. line-height: 1.4em;
  549. text-overflow: ellipsis;
  550. -webkit-box-orient: vertical;
  551. }
  552. .think-elips {
  553. &-1 {
  554. @think-elips();
  555. line-clamp: 1;
  556. -webkit-line-clamp: 1;
  557. }
  558. &-2 {
  559. @think-elips();
  560. line-clamp: 2;
  561. -webkit-line-clamp: 2;
  562. }
  563. &-3 {
  564. @think-elips();
  565. line-clamp: 3;
  566. -webkit-line-clamp: 3;
  567. }
  568. &-4 {
  569. @think-elips();
  570. line-clamp: 4;
  571. -webkit-line-clamp: 4;
  572. }
  573. &-5 {
  574. @think-elips();
  575. line-clamp: 5;
  576. -webkit-line-clamp: 5;
  577. }
  578. }
  579. .think-box-shadow {
  580. padding: 20px !important;
  581. background: #fff !important;
  582. box-shadow: @ShadowOuterMax;
  583. border-radius: @BoxBorderRadius;
  584. > .layui-card {
  585. box-shadow: none;
  586. }
  587. }
  588. .think-box-notify {
  589. display: block;
  590. padding: 18px 20px;
  591. font-size: 14px;
  592. background: #FFF;
  593. line-height: 1em;
  594. margin-bottom: 10px;
  595. box-shadow: @ShadowOuterMax;
  596. border-radius: @BoxBorderRadius;
  597. > b {
  598. font-size: 15px;
  599. }
  600. > .layui-card {
  601. box-shadow: none;
  602. }
  603. }
  604. .think-page-loader {
  605. top: 0;
  606. left: 0;
  607. right: 0;
  608. bottom: 0;
  609. z-index: 1999;
  610. position: fixed;
  611. text-align: center;
  612. background-color: @LoadBackColor;
  613. .loader {
  614. top: 50%;
  615. width: 50px;
  616. height: 50px;
  617. margin: -35px 0 0 -35px;
  618. z-index: 999999;
  619. display: inline-block;
  620. position: fixed;
  621. background-color: @LoadBackColor;
  622. }
  623. .loader:before {
  624. top: 59px;
  625. left: 0;
  626. width: 50px;
  627. height: 7px;
  628. opacity: 0.1;
  629. content: "";
  630. position: absolute;
  631. border-radius: 50%;
  632. background-color: #000;
  633. animation: shadow .5s linear infinite;
  634. }
  635. .loader:after {
  636. top: 0;
  637. left: 0;
  638. width: 50px;
  639. height: 50px;
  640. content: "";
  641. position: absolute;
  642. border-radius: 3px;
  643. background-color: #5FB878;
  644. animation: loading .5s linear infinite;
  645. }
  646. }
  647. .input-right-icon {
  648. top: 1px;
  649. right: 1px;
  650. color: #098;
  651. width: 36px;
  652. height: 36px;
  653. display: inline-block;
  654. position: absolute;
  655. background: #E9E9E9;
  656. text-align: center;
  657. line-height: 38px;
  658. &:hover {
  659. color: #009080;
  660. background: #E0E0E0;
  661. }
  662. }
  663. [data-tips-image] {
  664. cursor: zoom-in !important
  665. }
  666. [data-lazy-src] {
  667. #imageBgCover();
  668. }
  669. .pace-inactive {
  670. display: none
  671. }
  672. .pace-progress {
  673. top: 0;
  674. right: 100%;
  675. width: 100%;
  676. height: 2px;
  677. z-index: 2000;
  678. position: fixed;
  679. background: #22df80
  680. }
  681. input:not(.layui-hide,[type=hidden]) {
  682. &, & + span {
  683. + .uploadimage {
  684. margin-top: 5px;
  685. }
  686. }
  687. }
  688. .uploadimage {
  689. width: 76px;
  690. height: 76px;
  691. cursor: pointer;
  692. display: inline-block;
  693. border-radius: 3px;
  694. #imageBgCover();
  695. #defaTransition();
  696. background-image: url('../img/upimg.png');
  697. box-shadow: @ShadowOuterMin;
  698. &.uploadvideo {
  699. background-image: url('../img/upvideo.png');
  700. }
  701. > span:first-child {
  702. right: 0;
  703. height: 20px;
  704. z-index: 3;
  705. display: none;
  706. position: absolute;
  707. box-shadow: @ShadowOuterMin;
  708. .layui-icon {
  709. color: #fff;
  710. width: 22px;
  711. height: 20px;
  712. text-align: center;
  713. line-height: 22px;
  714. display: inline-block;
  715. background: rgba(0, 0, 0, .8);
  716. }
  717. .layui-icon:first-child {
  718. border-top-left-radius: 3px;
  719. border-bottom-left-radius: 3px;
  720. }
  721. .layui-icon:last-child {
  722. border-top-right-radius: 3px;
  723. border-bottom-right-radius: 3px;
  724. }
  725. }
  726. > span:last-child {
  727. width: 100%;
  728. height: 100%;
  729. display: block;
  730. position: absolute;
  731. z-index: 2;
  732. }
  733. &:hover > span:first-child {
  734. display: block;
  735. }
  736. }
  737. .uploadimagemtl {
  738. margin-right: 10px;
  739. > div {
  740. right: 0;
  741. display: none;
  742. position: absolute;
  743. text-align: right;
  744. a {
  745. color: #EEE;
  746. width: 22px;
  747. height: 20px;
  748. display: inline-block;
  749. box-shadow: @ShadowOuterMin;
  750. text-align: center;
  751. line-height: 20px;
  752. background: rgba(0, 0, 0, 0.8);
  753. &:first-child {
  754. border-top-left-radius: 3px;
  755. border-bottom-left-radius: 3px;
  756. }
  757. &:last-child {
  758. border-top-right-radius: 3px;
  759. border-bottom-right-radius: 3px;
  760. }
  761. }
  762. }
  763. &:hover > div {
  764. cursor: pointer;
  765. display: inline-block;
  766. a:hover {
  767. color: #FFF;
  768. text-decoration: none
  769. }
  770. }
  771. }
  772. .upload-image-smbox,
  773. .upload-image-mdbox,
  774. .upload-image-lgbox {
  775. .uploadimage {
  776. margin-bottom: 10px;
  777. a {
  778. width: 30px;
  779. height: 30px;
  780. line-height: 30px;
  781. }
  782. }
  783. }
  784. .upload-image-smbox .uploadimage {
  785. width: 120px;
  786. height: 120px;
  787. }
  788. .upload-image-mdbox .uploadimage {
  789. width: 180px;
  790. height: 180px;
  791. }
  792. .upload-image-lgbox .uploadimage {
  793. width: 240px;
  794. height: 240px;
  795. }
  796. .submit-button-loading {
  797. cursor: default;
  798. position: relative;
  799. transform: scale(1);
  800. text-align: center;
  801. &::after {
  802. left: 50%;
  803. position: absolute;
  804. margin-left: -8px;
  805. #iconLayout(15px);
  806. content: "\e63d";
  807. animation-name: layui-rotate;
  808. -webkit-animation-name: layui-rotate;
  809. -webkit-animation-duration: 1s;
  810. animation-duration: 1s;
  811. animation-timing-function: linear;
  812. -webkit-animation-timing-function: linear;
  813. animation-iteration-count: infinite;
  814. -webkit-animation-iteration-count: infinite;
  815. }
  816. }
  817. /* 图片选择器样式 */
  818. .image-dialog {
  819. &-head {
  820. clear: both;
  821. height: 30px;
  822. padding: 10px 12px;
  823. }
  824. &-body {
  825. height: 470px;
  826. display: flex;
  827. flex-wrap: wrap;
  828. background: #EFEFEF;
  829. padding-top: 12px;
  830. padding-left: 12px;
  831. align-content: flex-start;
  832. }
  833. &-item {
  834. z-index: 1;
  835. overflow: hidden;
  836. position: relative;
  837. margin-right: 12px;
  838. margin-bottom: 12px;
  839. border-radius: @BoxBorderRadius;
  840. .uploadimage {
  841. margin: 0;
  842. width: 145px;
  843. height: 145px;
  844. background-color: #fff;
  845. }
  846. &-type, &-size {
  847. top: 2px;
  848. color: #FFF;
  849. padding: 0 6px;
  850. position: absolute;
  851. font-size: 12px;
  852. transform: scale(0.9);
  853. background: rgba(0, 0, 0, 0.6);
  854. line-height: 18px;
  855. border-radius: 18px;
  856. }
  857. &-type {
  858. left: 1px;
  859. }
  860. &-size {
  861. right: 1px;
  862. }
  863. &-name {
  864. left: 0;
  865. right: 0;
  866. bottom: 0;
  867. color: #fff;
  868. padding: 3px 10px;
  869. position: absolute;
  870. text-align: center;
  871. line-height: 1.5em;
  872. white-space: nowrap;
  873. background: rgba(0, 0, 0, 0.6);
  874. }
  875. }
  876. &-foot {
  877. padding: 0 12px;
  878. }
  879. &-page {
  880. height: 50px;
  881. text-align: center;
  882. .layui-laypage {
  883. a, span {
  884. margin-bottom: 0;
  885. }
  886. }
  887. }
  888. &-button {
  889. right: 10px;
  890. bottom: 6px;
  891. position: absolute;
  892. z-index: 2;
  893. #notSelect();
  894. #defaTransition();
  895. }
  896. &-checked {
  897. &:after, &:before {
  898. z-index: 2;
  899. cursor: pointer;
  900. content: '';
  901. display: block;
  902. position: absolute;
  903. }
  904. &:after {
  905. top: -25px;
  906. right: -25px;
  907. width: 50px;
  908. height: 50px;
  909. transform: rotate(135deg);
  910. -moz-transform: rotate(135deg);
  911. -webkit-transform: rotate(135deg);
  912. background-color: rgba(56, 169, 225, 0.8);
  913. }
  914. &:before {
  915. top: 0;
  916. left: 0;
  917. right: 0;
  918. bottom: 0;
  919. border: 4px solid rgba(56, 169, 225, 0.8);
  920. }
  921. }
  922. }
  923. .portal-block-container {
  924. font-size: 14px;
  925. margin-bottom: 10px;
  926. letter-spacing: 1px;
  927. .portal-block {
  928. &-icon {
  929. top: 45%;
  930. right: 8%;
  931. font-size: 65px;
  932. position: absolute;
  933. color: rgba(255, 255, 255, 0.4);
  934. }
  935. &-item {
  936. color: #fff;
  937. padding: 15px 25px;
  938. position: relative;
  939. line-height: 3em;
  940. box-shadow: @ShadowOuterMax;
  941. border-radius: @BoxBorderRadius;
  942. > div:nth-child(2) {
  943. font-size: 46px;
  944. line-height: 46px;
  945. }
  946. }
  947. }
  948. }
  949. label.think-radio,
  950. label.think-checkbox {
  951. cursor: pointer;
  952. display: inline-block;
  953. margin: 8px 10px 8px 6px;
  954. }
  955. .think-radio,
  956. .think-checkbox {
  957. .notselect();
  958. margin-top: 10px;
  959. font-weight: 400;
  960. line-height: 16px;
  961. input[type=radio],
  962. input[type=checkbox] {
  963. width: 18px;
  964. height: 18px;
  965. cursor: pointer;
  966. border: 1px solid @RadioBorderNormalColor;
  967. position: relative;
  968. background: #fff;
  969. margin-right: 5px;
  970. vertical-align: bottom;
  971. display: inline-block !important;
  972. box-sizing: border-box !important;
  973. appearance: none;
  974. -webkit-appearance: none;
  975. &:checked {
  976. border-color: #009688;
  977. &:after {
  978. display: block;
  979. position: relative;
  980. animation-duration: .3s;
  981. animation-fill-mode: both;
  982. animation-name: layui-fadein;
  983. -webkit-animation-duration: .3s;
  984. -webkit-animation-fill-mode: both;
  985. -webkit-animation-name: layui-fadein;
  986. }
  987. }
  988. }
  989. input[type=radio] {
  990. border-radius: 1em;
  991. &:checked:after {
  992. top: 4px;
  993. left: 4px;
  994. width: 8px;
  995. height: 8px;
  996. cursor: pointer;
  997. content: '';
  998. background: #009688;
  999. border-radius: 1em;
  1000. }
  1001. }
  1002. input[type=checkbox] {
  1003. border-radius: 1px;
  1004. &:checked:after {
  1005. color: #009688;
  1006. cursor: pointer;
  1007. padding: 2px;
  1008. content: "\e605";
  1009. #iconLayout(12px);
  1010. font-weight: 700;
  1011. }
  1012. }
  1013. }
  1014. .pagination-container {
  1015. margin-top: 20px;
  1016. line-height: 30px;
  1017. padding-top: 5px;
  1018. padding-bottom: 5px;
  1019. span {
  1020. color: #666;
  1021. font-size: 9pt
  1022. }
  1023. select {
  1024. border: 1px solid #DDD;
  1025. }
  1026. ul {
  1027. float: right;
  1028. height: 30px;
  1029. margin: 0;
  1030. padding: 0;
  1031. display: inline-block;
  1032. li {
  1033. z-index: 1;
  1034. height: 30px;
  1035. line-height: 30px;
  1036. display: inline-block;
  1037. a, span {
  1038. color: #333;
  1039. width: 30px;
  1040. height: 30px;
  1041. border: 1px solid @BoxBorderColor;
  1042. overflow: hidden;
  1043. font-size: 12px;
  1044. text-align: center;
  1045. line-height: 30px;
  1046. margin-right: 3px;
  1047. display: inline-block;
  1048. box-sizing: border-box;
  1049. }
  1050. span {
  1051. cursor: default;
  1052. background: #DCDCDC;
  1053. }
  1054. a:hover {
  1055. border-color: #009688;
  1056. }
  1057. &.active {
  1058. z-index: 2;
  1059. span {
  1060. color: #fff;
  1061. border-color: #009688;
  1062. background: #009688 !important
  1063. }
  1064. }
  1065. &.disabled {
  1066. span {
  1067. font-size: 16px;
  1068. font-weight: 700;
  1069. line-height: 22px;
  1070. }
  1071. }
  1072. &:last-child, &:first-child {
  1073. a, span {
  1074. font-size: 16px;
  1075. font-weight: 700;
  1076. line-height: 28px;
  1077. }
  1078. }
  1079. }
  1080. }
  1081. }
  1082. .hr-line- {
  1083. &dashed {
  1084. color: #fff;
  1085. height: 1px;
  1086. margin: 15px 0;
  1087. background-color: #fff;
  1088. border-top: 1px dashed #e7eaec;
  1089. }
  1090. &solid {
  1091. margin-top: 15px;
  1092. margin-bottom: 15px;
  1093. border-bottom: 1px solid #e7eaec;
  1094. background-color: rgba(0, 0, 0, 0);
  1095. }
  1096. }
  1097. .pull- {
  1098. &left {
  1099. float: left !important
  1100. }
  1101. &right {
  1102. float: right !important
  1103. }
  1104. }
  1105. .full- {
  1106. &width {
  1107. width: 100% !important
  1108. }
  1109. &height {
  1110. height: 100% !important
  1111. }
  1112. }
  1113. .color- {
  1114. &red {
  1115. color: #e44 !important
  1116. }
  1117. &blue {
  1118. color: #29f !important
  1119. }
  1120. &desc {
  1121. color: #999 !important
  1122. }
  1123. &text {
  1124. color: #333 !important
  1125. }
  1126. &green {
  1127. color: #090 !important
  1128. }
  1129. }
  1130. .sub-span- {
  1131. &red span {
  1132. color: #e44 !important
  1133. }
  1134. &blue span {
  1135. color: #29f !important
  1136. }
  1137. &desc span {
  1138. color: #999 !important
  1139. }
  1140. &text span {
  1141. color: #333 !important
  1142. }
  1143. &green span {
  1144. color: #090 !important
  1145. }
  1146. }
  1147. .sub-strong- {
  1148. &s10 b {
  1149. font-size: 10px;
  1150. }
  1151. &s12 b {
  1152. font-size: 12px;
  1153. }
  1154. &s14 b {
  1155. font-size: 14px;
  1156. }
  1157. &red b {
  1158. color: #ec494e !important
  1159. }
  1160. &blue b {
  1161. color: #2494f2 !important
  1162. }
  1163. &desc b {
  1164. color: #999 !important
  1165. }
  1166. &text b {
  1167. color: #333 !important
  1168. }
  1169. &green b {
  1170. color: #090 !important
  1171. }
  1172. }
  1173. .think-bg- {
  1174. &red {
  1175. color: #FFF;
  1176. background: linear-gradient(-125deg, #ff7d7d, #fb2c95) !important
  1177. }
  1178. &none {
  1179. background: none !important;
  1180. }
  1181. &gray {
  1182. color: #333;
  1183. background: linear-gradient(-113deg, #EEEEEE, #EEEEEE) !important
  1184. }
  1185. &blue {
  1186. color: #FFF;
  1187. background: linear-gradient(-125deg, #57bdbf, #2f9de2) !important
  1188. }
  1189. &orig {
  1190. color: #FFF;
  1191. background: linear-gradient(-141deg, #ecca1b, #f39526) !important
  1192. }
  1193. &violet {
  1194. color: #FFF;
  1195. background: linear-gradient(-113deg, #c543d8, #925cc3) !important
  1196. }
  1197. &white {
  1198. color: #333;
  1199. background: white !important
  1200. }
  1201. }
  1202. .text- {
  1203. &top {
  1204. vertical-align: top !important
  1205. }
  1206. &left {
  1207. text-align: left !important
  1208. }
  1209. &right {
  1210. text-align: right !important
  1211. }
  1212. &center {
  1213. text-align: center !important
  1214. }
  1215. &middle {
  1216. vertical-align: middle !important
  1217. }
  1218. &bottom {
  1219. vertical-align: bottom !important
  1220. }
  1221. }
  1222. .font- {
  1223. &s10 {
  1224. font-size: 10px !important
  1225. }
  1226. &s11 {
  1227. font-size: 11px !important
  1228. }
  1229. &s12 {
  1230. font-size: 12px !important
  1231. }
  1232. &s13 {
  1233. font-size: 13px !important
  1234. }
  1235. &s14 {
  1236. font-size: 14px !important
  1237. }
  1238. &s15 {
  1239. font-size: 15px !important
  1240. }
  1241. &s16 {
  1242. font-size: 16px !important
  1243. }
  1244. &s18 {
  1245. font-size: 18px !important
  1246. }
  1247. &s20 {
  1248. font-size: 20px !important
  1249. }
  1250. &s30 {
  1251. font-size: 30px !important
  1252. }
  1253. &s40 {
  1254. font-size: 40px !important
  1255. }
  1256. &w1 {
  1257. font-weight: 100 !important;
  1258. }
  1259. &w2 {
  1260. font-weight: 200 !important;
  1261. }
  1262. &w3 {
  1263. font-weight: 300 !important;
  1264. }
  1265. &w4 {
  1266. font-weight: 400 !important;
  1267. }
  1268. &w5 {
  1269. font-weight: 500 !important;
  1270. }
  1271. &w6 {
  1272. font-weight: 600 !important;
  1273. }
  1274. &w7 {
  1275. font-weight: 700 !important;
  1276. }
  1277. &w8 {
  1278. font-weight: 800 !important;
  1279. }
  1280. &w9 {
  1281. font-weight: 900 !important;
  1282. }
  1283. }
  1284. .border {
  1285. &-0 {
  1286. border: 0 !important
  1287. }
  1288. &-line {
  1289. border: 1px solid @BoxBorderColor;
  1290. }
  1291. &-bottom-line {
  1292. border-bottom: 1px solid @BoxBorderColor;
  1293. }
  1294. &-top-0 {
  1295. border-top: 0 !important;
  1296. }
  1297. &-left-0 {
  1298. border-left: 0 !important;
  1299. }
  1300. &-right-0 {
  1301. border-right: 0 !important;
  1302. }
  1303. &-bottom-0 {
  1304. border-bottom: 0 !important;
  1305. }
  1306. &-radius {
  1307. border-radius: 50% !important;
  1308. &-0 {
  1309. border-radius: 0 !important
  1310. }
  1311. &-5 {
  1312. border-radius: 5px !important;
  1313. }
  1314. &-6 {
  1315. border-radius: 6px !important;
  1316. }
  1317. &-left-0 {
  1318. border-top-left-radius: 0 !important;
  1319. border-bottom-left-radius: 0 !important
  1320. }
  1321. &-right-0 {
  1322. border-top-right-radius: 0 !important;
  1323. border-bottom-right-radius: 0 !important
  1324. }
  1325. }
  1326. }
  1327. .margin {
  1328. &-0 {
  1329. margin: 0 !important
  1330. }
  1331. &-5 {
  1332. margin: 5px !important
  1333. }
  1334. &-10 {
  1335. margin: 10px !important
  1336. }
  1337. &-15 {
  1338. margin: 15px !important
  1339. }
  1340. &-20 {
  1341. margin: 20px !important
  1342. }
  1343. &-25 {
  1344. margin: 25px !important
  1345. }
  1346. &-30 {
  1347. margin: 30px !important
  1348. }
  1349. &-40 {
  1350. margin: 40px !important
  1351. }
  1352. &-row {
  1353. &-0 {
  1354. margin-left: 0 !important;
  1355. margin-right: 0 !important;
  1356. }
  1357. &-5 {
  1358. margin-left: 5px !important;
  1359. margin-right: 5px !important;
  1360. }
  1361. &-10 {
  1362. margin-left: 10px !important;
  1363. margin-right: 10px !important;
  1364. }
  1365. &-15 {
  1366. margin-left: 15px !important;
  1367. margin-right: 15px !important;
  1368. }
  1369. &-20 {
  1370. margin-left: 20px !important;
  1371. margin-right: 20px !important;
  1372. }
  1373. &-25 {
  1374. margin-left: 25px !important;
  1375. margin-right: 25px !important;
  1376. }
  1377. &-30 {
  1378. margin-left: 30px !important;
  1379. margin-right: 30px !important;
  1380. }
  1381. &-40 {
  1382. margin-left: 40px !important;
  1383. margin-right: 40px !important;
  1384. }
  1385. }
  1386. &-top {
  1387. &-0 {
  1388. margin-top: 0 !important
  1389. }
  1390. &-5 {
  1391. margin-top: 5px !important
  1392. }
  1393. &-10 {
  1394. margin-top: 10px !important
  1395. }
  1396. &-15 {
  1397. margin-top: 15px !important
  1398. }
  1399. &-20 {
  1400. margin-top: 20px !important
  1401. }
  1402. &-25 {
  1403. margin-top: 25px !important
  1404. }
  1405. &-30 {
  1406. margin-top: 30px !important
  1407. }
  1408. &-40 {
  1409. margin-top: 40px !important;
  1410. }
  1411. }
  1412. &-left {
  1413. &-0 {
  1414. margin-left: 0 !important
  1415. }
  1416. &-5 {
  1417. margin-left: 5px !important
  1418. }
  1419. &-10 {
  1420. margin-left: 10px !important
  1421. }
  1422. &-15 {
  1423. margin-left: 15px !important
  1424. }
  1425. &-20 {
  1426. margin-left: 20px !important
  1427. }
  1428. &-25 {
  1429. margin-left: 25px !important
  1430. }
  1431. &-30 {
  1432. margin-left: 30px !important
  1433. }
  1434. &-40 {
  1435. margin-left: 40px !important
  1436. }
  1437. }
  1438. &-right {
  1439. &-0 {
  1440. margin-right: 0 !important
  1441. }
  1442. &-5 {
  1443. margin-right: 5px !important
  1444. }
  1445. &-10 {
  1446. margin-right: 10px !important
  1447. }
  1448. &-15 {
  1449. margin-right: 15px !important
  1450. }
  1451. &-20 {
  1452. margin-right: 20px !important
  1453. }
  1454. &-25 {
  1455. margin-right: 25px !important
  1456. }
  1457. &-30 {
  1458. margin-right: 30px !important
  1459. }
  1460. &-40 {
  1461. margin-right: 40px !important
  1462. }
  1463. }
  1464. &-bottom {
  1465. &-0 {
  1466. margin-bottom: 0 !important
  1467. }
  1468. &-5 {
  1469. margin-bottom: 5px !important
  1470. }
  1471. &-10 {
  1472. margin-bottom: 10px !important
  1473. }
  1474. &-15 {
  1475. margin-bottom: 15px !important
  1476. }
  1477. &-20 {
  1478. margin-bottom: 20px !important
  1479. }
  1480. &-25 {
  1481. margin-bottom: 25px !important
  1482. }
  1483. &-30 {
  1484. margin-bottom: 30px !important
  1485. }
  1486. &-40 {
  1487. margin-bottom: 40px !important
  1488. }
  1489. }
  1490. }
  1491. .padding {
  1492. &-0 {
  1493. padding: 0 !important
  1494. }
  1495. &-5 {
  1496. padding: 5px !important
  1497. }
  1498. &-10 {
  1499. padding: 10px !important
  1500. }
  1501. &-15 {
  1502. padding: 15px !important
  1503. }
  1504. &-20 {
  1505. padding: 20px !important
  1506. }
  1507. &-25 {
  1508. padding: 25px !important
  1509. }
  1510. &-30 {
  1511. padding: 30px !important
  1512. }
  1513. &-40 {
  1514. padding: 40px !important
  1515. }
  1516. &-row {
  1517. &-0 {
  1518. padding-left: 0 !important;
  1519. padding-right: 0 !important;
  1520. }
  1521. &-5 {
  1522. padding-left: 5px !important;
  1523. padding-right: 5px !important;
  1524. }
  1525. &-10 {
  1526. padding-left: 10px !important;
  1527. padding-right: 10px !important;
  1528. }
  1529. &-15 {
  1530. padding-left: 15px !important;
  1531. padding-right: 15px !important;
  1532. }
  1533. &-20 {
  1534. padding-left: 20px !important;
  1535. padding-right: 20px !important;
  1536. }
  1537. &-25 {
  1538. padding-left: 25px !important;
  1539. padding-right: 25px !important;
  1540. }
  1541. &-30 {
  1542. padding-left: 30px !important;
  1543. padding-right: 30px !important;
  1544. }
  1545. &-40 {
  1546. padding-left: 40px !important;
  1547. padding-right: 40px !important;
  1548. }
  1549. }
  1550. &-top {
  1551. &-0 {
  1552. padding-top: 0 !important
  1553. }
  1554. &-5 {
  1555. padding-top: 5px !important
  1556. }
  1557. &-10 {
  1558. padding-top: 10px !important
  1559. }
  1560. &-15 {
  1561. padding-top: 15px !important
  1562. }
  1563. &-20 {
  1564. padding-top: 20px !important
  1565. }
  1566. &-30 {
  1567. padding-top: 30px !important
  1568. }
  1569. &-40 {
  1570. padding-top: 40px !important
  1571. }
  1572. }
  1573. &-left {
  1574. &-0 {
  1575. padding-left: 0 !important
  1576. }
  1577. &-5 {
  1578. padding-left: 5px !important
  1579. }
  1580. &-10 {
  1581. padding-left: 10px !important
  1582. }
  1583. &-15 {
  1584. padding-left: 15px !important
  1585. }
  1586. &-20 {
  1587. padding-left: 20px !important
  1588. }
  1589. &-30 {
  1590. padding-left: 30px !important
  1591. }
  1592. &-40 {
  1593. padding-left: 40px !important
  1594. }
  1595. }
  1596. &-right {
  1597. &-0 {
  1598. padding-right: 0 !important
  1599. }
  1600. &-5 {
  1601. padding-right: 5px !important
  1602. }
  1603. &-10 {
  1604. padding-right: 10px !important
  1605. }
  1606. &-15 {
  1607. padding-right: 15px !important
  1608. }
  1609. &-20 {
  1610. padding-right: 20px !important
  1611. }
  1612. &-30 {
  1613. padding-right: 30px !important
  1614. }
  1615. &-40 {
  1616. padding-right: 40px !important
  1617. }
  1618. }
  1619. &-bottom {
  1620. &-0 {
  1621. padding-bottom: 0 !important
  1622. }
  1623. &-5 {
  1624. padding-bottom: 5px !important
  1625. }
  1626. &-10 {
  1627. padding-bottom: 10px !important
  1628. }
  1629. &-15 {
  1630. padding-bottom: 15px !important
  1631. }
  1632. &-20 {
  1633. padding-bottom: 20px !important
  1634. }
  1635. &-30 {
  1636. padding-bottom: 30px !important
  1637. }
  1638. &-40 {
  1639. padding-bottom: 40px !important
  1640. }
  1641. }
  1642. }
  1643. @keyframes loading {
  1644. 17% {
  1645. border-bottom-right-radius: 3px;
  1646. }
  1647. 25% {
  1648. transform: translateY(9px) rotate(22.5deg);
  1649. }
  1650. 50% {
  1651. border-bottom-right-radius: 40px;
  1652. transform: translateY(18px) scale(1, 0.9) rotate(45deg);
  1653. }
  1654. 75% {
  1655. transform: translateY(9px) rotate(67.5deg);
  1656. }
  1657. 100% {
  1658. transform: translateY(0) rotate(90deg);
  1659. }
  1660. }
  1661. @-webkit-keyframes loading {
  1662. 17% {
  1663. border-bottom-right-radius: 3px;
  1664. }
  1665. 25% {
  1666. transform: translateY(9px) rotate(22.5deg);
  1667. }
  1668. 50% {
  1669. transform: translateY(18px) scale(1, 0.9) rotate(45deg);
  1670. border-bottom-right-radius: 40px;
  1671. }
  1672. 75% {
  1673. transform: translateY(9px) rotate(67.5deg);
  1674. }
  1675. 100% {
  1676. transform: translateY(0) rotate(90deg);
  1677. }
  1678. }
  1679. @keyframes shadow {
  1680. 0%,
  1681. 100% {
  1682. transform: scale(1, 1);
  1683. }
  1684. 50% {
  1685. transform: scale(1.2, 1);
  1686. }
  1687. }
  1688. @-webkit-keyframes shadow {
  1689. 0%,
  1690. 100% {
  1691. transform: scale(1, 1);
  1692. }
  1693. 50% {
  1694. transform: scale(1.2, 1);
  1695. }
  1696. }