common_v3.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130
  1. /*common*/
  2. ::-webkit-scrollbar {
  3. width: 4px;
  4. height:4px;
  5. background-color: rgba(0,0,0,0.1);
  6. }
  7. ::-webkit-scrollbar-track {
  8. background-color: #F5F5F5;
  9. }
  10. ::-webkit-scrollbar-thumb {
  11. background-color: #888;
  12. }
  13. body {
  14. margin: 0;
  15. padding: 0;
  16. background: #f5f7f9;
  17. }
  18. body, html {
  19. width: 100%;
  20. height: 100%;
  21. min-width: 1440px;
  22. color: #333;
  23. font-size: 13px;
  24. }
  25. * {
  26. text-decoration: none;
  27. list-style: none;
  28. /*font-family: "Microsoft YaHei UI";*/
  29. }
  30. img {
  31. border: 0px;
  32. }
  33. p {
  34. line-height: 2;
  35. }
  36. ul, li, dl, dd, dt, p, ol, h1, h2, h3, h4, h5,img {
  37. padding: 0;
  38. margin: 0;
  39. font-size:12px;
  40. }
  41. h1 {
  42. font-size: 30px;
  43. padding: 50px;
  44. }
  45. h2 {
  46. font-size: 16px;
  47. }
  48. /*h4{*/
  49. /*color: #333;*/
  50. /*line-height: 50px;*/
  51. /*font-weight: bold;*/
  52. /*font-size: 14px;*/
  53. /*}*/
  54. em, i {
  55. font-style: normal;
  56. }
  57. ul li {
  58. list-style: none;
  59. }
  60. textarea, textarea:focus {
  61. resize: none;
  62. font-size: 12px;
  63. color: #afafb0;
  64. outline: none;
  65. }
  66. a, input, button {
  67. outline: none;
  68. border: none;
  69. }
  70. a:hover, a:link, a:visited {
  71. text-decoration: none;
  72. }
  73. a {
  74. color: #333;
  75. }
  76. a:hover {
  77. color: #333
  78. }
  79. .block{
  80. display: block;
  81. }
  82. a.full {
  83. display: inline-block;
  84. height: 100%;
  85. width: 100%;
  86. }
  87. a.js-clip {
  88. color: #44abf7;
  89. }
  90. select, input:focus, input {
  91. outline: none !important;
  92. box-shadow: none !important;
  93. }
  94. .relative {
  95. position: relative;
  96. }
  97. .icow {
  98. font-size: 16px;
  99. line-height: 100%;
  100. vertical-align: middle;
  101. }
  102. .ibox-title .icow, .wb-nav .icow {
  103. margin-right: 10px;
  104. }
  105. .ibox-title .icow, .wb-nav .icow.icow-xiaochengxu {
  106. margin-left: 6px;
  107. margin-right: 4px;
  108. }
  109. .expandMode .icow {
  110. font-size: 16px;
  111. }
  112. .expandMode button .icow {
  113. font-size: 12px;
  114. line-height: 12px;
  115. }
  116. .table .revise.icow, .table .title-revise.icow {
  117. font-size: 14px;
  118. position: absolute;
  119. right: 0;
  120. width: 16px;
  121. height: 16px;
  122. background: #e0e0e0;
  123. color: #fff;
  124. visibility: hidden;
  125. line-height: 20px;
  126. }
  127. /*img*/
  128. .img-30{
  129. width:30px;
  130. height:30px;
  131. }
  132. .img-40{
  133. width:40px;
  134. height:40px;
  135. }
  136. .img-50{
  137. width:50px;
  138. height:50px;
  139. }
  140. .radius50{
  141. border-radius: 50%;
  142. overflow: hidden;
  143. }
  144. /*提示框*/
  145. .irs-from, .irs-to, .irs-single {
  146. color: #fff;
  147. font-size: 12px;
  148. text-shadow: none;
  149. padding: 4px 4px;
  150. text-align: center;
  151. background: #00aeff;
  152. position: absolute;
  153. bottom: 20px;
  154. left: -15px;
  155. cursor: default;
  156. white-space: nowrap;
  157. display: none;
  158. }
  159. .irs-from:after, .irs-to:after, .irs-single:after {
  160. position: absolute;
  161. display: block;
  162. content: "";
  163. bottom: -12px;
  164. left: 50%;
  165. width: 0;
  166. height: 0;
  167. margin-left: -5px;
  168. overflow: hidden;
  169. border: 6px solid transparent;
  170. border-top-color: #00aeff;
  171. }
  172. .irs-from, .irs-to, .irs-single img {
  173. margin: 0;
  174. padding: 0;
  175. /*width: 60px;*/
  176. /*height: 60px;*/
  177. }
  178. .table tbody tr:hover td .omit_show .iconfont:hover span {
  179. display: block;
  180. }
  181. .table tbody tr:hover .progress {
  182. background: #f9f9f9;
  183. }
  184. .table tr:hover .revise, .table tr:hover .title-revise {
  185. visibility: visible;
  186. }
  187. .table tbody tr:hover td .omit_show .iconfont {
  188. position: relative;
  189. }
  190. .table .trorder, .table .trfooter {
  191. border: 1px solid #efefef;
  192. }
  193. /*头部*/
  194. .wb-header {
  195. position: fixed;
  196. top:0;
  197. left:0;
  198. right:0;
  199. width: 100%;
  200. height: 50px;
  201. background: #fff;
  202. display: -webkit-box;
  203. display: -webkit-flex;
  204. display: -ms-flexbox;
  205. display: flex;
  206. z-index: 1002 !important;
  207. }
  208. .wb-header .logo {
  209. height: 100%;
  210. background: #24303c;
  211. border-bottom: 1px solid #222d39;
  212. width: 130px;
  213. text-align: center;
  214. line-height: 44px;
  215. color: #fff;
  216. font-size: 20px;
  217. -webkit-transition: all 0.3s;
  218. transition: all 0.3s;
  219. min-width: 130px;
  220. margin: 0;
  221. }
  222. .wb-header .logo.small {
  223. width: 60px;
  224. min-width: 60px;
  225. }
  226. .wb-header .logo .logo-img {
  227. width: 40px;
  228. height: 40px;
  229. border-radius: 50%;
  230. }
  231. .wb-header > ul {
  232. height: 100%;
  233. margin: 0;
  234. border-bottom: 1px solid #efefef;
  235. }
  236. .wb-header > ul > li {
  237. float: left;
  238. padding: 0 20px;
  239. height: 100%;
  240. text-align: center;
  241. border-left: 1px solid #efefef;
  242. line-height: 50px;
  243. cursor: pointer;
  244. }
  245. .wb-header > ul > li a {
  246. display: inline-block;
  247. height: 100%;
  248. width: 100%;
  249. outline: none;
  250. }
  251. .wb-header > ul > li a:active {
  252. outline: none;
  253. }
  254. .wb-header > ul > li:hover,
  255. .wb-header > ul > li.active {
  256. background: #f9f9f9;
  257. }
  258. .wb-header ul li.dropdown {
  259. width: 160px;
  260. }
  261. .iconplug{
  262. width: 20px;
  263. height: 20px;
  264. padding-top: 5px;
  265. margin-left: -3px;
  266. margin-right: 7px;
  267. vertical-align: -0.15em;
  268. fill: currentColor;
  269. overflow: hidden;
  270. }
  271. .wb-nav.fold ul li a .iconplug{
  272. margin-left: 10px;
  273. }
  274. .wb-header .dropdown-menu {
  275. overflow: hidden;
  276. position: absolute;
  277. padding: 0 20px;
  278. top: 48px;
  279. left: auto;
  280. right:-57px;
  281. z-index: 102 !important;
  282. float: left;
  283. width: 300px;
  284. /*height:365px;*/
  285. margin: 2px 0 0;
  286. font-size: 12px;
  287. list-style: none;
  288. background-color: #fff;
  289. -webkit-background-clip: padding-box;
  290. background-clip: padding-box;
  291. border: none;
  292. border-radius: 0px;
  293. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
  294. box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
  295. text-align: center;
  296. visibility: hidden;
  297. transition: all 0.3s;
  298. -webkit-transition: all 0.3s;
  299. display: block;
  300. }
  301. .wb-header .dropdown:hover .dropdown-menu {
  302. visibility: visible;
  303. transition: all 0.3s;
  304. -webkit-transition: all 0.3s;
  305. }
  306. .wb-header .dropdown-menu li:hover {
  307. color: #00aeff;
  308. }
  309. .wb-header .dropdown-menu li:hover a{
  310. color: #00aeff;
  311. }
  312. .wb-header .dropdown-menu > li i{
  313. color: #558eb9;
  314. }
  315. .wb-header .dropdown-menu > li{
  316. width:33.3%;
  317. line-height: 38px;
  318. float: left;
  319. text-align: center;
  320. margin-top: 20px;
  321. }
  322. .wb-header .dropdown-menu> li:last-child{
  323. width:100%;
  324. height: 58px;
  325. line-height: 58px;
  326. text-align: center;
  327. float: left;
  328. position: relative;
  329. }
  330. .wb-header .dropdown-menu> li:last-child:before{
  331. content:'' ;
  332. position: absolute;
  333. border-top:1px solid #efefef;
  334. top:0;
  335. left:-20px;
  336. right:-20px;
  337. }
  338. .wb-header .dropdown-menu > li > a{
  339. padding: 5px 0;
  340. }
  341. .wb-header .dropdown-menu > li > a>span {
  342. padding: 10px 20px;
  343. font-size: 12px;
  344. color: #333;
  345. width:100%;
  346. }
  347. .dropdown-menu>li>a:hover{
  348. background: #fff;
  349. }
  350. .wb-header .dropdown-menu .divider {
  351. height: 1px;
  352. margin: 0;
  353. overflow: hidden;
  354. background-color: #efefef;
  355. line-height: 1px;
  356. }
  357. .wb-search-result{
  358. display: none;
  359. height: auto;
  360. top:58px;
  361. position: absolute;
  362. left:0;
  363. z-index: 999;
  364. width:400px;
  365. background: #fff;
  366. border:1px solid #efefef;
  367. max-height: 350px;
  368. -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.1);
  369. box-shadow: 0 6px 12px rgba(0,0,0,.1);
  370. overflow-y: auto;
  371. }
  372. .wb-search-result li{
  373. line-height: 35px;
  374. font-size:12px;
  375. padding-left: 10px;
  376. color: #666;
  377. }
  378. .wb-search-result li.empty-data {
  379. line-height: 50px;
  380. }
  381. .wb-search-result li.empty-data:hover {
  382. background: #fff;
  383. }
  384. .wb-search-result li.empty-data:hover a {
  385. color: #666;
  386. cursor: default;
  387. }
  388. .wb-search-result li a{
  389. color: #666;
  390. display: block;
  391. height: 100%;
  392. width:100%;
  393. }
  394. .wb-search-result ul li:hover{
  395. background: #6cc0ff;
  396. }
  397. .wb-search-result ul li:hover a{
  398. color: #fff;
  399. }
  400. .wb-topbar-search{
  401. width: 80px;
  402. -webkit-transition: all 0.4s;
  403. transition: all 0.4s;
  404. z-index: 10;
  405. background-color: #fff;
  406. border: 1px solid #efefef;
  407. border-top: none;
  408. position: relative;
  409. }
  410. .wb-topbar-search .input-group .form-control {
  411. height: 50px;
  412. border: 0;
  413. background: transparent !important;
  414. padding-left: 0;
  415. margin-left: 12px;
  416. text-indent: -999999px;
  417. color: #666;
  418. }
  419. .wb-topbar-search.expand-search{
  420. width:400px;
  421. -webkit-transition: all 0.4s;
  422. transition: all 0.4s;
  423. }
  424. .wb-topbar-search.expand-search .input-group{
  425. width:100%;
  426. }
  427. .wb-topbar-search.expand-search .input-group .form-control{
  428. text-indent: 5px !important;
  429. width:100%;
  430. }
  431. .wb-topbar-search.expand-search .input-group .input-group-btn .btn.wb-header-btn{
  432. -webkit-transition: all 0.4s;
  433. transition: all 0.4s;
  434. margin: 0;
  435. border:none;
  436. box-shadow: none;
  437. }
  438. .wb-topbar-search .input-group .input-group-btn .btn.wb-header-btn {
  439. -webkit-transition: all 0.4s;
  440. transition: all 0.4s;
  441. margin-left: -65px;
  442. padding: 0;
  443. width: 50px;
  444. background: none;
  445. border: 0 !important;
  446. box-shadow: none;
  447. display: block;
  448. cursor: pointer;
  449. height:50px;
  450. line-height: 50px;
  451. color: #333;
  452. }
  453. .wb-topbar-search .input-group .input-group-btn .btn.wb-header-btn i{
  454. font-size: 15px;
  455. }
  456. .wb-header-flex{
  457. -webkit-box-flex: 1;
  458. -webkit-flex: 1;
  459. -ms-flex: 1;
  460. flex: 1;
  461. border-bottom: 1px solid #efefef;
  462. }
  463. /*微信消息*/
  464. .tips {
  465. position: absolute;
  466. padding: 0 2px;
  467. width: 22px;
  468. height: 15px;
  469. line-height: 15px;
  470. text-align: center;
  471. -webkit-border-radius: 7px;
  472. border-radius: 7px;
  473. background: #54c952;
  474. color: #fff;
  475. font-size: 12px;
  476. top: 20px;
  477. left: 40px;
  478. display: block;
  479. white-space: nowrap;
  480. overflow: hidden;
  481. text-overflow: ellipsis;
  482. }
  483. /*一级菜单*/
  484. .wb-nav {
  485. position: fixed;
  486. left:0;
  487. top:50px;
  488. bottom: 0;
  489. width: 130px;
  490. background: #24303c;
  491. color: #fff;
  492. text-align: center;
  493. z-index: 10;
  494. -webkit-transition: all 0.3s;
  495. transition: all 0.3s;
  496. z-index: 101;
  497. }
  498. .wb-nav .sysset{
  499. display: block;
  500. position: absolute;
  501. bottom:0;
  502. height: 50px;
  503. width:100%;
  504. line-height: 50px;
  505. text-align: center;
  506. background: #1e2937;
  507. -webkit-transition: all 0.3s;
  508. transition: all 0.3s;
  509. }
  510. .wb-nav .sysset .syssetsub{
  511. visibility: hidden;
  512. position: absolute;
  513. bottom: 6px;
  514. left:145px;
  515. width:110px;
  516. height:258px;
  517. background: #fff;
  518. -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, .1);
  519. box-shadow: 0px 0px 12px rgba(0, 0, 0, .1);
  520. -webkit-transition: all 0.3s;
  521. transition: all 0.3s;
  522. }
  523. .wb-nav .sysset .syssetsub .syssettitle{
  524. height:32px;
  525. line-height: 32px;
  526. text-align: center;
  527. background: #e7f0f9 ;
  528. color: #333;
  529. }
  530. .wb-nav .sysset:hover .syssetsub{
  531. visibility: visible;
  532. transition: all 1s;
  533. -webkit-transition: all 1s;
  534. }
  535. .wb-nav.fold .sysset .syssetsub{
  536. left:70px
  537. }
  538. .wb-nav .sysset .syssetsub .syssettips{
  539. position: absolute;
  540. border:8px solid transparent;
  541. border-right:8px solid #fff;
  542. filter:drop-shadow(5px 5px 10px #999);
  543. left:-15px;
  544. bottom:15px;
  545. }
  546. .wb-nav .sysset .syssetsub a{
  547. height:36px;
  548. line-height: 36px;
  549. display:block;
  550. color: #333;
  551. }
  552. .wb-nav .sysset .syssetsub a:hover{
  553. background: #f8fcff;
  554. }
  555. .wb-nav .sysset .syssetsub a .icow{
  556. margin-right: 10px;
  557. color: #558eb9;
  558. }
  559. .wb-nav .sysset a{
  560. color: #cacaca;
  561. }
  562. .wb-nav.fold {
  563. width: 60px;
  564. text-align: center;
  565. }
  566. .wb-nav.fold .icow {
  567. transform: rotate(180deg);
  568. }
  569. .wb-nav.fold ul li a i {
  570. margin-right: 0;
  571. }
  572. .wb-nav.fold .wb-nav-title {
  573. display: none;
  574. -webkit-transition: all 0.3s;
  575. transition: all 0.3s;
  576. }
  577. .wb-nav.fold ul li:hover .wb-nav-tip {
  578. display: block;
  579. }
  580. .wb-nav .wb-nav-fold {
  581. width: 100%;
  582. height: 28px;
  583. line-height: 28px;
  584. background: #28394a;
  585. text-align: center;
  586. color: #7c838a;
  587. cursor: pointer;
  588. }
  589. .wb-nav .wb-nav-fold:hover {
  590. color: #fff;
  591. }
  592. .wb-nav .wb-nav-fold .icow {
  593. margin: 0;
  594. line-height: 28px;
  595. display: block;
  596. vertical-align: middle;
  597. }
  598. .wb-nav-tip {
  599. height: 40px;
  600. line-height: 40px;
  601. width: 80px;
  602. background: rgba(36,48,60,0.85);
  603. text-align: center;
  604. display: block;
  605. position: absolute;
  606. top: 5px;
  607. left: 70px;
  608. display: none;
  609. }
  610. .wb-nav-tip:before {
  611. content: '';
  612. position: absolute;
  613. left: -6px;
  614. top: 50%;
  615. margin-top: -6px;
  616. border-width: 6px;
  617. border-color: rgba(36,48,60,0.85);
  618. border-left-width: 0;
  619. border-style: dashed;
  620. border-right-style: solid;
  621. border-top-color: transparent;
  622. border-bottom-color: transparent;
  623. }
  624. .wb-nav ul li {
  625. height: 50px;
  626. line-height: 50px;
  627. font-size: 14px;
  628. cursor: pointer;
  629. text-align: center;
  630. position: relative;;
  631. }
  632. .wb-nav ul li:hover {
  633. background: #1e2937;
  634. }
  635. .wb-nav ul li:hover a {
  636. color: #fff;
  637. }
  638. .wb-nav ul li a {
  639. color: #cacaca;
  640. width: 100%;
  641. height: 100%;
  642. display: inline-block;
  643. }
  644. .wb-nav ul li.active {
  645. background: #19222e;
  646. border-left: 2px solid #00aeff;
  647. }
  648. .wb-nav ul li.active a {
  649. color: #fff;
  650. }
  651. /*二级菜单*/
  652. .wb-subnav {
  653. width: 110px;
  654. left: 130px;
  655. top:50px;
  656. bottom: 0;
  657. color: #333;
  658. border-right: 1px solid #efefef;
  659. text-align: left;
  660. position: fixed;
  661. -webkit-transition: all 0.3s;
  662. transition: all 0.3s;
  663. background: #fff;
  664. z-index: 99;
  665. }
  666. .wb-nav.fold~.wb-subnav{
  667. left: 60px;
  668. -webkit-transition: all 0.3s;
  669. transition: all 0.3s;
  670. }
  671. .wb-nav.fold~.wb-subnav.fold{
  672. left: -70px;
  673. }
  674. .wb-subnav.fold {
  675. left: 20px;
  676. -webkit-transition: all 0.3s;
  677. transition: all 0.3s;
  678. }
  679. .wb-subnav .subnav-scene {
  680. overflow: hidden;
  681. height: 78px;
  682. line-height: 78px;
  683. padding-left: 20px;
  684. }
  685. /*.wb-subnav ul{*/
  686. /*border-top:1px solid #efefef;*/
  687. /*}*/
  688. .wb-subnav ul li {
  689. height: 50px;
  690. line-height: 50px;
  691. font-size: 13px;
  692. }
  693. .wb-subnav ul li a {
  694. color: #7c838a;
  695. }
  696. .wb-subnav ul.single {
  697. display: block;
  698. }
  699. .wb-subnav ul.single li a {
  700. padding-left: 20px;
  701. color: #666;
  702. }
  703. .menu-header:hover{
  704. background: #f5f5f5;
  705. }
  706. .menu-header.data-active:not(.active){
  707. background: #f5f5f5;
  708. }
  709. .wb-subnav ul li.active, .wb-subnav ul li:hover {
  710. background: #edf6ff;
  711. }
  712. .wb-subnav ul li.active a {
  713. color: #00aeff;
  714. }
  715. .wb-subnav .wb-subnav-fold {
  716. position: absolute;
  717. width: 17px;
  718. height: 34px;
  719. background: #f5f7f9;
  720. top: 20px;
  721. left: 93px;
  722. line-height: 34px;
  723. color: #b1bfcb;
  724. border: 1px solid #efefef;
  725. border-right: none;
  726. cursor: pointer;
  727. }
  728. .wb-subnav .wb-subnav-fold.icow:before {
  729. content: "\e755";
  730. }
  731. .wb-subnav.fold .wb-subnav-fold {
  732. left: 110px;
  733. background: #fff;
  734. transform: rotate(180deg);
  735. -webkit-transition: all 0.3s;
  736. transition: all 0.3s;
  737. }
  738. .wb-nav.fold~.wb-subnav.fold .wb-subnav-fold{
  739. left: 130px;
  740. background: #fff;
  741. transform: rotate(180deg);
  742. -webkit-transition: all 0.3s;
  743. transition: all 0.3s;
  744. }
  745. /*右侧面板*/
  746. .wb-panel {
  747. position: fixed;
  748. top: 50px;
  749. bottom: 0;
  750. width: 170px;
  751. right:-170px;
  752. font-size: 12px;
  753. color: #888;
  754. overflow: hidden;
  755. -webkit-transition: all 0.3s;
  756. transition: all 0.3s;
  757. background: #fff;
  758. z-index: 100;
  759. }
  760. .wb-panel.in {
  761. right: 0;
  762. border-left: 1px solid #efefef;
  763. }
  764. .wb-panel .iconfont {
  765. font-size: 14px;
  766. }
  767. .wb-panel p {
  768. padding-bottom: 20px;
  769. line-height: 20px;
  770. border-bottom: 1px solid #efefef;
  771. }
  772. .wb-panel .panel-group .panel + .panel {
  773. margin-top: 0px;
  774. }
  775. .wb-panel .panel-group .panel + .panel:last-child {
  776. border-bottom: 0;
  777. }
  778. .wb-panel .panel {
  779. border: none;
  780. border-bottom: 1px solid #efefef;
  781. background: #f9f9f9;
  782. }
  783. .wb-panel .panel-default > .panel-heading {
  784. background: #fff;
  785. text-align: center;
  786. padding: 19px 0;
  787. cursor: pointer;
  788. }
  789. .wb-panel .panel-default > .panel-heading .panel-title {
  790. font-size: 12px;
  791. position: relative;
  792. }
  793. .wb-panel .panel-default>.panel-heading+.panel-collapse>.panel-body {
  794. border-top-color: #efefef;
  795. width: 170px;
  796. }
  797. .wb-panel .panel-body {
  798. padding: 0;
  799. }
  800. .wb-panel .panel-body .panel-list {
  801. font-weight: normal;
  802. line-height: 24px;
  803. padding: 20px 15px;
  804. border-bottom: 1px solid #efefef;
  805. width: 100%;
  806. }
  807. .wb-panel .panel-body .panel-list.small {
  808. padding: 15px;
  809. }
  810. .wb-panel .panel-body .panel-list:last-child {
  811. border-bottom: 0;
  812. }
  813. .wb-panel .panel-body .panel-list .panel-list-title {
  814. color: #333;
  815. font-size: 12px;
  816. }
  817. .wb-panel .panel-body .panel-list .panel-list-title .status {
  818. margin-left: 7px;
  819. }
  820. /*箭头*/
  821. .panel-title span, .dropdown-toggle span {
  822. position: relative;
  823. margin-left: 3px;
  824. }
  825. .panel-title span:before, .dropdown-toggle span:before {
  826. content: "";
  827. display: block;
  828. position: absolute;
  829. top: 50%;
  830. left: 0px;
  831. width: 0;
  832. height: 0;
  833. border: 3px solid;
  834. margin-top: -1px;
  835. border-color: #000 transparent transparent transparent;
  836. }
  837. /*背景色三角形*/
  838. .panel-title span:after, .dropdown-toggle span:after {
  839. content: "";
  840. display: block;
  841. position: absolute;
  842. top: 50%;
  843. left: 0px;
  844. width: 0;
  845. height: 0;
  846. border: 3px solid;
  847. margin-top: -2px;
  848. border-color: #fff transparent transparent transparent;
  849. }
  850. .wb-panel .panel-default > .panel-heading .panel-title {
  851. font-size: 12px;
  852. color: #333;
  853. }
  854. .wb-panel .panel-default > .panel-heading .panel-title a {
  855. width: 110px;
  856. text-align: left;
  857. padding-left: 10px;
  858. display: inline-block;
  859. }
  860. .wb-panel .panel-default > .panel-heading .panel-title .icow {
  861. font-size: 14px;
  862. }
  863. .wb-panel .panel-body .panel-list .panel-list-text {
  864. color: #666;
  865. font-weight: lighter;
  866. font-size: 12px;
  867. line-height: 20px;
  868. max-height: 40px;
  869. text-overflow: -o-ellipsis-lastline;
  870. overflow: hidden;
  871. text-overflow: ellipsis;
  872. display: -webkit-box;
  873. -webkit-line-clamp: 2;
  874. -webkit-box-orient: vertical;
  875. }
  876. .wb-panel .panel-body .panel-list.small .panel-list-text {
  877. font-size: 12px;
  878. }
  879. /*内容区域*/
  880. .wb-container {
  881. margin: 60px 10px 0 130px;
  882. background: #f5f7f9;
  883. padding-bottom: 50px;
  884. padding: 0px 20px 0px 20px;
  885. height: 100%;
  886. display: block;
  887. -webkit-transition: all 0.3s;
  888. transition: all 0.3s;
  889. position: relative;
  890. height: auto;
  891. }
  892. .wb-nav~.wb-subnav~.wb-container{
  893. margin-left:240px ;
  894. }
  895. .wb-nav.fold~.wb-container{
  896. margin-left:60px;
  897. -webkit-transition: all 0.3s;
  898. transition: all 0.3s;
  899. }
  900. .wb-nav.fold~.wb-subnav~.wb-container{
  901. margin-left: 170px;
  902. -webkit-transition: all 0.3s;
  903. transition: all 0.3s;
  904. }
  905. .wb-subnav.fold~.wb-container{
  906. margin-left: 130px;
  907. -webkit-transition: all 0.3s;
  908. transition: all 0.3s;
  909. }
  910. .wb-nav.fold~.wb-subnav.fold~.wb-container{
  911. margin-left: 60px;
  912. -webkit-transition: all 0.3s;
  913. transition: all 0.3s;
  914. }
  915. .wb-container.right-panel{
  916. margin-right: 0px;
  917. }
  918. .wb-footer {
  919. width:100%;
  920. padding: 15px;
  921. }
  922. /*商品管理固定*/
  923. .fixed-header{
  924. display: none;
  925. background: #fff;
  926. position: fixed;
  927. top:50px;
  928. padding: 0 30px;
  929. height:40px;
  930. line-height: 40px;
  931. background: #edf6ff;
  932. z-index:99;
  933. right: 190px;
  934. }
  935. .wb-nav~.wb-subnav~.wb-container .fixed-header{
  936. left: 260px;
  937. }
  938. .wb-nav.fold~.wb-subnav.fold~.wb-container .fixed-header{
  939. left: 80px;
  940. }
  941. .wb-nav.fold~.wb-subnav~.wb-container .fixed-header{
  942. left: 190px;
  943. }
  944. .wb-nav~.fold~.wb-container .fixed-header{
  945. left: 150px;
  946. }
  947. .fixed-header.active{
  948. display: flex;
  949. }
  950. .fixed-header div{
  951. padding:0 8px;
  952. font-size:14px;
  953. }
  954. .fixed-header div.flex1{
  955. flex:1;
  956. }
  957. .wb-container.right-panel .fixed-header{
  958. right:20px;
  959. }
  960. /*主内容区域*/
  961. .page-content {
  962. width: 100%;
  963. background: #fff;
  964. padding: 20px 30px;
  965. position: relative;
  966. height: auto;
  967. overflow: hidden;
  968. }
  969. /*扩展内容区 即全屏表格时*/
  970. .page-content.transparent {
  971. background: transparent;
  972. padding: 0;
  973. }
  974. /*图片上传*/
  975. #select-year .btn-info,#select-month .btn-info{
  976. color:#fff !important;
  977. background:#44abf7 !important;
  978. border-color: #44abf7 !important;
  979. }
  980. .multi-img-details .multi-item {
  981. max-height: 100px;
  982. max-width: 100px;
  983. position: relative;
  984. float: left;
  985. margin-right: 18px;
  986. margin-top: 10px;
  987. }
  988. .multi-img-details .multi-item em {
  989. position: absolute;
  990. top: 0;
  991. right: -14px;
  992. }
  993. .spec_item_thumb {
  994. position: relative;
  995. width: 30px;
  996. height: 20px;
  997. padding: 0;
  998. border-left: none;
  999. }
  1000. .spec_item_thumb i {
  1001. position: absolute;
  1002. top: -5px;
  1003. right: -5px;
  1004. }
  1005. .tab-pane {
  1006. margin-top: 20px;
  1007. }
  1008. .uploader .queueList {
  1009. margin: 10px;
  1010. }
  1011. .uploader .placeholder {
  1012. border: 3px dashed #efefef;
  1013. min-height: 350px;
  1014. padding-top: 150px;
  1015. text-align: center;
  1016. background: url(../img/image.png) center 80px no-repeat;
  1017. color: #ccc;
  1018. font-size: 18px;
  1019. position: relative;
  1020. }
  1021. .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover{
  1022. background: #44abf7;
  1023. }
  1024. .uploader .placeholder .webuploader-pick {
  1025. font-size: 18px;
  1026. background: #44abf7!important;
  1027. border-radius: 3px;
  1028. line-height: 44px;
  1029. padding: 0 30px;
  1030. color: #fff;
  1031. display: inline-block;
  1032. margin: 35px auto;
  1033. cursor: pointer;
  1034. box-shadow:0 1px 1px rgba(0, 0, 0, .1);
  1035. }
  1036. .webuploader-element-invisible {
  1037. position: absolute !important;
  1038. clip: rect(1px 1px 1px 1px);
  1039. clip: rect(1px, 1px, 1px, 1px);
  1040. }
  1041. .uploader .statusBar .progress {
  1042. border: 1px solid #efefef;
  1043. width: 198px;
  1044. background: #fff;
  1045. height: 18px;
  1046. display: inline-block;
  1047. text-align: center;
  1048. line-height: 20px;
  1049. color: #6dbfff;
  1050. position: relative;
  1051. margin-right: 10px;
  1052. }
  1053. .uploader .statusBar {
  1054. height: 63px;
  1055. border-top: 1px solid #efefef;
  1056. padding: 0 20px;
  1057. line-height: 63px;
  1058. vertical-align: middle;
  1059. position: relative;
  1060. }
  1061. .uploader .statusBar .btns {
  1062. position: absolute;
  1063. top: 10px;
  1064. right: 20px;
  1065. line-height: 40px;
  1066. }
  1067. .history .img-list {
  1068. margin: 4px;
  1069. display: block;
  1070. clear: both;
  1071. list-style: outside none none;
  1072. padding: 0px;
  1073. }
  1074. .history .img-list .img-item {
  1075. float: left;
  1076. padding: 1px;
  1077. cursor: pointer;
  1078. position: relative;
  1079. }
  1080. .history .img-list .img-item .img-container {
  1081. position: relative;
  1082. width: 75px;
  1083. height: 75px;
  1084. text-align: center;
  1085. background-color: #eee;
  1086. background-size: contain;
  1087. background-repeat: no-repeat;
  1088. background-position: 50% 50%;
  1089. }
  1090. .history .img-list .img-item .img-container .select-status {
  1091. display: inline-block;
  1092. width: 50px;
  1093. height: 50px;
  1094. position: absolute;
  1095. bottom: 0;
  1096. right: 0;
  1097. z-index: 2;
  1098. }
  1099. .history .img-list .img-item .btnClose {
  1100. text-align: right;
  1101. position: absolute;
  1102. top: -10px;
  1103. right: -5px;
  1104. display: none;
  1105. z-index: 10;
  1106. }
  1107. .history .img-list .img-item .img-container .select-status {display:inline-block; width:50px; height:50px; position: absolute; bottom:0; right:0; z-index:2;}
  1108. .history .img-list .img-item-selected .img-container .select-status {display:inline-block; width:50px; height:50px; position: absolute; bottom:0; right:0; background: url('../images/success-small.png') no-repeat right bottom; z-index:2;}
  1109. .modal-footer{
  1110. margin: 0 !important;
  1111. /*border:none !important;*/
  1112. }
  1113. .uploader .statusBar {
  1114. border-top:none !important;
  1115. }
  1116. .uploader .statusBar .btns .uploadBtn, .uploader .statusBar .btns .uploadBtn.state-paused, .uploader .statusBar .btns .uploadBtn.state-uploading, .uploader .statusBar .btns .webuploader-pick {
  1117. font-size: 12px !important;
  1118. }
  1119. .uploadBtn.btn.btn-primary.state-pedding{
  1120. margin-top: 7px !important;
  1121. }
  1122. /*订单流程*/
  1123. .step-region {
  1124. position: relative;
  1125. margin-bottom: 10px;
  1126. }
  1127. .font18{font-size:18px;}
  1128. .ui-step {
  1129. padding: 14px 0 8px 0;
  1130. zoom: 1;
  1131. margin: 0 50px;
  1132. }
  1133. .ui-step:after {
  1134. content: "";
  1135. display: table;
  1136. clear: both
  1137. }
  1138. .ui-step li {
  1139. float: left;
  1140. position: relative;
  1141. -webkit-box-sizing: border-box;
  1142. -moz-box-sizing: border-box;
  1143. box-sizing: border-box;
  1144. text-align: center
  1145. }
  1146. .ui-step li::before, .ui-step li::after {
  1147. position: absolute;
  1148. left: 0;
  1149. top: 27px;
  1150. display: block;
  1151. content: ' ';
  1152. width: 50%;
  1153. height: 4px;
  1154. background: #f2f3f7;
  1155. z-index: 1
  1156. }
  1157. .ui-step li::after {
  1158. left: 50%
  1159. }
  1160. .ui-step li:first-child::before {
  1161. width: 0
  1162. }
  1163. .ui-step li:last-child::after {
  1164. width: 0
  1165. }
  1166. .ui-step .ui-step-title {
  1167. color: #333;
  1168. font-size: 12px;
  1169. line-height: 18px
  1170. }
  1171. .ui-step .ui-step-number {
  1172. position: relative;
  1173. display: inline-block;
  1174. width: 37px;
  1175. height: 37px;
  1176. margin: 10px 0;
  1177. line-height: 37px;
  1178. background: #f2f3f7;
  1179. color: #cac9c9;
  1180. border-radius: 100%;
  1181. -webkit-box-sizing: border-box;
  1182. -moz-box-sizing: border-box;
  1183. box-sizing: border-box;
  1184. z-index: 2;
  1185. }
  1186. .ui-step li.ui-step-done .ui-step-number {
  1187. color: #fff;
  1188. }
  1189. .ui-step .ui-step-meta {
  1190. color: #ccc
  1191. }
  1192. .ui-step li.ui-step-done::before,
  1193. .ui-step li.ui-step-done::after,
  1194. .ui-step li.ui-step-done .ui-step-number {
  1195. background: #54c952
  1196. }
  1197. .ui-step-2 li {
  1198. width: 50%
  1199. }
  1200. .ui-step-3 li {
  1201. width: 33.33333%
  1202. }
  1203. .ui-step-4 li {
  1204. width: 24.9999%
  1205. }
  1206. .ui-step-5 li {
  1207. width: 20%
  1208. }
  1209. /*问号*/
  1210. label > .fa {
  1211. margin-left: 5px;
  1212. }
  1213. /*订单详情页*/
  1214. .order-title {
  1215. line-height: 62px;
  1216. font-size: 16px;
  1217. color: #000;
  1218. font-weight: bold;
  1219. }
  1220. .order-container {
  1221. position: relative;
  1222. overflow: hidden;
  1223. border: 1px solid #efefef;
  1224. margin: 0px;
  1225. }
  1226. .order-container .status {
  1227. height: 70px;
  1228. line-height: 22px;
  1229. }
  1230. .order-container ul {
  1231. margin-bottom: 20px;
  1232. }
  1233. .order-container ul li {
  1234. line-height: 26px;
  1235. }
  1236. .order-container .order-container-footer {
  1237. padding: 22px 20px;
  1238. border-top: 1px solid #efefef;
  1239. line-height: 20px;
  1240. display: -webkit-box;
  1241. display: -webkit-flex;
  1242. display: -ms-flexbox;
  1243. display: flex;
  1244. }
  1245. .order-container .order-container-footer table{
  1246. flex:1;
  1247. }
  1248. .order-container .ops {
  1249. height: 40px;
  1250. line-height: 20px;
  1251. margin-bottom: 15px;
  1252. }
  1253. .order-container .op {
  1254. margin-left: 5px;
  1255. }
  1256. .order-container .ops a {
  1257. margin-right: 20px;
  1258. }
  1259. .order-container-left {
  1260. padding-right: 0;
  1261. padding: 30px !important;
  1262. padding-left: 15px !important;
  1263. padding-bottom: 0px !important;
  1264. }
  1265. .order-container .distribution {
  1266. min-height: 380px;
  1267. height: 100%;
  1268. border-left: 1px solid #efefef;
  1269. padding: 20px !important;
  1270. }
  1271. /*创建商品*/
  1272. .goods-group {
  1273. margin: 0 auto;
  1274. margin-top: 72px;
  1275. min-height:250px;
  1276. text-align: center;
  1277. }
  1278. .expandMode .icow.icow-60{font-size:60px;}
  1279. .goods-group .goods-item {
  1280. cursor: pointer;
  1281. border-radius: 6px;
  1282. display: inline-block;
  1283. width: 160px;
  1284. height: 160px;
  1285. line-height:10;
  1286. border: 1px solid #efefef;
  1287. margin: 0 18px;
  1288. text-align: center;
  1289. -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, .1);
  1290. box-shadow: 0 0px 12px rgba(0, 0, 0, .1);
  1291. }
  1292. .goods-group .goods-item:hover {
  1293. border: 1px solid #00aeff;
  1294. }
  1295. .goods-group .goods-item.active {
  1296. width: 160px;
  1297. height: 160px;
  1298. border: 1px solid #00aeff;
  1299. }
  1300. .goods-group .goods-item img {
  1301. margin: 50px 0;
  1302. }
  1303. .tab-footer {
  1304. height: 95px;
  1305. line-height: 95px;
  1306. border-top: 1px solid #efefef;
  1307. text-align: center;
  1308. margin-right: -10px;
  1309. margin-left: -10px;
  1310. }
  1311. .tab-footer .btn {
  1312. margin-top: -6px;
  1313. }
  1314. /*分割线*/
  1315. .form-group.splitter {
  1316. border-bottom: 1px solid #efefef
  1317. }
  1318. .form-horizontal .form-group.has-error .help-block-validate{
  1319. color: #eb6060;
  1320. }
  1321. /*问号*/
  1322. .ques-mark {
  1323. position: absolute;
  1324. right: 0px;
  1325. top: 10px;
  1326. }
  1327. /*表格提示*/
  1328. .omit_show {
  1329. margin-left: 5px;
  1330. }
  1331. .wb-subnav ul{
  1332. display: none;
  1333. overflow: hidden;
  1334. }
  1335. .wb-subnav ul a {
  1336. padding-left: 25px;
  1337. height: 100%;
  1338. width: 100%;
  1339. display: inline-block;
  1340. }
  1341. .menu-header{
  1342. line-height: 50px;
  1343. height:50px;
  1344. /*border-top: 1px solid #f4f4f4;*/
  1345. cursor: pointer;
  1346. padding-left: 5px;
  1347. }
  1348. .menu-icon{
  1349. width: 20px;
  1350. height: 50px;
  1351. float: left;
  1352. text-align: center;
  1353. font-size: 8px;
  1354. color: #666;
  1355. line-height: 50px;
  1356. }
  1357. .wb-panel-fold {
  1358. height: 34px;
  1359. width: 120px;
  1360. background: #44abf7;
  1361. position: fixed;
  1362. right: 15px;
  1363. bottom: 0;
  1364. color: #fff;
  1365. line-height: 34px;
  1366. text-align: center;
  1367. font-size: 12px;
  1368. cursor: pointer;
  1369. -webkit-transition: all 0.3s;
  1370. transition: all 0.3s;
  1371. moz-user-select: -moz-none;
  1372. -moz-user-select: none;
  1373. -o-user-select:none;
  1374. -khtml-user-select:none;
  1375. -webkit-user-select:none;
  1376. -ms-user-select:none;
  1377. user-select:none;
  1378. z-index: 101;
  1379. z-index: 105;
  1380. }
  1381. .wb-panel-fold .icow {
  1382. font-size: 10px;
  1383. font-size: 10px;
  1384. }
  1385. .wb-panel-fold.in {
  1386. position: fixed;
  1387. background: #f9f9f9;
  1388. width: 170px;
  1389. right: 0;
  1390. bottom: 0;
  1391. color: #666;
  1392. border-top: 1px solid #efefef;
  1393. height: 40px;
  1394. line-height: 40px;
  1395. }
  1396. /*select2*/
  1397. .select2-container .select2-choice{
  1398. border-color: #efefef !important;
  1399. }
  1400. .form-control.select2-container.select2-dropdown-open {
  1401. border-color: #44abf7 !important;
  1402. }
  1403. .select2-drop-active {
  1404. border-color:#44abf7 !important;
  1405. border-top: none;
  1406. }
  1407. .select2-drop.select2-drop-above.select2-drop-active {
  1408. border-top-color:#44abf7 !important;
  1409. }
  1410. .select2-container-active .select2-choice,
  1411. .select2-container-active .select2-choices {
  1412. border-color: #44abf7 !important;
  1413. outline: none;
  1414. }
  1415. .select2-dropdown-open.select2-drop-above .select2-choice,
  1416. .select2-dropdown-open.select2-drop-above .select2-choices {
  1417. border-color: #44abf7 !important;
  1418. border-top-color: transparent;
  1419. }
  1420. .select2-results .select2-highlighted {
  1421. background: #44abf7 !important;
  1422. color: #fff;
  1423. }
  1424. .select2-container-multi.select2-container-active .select2-choices {
  1425. border-color:#44abf7 !important;
  1426. outline: none;
  1427. }
  1428. /* 百度编辑器 */
  1429. .edui-editor {
  1430. width: auto !important;
  1431. overflow: hidden !important;
  1432. }
  1433. /*切换公众号*/
  1434. .file-box {
  1435. float: left;
  1436. width: 150px;
  1437. }
  1438. .file {
  1439. border: 1px solid #efefef;
  1440. padding: 0;
  1441. background-color: #ffffff;
  1442. position: relative;
  1443. margin-bottom: 20px;
  1444. margin-right: 20px;
  1445. text-align: center;
  1446. }
  1447. .file .file-name {
  1448. padding: 10px;
  1449. background-color: #f8f8f8;
  1450. border-top: 1px solid #e7eaec;
  1451. }
  1452. .corner {
  1453. position: absolute;
  1454. display: inline-block;
  1455. width: 0;
  1456. height: 0;
  1457. line-height: 0;
  1458. border: 0.6em solid transparent;
  1459. border-right: 0.6em solid #f1f1f1;
  1460. border-bottom: 0.6em solid #f1f1f1;
  1461. right: 0em;
  1462. bottom: 0em;
  1463. }
  1464. /*pop*/
  1465. .popover{
  1466. z-index: 110;
  1467. }
  1468. .popover-title{
  1469. background: #ffffff !important;
  1470. }
  1471. .popover-content table tr td{
  1472. font-size: 12px !important;
  1473. text-align: left !important;
  1474. color: #000;
  1475. }
  1476. .popover-content table tr td img{
  1477. display: block;
  1478. margin: 0 auto !important;
  1479. border: 1px solid #efefef !important;
  1480. }
  1481. /*.popover-content table tr td:nth-of-type(1){*/
  1482. /*color: #999 !important;*/
  1483. /*}*/
  1484. /*send-mess*/
  1485. .send-mess th{
  1486. color: #333 !important;
  1487. background: #eee;
  1488. }
  1489. /*时间选择器*/
  1490. .daterangepicker .ranges li{
  1491. color: #33aaff !important;
  1492. }
  1493. .daterangepicker .ranges li.active,.daterangepicker .ranges li:hover{
  1494. color: #fff !important;
  1495. }
  1496. .daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
  1497. background: #33aaff !important;
  1498. border: 1px solid #33aaff !important;
  1499. color: #fff;
  1500. }
  1501. .applyBtn.btn.btn-small.btn-sm.btn-success{
  1502. background: #33aaff !important;
  1503. border: 1px solid #33aaff !important;
  1504. }
  1505. .daterangepicker td.active, .daterangepicker td.active:hover {
  1506. background-color: #44abf7 !important;
  1507. border-color: #44abf7 !important;
  1508. color: #fff !important;
  1509. }
  1510. .daterangepicker .calendar-date {
  1511. border: 1px solid #efefef !important;
  1512. }
  1513. keygen, select, select[size="0"], select[size="1"] {
  1514. border-color: #efefef !important;
  1515. }
  1516. /*门店选择*/
  1517. .multi-img-details, .multi-audio-details{
  1518. width:100%;
  1519. max-width: 700px;
  1520. padding: 0;
  1521. margin: 0;
  1522. margin-top: .5em;
  1523. }
  1524. .multi-audio-details .multi-audio-item{
  1525. width: 155px;
  1526. height: 40px;
  1527. position: relative;
  1528. float: left;
  1529. margin-right: 5px;
  1530. }
  1531. .fast-nav{
  1532. position: absolute;
  1533. top:59px;
  1534. background: #fff;
  1535. z-index: 999;
  1536. border:1px solid #efefef;
  1537. padding-bottom: 20px;
  1538. color: #666;
  1539. left: 210px;
  1540. width: 900px;
  1541. box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
  1542. display: none;
  1543. -webkit-transition: all 0.3s;
  1544. transition: all 0.3s;
  1545. height: 400px;
  1546. }
  1547. .fast-nav.indent {
  1548. left: 140px;
  1549. }
  1550. .fast-nav.in {
  1551. display: -webkit-box;
  1552. display: -webkit-flex;
  1553. display: -ms-flexbox;
  1554. display: flex;
  1555. }
  1556. .fast-nav a{
  1557. color: #666;
  1558. }
  1559. .fast-nav .fast-list {
  1560. padding-top: 26px;
  1561. padding-left: 15px;
  1562. height: 100%;
  1563. width: 130px;
  1564. border-right: 1px solid #efefef;
  1565. }
  1566. .fast-nav .fast-list .title {
  1567. font-size: 14px;
  1568. line-height: 28px;
  1569. height: 30px;
  1570. margin-left: 10px;
  1571. font-weight: bold;
  1572. display: inline-block;
  1573. width: 100%;
  1574. }
  1575. .fast-nav .fast-list .title.nomargin {
  1576. margin-left: 0;
  1577. }
  1578. .fast-nav .fast-list a {
  1579. display: inline-block;
  1580. width: 100%;
  1581. line-height: 30px;
  1582. padding-left: 10px;
  1583. }
  1584. .fast-nav .fast-list a:hover,
  1585. .fast-nav .fast-list a.active {
  1586. background: #52a3f5;
  1587. color: #fff;
  1588. }
  1589. .fast-nav .fast-list a.bold {
  1590. font-weight: bold;
  1591. }
  1592. .fast-nav .fast-list.list {
  1593. -webkit-box-flex: 1;
  1594. -webkit-flex: 1;
  1595. -ms-flex: 1;
  1596. flex: 1;
  1597. border-right: 0;
  1598. display: -webkit-box;
  1599. display: -webkit-flex;
  1600. display: -ms-flexbox;
  1601. display: flex;
  1602. padding-right: 10px;
  1603. }
  1604. .fast-nav .fast-list.list a {
  1605. width: 120px;
  1606. background: #f7f8fa;
  1607. line-height: 28px;
  1608. padding: 0 10px;
  1609. margin: 0 10px 3px 0;
  1610. }
  1611. .fast-nav .fast-list.list a:hover {
  1612. background: #52a3f5;
  1613. color: #fff;
  1614. }
  1615. .fast-nav .fast-list.list .list-inner {
  1616. display: none;
  1617. width: 100%;
  1618. position: relative;
  1619. overflow: hidden;
  1620. }
  1621. .fast-nav .fast-list.list .list-inner.in {
  1622. display: -webkit-box;
  1623. display: -webkit-flex;
  1624. display: -ms-flexbox;
  1625. display: flex;
  1626. flex-direction: column;
  1627. -webkit-flex-direction: column;
  1628. flex-wrap: wrap;
  1629. -webkit-flex-wrap: wrap;
  1630. align-content: flex-start;
  1631. -webkit-align-content: flex-start;
  1632. }
  1633. .fast-nav .fast-list.list .list-inner .funbar-panel {
  1634. position: absolute;
  1635. background: #fff;
  1636. top: 0;
  1637. left: 0;
  1638. right: 0;
  1639. bottom: 0;
  1640. display: none;
  1641. }
  1642. .fast-nav .fast-list.list .list-inner .funbar-panel .inner {
  1643. width: 400px;
  1644. }
  1645. .fast-nav .fast-list.list .list-inner .funbar-panel .inner input[type=color] {
  1646. padding: 0;
  1647. }
  1648. .fast-nav .fast-list.list .list-inner .funbar-panel .inner .input-group {
  1649. margin-bottom: 10px;
  1650. }
  1651. .btn-operation i{
  1652. font-size: 12px;
  1653. }
  1654. .btn-group .btn-operation{
  1655. margin: 0 5px;
  1656. border-radius: 2px;
  1657. }
  1658. .fui-tag-danger {
  1659. background: #ff9326;
  1660. color: #fff;
  1661. font-size: 12px;
  1662. -webkit-border-radius: 3px;
  1663. border-radius: 3px;
  1664. font-style: normal;
  1665. padding: 2px;
  1666. line-height: 16px;
  1667. }
  1668. /* form-editor-group */
  1669. .form-editor-group .form-editor-show {
  1670. display: block;
  1671. }
  1672. .form-editor-group .form-editor-show .form-editor-btn {
  1673. cursor: pointer;
  1674. padding-left: 4px;
  1675. }
  1676. .form-editor-group .form-editor-edit {
  1677. display: none;
  1678. }
  1679. .form-editor-group .help-block-validate {
  1680. color: #eb6060;
  1681. }
  1682. /* 时间选择器*/
  1683. .daterangepicker.dropdown-menu {
  1684. z-index: 9 !important;
  1685. }
  1686. /*loading*/
  1687. .page-loading-inner{
  1688. position: fixed;
  1689. top:125px;
  1690. bottom:0;
  1691. right:190px;
  1692. left:150px;
  1693. }
  1694. .wb-nav~.wb-subnav~.wb-container #page-loading .page-loading-inner{
  1695. left:260px;
  1696. }
  1697. .wb-nav.fold~.wb-container #page-loading .page-loading-inner{
  1698. left:80px;
  1699. }
  1700. .wb-nav.fold~.wb-subnav~.wb-container #page-loading .page-loading-inner{
  1701. left:190px;
  1702. }
  1703. .wb-subnav.fold~.wb-container #page-loading .page-loading-inner{
  1704. left:150px;
  1705. }
  1706. .wb-nav.fold~.wb-subnav.fold~.wb-container #page-loading .page-loading-inner{
  1707. left:80px;
  1708. }
  1709. .wb-container.right-panel #page-loading .page-loading-inner{
  1710. right:0;
  1711. }
  1712. .sk-three-bounce {
  1713. position:absolute;
  1714. top:50%;
  1715. margin-left: -40px;
  1716. margin-top: -40px;
  1717. left:50%;
  1718. width: 80px;
  1719. height:80px;
  1720. text-align: center;
  1721. }
  1722. .sk-three-bounce .sk-child {
  1723. width: 20px;
  1724. height: 20px;
  1725. background-color: #333;
  1726. border-radius: 100%;
  1727. display: inline-block;
  1728. -webkit-animation: sk-three-bounce 1.1s ease-in-out 0s infinite both;
  1729. animation: sk-three-bounce 1.1s ease-in-out 0s infinite both;
  1730. }
  1731. .sk-three-bounce .sk-bounce1 {
  1732. background:rgba(68,171,247,0.2);
  1733. -webkit-animation-delay: -0.32s;
  1734. animation-delay: -0.32s;
  1735. }
  1736. .sk-three-bounce .sk-bounce2 {
  1737. background:rgba(68,171,247,0.2);
  1738. -webkit-animation-delay: -0.16s;
  1739. animation-delay: -0.16s;
  1740. }
  1741. .sk-three-bounce .sk-bounce3 {
  1742. background:rgba(68,171,247,0.2);
  1743. }
  1744. @-webkit-keyframes sk-three-bounce {
  1745. 0%, 80%, 100% {
  1746. -webkit-transform: scale(0);
  1747. transform: scale(0);
  1748. background:rgba(68,171,247,0.2);
  1749. }
  1750. 40% {
  1751. -webkit-transform: scale(1);
  1752. transform: scale(1);
  1753. background:rgba(68,171,247,1);}
  1754. }
  1755. @keyframes sk-three-bounce {
  1756. 0%, 80%, 100% {
  1757. -webkit-transform: scale(0);
  1758. transform: scale(0);
  1759. background:rgba(68,171,247,0.2);
  1760. }
  1761. 40% {
  1762. -webkit-transform: scale(1);
  1763. transform: scale(1);
  1764. background:rgba(68,171,247,1);
  1765. }
  1766. }
  1767. #page-loading{
  1768. position: absolute;
  1769. background:rgba(255,255,255,0.8);
  1770. left:20px;
  1771. top:65px;
  1772. right: 20px;
  1773. bottom:0;
  1774. z-index:99;
  1775. }
  1776. /*富文本编辑器*/
  1777. .edui-editor{
  1778. z-index: 99;
  1779. }
  1780. .table-responsive .label{
  1781. margin-bottom: 2px;
  1782. }
  1783. /*时间选择器*/
  1784. .xdsoft_datetimepicker .xdsoft_calendar td{
  1785. background: #fff !important;
  1786. }
  1787. .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current{
  1788. background: #33aaff !important;
  1789. }
  1790. .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{
  1791. background: #fff !important;
  1792. }
  1793. /**/
  1794. .border{
  1795. border:1px solid #efefef;
  1796. }
  1797. .summary_box{
  1798. margin-bottom: 20px;
  1799. border: 1px solid #e7eaec
  1800. }
  1801. .summary{
  1802. height: 120px;
  1803. align-items: center;
  1804. font-size:14px;
  1805. text-align: center;
  1806. margin-bottom: 30px;
  1807. }
  1808. .summary .num{
  1809. font-size: 26px;
  1810. }
  1811. .summary_title{
  1812. height:50px;
  1813. width:100%;
  1814. background: #f8f8f8;
  1815. line-height: 50px;
  1816. }
  1817. .title_inner{
  1818. margin-left: 30px;
  1819. font-size:14px;
  1820. }
  1821. .summary_title~.summary{
  1822. margin-bottom: 0;
  1823. padding: 20px;
  1824. }
  1825. .summary_lg{
  1826. padding:20px 30px;
  1827. color: #666;
  1828. line-height: 2;
  1829. }
  1830. .summary_lg a{
  1831. color: #00aeff;
  1832. }
  1833. .summary h2{
  1834. font-size:20px;
  1835. }
  1836. .page-sub-toolbar {
  1837. position: relative;
  1838. width: 100%;
  1839. padding-bottom: 15px;
  1840. height: 45px;
  1841. line-height: 1;
  1842. vertical-align: middle;
  1843. margin-bottom: 15px;
  1844. border-bottom: 1px solid #efefef;
  1845. }
  1846. .set_title{
  1847. line-height: 50px;
  1848. font-weight: bold;
  1849. font-size: 14px;
  1850. color: #000;
  1851. }
  1852. .fa.fa-question-circle{
  1853. color: #999;
  1854. }
  1855. .col-lg.control-label,.col-lger.control-label{
  1856. color: #000;
  1857. font-weight:normal;
  1858. }
  1859. .line2{
  1860. overflow: hidden;
  1861. text-overflow: ellipsis;
  1862. display: -webkit-box;
  1863. -webkit-line-clamp: 2;
  1864. -webkit-box-orient: vertical;
  1865. }
  1866. .well {
  1867. border:none;
  1868. box-shadow: none;
  1869. }
  1870. a.form-control-static{
  1871. display: inline-block;
  1872. }
  1873. .w840 {
  1874. width: 840px;
  1875. margin: auto;
  1876. }
  1877. .switch-version {
  1878. height: 26px;
  1879. width: 70px;
  1880. background: #ff5555;
  1881. color: #fff !important;
  1882. font-size: 12px;
  1883. line-height: 26px;
  1884. text-align: center;
  1885. moz-user-select: -moz-none;
  1886. -moz-user-select: none;
  1887. -o-user-select:none;
  1888. -khtml-user-select:none;
  1889. -webkit-user-select:none;
  1890. -ms-user-select:none;
  1891. user-select:none;
  1892. cursor: pointer;
  1893. position: relative;
  1894. margin: 12px 20px 0 0;
  1895. display: block;
  1896. }
  1897. .switch-version:before {
  1898. content: '';
  1899. display: inline-block;
  1900. width: 0;
  1901. height: 0;
  1902. border-left: 6px dashed #ff5555;
  1903. border-left: 6px solid #ff5555;
  1904. border-top: 6px solid transparent;
  1905. border-bottom: 6px solid transparent;
  1906. position: absolute;
  1907. right: -6px;
  1908. top: 50%;
  1909. margin-top: -6px;
  1910. }
  1911. .switch-version{
  1912. -webkit-animation: bounce-down 1s steps(4,end) infinite;
  1913. animation: bounce-down 1s steps(4,end) infinite;
  1914. }
  1915. @keyframes bounce-down {
  1916. from {
  1917. transform: translateY(0px);
  1918. }
  1919. 25%{
  1920. transform: translateY(-1px);
  1921. }
  1922. 50%{
  1923. transform: translateY(-2px);
  1924. }
  1925. 75% {
  1926. transform: translateY(1px);
  1927. }
  1928. 100%{
  1929. transform: translateY(2px);
  1930. }
  1931. }
  1932. /*系统更新样式*/
  1933. .tips-upgrade { position: fixed;z-index:999; bottom:10px;right:10px ;width:300px;height:auto; background:rgba(26,179,148,0.5);color:#fff; padding:10px;border-radius: 5px;}
  1934. .tips-upgrade .tclose { position:absolute;top:10px; right:10px;color:#fff;}
  1935. .tips-upgrade .title { padding:5px 10px;font-weight:bold;color:#fff;}
  1936. .tips-upgrade .text { padding:10px;color:#fff;}
  1937. .tips-upgrade .buttons { text-align: right; padding-top:5px;}
  1938. .switch-version-box{
  1939. border-bottom: 1px solid #efefef;
  1940. }
  1941. .systips{
  1942. position: absolute;
  1943. display: block;
  1944. height:7px;
  1945. width:7px;
  1946. background: #ff0000;
  1947. -webkit-border-radius:50%;
  1948. -moz-border-radius:50%;
  1949. border-radius:50%;
  1950. left:-8px;
  1951. top:0;
  1952. display: none;
  1953. }
  1954. /*百度编辑器头部固定*/
  1955. .wb-container .edui-default .edui-editor-toolbarbox{
  1956. position: static ;
  1957. top:50px !important;
  1958. }
  1959. /*公众号过长*/
  1960. .wb-header ul li.dropdown.ellipsis{
  1961. width:auto;
  1962. padding: 0 30px;
  1963. min-width: 160px;
  1964. position: relative;
  1965. }
  1966. /*分辨率低情况下 一级菜单显示不全*/
  1967. .wb-navheight{
  1968. height: 550px;
  1969. overflow: auto;
  1970. padding-bottom: 51px;
  1971. }
  1972. /*分辨率低情况下 顶部导航不兼容*/
  1973. .wb-topbar-search.expand-search.wb-navwidth{
  1974. width: 200px !important;
  1975. }