/*
 * @Author: 天吾
 * @Date: 2019-01-23 16:29:55
 * @Last Modified by: 天吾
 * @Last Modified time: 2019-04-27 19:55:52
 */
/*
    size 统一用  sm base lg  表示,  对于不能满足的情况, 仿照衣服尺寸加上 x(EXTRA) 比如  font-size-xlg 表示特大
*/
.gd-input {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  overflow: hidden;
  height: 45px;
  position: relative;
  line-height: 1.2;
}
.gd-input--focus {
  border-color: #6C788C;
}
.gd-input > * {
  flex-shrink: 0;
}
.gd-input__inner {
  background-color: inherit;
  flex-shrink: 1;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: none;
  font-size: inherit;
  padding: 0;
}
.gd-input > * + * {
  margin-left: 14px;
}
.gd-input__label {
  color: inherit;
  font-weight: 500;
  flex: 0 0 auto;
  min-width: 36px;
}
.gd-input input:-webkit-autofill,
.gd-input textarea:-webkit-autofill,
.gd-input select:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
.gd-input input[type=text]:focus,
.gd-input input[type=password]:focus,
.gd-input textarea:focus {
  box-shadow: 0 0 0 1000px inset inset;
}
