123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* 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-submit-box .sg-action {
- width: 50%;
- }
- .sg-submit-box.sg-fix-bottom {
- z-index: 1;
- }
- .sg-btns .sg-btn {
- width: 50%;
- }
|