1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .jump-interface {
- width: 100%;
- height: 100%;
- background: #fff;
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- margin: auto;
- display: none;
- transition: all .2s linear;
- font-size: 16px;
- /*transform: scale(2);*/
- /*-webkit-overflow-scroll: touch!important;*/
- }
- .jump-box {
- width: 80%;
- height: 100%;
- margin: 10px auto;
- }
- .jump-box li {
- margin-bottom: 10px;
- height: 30px;
- }
- .jump-box .tip {
- font-weight: bold;
- font-size: 20px;
- }
- .jump-box .jumpNumber{
- width: 100px;
- height: 30px;
- font-size: 16px;
- border: 1px solid #000;
- border-radius: 5px;
- }
- .jump-save-box{
- width: 60%;
- height: 40px;
- font-size: 16px;
- margin-top: 100px;
- margin-left: 20%;
- display: flex;
- display: -webkit-flex;
- justify-content: space-between;
- -webkit-justify-content: space-between;
- }
- .jump-save-box .jump{
- width: 30%;
- height: 40px;
- font-size: 16px;
- background: #fff;
- color: #558df3;
- outline: none;
- border: 1px solid #F1F1F2;
- }
- .jump-save-box .cancel{
- width: 30%;
- height: 40px;
- font-size: 16px;
- background: #fff;
- outline: none;
- border: 1px solid #F1F1F2;
- }
- #coolInputPanel {
- background: #fff !important;
- }
- /*#coolInputPanel {*/
- /* height: 400px !important;*/
- /* background: #fff !important;*/
- /*}*/
- /*#coolInputPanel > div {*/
- /* height: 80px !important;*/
- /* line-height: 80px !important;*/
- /* font-size: 40px !important;*/
- /*}*/
|