/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img,
iframe,
object,
video {
  height: auto;
  max-width: 100%;
}

audio {
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

html,
body {
  height: 100%;
  width: 100%;
}

#root {
  height: 100%;
  width: 100%;
}
button{
  /*消除button的默认样式*/
  /*这种写法是对所有的button标签同时生效*/
  margin: 0px;
  padding: 0px;
  /*自定义边框*/
  border: 0px;
  /*消除默认点击蓝色边框效果*/
  outline: none;
  background: none;
}
/*去除a标签下划线*/
a {
	text-decoration: none;
}
/*去除未被访问的a标签的下划线*/
a:link {
	text-decoration: none;
}
/*去除已经被访问过的a标签的下划线*/
a:visited {
	text-decoration: none;
}
/*去除鼠标悬停时的a标签的下划线*/
a:hover {
	text-decoration: none;
}
/*去除正在点击的a标签的下划线（鼠标按下，尚未松开）*/
a:active {
	text-decoration: none;
}
/*去除获得焦点的a标签的下划线（被鼠标点击过）*/
a:focus {
	text-decoration: none;
}



.select {
  position: relative;
}

.select .input-inner {
  cursor: pointer;
}

.select .iconfont {
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%) rotateZ(0deg);
  transition: transform 0.3s;
  color:#C9CDD4;
}

.select .iconfont.down {
  transform: translateY(-50%) rotateZ(180deg);
}

.select .options-wrap {
  position: absolute;
  z-index: 1;
  top: 100%;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
  -webkit-transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.select .options-wrap.down {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.select .options-wrap .arrow {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
  top: -6px;
  left: 35px;
  margin-right: 3px;
  border-top-width: 0;
  border-bottom-color: #ebeef5;
}

.select .options-wrap .arrow::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  top: 1px;
  margin-left: -6px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

.select .options-wrap .options {
  padding: 6px 0;
}

.select .options-wrap .options .option {
  font-size: 14px;
  padding: 0 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #606266;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  cursor: pointer;
}

.select .options-wrap .options .option:hover {
  color: #7052FF;
  background-color: #f5f9ff;
}

.select .options-wrap .options .option.hover {
  color: #7052FF;
  background-color: #f5f9ff;
}

.select .options-wrap .options .option.selected {
  color: #7052FF;
  font-weight: bold;
}

.input-suffix .input-inner {
  padding-right: 30px;
}

.input-suffix .clear {
  font-size: 14px;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #ccc;
  opacity: 0.8;
}

.input-suffix .clear:hover {
  opacity: 1;
}

input,
textarea {
  color: #2475ff !important;
  text-shadow: 0 0 0 #333;
  -webkit-text-fill-color: transparent;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
  text-shadow: none;
  -webkit-text-fill-color: initial;
}

.input-inner {
  -webkit-appearance: none;
  background-color: #ffffff;
  background-image: none;
  border-radius: 2px;
  border: 1px solid #e3e3e3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  font-size: inherit;
  height: 32px;
  line-height: 32px;
  outline: none;
  padding: 0 12px;
  -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}

.input-inner::-ms-reveal {
  display: none;
}

.input-inner::-webkit-input-placeholder {
  color: #999;
}

.input-inner::-moz-placeholder {
  color: #999;
}

.input-inner::-ms-input-placeholder {
  color: #999;
}

.input-inner::placeholder {
  color: #999;
}

.input-inner:hover {
  border-color: #2475ff;
}

.input-inner:focus {
  outline: none;
  border-color: #2475ff;
}

.btn {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-color: #e3e3e3;
  color: #333333;
  -webkit-appearance: none;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  padding: 0;
  font-size: 18px;
  border-radius: 2px;
  list-style: none;
  width: 96px;
  height: 40px;
  font-size: 14px;
}

.btn.primary {
  font-size: 14px;
  color: #ffffff;
  background-color: #3662ec;
  border-color: #3662ec;
  width: 96px;
  height: 40px;
}
.btn.info {
  font-size: 14px;
  color: #1d2129;
  background-color: #ffffff;
  border-color: #ffffff;
  width: 96px;
  height: 40px;
}
.btn.primary:hover {
  background-color: #5091ff;
  color: #fff;
  border-color: #5091ff;
}

.btn.info:hover {
  opacity: 0.8;
}
.btn.is-plainNew {
  color: #2475ff;
  background-color: #ffffff;
  border-color: #2475ff;
}

.btn + .btn {
  margin-left: 10px;
}

.pointer {
  cursor: pointer;
}
