1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* pages/create-order/index.wxss */
- .sg-tabs {
- background: white;
- position: fixed;
- top: 0;
- width: 100%;
- z-index: 99;
- }
- .sg-tab {
- width: 50%;
- box-sizing: border-box;
- text-align: center;
- }
- .sg-tab:first-child {
- border-right: 1px solid #ebedf0;
- }
- .sg-form-item {
- display: flex;
- width: 100%;
- box-sizing: border-box;
- }
- .sg-form-item .sg-label {
- padding-right: 30rpx;
- min-width: 150rpx;
- }
- .sg-form-item .sg-input {
- flex-grow: 1;
- text-align: right;
- }
- .sg-order-box {
- background: white;
- margin-top: 85rpx;
- }
- .sg-device-box{
- margin-top: 85rpx;
- }
- .sg-submit-box {
- justify-content: center;
- background: white;
- }
- .sg-device-list .sg-item {
- background: white;
- align-items: center;
- }
- .sg-device-list .sg-item .sg-left {
- display: flex;
- height: 80rpx;
- }
- .sg-device-list .sg-item .sg-right {
- height: 80rpx;
- }
- .sg-submit-box .sg-action {
- width: 50%;
- }
- .sg-submit-box.sg-fix-bottom {
- z-index: 1;
- }
- .sg-rent-date {
- padding: 5rpx 50rpx;
- border-radius: 40rpx;
- border-color: #BFC7D1;
- }
|