setName.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. }
  19. .set-head text {
  20. font-size: 32rxp;
  21. color: #808080;
  22. margin-top: 50rpx;
  23. }
  24. .set-name,
  25. .set-phone {
  26. width: 100%;
  27. padding: 0 37rpx;
  28. box-sizing: border-box;
  29. display: flex;
  30. align-items: center;
  31. margin-top: 50rpx;
  32. }
  33. .set-name input,
  34. .set-phone input {
  35. width: 75%;
  36. height: 110rpx;
  37. background: #fff;
  38. border-radius: 20rpx;
  39. padding-left: 20rpx;
  40. box-sizing: border-box;
  41. }
  42. .set-name input {
  43. margin-left: 20rpx;
  44. }
  45. .set-phone input {
  46. margin-left: 55rpx;
  47. }
  48. .set-name text,
  49. .set-phone text {
  50. font-size: 36rpx;
  51. color: #424242;
  52. }
  53. .explain {
  54. width: 100%;
  55. padding: 0 37rpx;
  56. box-sizing: border-box;
  57. margin-top: 67rpx;
  58. color: #727272;
  59. font-size: 32rpx;
  60. line-height: 46rpx;
  61. }
  62. .preservation {
  63. position: absolute;
  64. left: 50%;
  65. transform: translate(-50%);
  66. bottom: 30rpx;
  67. width: 247rpx;
  68. height: 108rpx;
  69. text-align: center;
  70. line-height: 108rpx;
  71. background: #feb500;
  72. color: #fff;
  73. font-size: 44rpx;
  74. border-radius: 20rpx;
  75. }