123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .Page.UserInfo {
  2. background: #fff;
  3. height: 100vh;
  4. width: 100%;
  5. > scroll-view {
  6. width: 100%;
  7. height: 100%;
  8. .PageContent {
  9. position: relative;
  10. overflow: hidden;
  11. min-height: calc(100vh - 100px);
  12. z-index: 1;
  13. padding-bottom: 100px;
  14. > text {
  15. font-size: 34px;
  16. font-weight: bold;
  17. color: #333;
  18. display: block;
  19. text-indent: 40px;
  20. margin-top: 30px;
  21. }
  22. > .flex-h {
  23. padding: 20px 40px;
  24. border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  25. margin-top: 10px;
  26. align-items: center;
  27. > view {
  28. > .Icon {
  29. width: 92px;
  30. height: 92px;
  31. position: relative;
  32. overflow: hidden;
  33. border-radius: 100%;
  34. background: #eee;
  35. > image {
  36. width: 100%;
  37. height: 100%;
  38. }
  39. }
  40. > input {
  41. display: block;
  42. width: 100%;
  43. background: none;
  44. font-size: 26px;
  45. line-height: 40px;
  46. height: 40px;
  47. }
  48. > textarea {
  49. font-size: 26px;
  50. display: block;
  51. width: 100%;
  52. }
  53. > text {
  54. display: block;
  55. width: 100%;
  56. background: none;
  57. font-size: 26px;
  58. line-height: 40px;
  59. height: 40px;
  60. }
  61. }
  62. > text {
  63. font-size: 30px;
  64. }
  65. }
  66. }
  67. .Btn {
  68. padding: 0 40px;
  69. position: relative;
  70. overflow: hidden;
  71. z-index: 2;
  72. margin-top: -60px;
  73. margin-bottom: 60px;
  74. // padding: 0 40px;
  75. // position: absolute;
  76. // // box-sizing: border-box;
  77. // width: 100vw;
  78. // left: 0;
  79. // bottom: 20px;
  80. // z-index: 2;
  81. // margin-top: 20px;
  82. display: flex;
  83. justify-content: space-between;
  84. > text {
  85. display: block;
  86. text-align: center;
  87. font-size: 32px;
  88. line-height: 92px;
  89. background: #193c83;
  90. color: #fff;
  91. font-weight: bold;
  92. border-radius: 92px;
  93. width: 320px;
  94. }
  95. text:first-child {
  96. border: 2px solid #193C83;
  97. background: #fff;
  98. color: #193c83;
  99. }
  100. }
  101. }
  102. }