css.scss 720 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .panel-container {
  2. margin-bottom: 20px;
  3. .item-head {
  4. font-size: 14px;
  5. font-family: Source Han Sans CN;
  6. color: #333333;
  7. line-height: 18px;
  8. margin: 10px 0;
  9. font-weight: 600;
  10. &::before {
  11. content: '';
  12. display: inline-block;
  13. width: 3px;
  14. height: 12px;
  15. background: #2a77f7;
  16. vertical-align: middle;
  17. margin-right: 5px;
  18. }
  19. }
  20. .el-input-number>>>.el-input__inner {
  21. text-align: left;
  22. }
  23. .op-box {
  24. width: 100%;
  25. box-sizing: border-box;
  26. padding: 10px;
  27. .item-close {
  28. cursor: pointer;
  29. &:hover {
  30. color: #f40;
  31. }
  32. }
  33. }
  34. }