index.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. view {
  2. box-sizing: border-box;
  3. }
  4. .container {
  5. // padding: 30rpx;
  6. // padding: 30rpx;
  7. // background: #F7F8FB;
  8. background: #fff;
  9. min-height: 100vh;
  10. }
  11. .parmasBox{
  12. margin-top: 40rpx;
  13. padding: 0 30rpx;
  14. .titleBox{
  15. background: #F0F1F4;
  16. background: linear-gradient(90deg,#F0F1F4,#fff);
  17. height: 62rpx;
  18. width: 60%;
  19. border-radius: 32rpx 0rpx 0rpx 0rpx;
  20. font-size: 32rpx;
  21. font-family: SourceHanSansCN, SourceHanSansCN;
  22. font-weight: bold;
  23. color: #333333;
  24. display: flex;
  25. align-items: center;
  26. padding-left: 32rpx;
  27. position: relative;
  28. .starIcon{
  29. width: 24rpx;
  30. height: 24rpx;
  31. position: absolute;
  32. right: 150rpx;
  33. top: 0;
  34. }
  35. }
  36. .inputBox{
  37. width: 100%;
  38. min-height: 452rpx;
  39. background: #F0F1F4;
  40. border-radius: 0rpx 32rpx 32rpx 32rpx;
  41. padding: 40rpx 32rpx;
  42. font-size: 30rpx;
  43. font-family: PingFang-SC, PingFang-SC;
  44. font-weight: 500;
  45. // color: #CCCCCC;
  46. .selAndTileBox{
  47. display: flex;
  48. align-items: center;
  49. justify-content: space-between;
  50. .selBtn{
  51. width: 28%;
  52. height: 108rpx;
  53. background: #FFFFFF;
  54. border-radius: 20rpx;
  55. font-size: 30rpx;
  56. font-family: PingFang-SC, PingFang-SC;
  57. font-weight: 500;
  58. color: #333333;
  59. display: flex;
  60. align-items: center;
  61. justify-content: center;
  62. }
  63. }
  64. .nickname{
  65. height: 108rpx;
  66. background: #FFFFFF;
  67. border-radius: 20rpx;
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. padding: 0 24rpx;
  72. width: 100%;
  73. .nackI{
  74. }
  75. .arrIcon{
  76. width: 12rpx;
  77. height: 20rpx;
  78. }
  79. }
  80. }
  81. }
  82. ::v-deep .u-popup__content{
  83. border-radius: 20rpx 20rpx 0rpx 0rpx!important;
  84. }
  85. ::v-deep .u-picker__view__column__item{
  86. // color: #007AFF!important;
  87. }
  88. .otherBox{
  89. margin-top: 24rpx;
  90. display: flex;
  91. flex-wrap: wrap;
  92. justify-content: space-between;
  93. // background: red;
  94. .item{
  95. height: 108rpx;
  96. background: #FFFFFF;
  97. border-radius: 20rpx;
  98. display: flex;
  99. align-items: center;
  100. justify-content: space-between;
  101. padding: 0 24rpx;
  102. width: 45%;
  103. margin-bottom: 24rpx;
  104. .nackI{
  105. }
  106. .arrIcon{
  107. width: 12rpx;
  108. height: 20rpx;
  109. }
  110. }
  111. .item:nth-child(3),.item:nth-child(4){
  112. margin-bottom: 0rpx;
  113. }
  114. }
  115. .btnBox{
  116. height: 176rpx;
  117. background: #FFFFFF;
  118. // background:red;
  119. box-shadow: 0rpx -2rpx 20rpx 0rpx rgba(0,0,0,0.05);
  120. border-radius: 32rpx 32rpx 0rpx 0rpx;
  121. position: fixed;
  122. bottom: 0;
  123. width: 100%;
  124. padding-left: 30rpx;
  125. padding-right: 30rpx;
  126. padding-top: 32rpx;
  127. // z-index: 9999999999999999999999999999999;
  128. .btn{
  129. height: 96rpx;
  130. background: linear-gradient(132deg, #0298FF 0%, #017AFF 100%);
  131. box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(0,122,255,0.2);
  132. border-radius: 54rpx;
  133. display: flex;
  134. justify-content: center;
  135. align-items: center;
  136. font-size: 32rpx;
  137. font-family: SourceHanSansCN, SourceHanSansCN;
  138. font-weight: bold;
  139. color: #FFFFFF;
  140. }
  141. }