| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- @charset "UTF-8";
- /***
- 全局scss 变量和方法 存放处
- */
- /* 引入minxin */
- /* 颜色变量 */
- /*图片地址*/
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .popup-wrap .ui-keyboard.data-v-26fa9f8c {
- display: -webkit-box;
- display: flex;
- display: -webkit-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- padding: 0 20rpx 20rpx 20rpx;
- background-color: #f5f5f5;
- box-shadow: 0 -8rpx 16rpx #ddd;
- }
- .popup-wrap .ui-keyboard .ui-keyboard-numbers.data-v-26fa9f8c {
- width: 78%;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-flex-wrap: wrap;
- flex-wrap: wrap;
- }
- .popup-wrap .ui-keyboard .ui-keyboard-numbers ._li.data-v-26fa9f8c {
- width: calc(33.33% - 20rpx);
- }
- .popup-wrap .ui-keyboard .ui-keyboard-numbers ._li.zero.data-v-26fa9f8c {
- width: calc(66.66% - 20rpx);
- }
- .popup-wrap .ui-keyboard .ui-keyboard-btn.data-v-26fa9f8c {
- width: 22%;
- }
- .popup-wrap .ui-keyboard .ui-keyboard-btn ._li.data-v-26fa9f8c {
- margin-right: 0;
- }
- .popup-wrap .ui-keyboard .ui-keyboard-btn ._li.btn-ok.data-v-26fa9f8c {
- height: 310rpx;
- color: #fff;
- background-color: #3385FF;
- }
- .popup-wrap .ui-keyboard ._li.data-v-26fa9f8c {
- display: -webkit-box;
- display: flex;
- display: -webkit-flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- height: 90rpx;
- text-align: center;
- border-radius: 10rpx;
- background-color: #fff;
- margin-top: 20rpx;
- margin-right: 20rpx;
- font-size: 38rpx;
- font-weight: bold;
- box-shadow: 0 2rpx 10rpx #ddd;
- }
- .popup-wrap .ui-keyboard ._li.data-v-26fa9f8c:active {
- background-color: rgba(0, 0, 0, 0.1);
- }
|