code-input.wxss 979 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* compone/code-input/code-input.wxss */
  2. .input {
  3. margin-top: 240rpx;
  4. padding: 0 60rpx;
  5. position: relative;
  6. display: flex;
  7. justify-content: space-between;
  8. }
  9. .input-item {
  10. position: relative;
  11. display: inline-block;
  12. width: 90rpx;
  13. height: 106rpx;
  14. background-color: #FFFFFF;
  15. border-radius: 12rpx;
  16. }
  17. /* .input-item:not(:first-child) {
  18. margin-left: 26.67rpx;
  19. } */
  20. .input-value {
  21. display: inline-block;
  22. position: absolute;
  23. left: 50%;
  24. top: 50%;
  25. transform: translate(-50%, -50%);
  26. font-size: 28rpx;
  27. }
  28. .input-password {
  29. position: absolute;
  30. left: -360rpx;
  31. top: 0;
  32. height: 90rpx;
  33. width: 880rpx;
  34. opacity: 0;
  35. }
  36. .focus {
  37. width: 2rpx;
  38. height: 50rpx;
  39. background-color: #333;
  40. position: absolute;
  41. left: 50%;
  42. top: 50%;
  43. transform: translate(-50%, -50%);
  44. }
  45. .show {
  46. display: block;
  47. animation: blink 1s linear infinite;
  48. }
  49. .hide {
  50. display: none;
  51. }
  52. @keyframes blink {
  53. 0%, 50% {
  54. opacity: 1;
  55. }
  56. 50.01%, to {
  57. opacity: 0;
  58. }
  59. }