1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* pages/addressAdd/addressAdd.wxss */
- .addressadd-content {
- width: 100%;
- height: 100%;
- background-color: #f7f7f7;
- }
- .form {
- width: 100%;
- min-height: 100rpx;
- margin-top: 20rpx;
- background-color: #fff;
- }
- .form-item {
- width: 100%;
- height: 100rpx;
- }
- .label {
- width: 150rpx;
- height: 100%;
- font-size: 26rpx;
- font-weight: 400;
- color: #333;
- justify-content: flex-start;
- text-indent: 30rpx;
- }
- .label-placeholder {
- color: #999999;
- }
- .actions {
- width: 550rpx;
- height: 100%;
- }
- .my-picker {
- width: 550rpx;
- height: 100%;
- }
- .my-picker .picker-item {
- width: 550rpx;
- height: 100rpx;
- justify-content: flex-end;
- }
- .picker-text {
- margin-right: 14rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: #333;
- }
- .address-detail {
- height: 212rpx;
- }
- .inputtext {
- margin: 0 auto;
- width: 690rpx;
- height: 170rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: #333;
- }
- .user-input {
- margin: 0 auto;
- width: 690rpx;
- height: 100%;
- font-size: 26rpx;
- font-weight: 400;
- color: #333;
- }
- .confirm-btn {
- width: 690rpx;
- height: 80rpx;
- border-radius: 10rpx;
- position:fixed;
- bottom: 80rpx;
- left: 4%;
- }
|