1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* pages/mine/wxml/edit/edit.wxss */
- #container {
- background: #ececec;
- width: 100%;
- box-sizing: border-box;
- }
- .section{
- width: 100%;
- background: #fff;
- /* display: flex; */
- padding: 20rpx;
- box-sizing: border-box;
- font-size: 30rpx;
- border-bottom: 1px solid #ececec;
- line-height: 50rpx;
- }
- .section view,.section input{
- float: left;
- }
- .section switch{
- float: right;
- }
- .section::after{
- clear:both;
- content: "";
- display: block
- }
- .picker-view {
- width: 100%;
- display: flex;
- z-index:12;
- background-color: #fff;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: fixed;
- bottom: 0rpx;
- left: 0rpx;
- height: 40vh;
- }
- .picker-item {
- line-height: 70rpx;
- margin-left: 5rpx;
- margin-right: 5rpx;
- text-align: center;
- }
- .body-view{
- border: none;
- margin: 20rpx 0;
- font-size: 26rpx;
- padding: 10rpx;
- }
- .picker{
- color: #777;
- }
|