edit.wxss 903 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* pages/mine/wxml/edit/edit.wxss */
  2. #container {
  3. background: #ececec;
  4. width: 100%;
  5. box-sizing: border-box;
  6. }
  7. .section{
  8. width: 100%;
  9. background: #fff;
  10. /* display: flex; */
  11. padding: 20rpx;
  12. box-sizing: border-box;
  13. font-size: 30rpx;
  14. border-bottom: 1px solid #ececec;
  15. line-height: 50rpx;
  16. }
  17. .section view,.section input{
  18. float: left;
  19. }
  20. .section switch{
  21. float: right;
  22. }
  23. .section::after{
  24. clear:both;
  25. content: "";
  26. display: block
  27. }
  28. .picker-view {
  29. width: 100%;
  30. display: flex;
  31. z-index:12;
  32. background-color: #fff;
  33. flex-direction: column;
  34. justify-content: center;
  35. align-items: center;
  36. position: fixed;
  37. bottom: 0rpx;
  38. left: 0rpx;
  39. height: 40vh;
  40. }
  41. .picker-item {
  42. line-height: 70rpx;
  43. margin-left: 5rpx;
  44. margin-right: 5rpx;
  45. text-align: center;
  46. }
  47. .body-view{
  48. border: none;
  49. margin: 20rpx 0;
  50. font-size: 26rpx;
  51. padding: 10rpx;
  52. }
  53. .picker{
  54. color: #777;
  55. }