verify.wxss 756 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* pages/verify/verify.wxss */
  2. .border_writh {
  3. width: 100%;
  4. display: flex;
  5. height: 100vh;
  6. flex-direction: column;
  7. align-items: center;
  8. }
  9. .buthexiao {
  10. width: 622rpx;
  11. height: 74rpx;
  12. background-color: rgba(0, 0, 0, 0);
  13. bottom: 52rpx;
  14. position: fixed;
  15. border: 1px solid #FF874E;
  16. border-radius: 37rpx;
  17. color: #FF874E;
  18. line-height: 74rpx;
  19. }
  20. .sao {
  21. position: fixed;
  22. width: 100%;
  23. margin-top: 160rpx;
  24. height: 1100rpx;
  25. display: flex;
  26. justify-content: center;
  27. }
  28. .saoline {
  29. width: 94%;
  30. height: 6rpx;
  31. position: relative;
  32. animation: animate 5s ease infinite;
  33. background-image: linear-gradient(to right, #ffffff00 , #ffffff,#ffffff00);
  34. }
  35. @keyframes animate {
  36. from {
  37. top: 0rpx;
  38. }
  39. to {
  40. top: 1100rpx;
  41. }
  42. }