| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- .mt_body{
- height: 400px;
- overflow: hidden;
- position: relative;
- }
- .mt_panel{
- background-color: #F7F7F7;
- padding: 10px 0 0 0;
- }
- .mt_panel h3{
- color: #4eccc4;
- font-size: 16px;
- text-align: center;
- font-weight: normal;
- }
- .mt_year, .mt_month, .mt_day, .mt_hour, .mt_minute, .mt_second{
- float: left;
- width: 33.33%;
- height: 50%;
- vertical-align: top;
- text-align: center;
- overflow: hidden;
- }
- .mt_body ul li{
- height: 40px;
- line-height: 40px;
- font-size: 18px;
- color: #555;
- }
- .mt_indicate, .mt_indicate:after{
- top: 78px;
- position: absolute;
- border-top: 1px solid #e9e9e9;
- width: 100%;
- height: 0;
- font-size: 0;
- }
- .mt_indicate:after{
- content: "";
- top: 40px;
- }
- .mt_indicate.cate2{
- top: 280px;
- }
- .mt_body li.selected{
- color: #4eccc4;
- }
- .mt_body ul .mt_note{
- font-size: 12px;
- color: #000;
- }
- .mt_confirm{
- text-align: center;
- margin-top: 10px;
- overflow: hidden;
- }
- .mt_ok, .mt_cancel, .mt_setnow{
- display: inline-block;
- float: left;
- vertical-align: top;
- width: 33.33%;
- height: 30px;
- line-height: 30px;
- border: 1px solid #4eccc4;
- color: #4eccc4;
- box-sizing: border-box;
- border-bottom: none;
- border-right: none;
- }
- .mt_ok{
- margin-left: -1px;
- }
- .mt_cancel, .mt_setnow{
-
- }
- .mt_mask{
- width: 100%;
- height: 100%;
- -moz-transition: opacity .5s linear 0s;
- -webkit-transition: opacity .5s linear 0s;
- -o-transition: opacity .5s linear 0s;
- -ms-transition: opacity .5s linear 0s;
- transition: opacity .5s linear 0s;
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- visibility: hidden;
- background: #000;
- opacity: 0;
- z-index: 10;
- }
- .mt_mask.show{
- visibility: visible;
- opacity: 0.25;
- }
- .mt_poppanel {
- -moz-transition: -moz-transform .3s ease-in-out 0s;
- -ms-transition: -ms-transform .3s ease-in-out 0s;
- -webkit-transition: -webkit-transform .3s ease-in-out 0s;
- -o-transition: -o-transform .3s ease-in-out 0s;
- transition: transform .3s ease-in-out 0s;
- -ms-transform: translate3d(0,100%,0);
- -moz-transform: translate3d(0,100%,0);
- -webkit-transform: translate3d(0,100%,0);
- -o-transform: translate3d(0,100%,0);
- transform: translate3d(0,100%,0);
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- height: auto;
- z-index: 11;
- -webkit-user-select : none;
- }
- .mt_poppanel.show{
- -ms-transform: translate3d(0,0,0);
- -moz-transform: translate3d(0,0,0);
- -webkit-transform: translate3d(0,0,0);
- -o-transform: translate3d(0,0,0);
- transform: translate3d(0,0,0);
- }
- .mt_sepline{
- width: 100%;
- height: 0;
- border-top: 1px solid #4eccc4;
- clear: both;
- }
|