index.less 763 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .cip-search-input{
  2. width: 656px;
  3. height: 42px;
  4. display: inline-flex;
  5. &__wrapper{
  6. display: flex;
  7. align-items: center;
  8. }
  9. &__input{
  10. flex-grow: 2;
  11. background:none;
  12. outline:none;
  13. border:2px solid rgb(196, 199, 206);
  14. border-right: none;
  15. border-top-left-radius:4px;
  16. border-bottom-left-radius:4px;
  17. padding-left:20px;
  18. color: rgb(34,34,34);
  19. font-size: 16px;
  20. font-weight: bold;
  21. &:focus{
  22. border-color: @primary;
  23. }
  24. }
  25. &__button{
  26. flex-shrink: 0;
  27. width: 108px;
  28. border-top-left-radius:0 !important;
  29. border-bottom-left-radius:0 !important;
  30. font-size: 16px;
  31. font-weight: bold;
  32. height: 100%;
  33. }
  34. .el-button--primary{
  35. background: @primary;
  36. border: @primary;
  37. }
  38. }