user.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. position: absolute;
  48. left: 20rpx;
  49. top: 0;
  50. bottom: 0;
  51. margin: auto;
  52. }
  53. .content .title{
  54. color: #333;
  55. }
  56. .content .item text{
  57. color: #E85546;
  58. font-size: 24rpx;
  59. }
  60. .tips{
  61. color: #358BFF;
  62. margin-top: 36rpx;
  63. }
  64. .post{
  65. width: calc(100% - 24px);
  66. height:96rpx;
  67. background:rgba(53,139,255,1);
  68. border-radius:4px;
  69. color: #fff;
  70. line-height: 96rpx;
  71. margin: 20px auto;
  72. text-align: center;
  73. }
  74. .model{
  75. position: fixed;
  76. z-index: 9;
  77. background: rgba(0,0,0);
  78. width: 100%;
  79. height: 100vh;
  80. top: 0;
  81. left: 0;
  82. display: none;
  83. }
  84. .show{
  85. display: block;
  86. }
  87. .model image{
  88. width: 100%;
  89. position: absolute;
  90. top:0;
  91. left: 0;
  92. bottom: 0;
  93. right: 0;
  94. margin: auto;
  95. }
  96. form .xs image{
  97. position: static;
  98. width: 100px;
  99. margin-left: 30px;
  100. }
  101. form .xs label{
  102. vertical-align: top;
  103. }