/* 初始化 */
[v-cloak] {
  display: none;
}

div,
body,
html,
img,
span,
input,
textarea,
button,
template,
li,
ul {
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

#app {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.el-icon-loading {
  font-size: 2rem !important;
  line-height: 1.5 !important;
}

.el-loading-text {
  font-size: 1.1rem !important;
}


/* 隐藏滚动条 */
::-webkit-scrollbar {
  width: 0 !important;
}

::-webkit-scrollbar {
  width: 0 !important;
  height: 0;
}



/* 修改element-ui默认样式 */
.el-input {
  padding: 1px 0;
  height: 100% !important;
}

.birth .el-input {
  width: calc(100% - 5em) !important;
  padding-right: 1em !important;
}

.el-radio__input.is-checked .el-radio__inner {
  border-color: #D60028 !important;
  background: #D60028 !important;
}

.el-date-table td.today span,
.el-time-panel__btn.confirm,
.el-radio__input.is-checked+.el-radio__label {
  color: #D60028 !important;
}

.el-input__inner {
  border: none !important;
  height: 100% !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.el-input__prefix {
  width: 0 !important;
  font-size: 0 !important;
}

.el-dropdown {
  width: 5em;
  height: 100%;
}

.el-button {
  padding: 0 !important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.el-button--primary {
  background-color: #D60028 !important;
  border-color: #D60028 !important;
}

.el-message {
  min-width: 100% !important;
}

.el-message-box {
  width: 90% !important;
  max-width: 420px !important;
}

.el-button.is-round {
  padding: 8px !important;
  border-radius: 3px !important;
}

.mint-indicator-wrapper{
  z-index: 99999;
}


/* 悬浮按钮 */
.float_box {
  width: 5rem;
  position: fixed;
  z-index: 9;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
}

.float_box .float_list {
  width: 100%;
  text-align: center;
  padding: .5rem 0;
  border-bottom: 1px solid #eee;
}

.float_box .float_list:last-child {
  border-bottom: none;
}

.float_box .float_list:hover {
  background-color: rgba(214, 0, 40, .8);
  color: #fff;
  cursor: pointer;
}