12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* pages/create-order/index.wxss */
- .sg-tabs {
- background: white;
- }
- .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-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: 0;
- }
- .sg-custom {
- min-width: 200rpx;
- }
|