add.wxss 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* pages/mine/add/add.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. justify-content: space-between;
  49. border: none;
  50. margin: 20rpx 0;
  51. font-size: 26rpx;
  52. padding: 10rpx;
  53. }
  54. .picker{
  55. color: #777;
  56. }