keyboard.wxss 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @charset "UTF-8";
  2. /***
  3. 全局scss 变量和方法 存放处
  4. */
  5. /* 引入minxin */
  6. /* 颜色变量 */
  7. /*图片地址*/
  8. /* 行为相关颜色 */
  9. /* 文字基本颜色 */
  10. /* 背景颜色 */
  11. /* 边框颜色 */
  12. /* 尺寸变量 */
  13. /* 文字尺寸 */
  14. /* 图片尺寸 */
  15. /* Border Radius */
  16. /* 水平间距 */
  17. /* 垂直间距 */
  18. /* 透明度 */
  19. /* 文章场景相关 */
  20. .popup-wrap .ui-keyboard.data-v-26fa9f8c {
  21. display: -webkit-box;
  22. display: flex;
  23. display: -webkit-flex;
  24. -webkit-box-align: center;
  25. -webkit-align-items: center;
  26. align-items: center;
  27. -webkit-box-pack: center;
  28. -webkit-justify-content: center;
  29. justify-content: center;
  30. padding: 0 20rpx 20rpx 20rpx;
  31. background-color: #f5f5f5;
  32. box-shadow: 0 -8rpx 16rpx #ddd;
  33. }
  34. .popup-wrap .ui-keyboard .ui-keyboard-numbers.data-v-26fa9f8c {
  35. width: 78%;
  36. display: -webkit-box;
  37. display: -webkit-flex;
  38. display: flex;
  39. -webkit-box-align: center;
  40. -webkit-align-items: center;
  41. align-items: center;
  42. -webkit-flex-wrap: wrap;
  43. flex-wrap: wrap;
  44. }
  45. .popup-wrap .ui-keyboard .ui-keyboard-numbers ._li.data-v-26fa9f8c {
  46. width: calc(33.33% - 20rpx);
  47. }
  48. .popup-wrap .ui-keyboard .ui-keyboard-numbers ._li.zero.data-v-26fa9f8c {
  49. width: calc(66.66% - 20rpx);
  50. }
  51. .popup-wrap .ui-keyboard .ui-keyboard-btn.data-v-26fa9f8c {
  52. width: 22%;
  53. }
  54. .popup-wrap .ui-keyboard .ui-keyboard-btn ._li.data-v-26fa9f8c {
  55. margin-right: 0;
  56. }
  57. .popup-wrap .ui-keyboard .ui-keyboard-btn ._li.btn-ok.data-v-26fa9f8c {
  58. height: 310rpx;
  59. color: #fff;
  60. background-color: #3385FF;
  61. }
  62. .popup-wrap .ui-keyboard ._li.data-v-26fa9f8c {
  63. display: -webkit-box;
  64. display: flex;
  65. display: -webkit-flex;
  66. -webkit-box-align: center;
  67. -webkit-align-items: center;
  68. align-items: center;
  69. -webkit-box-pack: center;
  70. -webkit-justify-content: center;
  71. justify-content: center;
  72. height: 90rpx;
  73. text-align: center;
  74. border-radius: 10rpx;
  75. background-color: #fff;
  76. margin-top: 20rpx;
  77. margin-right: 20rpx;
  78. font-size: 38rpx;
  79. font-weight: bold;
  80. box-shadow: 0 2rpx 10rpx #ddd;
  81. }
  82. .popup-wrap .ui-keyboard ._li.data-v-26fa9f8c:active {
  83. background-color: rgba(0, 0, 0, 0.1);
  84. }