updateNickName.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. page {
  28. background: #fff;
  29. }
  30. .send-msg {
  31. border-radius: 30px;
  32. color: white;
  33. height: 30px;
  34. font-size: 14px;
  35. line-height: 30px;
  36. background: #e10a07;
  37. }
  38. .container {
  39. padding-top: 32rpx;
  40. position: relative;
  41. width: 100%;
  42. height: 100%;
  43. overflow: hidden;
  44. background: #fff;
  45. }
  46. .wrapper {
  47. position: relative;
  48. z-index: 90;
  49. background: #fff;
  50. padding-bottom: 20px;
  51. }
  52. .right-top-sign {
  53. position: absolute;
  54. top: 40px;
  55. right: -15px;
  56. z-index: 95;
  57. }
  58. .right-top-sign:before, .right-top-sign:after {
  59. display: block;
  60. content: "";
  61. width: 20px;
  62. height: 40px;
  63. background: linear-gradient(to left, #fa4dbe 0, #fbaa58 100%);
  64. }
  65. .right-top-sign:before {
  66. -webkit-transform: rotate(50deg);
  67. transform: rotate(50deg);
  68. border-radius: 0 50px 0 0;
  69. }
  70. .right-top-sign:after {
  71. position: absolute;
  72. right: -198px;
  73. top: 0;
  74. -webkit-transform: rotate(-50deg);
  75. transform: rotate(-50deg);
  76. border-radius: 50px 0 0 0;
  77. /* background: pink; */
  78. }
  79. .left-bottom-sign {
  80. position: absolute;
  81. left: -270px;
  82. bottom: -320px;
  83. /*border: 100upx solid #d0d1fd;*/
  84. border-radius: 50%;
  85. padding: 90px;
  86. }
  87. .welcome {
  88. position: relative;
  89. left: 30px;
  90. top: -55px;
  91. font-size: 28px;
  92. color: #555;
  93. text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
  94. }
  95. .input-content {
  96. padding: 0 20px;
  97. }
  98. .confirm-btn {
  99. width: 300px;
  100. height: 42px;
  101. line-height: 42px;
  102. border-radius: 30px;
  103. margin-top: 40px;
  104. background: #FFAF5E;
  105. color: #fff;
  106. }
  107. .confirm-btn:after {
  108. border-radius: 60px;
  109. }
  110. .confirm-btn1 {
  111. width: 300px;
  112. height: 42px;
  113. line-height: 42px;
  114. border-radius: 30px;
  115. margin-top: 40px;
  116. background: whitesmoke;
  117. color: grey;
  118. }
  119. .confirm-btn1:after {
  120. border-radius: 60px;
  121. }
  122. .forget-section {
  123. text-align: center;
  124. margin-top: 40px;
  125. }
  126. .register-section {
  127. position: fixed;
  128. left: 0;
  129. bottom: 30px;
  130. width: 100%;
  131. text-align: center;
  132. }
  133. .register-section text {
  134. margin-left: 10px;
  135. }