index.wxss 948 B

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