index.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. view {
  2. box-sizing: border-box;
  3. }
  4. .container {
  5. background: #F7F8FB;
  6. min-height: 100vh;
  7. .outerBox{
  8. padding: 42rpx 30rpx;
  9. // position: relative;
  10. // z-index: 0;
  11. .upBox{
  12. display: flex;
  13. justify-content: center;
  14. .upIcon{
  15. height: 124rpx;
  16. width: 124rpx;
  17. border-radius: 50%;
  18. border: 2rpx solid #fff;
  19. // position: relative;
  20. // z-index: 0;
  21. }
  22. .upIcon1{
  23. height: 124rpx;
  24. // position: relative;
  25. // z-index: 0;
  26. }
  27. }
  28. .label{
  29. font-size: 32rpx;
  30. font-family: SourceHanSansCN, SourceHanSansCN;
  31. font-weight: bold;
  32. color: #333333;
  33. margin-top: 36rpx;
  34. margin-bottom: 24rpx;
  35. }
  36. .editBox{
  37. background: #FFFFFF;
  38. border-radius: 32rpx;
  39. padding: 0 24rpx;
  40. .item{
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. height: 110rpx;
  45. border-bottom: 1rpx solid #E6E7E8;
  46. .left{
  47. font-size: 28rpx;
  48. font-family: SourceHanSansCN, SourceHanSansCN;
  49. font-weight: 500;
  50. color: #333333;
  51. }
  52. .right{
  53. font-size: 28rpx;
  54. font-family: SourceHanSansCN, SourceHanSansCN;
  55. font-weight: 500;
  56. color: #333333;
  57. display: flex;
  58. align-items: center;
  59. input{
  60. // background: red;
  61. text-align: right;
  62. }
  63. .editIcon{
  64. height: 24rpx;
  65. margin-left: 24rpx;
  66. }
  67. }
  68. }
  69. .item:last-child{
  70. border: none;
  71. }
  72. }
  73. }
  74. }
  75. .btnBox{
  76. display: flex;
  77. flex-direction: column;
  78. align-items: center;
  79. // margin-top: 500rpx;
  80. position: fixed;
  81. width: 100%;
  82. bottom: 108rpx;
  83. display: flex;
  84. justify-content: center;
  85. // background: red;
  86. .btn{
  87. width: 670rpx;
  88. height: 96rpx;
  89. background: linear-gradient(132deg, #0298FF 0%, #017AFF 100%);
  90. box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(0,122,255,0.2);
  91. border-radius: 54rpx;
  92. display: flex;
  93. align-items: center;
  94. justify-content: center;
  95. }
  96. .b1{
  97. font-size: 32rpx;
  98. font-family: SourceHanSansCN, SourceHanSansCN;
  99. font-weight: bold;
  100. color: #FFFFFF;
  101. margin-bottom: 24rpx;
  102. }
  103. .b2{
  104. font-size: 32rpx;
  105. font-family: SourceHanSansCN, SourceHanSansCN;
  106. font-weight: 500;
  107. color: #666666;
  108. border: 2rpx solid #999999;
  109. background: none;
  110. box-shadow:none;
  111. }
  112. }
  113. ::v-deep button{
  114. // height: 124rpx!important;
  115. // width: 124rpx!important;
  116. // border-radius: 50%!important;
  117. // border: 2rpx solid #fff!important;
  118. padding: 0!important;
  119. position: relative!important;
  120. z-index: 0!important;
  121. }
  122. ::v-deep button::after{
  123. // position: relative!important;
  124. z-index: 0!important;
  125. border: none!important;
  126. }
  127. ::v-deep .u-loading-page{
  128. position: absolute!important;
  129. width: 100vw;
  130. height: 100vh;
  131. z-index: 9999!important;
  132. background: red;
  133. }