common.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  1. html {
  2. background: #fff;
  3. /*font-size: 12px;*/
  4. }
  5. body {
  6. background: #fff;
  7. max-width: 480px;
  8. margin: auto;
  9. line-height: initial;
  10. font-size: 14px;
  11. }
  12. div {
  13. max-width: 480px;
  14. }
  15. img {
  16. vertical-align: middle;
  17. }
  18. .hide {
  19. display: none;
  20. }
  21. .page.page-nav-bottom{
  22. margin-bottom: 50px;
  23. }
  24. .page_hd{
  25. /*padding-top: 10px;*/
  26. text-align: center;
  27. }
  28. .page_title {
  29. color: #555;
  30. font-weight: 400;
  31. font-size: 20px;
  32. }
  33. .flex {
  34. display: -webkit-box;
  35. display: -webkit-flex;
  36. display: flex;
  37. }
  38. .flex-row {
  39. display: -webkit-box;
  40. display: -webkit-flex;
  41. display: flex;
  42. -webkit-box-orient: horizontal;
  43. -webkit-flex-direction: row;
  44. flex-direction: row;
  45. }
  46. .flex-col {
  47. display: -webkit-box;
  48. display: -webkit-flex;
  49. display: flex;
  50. -webkit-box-orient: vertical;
  51. -webkit-flex-direction: column;
  52. flex-direction: column;
  53. }
  54. .flex-grow-0 {
  55. min-width: 0;
  56. -webkit-box-flex: 0;
  57. -webkit-flex-grow: 0;
  58. -ms-flex-positive: 0;
  59. flex-grow: 0;
  60. -webkit-flex-shrink: 0;
  61. -ms-flex-negative: 0;
  62. flex-shrink: 0;
  63. }
  64. .flex-grow-1 {
  65. min-width: 0;
  66. -webkit-box-flex: 1;
  67. -webkit-flex-grow: 1;
  68. -ms-flex-positive: 1;
  69. flex-grow: 1;
  70. -webkit-flex-shrink: 1;
  71. -ms-flex-negative: 1;
  72. flex-shrink: 1;
  73. }
  74. .flex-x-center {
  75. display: -webkit-box;
  76. display: -webkit-flex;
  77. display: flex;
  78. -webkit-box-pack: center;
  79. -webkit-justify-content: center;
  80. -ms-flex-pack: center;
  81. justify-content: center;
  82. }
  83. .flex-y-center {
  84. display: -webkit-box;
  85. display: -webkit-flex;
  86. display: flex;
  87. -webkit-box-align: center;
  88. -webkit-align-items: center;
  89. -ms-flex-align: center;
  90. -ms-grid-row-align: center;
  91. align-items: center;
  92. }
  93. .flex-y-bottom {
  94. display: -webkit-box;
  95. display: -webkit-flex;
  96. display: flex;
  97. -webkit-box-align: end;
  98. -webkit-align-items: flex-end;
  99. -ms-flex-align: end;
  100. -ms-grid-row-align: flex-end;
  101. align-items: flex-end;
  102. }
  103. .btn {
  104. position: relative;
  105. display: block;
  106. margin-left: auto;
  107. margin-right: auto;
  108. box-sizing: border-box;
  109. font-size: 16px;
  110. text-align: center;
  111. text-decoration: none;
  112. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  113. overflow: hidden;
  114. color: white;
  115. background: #d83f31;
  116. padding: 10px;
  117. border-radius: 2px;
  118. }
  119. .btn:after {
  120. border: none;
  121. }
  122. .btn-submit {
  123. margin-top: 20px;
  124. }
  125. .btn-mini {
  126. line-height: 22px;
  127. border: 1px solid #d83f31;
  128. color: #d83f31;
  129. display: inline-block;
  130. font-size: 13px;
  131. padding: 0 10px;
  132. background: white;
  133. }
  134. .btn-red {
  135. border: none;
  136. color: white;
  137. background: #d83f31;
  138. }
  139. .btn-area {
  140. padding: 20px;
  141. margin: auto;
  142. position: fixed;
  143. left: 0;
  144. right: 0;
  145. bottom: 50px;
  146. }
  147. .banner{
  148. }
  149. .border-top, .border-bottom, .border-right {
  150. position: relative;
  151. }
  152. .border-top:before {
  153. content: " ";
  154. position: absolute;
  155. left: 0;
  156. top: 0;
  157. right: 0;
  158. height: 1px;
  159. border-top: 1px solid #ddd;
  160. color: #CCCCCC;
  161. -webkit-transform-origin: 0 100%;
  162. transform-origin: 0 -100%;
  163. -webkit-transform: scaleY(0.5);
  164. transform: scaleY(0.5);
  165. }
  166. .border-bottom:after {
  167. content: " ";
  168. position: absolute;
  169. left: 0;
  170. bottom: 0;
  171. right: 0;
  172. height: 1px;
  173. border-bottom: 1px solid #ddd;
  174. color: #CCCCCC;
  175. -webkit-transform-origin: 0 100%;
  176. transform-origin: 0 100%;
  177. -webkit-transform: scaleY(0.5);
  178. transform: scaleY(0.5);
  179. }
  180. .border-right:before {
  181. content: " ";
  182. position: absolute;
  183. right: 0;
  184. top: 0;
  185. width: 1px;
  186. bottom: 0;
  187. border-right: 1px solid #D9D9D9;
  188. color: #D9D9D9;
  189. -webkit-transform-origin: 100% 0;
  190. transform-origin: 100% 0;
  191. -webkit-transform: scaleX(0.5);
  192. transform: scaleX(0.5);
  193. }
  194. .bottom-bar {
  195. position: fixed;
  196. background: #f9f9f9;
  197. display: -webkit-box;
  198. display: -webkit-flex;
  199. display: flex;
  200. /*position: absolute;*/
  201. z-index: 2;
  202. bottom: 0;
  203. width: 100%;
  204. border-top: 1px solid #eee;
  205. }
  206. .bottom-bar-item {
  207. display: block;
  208. -webkit-box-flex: 1;
  209. -webkit-flex: 1;
  210. flex: 1;
  211. font-size: 15px;
  212. color: #555;
  213. text-align: center;
  214. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  215. margin: 15px 0;
  216. border-right: 1px solid #eee;
  217. }
  218. .bottom-bar-item:last-child {
  219. border: none;
  220. }
  221. /*.bottom-bar-item .item-icon {*/
  222. /*width: 16px;*/
  223. /*!*height:20px;*!*/
  224. /*vertical-align: middle;*/
  225. /*margin-right: 4px;*/
  226. /*}*/
  227. .bottom-bar-item .item-icon {
  228. background: url(../img/work.png) no-repeat center;
  229. background-size: contain;
  230. width: 16px;
  231. height: 16px;
  232. margin-right: 4px;
  233. vertical-align: middle;
  234. display: inline-block;
  235. margin-bottom: 4px;
  236. }
  237. .bottom-bar-item .item-icon.icon-work {
  238. background: url(../img/work.png) no-repeat center;
  239. background-size: contain;
  240. }
  241. .bottom-bar-item.active .item-icon.icon-work {
  242. background: url(../img/work-select.png) no-repeat center;
  243. background-size: contain;
  244. }
  245. .bottom-bar-item .item-icon.icon-project {
  246. background: url(../img/project.png) no-repeat center;
  247. background-size: contain;
  248. }
  249. .bottom-bar-item.active .item-icon.icon-project {
  250. background: url(../img/project-select.png) no-repeat center;
  251. background-size: contain;
  252. }
  253. .bottom-bar-item .icon-back {
  254. background: url(../img/icon-back.png) no-repeat center;
  255. background-size: contain;
  256. }
  257. .bottom-bar-item .icon-back-white {
  258. background: url(../img/icon-back-white.png) no-repeat center;
  259. background-size: contain;
  260. }
  261. .bottom-bar-item.active .item-label {
  262. color:#e26036;
  263. }
  264. .bottom-bar .nav-back {
  265. width: 80px;
  266. flex: initial;
  267. }
  268. .banner_img{
  269. width: 100%;
  270. }
  271. .weui-navbar:after {
  272. border-bottom: 1px solid #e0e0e0;
  273. }
  274. .weui-cell_link {
  275. color: #888;
  276. font-size: 14px;
  277. }
  278. .weui-cell__img {
  279. height: 12px;
  280. padding-right: 6px;
  281. }
  282. .weui-grid__icon{
  283. width: 50%;
  284. padding:10px;
  285. display: -webkit-inline-box;
  286. }
  287. .weui-btn_primary {
  288. background-color: #d83f31;
  289. }
  290. .weui-btn_lightgreen {
  291. background-color: #0db10d;
  292. }
  293. .weui-dialog {
  294. border-radius: 6px;
  295. }
  296. .weui-media-box {
  297. padding: 10px 15px;
  298. }
  299. .weui-media-box__info {
  300. margin-top: 10px;
  301. font-size: 14px;
  302. }
  303. .weui-vcode-btn{
  304. color: white;
  305. }
  306. .weui-vcode-btn:active{
  307. color:white;
  308. }
  309. button.weui-vcode-btn{
  310. background-color: #d83f31;
  311. padding: 0 20px;
  312. }
  313. .weui-btn_primary:not(.weui-btn_disabled):active{
  314. color:rgba(255, 255, 255, 0.6);
  315. background-color:#c11f10;
  316. }
  317. .weui-media-box__thumb {
  318. background: #eee;
  319. }
  320. .weui-panel__hd{
  321. font-size: 16px;
  322. background: #f9f9f9;
  323. color: #666;
  324. }
  325. .weui-navbar__item {
  326. font-size: 15px;
  327. }
  328. .weui-media-box__img{
  329. height: 14px;
  330. padding :0 0 0 6px;
  331. }
  332. .weui-media-box__num{
  333. color: #d83f31;
  334. }
  335. .weui-panel{
  336. margin-top: 0px;
  337. }
  338. .weui-cell_portrait{
  339. width: 40px;
  340. height: 40px;
  341. border-radius: 50%;
  342. background: #c3c0c0;
  343. }
  344. .wei-cell_department{
  345. color: #999;
  346. font-size: 12px;
  347. }
  348. .weui-cell__ft_on{
  349. color:#d83f31;
  350. }
  351. .weui-cell_right{
  352. float: right;
  353. font-size: 12px;
  354. }
  355. .weui-flex_bgimg{
  356. width: 76px;
  357. }
  358. .weui-flex_text{
  359. font-size: 14px;
  360. color: #414141;
  361. padding: 0px 0 10px 0;
  362. }
  363. .weui-flex_num{
  364. display: inherit;
  365. position: relative;
  366. z-index: 5000;
  367. color: #21b6ab;
  368. background: url(../img/ellipse.png) no-repeat center;
  369. background-size: 90px 90px;
  370. height: 100px;
  371. display: -webkit-box;
  372. -webkit-box-pack: center;
  373. -webkit-box-align: center;
  374. }
  375. .weui-cell_access .weui-cell__ft:after {
  376. height: 8px;
  377. width: 8px;
  378. border-width: 1px 1px 0 0;
  379. }
  380. .my-weui-dialog .weui-dialog {
  381. background: none;
  382. }
  383. .my-weui-dialog .weui-dialog-close {
  384. position: absolute;
  385. right: 0;
  386. top: 0;
  387. width: 20px;
  388. height: 20px;
  389. background: url(../img/icon-close.png);
  390. background-position: center;
  391. background-size: contain;
  392. }
  393. .my-weui-dialog .weui-dialog__hd {
  394. margin-top: 26px;
  395. background: white;
  396. border-radius: 4px 4px 0 0;
  397. }
  398. .my-weui-dialog .weui-dialog__bd {
  399. background: white;
  400. }
  401. .weui-tab__bd-item {
  402. display: none;
  403. }
  404. .weui-tab__bd-item--on {
  405. display: block;
  406. }
  407. .weui-loadmore {
  408. width: 65%;
  409. margin: auto;
  410. line-height: 45px;
  411. font-size: 14px;
  412. text-align: center;
  413. }
  414. i.icon-dropdown {
  415. position: relative;
  416. }
  417. i.icon-dropdown:after {
  418. content: " ";
  419. display: inline-block;
  420. height: 6px;
  421. width: 6px;
  422. border-width: 2px 2px 0 0;
  423. border-color: #888;
  424. border-style: solid;
  425. transform: rotate(135deg) translate(0, 2px);
  426. position: absolute;
  427. top: 50%;
  428. margin-top: -4px;
  429. right: -16px;
  430. }
  431. .proj-title span {
  432. color: #555;
  433. font-weight:bold;
  434. }
  435. .weui-cells {
  436. font-size: 15px;
  437. }
  438. .title-auditor {
  439. padding: 10px 0;
  440. text-align: center;
  441. background: red;
  442. color: white;
  443. }
  444. .row-title {
  445. margin-top: .77em;
  446. margin-bottom: .3em;
  447. padding-left: 15px;
  448. padding-right: 15px;
  449. color: #555;
  450. font-size: 14px;
  451. font-weight: bold;
  452. }
  453. /* Simple Timeline */
  454. .pui-timeline {
  455. position: relative;
  456. }
  457. .pui-timeline-list {
  458. margin-left: 20px;
  459. padding: 5px 0;
  460. border-left: 2px solid #ddd;
  461. }
  462. .pui-timeline-item {
  463. position: relative;
  464. padding-left: 48px;
  465. min-height: 40px;
  466. }
  467. .pui-timeline-item > .pui-badge {
  468. position: absolute;
  469. top: 7px;
  470. left: -12px;
  471. }
  472. .pui-timeline-item > .pui-badge-dot {
  473. position: absolute;
  474. top: 15px;
  475. left: -6px;
  476. }
  477. .pui-timeline-badge-date > .pui-badge,
  478. .pui-timeline-badge-datetime > .pui-badge {
  479. padding: 0 5px;
  480. }
  481. .pui-timeline-badge-date, .pui-timeline-badge-datetime {
  482. padding-left: 130px;
  483. }
  484. .pui-timeline-item-context {
  485. padding: 8px 0 8px 10px;
  486. }
  487. .pui-timeline-divider {
  488. margin-left: 5px;
  489. padding: 10px 0 10px 0;
  490. font-size: 12px;
  491. color: #404040;
  492. }
  493. .pui-timeline-divider-dashed-line, .pui-timeline-divider-line {
  494. padding-top: 10px;
  495. border-top: 1px solid #eee;
  496. }
  497. .pui-timeline-divider-dashed-line {
  498. border-top-style: dashed;
  499. }
  500. .pui-badge.pui-badge-info {
  501. color: #fff;
  502. border-color: #C54B3B;
  503. background-color: #C54B3B;
  504. }
  505. .pui-badge.pui-badge-unbordered {
  506. border: none;
  507. }
  508. .pui-badge.pui-badge-circle {
  509. -webkit-border-radius: 400px;
  510. border-radius: 400px;
  511. }
  512. .pui-badge.pui-badge-square {
  513. -webkit-border-radius: 0;
  514. border-radius: 0;
  515. }
  516. .pui-badge.pui-badge-dot {
  517. display: inline-block;
  518. width: 8px;
  519. min-width: 8px;
  520. height: 8px;
  521. padding: 0;
  522. line-height: 14px;
  523. text-indent: -9999em;
  524. border-radius: 5px;
  525. }
  526. .pui-badge.pui-badge-info a {
  527. color: #fff;
  528. }
  529. .pui-badge {
  530. cursor: pointer;
  531. min-width: 24px;
  532. padding: 0 2px 1px;
  533. font-size: 10px;
  534. text-align: center;
  535. border: 1px solid transparent;
  536. white-space: nowrap;
  537. -webkit-border-radius: 3px;
  538. border-radius: 3px;
  539. -webkit-user-select: none;
  540. -moz-user-select: none;
  541. -ms-user-select: none;
  542. -o-user-select: none;
  543. user-select: none;
  544. -webkit-touch-callout: none;
  545. -webkit-transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out;
  546. /* Safari, Chrome */
  547. -moz-transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out;
  548. /* Firefox 4.0~16.0 */
  549. transition: color 0.15s ease-out, border-color 0.15s ease-out, background-color 0.15s ease-out;
  550. /* IE >9, FF >15, Opera >12.0 */
  551. }
  552. /* Tooltips */
  553. .pui-tooltip {
  554. position: relative;
  555. display: inline-block;
  556. -webkit-user-select: none;
  557. -moz-user-select: none;
  558. -ms-user-select: none;
  559. -o-user-select: none;
  560. user-select: none;
  561. -webkit-touch-callout: none;
  562. }
  563. .pui-tooltip.square, .pui-tooltip.pui-square {
  564. -webkit-border-radius: 0;
  565. border-radius: 0;
  566. }
  567. .pui-tooltip.shadow, .pui-tooltip.pui-shadow {
  568. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  569. /* Webkit browsers */
  570. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  571. /* IE9+, News */
  572. }
  573. .pui-tooltip-bordered {
  574. padding: 8px 12px;
  575. padding: 0.8rem 1.2rem;
  576. background: #fff;
  577. border: 1px solid #ddd;
  578. -webkit-border-radius: 5px;
  579. border-radius: 5px;
  580. }
  581. .pui-tooltip-opacity {
  582. color: #fff;
  583. background: #000;
  584. border-color: #000;
  585. opacity: 0.7;
  586. /* W3C */
  587. filter: alpha(opacity=70);
  588. /* IE */
  589. }
  590. .pui-tooltip-opacity-1 {
  591. opacity: 1;
  592. /* W3C */
  593. filter: alpha(opacity=100);
  594. /* IE */
  595. }
  596. .pui-tooltip-viewer {
  597. display: inline-block;
  598. background: #fff;
  599. border: 1px solid #ddd;
  600. -webkit-border-radius: 5px;
  601. border-radius: 5px;
  602. }
  603. .pui-tooltip-context {
  604. position: relative;
  605. }
  606. .pui-tooltip-context > img + p {
  607. margin-top: 5px;
  608. }
  609. .pui-tooltip-context > p:last-child {
  610. margin-bottom: 0;
  611. }
  612. [class*=pui-tooltip-arrow-]:before, [class*=pui-tooltip-arrow-]:after {
  613. width: 0;
  614. height: 0;
  615. display: block;
  616. content: "";
  617. border: 7px solid transparent;
  618. pointer-events: pointer-events;
  619. position: absolute;
  620. }
  621. /* Top */
  622. [class*=pui-tooltip-arrow-t]:before, [class*=pui-tooltip-arrow-t]:after {
  623. border-bottom-color: #ccc;
  624. top: -14px;
  625. }
  626. [class*=pui-tooltip-arrow-t]:after {
  627. border-bottom-color: #fff;
  628. top: -13px;
  629. }
  630. .pui-tooltip-arrow-tl:before, .pui-tooltip-arrow-tl:after {
  631. left: 8%;
  632. }
  633. .pui-tooltip-arrow-tc:before, .pui-tooltip-arrow-tc:after {
  634. left: 49%;
  635. }
  636. .pui-tooltip-arrow-tr:before, .pui-tooltip-arrow-tr:after {
  637. right: 8%;
  638. }
  639. /* Bottom */
  640. [class*=pui-tooltip-arrow-b]:before, [class*=pui-tooltip-arrow-b]:after {
  641. border-top-color: #ccc;
  642. bottom: -14px;
  643. }
  644. [class*=pui-tooltip-arrow-b]:after {
  645. border-top-color: #fff;
  646. bottom: -13px;
  647. }
  648. .pui-tooltip-arrow-bl:before, .pui-tooltip-arrow-bl:after {
  649. left: 8%;
  650. }
  651. .pui-tooltip-arrow-bc:before, .pui-tooltip-arrow-bc:after {
  652. left: 49%;
  653. }
  654. .pui-tooltip-arrow-br:before, .pui-tooltip-arrow-br:after {
  655. right: 8%;
  656. }
  657. /* left */
  658. [class*=pui-tooltip-arrow-l]:before, [class*=pui-tooltip-arrow-l]:after {
  659. border-right-color: #ccc;
  660. left: -14px;
  661. }
  662. [class*=pui-tooltip-arrow-l]:after {
  663. border-right-color: #fff;
  664. left: -13px;
  665. }
  666. .pui-tooltip-arrow-lt:before, .pui-tooltip-arrow-lt:after {
  667. top: 12px;
  668. }
  669. .pui-tooltip-arrow-lc:before, .pui-tooltip-arrow-lc:after {
  670. top: 46%;
  671. }
  672. .pui-tooltip-arrow-lb:before, .pui-tooltip-arrow-lb:after {
  673. bottom: 12px;
  674. }
  675. /* right */
  676. [class*=pui-tooltip-arrow-r]:before, [class*=pui-tooltip-arrow-r]:after {
  677. border-left-color: #ccc;
  678. right: -14px;
  679. }
  680. [class*=pui-tooltip-arrow-r]:after {
  681. border-left-color: #fff;
  682. right: -13px;
  683. }
  684. .pui-tooltip-arrow-rt:before, .pui-tooltip-arrow-rt:after {
  685. top: 12px;
  686. }
  687. .pui-tooltip-arrow-rc:before, .pui-tooltip-arrow-rc:after {
  688. top: 46%;
  689. }
  690. .pui-tooltip-arrow-rb:before, .pui-tooltip-arrow-rb:after {
  691. bottom: 12px;
  692. }