setName.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* pages/setName/setName.wxss */
  2. .set {
  3. position: relative;
  4. width: 100%;
  5. height: 100%;
  6. background: #eaeaea;
  7. }
  8. .set-head {
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. padding: 50rpx 0 20rpx 0;
  13. }
  14. .set-head image {
  15. width: 348rpx;
  16. height: 348rpx;
  17. border-radius: 50%;
  18. background: red;
  19. }
  20. .set-head text {
  21. font-size: 32rxp;
  22. color: #808080;
  23. margin-top: 50rpx;
  24. }
  25. .set-name,
  26. .set-phone {
  27. width: 100%;
  28. padding: 0 37rpx;
  29. box-sizing: border-box;
  30. display: flex;
  31. align-items: center;
  32. margin-top: 50rpx;
  33. }
  34. .set-name input,
  35. .set-phone input {
  36. width: 75%;
  37. height: 110rpx;
  38. background: #fff;
  39. border-radius: 20rpx;
  40. padding-left: 20rpx;
  41. box-sizing: border-box;
  42. }
  43. .set-name input {
  44. margin-left: 20rpx;
  45. }
  46. .set-phone input {
  47. margin-left: 55rpx;
  48. }
  49. .set-name text,
  50. .set-phone text {
  51. font-size: 36rpx;
  52. color: #424242;
  53. }
  54. .explain {
  55. width: 100%;
  56. padding: 0 37rpx;
  57. box-sizing: border-box;
  58. margin-top: 67rpx;
  59. color: #727272;
  60. font-size: 32rpx;
  61. line-height: 46rpx;
  62. }
  63. .preservation {
  64. position: absolute;
  65. left: 50%;
  66. transform: translate(-50%);
  67. bottom: 30rpx;
  68. width: 247rpx;
  69. height: 108rpx;
  70. text-align: center;
  71. line-height: 108rpx;
  72. background: #feb500;
  73. color: #fff;
  74. font-size: 44rpx;
  75. border-radius: 20rpx;
  76. }