user.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* pages/user/user.wxss */
  2. page{
  3. background: #F4F7F9;
  4. }
  5. form{
  6. background: #fff;
  7. /* margin-top: 12px; */
  8. display: block;
  9. }
  10. form .item{
  11. border-bottom: 1px solid #F2F3F4;
  12. padding: 15px;
  13. position: relative;
  14. }
  15. form .item label{
  16. color: #222;
  17. display: inline-block;
  18. width: 60px;
  19. vertical-align: middle;
  20. text-align: right;
  21. }
  22. form .item input,form .item picker{
  23. display: inline-block;
  24. width: 70%;
  25. border: none;
  26. padding-left: 20px;
  27. vertical-align: middle;
  28. }
  29. form .item image{
  30. position: absolute;
  31. right: 12px;
  32. width: 16px;
  33. top:20px;
  34. }
  35. .content{
  36. background: #fff;
  37. margin-top: 12px;
  38. padding: 10px 12px;
  39. }
  40. .content .item{
  41. padding:10px 200rpx;
  42. position: relative;
  43. padding-right: 0;
  44. }
  45. .content .item image{
  46. width: 160rpx;
  47. height: 160rpx;
  48. position: absolute;
  49. left: 20rpx;
  50. top: 0;
  51. bottom: 0;
  52. margin: auto;
  53. }
  54. .content .title{
  55. color: #333;
  56. }
  57. .content .item text{
  58. color: #E85546;
  59. font-size: 24rpx;
  60. }
  61. .tips{
  62. color: #358BFF;
  63. margin-top: 36rpx;
  64. }
  65. .post{
  66. width: calc(100% - 24px);
  67. height:96rpx;
  68. background:rgba(53,139,255,1);
  69. border-radius:4px;
  70. color: #fff;
  71. line-height: 96rpx;
  72. margin: 20px auto;
  73. text-align: center;
  74. }
  75. .model{
  76. position: fixed;
  77. z-index: 9;
  78. background: rgba(0,0,0);
  79. width: 100%;
  80. height: 100vh;
  81. top: 0;
  82. left: 0;
  83. display: none;
  84. }
  85. .show{
  86. display: block;
  87. }
  88. .model image{
  89. width: 100%;
  90. position: absolute;
  91. top:0;
  92. left: 0;
  93. bottom: 0;
  94. right: 0;
  95. margin: auto;
  96. }
  97. form .xs image{
  98. position: static;
  99. width: 100px;
  100. margin-left: 30px;
  101. }
  102. form .xs label{
  103. vertical-align: top;
  104. }