index.wxss 912 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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-tab {
  10. width: 50%;
  11. box-sizing: border-box;
  12. text-align: center;
  13. }
  14. .sg-tab:first-child {
  15. border-right: 1px solid #ebedf0;
  16. }
  17. .sg-form-item {
  18. display: flex;
  19. width: 100%;
  20. box-sizing: border-box;
  21. }
  22. .sg-form-item .sg-label {
  23. padding-right: 30rpx;
  24. min-width: 150rpx;
  25. }
  26. .sg-form-item .sg-input {
  27. flex-grow: 1;
  28. text-align: right;
  29. }
  30. .sg-order-box {
  31. background: white;
  32. margin-top: 85rpx;
  33. }
  34. .sg-device-box{
  35. margin-top: 85rpx;
  36. }
  37. .sg-submit-box {
  38. justify-content: center;
  39. background: white;
  40. }
  41. .sg-device-list .sg-item {
  42. background: white;
  43. align-items: center;
  44. }
  45. .sg-device-list .sg-item .sg-left {
  46. display: flex;
  47. height: 80rpx;
  48. }
  49. .sg-submit-box .sg-action {
  50. width: 50%;
  51. }
  52. .sg-submit-box.sg-fix-bottom {
  53. z-index: 1;
  54. }
  55. .sg-btns .sg-btn {
  56. width: 50%;
  57. }