cc-defineKeyboard.scss 701 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .page-total{
  2. // position: fixed;
  3. // left: 0;
  4. // bottom: 0;
  5. width: 100%;
  6. background-color: #f6f6f6;
  7. z-index: 99;
  8. }
  9. .key-list{
  10. display: flex;
  11. flex-wrap: wrap;
  12. align-items: center;
  13. padding: 1% 3%;
  14. height: 90%;
  15. margin-top: 20rpx;
  16. .list{
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. width: 32%;
  21. height: 92rpx;
  22. background-color: #FFFFFF;
  23. border-radius: 10rpx;
  24. box-shadow: 0 0 10rpx rgba(0,0,0,0.1);
  25. margin-right: 1.7%;
  26. margin-bottom: 16rpx;
  27. text{
  28. font-size: 38rpx;
  29. font-weight: bold;
  30. color: #222222;
  31. }
  32. }
  33. .list:nth-child(3n){
  34. margin-right: 0;
  35. }
  36. .special{
  37. background-color: #f6f6f6;
  38. box-shadow: none;
  39. text{
  40. color: #959595;
  41. }
  42. }
  43. }