parkroadgate.scss 855 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. page {
  2. background-color: #f6f6ff;
  3. }
  4. .gate {
  5. padding: 0 30rpx;
  6. &-icon {
  7. width: 440rpx;
  8. height: 440rpx;
  9. margin: 100rpx auto 30rpx;
  10. }
  11. &-text {
  12. text-align: center;
  13. color: #008cff;
  14. font-size: 50rpx;
  15. &-opened {
  16. color: #52BD4E;
  17. font-size: 50rpx;
  18. text-align: center;
  19. }
  20. }
  21. &-number {
  22. margin: 100rpx 0 40rpx;
  23. }
  24. &-tips {
  25. color: #999999;
  26. font-size: 28rpx;
  27. text-align: center;
  28. text {
  29. color: #ff9c3d;
  30. }
  31. }
  32. &-cancel {
  33. margin-top: 100rpx;
  34. }
  35. }
  36. .rotate-image {
  37. -webkit-animation: spin 3s linear infinite;
  38. animation: spin 3s linear infinite;
  39. }
  40. /* 设置动画 */
  41. @-webkit-keyframes spin {
  42. 100% {
  43. -webkit-transform: rotate(360deg);
  44. transform: rotate(360deg);
  45. }
  46. }
  47. @keyframes spin {
  48. 100% {
  49. -webkit-transform: rotate(360deg);
  50. transform: rotate(360deg);
  51. }
  52. }