bind-mobile-phone-number.css 965 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. page {
  2. background-color: #FFFFFF;
  3. }
  4. .wrap {
  5. width: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. padding: 0 24rpx;
  9. box-sizing: border-box;
  10. }
  11. .content-box {
  12. width: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. padding: 140rpx 0 160rpx;
  17. }
  18. .content-box>text {
  19. color: #202020;
  20. }
  21. .content-box>text:first-child {
  22. font-size: 36rpx;
  23. margin-bottom: 20rpx;
  24. }
  25. .content-box>text:last-child {
  26. font-size: 34rpx;
  27. }
  28. .btn-box {
  29. width: 100%;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. }
  34. .btn-box button {
  35. width: 100%;
  36. height: 90rpx;
  37. line-height: 90rpx;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. background-color: #E0E0E0;
  42. color: #919191;
  43. font-size: 34rpx;
  44. border-radius: 100rpx;
  45. margin-bottom: 34rpx;
  46. }
  47. .btn-box button:last-child {
  48. margin-bottom: 0;
  49. }
  50. .active {
  51. background-color: #F2501A !important;
  52. color: #fff !important;
  53. }