拉杆箱消毒机
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.4 KiB

2 years ago
2 years ago
  1. html,
  2. body {
  3. width: 1280px;
  4. height: 800px;
  5. box-sizing: border-box;
  6. // 禁止推拽
  7. -webkit-user-select: none; /* Chrome/Safari */
  8. -moz-user-select: none; /* Firefox */
  9. -ms-user-select: none; /* IE10+ */
  10. user-select: none; /* Standard */
  11. }
  12. body {
  13. -webkit-touch-callout: none;
  14. -webkit-user-select: none;
  15. -khtml-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20. html {
  21. overscroll-behavior-x: none;
  22. }
  23. body {
  24. overscroll-behavior-x: none;
  25. }
  26. .van-cell {
  27. .van-field__control {
  28. text-align: center;
  29. }
  30. background: none;
  31. }
  32. .key_wrap {
  33. z-index: 999;
  34. }
  35. // #txtPassword {
  36. // -webkit-text-security: disc;
  37. // }
  38. ::-webkit-scrollbar {
  39. width: 0;
  40. height: 0;
  41. }
  42. // btn hover样式
  43. .style-btn {
  44. position: relative;
  45. overflow: hidden;
  46. }
  47. .style-btn:before {
  48. content: '';
  49. display: block;
  50. position: absolute;
  51. top: -36px;
  52. left: -100px;
  53. background: white;
  54. width: 50px;
  55. height: 155px;
  56. opacity: 20%;
  57. transform: rotate(-45deg);
  58. }
  59. .style-btn:hover:before {
  60. left: 160%;
  61. transition: all 1500ms cubic-bezier(0.3, 1, 0.2, 1);
  62. -webkit-transition: all 1500ms cubic-bezier(0.3, 1, 0.2, 1);
  63. }
  64. .el-pagination.is-background .btn-next.is-active,
  65. .el-pagination.is-background .btn-prev.is-active,
  66. .el-pagination.is-background .el-pager li.is-active {
  67. background: #06518b;
  68. }
  69. :root:root {
  70. --van-picker-option-font-size: 26px;
  71. }