mykeyboard.wxss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .keyboard_cotainer{
  2. position: absolute;
  3. bottom: 0px;
  4. height: auto;
  5. width: 100%;
  6. background: rgba(158, 157, 157, 0.466);
  7. align-items: center;
  8. justify-content: center;
  9. }
  10. .numval{
  11. border-radius:5px;
  12. margin-bottom: .5px;
  13. text-align: center;
  14. line-height: 50px;
  15. font-weight: 700;
  16. height: 50px;
  17. width: 100%;
  18. background: #fff;
  19. font-size: 16px;
  20. color: #226bda;
  21. }
  22. .keyboard_num{
  23. line-height: 50px;
  24. margin: .5px;
  25. float: left;
  26. color: black;
  27. font-size: 16px;
  28. font-weight: 700;
  29. width: 33%;
  30. height: 50px;
  31. background: #fff;
  32. border-radius:5px;
  33. text-align: center;
  34. }
  35. /* 点击选中样式 */
  36. .keyboard_click{
  37. line-height: 50px;
  38. margin: .5px;
  39. float: left;
  40. color: black;
  41. font-size: 16px;
  42. font-weight: 300;
  43. width: 33%;
  44. height: 50px;
  45. background: #dddddd;
  46. border-radius:5px;
  47. text-align: center;
  48. }
  49. .deletebt{
  50. border-radius:5px;
  51. margin: .5px;
  52. color: #fff;
  53. font-size: 12px;
  54. text-align: center;
  55. line-height: 40px;
  56. float: left;
  57. width: 33%;
  58. height: 40px;
  59. background: #aaa8a8;
  60. }
  61. .canclebt{
  62. border-radius:5px;
  63. margin: .5px;
  64. color: #fff;
  65. font-size: 12px;
  66. text-align: center;
  67. line-height: 40px;
  68. float: left;
  69. width: 33%;
  70. height: 40px;
  71. background: #e98c8c;
  72. }
  73. .submitbt{
  74. border-radius:5px;
  75. margin: .5px;
  76. color: #fff;
  77. font-size: 12px;
  78. text-align: center;
  79. line-height: 40px;
  80. float: left;
  81. width: 33%;
  82. height: 40px;
  83. background: #226bda;
  84. }
  85. .bt_select{
  86. border-radius:5px;
  87. color: #fff;
  88. margin: .5px;
  89. font-size: 12px;
  90. text-align: center;
  91. line-height: 40px;
  92. float: left;
  93. width: 33%;
  94. height: 40px;
  95. background: rgb(51, 165, 241);
  96. }