12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- page {
- background: #f8f8f8;
- padding-top: 16rpx;
- }
- .row {
- display: flex;
- -webkit-box-align: center;
- align-items: center;
- position: relative;
- padding: 0 30rpx;
- height: 110rpx;
- background: #fff;
- }
- .row .tit {
- flex-shrink: 0;
- width: 120rpx;
- }
- .row .input,.row .tit {
- font-size: 30rpx;
- color: #303133;
- }
- .row .input {
- -webkit-box-flex: 1;
- flex: 1;
- }
- .row .iconlocation {
- font-size: 36rpx;
- color: #909399;
- }
- .add-btn {
- display: flex;
- -webkit-box-align: center;
- align-items: center;
- -webkit-box-pack: center;
- justify-content: center;
- width: 690rpx;
- height: 80rpx;
- margin: 60rpx auto;
- font-size: 32rpx;
- color: #fff;
- background-color: #5dbc7c;
- border-radius: 10rpx;
- }
|