.notCopy {
  user-select: none;
}
body,
html {
  margin: 0;
  padding: 0;
  background: #fafbfd;
}
textarea,
input {
  border: none;
  resize: none;
}
.item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}
.item.item20 {
  margin: 20px 0;
}
.label {
  font-size: 14px;
  color: #383838;
}
.input {
  border-radius: 6.67px;
  background: #ffffff;
  box-shadow: 0px 1.67px 3.33px rgba(0, 0, 0, 0.05);
  padding: 8px 12px;
  width: 50vw;
}
.input input,
textarea {
  width: 100%;
  outline: none;
}
.input textarea {
  width: 100%;
  height: 100%;
}
/* 修改input元素的placeholder样式 */
::-webkit-input-placeholder {
  color: #ababab;
  /* 修改placeholder文本的颜色 */
  /* 其他样式属性 */
}
:-moz-placeholder {
  color: #ababab;
  /* 修改placeholder文本的颜色 */
  /* 其他样式属性 */
}
::-moz-placeholder {
  color: #ababab;
  /* 修改placeholder文本的颜色 */
  /* 其他样式属性 */
}
:-ms-input-placeholder {
  color: #ababab;
  /* 修改placeholder文本的颜色 */
  /* 其他样式属性 */
}
img {
  max-width: 100%;
  display: block;
}
.add {
  width: 24px;
  cursor: pointer;
  flex-shrink: 0;
}
.flex {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.input.name {
  width: 150px;
}
.input.url {
  width: 300px;
}
.input.favicon {
  width: 67px;
  height: 67px;
  box-sizing: border-box;
  padding: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.input.logo {
  width: 179px;
  height: 89px;
  box-sizing: border-box;
  padding: 17px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.input.logo img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}
.help-block {
  color: #a6a6a6;
  font-size: 13px;
}
#app {
  position: relative;
}
.saveBtn {
  position: absolute;
  right: 10px;
  top: -10px;
  color: #ffffff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3.33px;
  background: #096dd9;
  cursor: pointer;
}
a {
  text-decoration: none;
}
.ask {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #096dd9;
  font-size: 14px;
  cursor: pointer;
}
.ask .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  color: #096dd9;
  font-weight: bold;
  border: 2px solid #096dd9;
}
.searchToolList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.searchToolList .toolItem {
  padding: 10px 18px;
  box-sizing: border-box;
  width: 155px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.searchToolList .toolItem .name {
  font-size: 14px;
  color: #383838;
  max-width: calc(100% - 20px);
}
.searchToolList .toolItem .btn {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url(images/vector.png) no-repeat;
  background-size: contain;
  cursor: pointer;
}
.searchToolsEditMb {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.searchToolsEditMb .whiteBox {
  background: #FFF;
  padding: 25px 30px;
  width: 80%;
  max-width: 440px;
  margin: 15vw auto 0;
  position: relative;
}
.searchToolsEditMb .whiteBox .title {
  text-align: center;
  font-size: 18px;
  color: #303133;
}
.searchToolsEditMb .whiteBox .close {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 20px;
  transform: rotate(45deg);
  cursor: pointer;
}
.searchToolsEditMb .whiteBox .form .select {
  position: relative;
  flex: 1;
}
.searchToolsEditMb .whiteBox .form .select .inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.searchToolsEditMb .whiteBox .form .select .inputs::after {
  content: "";
  width: 10px;
  height: 6px;
  background: url('images/selectIcon.png') no-repeat;
  background-size: contain;
}
.searchToolsEditMb .whiteBox .form .select .selectBox {
  position: absolute;
  width: 100%;
  left: 0;
  top: 48px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.searchToolsEditMb .whiteBox .form .select .selectBox div {
  font-size: 16px;
  color: #303133;
  padding: 5px;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s;
}
.searchToolsEditMb .whiteBox .form .select .selectBox div:hover {
  background: rgba(0, 0, 0, 0.035);
  transition: all 0.2s;
}
.searchToolsEditMb .whiteBox .form .item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.searchToolsEditMb .whiteBox .form .item .label {
  font-size: 16px;
  color: #303133;
  flex-shrink: 0;
}
.searchToolsEditMb .whiteBox .form .item .input {
  border-radius: 8px;
  background: #f5f7fa;
  padding: 10px 16px;
  box-sizing: border-box;
  width: 100%;
}
.searchToolsEditMb .whiteBox .form .item .input input {
  font-size: 16px;
  width: 98%;
  background: transparent;
}
.searchToolsEditMb .whiteBox .form .item .hint {
  color: #696b6f;
  font-size: 14px;
}
.searchToolsEditMb .whiteBox .btnGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.searchToolsEditMb .whiteBox .btnGroup .btn {
  width: 83px;
  height: 33px;
  border-radius: 4px;
  background: #096dd9;
  color: #FFF;
  text-align: center;
  line-height: 33px;
  font-size: 14px;
  cursor: pointer;
}
.searchToolsEditMb .whiteBox .btnGroup .btn.btn-danger {
  background: #ff6a57;
}
.resetDefaultIcon {
  color: #096dd9;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .input.mobile90 {
    width: 90%;
  }
  .mobilrMargin {
    margin-bottom: 5px;
  }
  .mobileNotFlex {
    display: block!important;
  }
  .label {
    margin-bottom: 5px;
  }
  .item {
    display: block;
    margin-bottom: 5px;
  }
  .item .input img {
    width: 33px;
  }
}
/*# sourceMappingURL=styles.css.map */