/* 全局统一样式类名控制 */
@import url("class-define.css");

html {
  /* 标准字体大小可以，在移动端使用的rem适配的话会动态改变。 */
  font-size: 14px;
  /*  使用IE盒模型（个人取舍，我一般设置width是这是盒子的真实大小，包括padding和border） */
  box-sizing: border-box;
}

body {
  /* 有些背景默认为浅灰色，所以统一设置为纯白 */
  background: #f5f5f5;
  font-family: "Alibaba PuHuiTi 3.0";
  font-size: 14px;
  color: var(--textColor);
  font-style: normal;
  font-weight: normal;
  width: 100%;
  height: 100%;
}

/* 去除浏览器默认的margin和padding, 自行删减一些不必要的标签 */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dd,
ul,
ol,
th,
td,
button,
figure,
input,
textarea,
form,
pre,
blockquote,
figure {
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--textColor);
}

ol,
ul,
li {
  /* 去除自带的ugly样式。 */
  list-style: none;
}

/* 这些节点部分属性没有继承父节点样式，所有继承一下，并取消outline，外轮廓的效果 */
a,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  color: inherit;
  outline: none;
}

button,
input[type="submit"],
input[type="button"] {
  /* 可点击小手 */
  cursor: pointer;
}

/* 取消部分浏览器数字输入控件的操作按钮 apperance可以改变控件的外观。 */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

/**
  * 删除Firefox中的内边框和填充。
  */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * 让html5中的hidden在IE10中正确显示
  */

[hidden] {
  display: none;
}

/* IE11 禁用清除按钮（叉号） */
input::-ms-clear {
  display: none;
}

/* IE11 禁用显示密码按钮（小眼睛） */
input::-ms-reveal {
  display: none;
}

/* 针对IE11的CSS Hack */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  body {
    background: #f5f5f5;
    font-family: "Alibaba PuHuiTi";
    font-size: 14px;
    color: #4e5969;
  }

  a {
    cursor: pointer;
    text-decoration: none;
    color: #4e5969;
  }
}

textarea::placeholder {
  color: #C9CDD4;
}

img {
  /* object-fit: cover; */
}

textarea {
  resize: none !important;
}

.el-tabs__item.is-active {
  color: #125AAF !important;
}

.el-tabs__active-bar {
  background-color: #125AAF !important;
}

.is-top:hover {
  color: #125AAF !important;
}

.el-pager li.active {
  color: #125AAF !important;
}

.el-button--text {
  color: #125AAF !important;
}
.el-select-dropdown__item.selected {
  color: #125AAF !important;
}
.el-select .el-input.is-focus .el-input__inner {
  border-color: #125AAF !important;
}
.el-tag {
  background-color: #ECF3FE !important;
  color: #125AAF !important;
}
.el-message--success{
  background-color: #E7FAF2 !important; 
  color: #27B76D !important;
}
.el-tag--success {
  background-color: #E7FAF2 !important;
  color: #27B76D !important;
}
.el-date-table td.start-date span{
  background-color: #125AAF !important; 
}
.el-date-table td.end-date span{
  background-color: #125AAF !important; 
}
.el-time-panel__btn.confirm{
  color: #125AAF !important;
}

.el-date-range-picker__editor input:focus {
  border-color: #125AAF !important;
}
.el-select input:focus {
  border-color: #125AAF !important;
}
.el-range-editor.is-active:hover{
  border-color: #125AAF !important;
}
.active_btn {
  background-color: #125AAF !important; 
}
.payBtn{
  background-color: #125AAF !important; 
}
:root {
  --el-color-primary: #125AAF;
  /* 改变主色调为紫色 */
  --el-color-primary-light-3: #125AAF;
}
.el-tooltip__popper.is-dark {
  background: #494949 !important; /* 设置背景色 */
}