prompt.wxss 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .container .logo {
  2. height: 400rpx;
  3. position: relative;
  4. }
  5. .container .logo > .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. .container .logo > .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. .container .desc {
  24. width: 90%;
  25. margin: 50rpx auto;
  26. }
  27. .container .desc .text-h {
  28. height: 100rpx;
  29. padding: 0 20rpx 20rpx 20rpx;
  30. }
  31. .container .desc .text-f {
  32. padding: 0 50rpx;
  33. color: #999;
  34. font-size: 13px;
  35. position: relative;
  36. }
  37. .container .desc .text-f::before {
  38. content: "";
  39. width: 6rpx;
  40. height: 6rpx;
  41. background-color: #999;
  42. position: absolute;
  43. top: 15rpx;
  44. left: 25rpx;
  45. border-radius: 50%;
  46. }
  47. .container .confirm {
  48. width: 80%;
  49. margin: 100rpx auto;
  50. }
  51. .container .confirm > button {
  52. width: 100%;
  53. font-weight: 400;
  54. background-color: #1296db;
  55. }