updateNickName.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* uni.scss */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. page {
  29. background: #fff;
  30. }
  31. .send-msg {
  32. border-radius: 30px;
  33. color: white;
  34. height: 30px;
  35. font-size: 14px;
  36. line-height: 30px;
  37. background: #e10a07;
  38. }
  39. .container {
  40. padding-top: 32rpx;
  41. position: relative;
  42. width: 100%;
  43. height: 100%;
  44. overflow: hidden;
  45. background: #fff;
  46. }
  47. .wrapper {
  48. position: relative;
  49. z-index: 90;
  50. background: #fff;
  51. padding-bottom: 20px;
  52. }
  53. .right-top-sign {
  54. position: absolute;
  55. top: 40px;
  56. right: -15px;
  57. z-index: 95;
  58. }
  59. .right-top-sign:before, .right-top-sign:after {
  60. display: block;
  61. content: "";
  62. width: 20px;
  63. height: 40px;
  64. background: linear-gradient(to left, #fa4dbe 0, #fbaa58 100%);
  65. }
  66. .right-top-sign:before {
  67. -webkit-transform: rotate(50deg);
  68. transform: rotate(50deg);
  69. border-radius: 0 50px 0 0;
  70. }
  71. .right-top-sign:after {
  72. position: absolute;
  73. right: -198px;
  74. top: 0;
  75. -webkit-transform: rotate(-50deg);
  76. transform: rotate(-50deg);
  77. border-radius: 50px 0 0 0;
  78. /* background: pink; */
  79. }
  80. .left-bottom-sign {
  81. position: absolute;
  82. left: -270px;
  83. bottom: -320px;
  84. /*border: 100upx solid #d0d1fd;*/
  85. border-radius: 50%;
  86. padding: 90px;
  87. }
  88. .welcome {
  89. position: relative;
  90. left: 30px;
  91. top: -55px;
  92. font-size: 28px;
  93. color: #555;
  94. text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
  95. }
  96. .input-content {
  97. padding: 0 20px;
  98. }
  99. .confirm-btn {
  100. width: 300px;
  101. height: 42px;
  102. line-height: 42px;
  103. border-radius: 30px;
  104. margin-top: 40px;
  105. background: #FF7F00;
  106. color: #fff;
  107. }
  108. .confirm-btn:after {
  109. border-radius: 60px;
  110. }
  111. .confirm-btn1 {
  112. width: 300px;
  113. height: 42px;
  114. line-height: 42px;
  115. border-radius: 30px;
  116. margin-top: 40px;
  117. background: whitesmoke;
  118. color: grey;
  119. }
  120. .confirm-btn1:after {
  121. border-radius: 60px;
  122. }
  123. .forget-section {
  124. text-align: center;
  125. margin-top: 40px;
  126. }
  127. .register-section {
  128. position: fixed;
  129. left: 0;
  130. bottom: 30px;
  131. width: 100%;
  132. text-align: center;
  133. }
  134. .register-section text {
  135. margin-left: 10px;
  136. }