prompt.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .container {
  2. .logo {
  3. height: 400rpx;
  4. position: relative;
  5. >.logo-img {
  6. width: 200rpx;
  7. height: 200rpx;
  8. border-radius: 50%;
  9. position: absolute;
  10. bottom: 100rpx;
  11. left: 50%;
  12. transform: translateX(-50%);
  13. }
  14. >.info{
  15. width: 100%;
  16. height: 50rpx;
  17. text-align: center;
  18. letter-spacing: 3rpx;
  19. position: absolute;
  20. bottom: 10rpx;
  21. font-size: 22px;
  22. }
  23. }
  24. .desc{
  25. width: 90%;
  26. margin: 50rpx auto;
  27. .text-h{
  28. height: 100rpx;
  29. padding: 0 20rpx 20rpx 20rpx;
  30. }
  31. .text-f{
  32. padding: 0 50rpx;
  33. color: #999;
  34. font-size: 13px;
  35. position: relative;
  36. &::before{
  37. content: "";
  38. width: 6rpx;
  39. height: 6rpx;
  40. background-color: #999;
  41. position: absolute;
  42. top: 15rpx;
  43. left: 25rpx;
  44. border-radius: 50%;
  45. }
  46. }
  47. }
  48. .confirm{
  49. width: 80%;
  50. margin:100rpx auto ;
  51. >button{
  52. width: 100%;
  53. font-weight: 400;
  54. }
  55. }
  56. }