index.wxss 793 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* pages/create-order/index.wxss */
  2. .sg-tabs {
  3. background: white;
  4. }
  5. .sg-tab {
  6. width: 50%;
  7. box-sizing: border-box;
  8. text-align: center;
  9. }
  10. .sg-tab:first-child {
  11. border-right: 1px solid #ebedf0;
  12. }
  13. .sg-form-item {
  14. display: flex;
  15. width: 100%;
  16. box-sizing: border-box;
  17. }
  18. .sg-form-item .sg-label {
  19. padding-right: 30rpx;
  20. min-width: 150rpx;
  21. }
  22. .sg-form-item .sg-input {
  23. flex-grow: 1;
  24. text-align: right;
  25. }
  26. .sg-order-box {
  27. background: white;
  28. }
  29. .sg-submit-box {
  30. justify-content: center;
  31. background: white;
  32. }
  33. .sg-device-list .sg-item {
  34. background: white;
  35. align-items: center;
  36. }
  37. .sg-device-list .sg-item .sg-left {
  38. display: flex;
  39. height: 80rpx;
  40. }
  41. .sg-submit-box .sg-action {
  42. width: 50%;
  43. }
  44. .sg-submit-box.sg-fix-bottom {
  45. z-index: 1;
  46. }
  47. .sg-btns .sg-btn {
  48. width: 50%;
  49. }