12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .keyboard_cotainer{
- position: absolute;
- bottom: 0px;
- height: auto;
- width: 100%;
- background: rgba(158, 157, 157, 0.466);
- align-items: center;
- justify-content: center;
- }
- .numval{
- border-radius:5px;
- margin-bottom: .5px;
- text-align: center;
- line-height: 50px;
- font-weight: 700;
- height: 50px;
- width: 100%;
- background: #fff;
- font-size: 16px;
- color: #226bda;
- }
-
- .keyboard_num{
- line-height: 50px;
- margin: .5px;
- float: left;
- color: black;
- font-size: 16px;
- font-weight: 700;
- width: 33%;
- height: 50px;
- background: #fff;
- border-radius:5px;
- text-align: center;
- }
- /* 点击选中样式 */
- .keyboard_click{
- line-height: 50px;
- margin: .5px;
- float: left;
- color: black;
- font-size: 16px;
- font-weight: 300;
- width: 33%;
- height: 50px;
- background: #dddddd;
- border-radius:5px;
- text-align: center;
- }
- .deletebt{
- border-radius:5px;
- margin: .5px;
- color: #fff;
- font-size: 12px;
- text-align: center;
- line-height: 40px;
- float: left;
- width: 33%;
- height: 40px;
- background: #aaa8a8;
- }
- .canclebt{
- border-radius:5px;
- margin: .5px;
- color: #fff;
- font-size: 12px;
- text-align: center;
- line-height: 40px;
- float: left;
- width: 33%;
- height: 40px;
- background: #e98c8c;
- }
- .submitbt{
- border-radius:5px;
- margin: .5px;
- color: #fff;
- font-size: 12px;
- text-align: center;
- line-height: 40px;
- float: left;
- width: 33%;
- height: 40px;
- background: #226bda;
- }
- .bt_select{
- border-radius:5px;
- color: #fff;
- margin: .5px;
- font-size: 12px;
- text-align: center;
- line-height: 40px;
- float: left;
- width: 33%;
- height: 40px;
- background: rgb(51, 165, 241);
- }
|