index.acss 660 B

12345678910111213141516171819202122232425262728293031
  1. .healthy-card-component-auth {
  2. height: 100%;
  3. width: 100%;
  4. position: relative;
  5. }
  6. .healthy-card-component-auth .auth-page-bg {
  7. left: 0;
  8. top: 0;
  9. width: 100%;
  10. height: 100%;
  11. z-index: 1;
  12. position: absolute;
  13. }
  14. .healthy-card-component-auth .healthy-card-auth-button {
  15. height: 80rpx;
  16. width: 560rpx;
  17. text-align: center;
  18. line-height: 80rpx;
  19. font-size: 36rpx;
  20. color: #fff;
  21. border-radius: 16rpx;
  22. position: fixed;
  23. left: 50%;
  24. bottom: 100rpx;
  25. z-index: 2;
  26. transform: translate3d(-50%, 0, 0);
  27. background: linear-gradient(to right, #1869F9, #1E89FB);
  28. }
  29. .healthy-card-component-auth .healthy-card-auth-button:active {
  30. opacity: 0.8;
  31. }