register.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /**index.wxss**/
  2. page {
  3. /* background: #f3f3f3; */
  4. background:#F4F2F2;
  5. }
  6. .container{
  7. padding-top:20rpx;
  8. padding-bottom:80rpx;
  9. }
  10. view{
  11. font-size: 28rpx;
  12. }
  13. .edit-btn{
  14. width: 686rpx;
  15. height: 80rpx;
  16. background: #09AFFF;
  17. border-radius: 200rpx;
  18. line-height: 80rpx;
  19. /* position: fixed;
  20. left:28rpx;
  21. right:28rpx;
  22. bottom:94rpx; */
  23. color: #fff;
  24. text-align: center;
  25. margin:94rpx 28rpx 0;
  26. }
  27. .title{
  28. color: #323233;
  29. height:40rpx;
  30. line-height: 40rpx;
  31. font-weight: bold;
  32. padding:0 32rpx;
  33. margin:40rpx 0 16rpx;
  34. }
  35. .tips{
  36. color: #969799;
  37. line-height: 32rpx;
  38. font-size:24rpx;
  39. line-height: 32rpx;
  40. padding:0 32rpx;
  41. margin-bottom:16rpx;
  42. }
  43. .common-module{
  44. width: 750rpx;
  45. background: #FFFFFF;
  46. padding:0 32rpx;
  47. box-sizing: border-box;
  48. }
  49. .input-block{
  50. height: 88rpx;
  51. display: flex;
  52. align-items: center;
  53. border-bottom:1rpx solid #EBEDF0;
  54. }
  55. .input-label{
  56. line-height: 88rpx;
  57. color: #646566;
  58. width:200rpx;
  59. }
  60. .input-value{
  61. flex:1;
  62. padding-left:20rpx;
  63. height: 88rpx;
  64. line-height: 88rpx;
  65. }
  66. .input-placeholder{
  67. color: #C8C9CC;
  68. }
  69. .select-block{
  70. height: 88rpx;
  71. display: flex;
  72. align-items: center;
  73. border-bottom:1rpx solid #EBEDF0;
  74. }
  75. .no-border{
  76. border-bottom:none;
  77. }
  78. .select-label{
  79. line-height: 88rpx;
  80. color: #646566;
  81. width:200rpx;
  82. }
  83. .select-value{
  84. flex:1;
  85. padding-left:20rpx;
  86. height: 88rpx;
  87. line-height: 88rpx;
  88. }
  89. .select-value.default-value{
  90. color: #C8C9CC;
  91. }
  92. .special-tips{
  93. height: 48rpx;
  94. line-height: 32rpx;
  95. color: #969799;
  96. font-size: 24rpx;
  97. padding:12rpx 20rpx 0 32rpx;
  98. }