123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /**
- * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
- * http://cssreset.com
- */
- html, body, div, span, applet, object, iframe,
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
- a, abbr, acronym, address, big, cite, code,
- del, dfn, em, img, ins, kbd, q, s, samp,
- small, strike, strong, sub, sup, tt, var,
- b, u, i, center,
- dl, dt, dd, ol, ul, li,
- fieldset, form, label, legend,
- table, caption, tbody, tfoot, thead, tr, th, td,
- article, aside, canvas, details, embed,
- figure, figcaption, footer, header,
- menu, nav, output, ruby, section, summary,
- time, mark, audio, video, input {
- margin: 0;
- padding: 0;
- }
- img{width: 100%;height: 100%;}
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- /* custom */
- a {
- text-decoration: none;
- -webkit-backface-visibility: hidden;
- }
- li {
- list-style: none;
- }
- html, body {
- width: 100%;
- height: 100%;
- background: #e5e5e5;
- }
- body {
- font-size: 12px;
- -webkit-text-size-adjust: none;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- color: #333333;
- }
- .display-flex{
- display: -webkit-box;
- display: -moz-box;
- display: -ms-flexbox;
- display: -webkit-flex;
- display: flex;
- }
- .flex-item {
- -webkit-box-flex: 1;
- -moz-box-flex: 1;
- -webkit-flex: 1;
- -ms-flex: 1;
- flex: 1;
- box-flex:1;
- }
- .flex-direction {
- -webkit-box-orient: vertical;
- -webkit-flex-direction: column;
- -moz-flex-direction: column;
- -ms-flex-direction: column;
- -o-flex-direction: column;
- flex-direction: column;
- }
- .justify-content {
- -webkit-box-pack: center;
- -moz-justify-content: center;
- -webkit-justify-content: center;
- justify-content: center;
- -moz-box-pack:center;
- -webkit--moz-box-pack:center;
- box-pack:center;
- }
- .justify-content-between {
- -webkit-box-pack: space-between;
- -moz-justify-content: space-between;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -moz-box-pack:space-between;
- -webkit--moz-box-pack:space-between;
- box-pack:space-between;
- }
- .justify-content-around {
- -webkit-box-pack: space-around;
- -moz-justify-content: space-around;
- -webkit-justify-content: space-around;
- justify-content: space-around;
- -moz-box-pack:space-around;
- -webkit--moz-box-pack:space-around;
- box-pack:space-around;
- }
- .align-items {
- -webkit-box-align: center;
- -moz-align-items: center;
- -webkit-align-items: center;
- align-items: center;
- box-align:center;
- -moz-box-align:center;
- }
- .flex-wrap{
- -webkit-flex-wrap:wrap;
- -webkit-box-lines:multiple;
- -moz-flex-wrap:wrap;
- flex-wrap:wrap;
- }
- .box-sizing {
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- -o-box-sizing: border-box;
- -ms-box-sizing: border-box;
- box-sizing: border-box;
- }
- .opacity0 {
- filter:alpha(opacity=0);
- -moz-opacity:0;
- -khtml-opacity: 0;
- opacity: 0;
- }
- .clearfix:after {clear:both;display:block;content: " ";height:0px; line-height:0px;overflow:hidden;}
- .float-left{float: left;}
- .mpw-dock {
- position: fixed;
- right: 0;
- bottom: 0;
- left: 0;
- top: 0;
- width: 100%;
- background: #fff;
- visibility: hidden;
- background-color: rgba(0, 0, 0, 0.5);
- opacity: 0;
- height: 100%;
- z-index: 1;
- }
- .calendar_choose {
- position: fixed;
- z-index: 1002;
- right: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- background: #fff;
- }
- .mpw-dock.is-visible {
- opacity: 1;
- visibility: visible;
- }
|