大空间消毒机
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.

69 lines
1.2 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
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. .van-cell {
  21. .van-field__control {
  22. text-align: center;
  23. }
  24. background: none;
  25. }
  26. .key_wrap {
  27. z-index: 999;
  28. }
  29. // #txtPassword {
  30. // -webkit-text-security: disc;
  31. // }
  32. ::-webkit-scrollbar {
  33. width: 0;
  34. height: 0;
  35. }
  36. // btn hover样式
  37. .style-btn {
  38. position: relative;
  39. overflow: hidden;
  40. }
  41. .style-btn:before {
  42. content: '';
  43. display: block;
  44. position: absolute;
  45. top: -36px;
  46. left: -100px;
  47. background: white;
  48. width: 50px;
  49. height: 155px;
  50. opacity: 20%;
  51. transform: rotate(-45deg);
  52. }
  53. .style-btn:hover:before {
  54. left: 160%;
  55. transition: all 1500ms cubic-bezier(0.3, 1, 0.2, 1);
  56. -webkit-transition: all 1500ms cubic-bezier(0.3, 1, 0.2, 1);
  57. }
  58. .el-pagination.is-background .btn-next.is-active,
  59. .el-pagination.is-background .btn-prev.is-active,
  60. .el-pagination.is-background .el-pager li.is-active {
  61. background: #06518b;
  62. }