/*登录界面样式*/
.clearfix {
  overflow: hidden;
  _zoom: 1;
}

.login-wrapper {
  display: flex;
  flex-direction: column;
}
.login-header {
  min-height: 69px;
}
.login-header-title {
  line-height: 69px;
  margin-left: 20px;
}
.login-header-title h1 {
  font-size: 30px;
  color: #fff;
}

.login-body {
  top: 69px;
  min-height: calc(100vh - 138px);
  overflow-y: auto;
  display: flex;
  align-items: center;
}

.login-footer {
  min-height: 69px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

@-webkit-keyframes login-password {
  0% {
    opacity: 0; /*初始状态 透明度为0*/
  }
  50% {
    opacity: 0.5; /*中间状态 透明度为0*/
  }
  100% {
    opacity: 1; /*结尾状态 透明度为1*/
  }
}
.login-password {
  -webkit-animation-name: login-password; /*动画名称*/
  -webkit-animation-duration: 0.5s; /*动画持续时间*/
  -webkit-animation-iteration-count: 1; /*动画次数*/
  -webkit-animation-delay: 0s; /*延迟时间*/
}
@-webkit-keyframes login-phone {
  0% {
    opacity: 0; /*初始状态 透明度为0*/
  }
  50% {
    opacity: 0.5; /*中间状态 透明度为0*/
  }
  100% {
    opacity: 1; /*结尾状态 透明度为1*/
  }
}
.login-phone {
  -webkit-animation-name: login-phone; /*动画名称*/
  -webkit-animation-duration: 0.5s; /*动画持续时间*/
  -webkit-animation-iteration-count: 1; /*动画次数*/
  -webkit-animation-delay: 0s; /*延迟时间*/
}
@-webkit-keyframes login-type-password {
  0% {
    opacity: 0; /*初始状态 透明度为0*/
  }
  50% {
    opacity: 0.5; /*中间状态 透明度为0*/
  }
  100% {
    opacity: 1; /*结尾状态 透明度为1*/
  }
}
.login-type-password {
  -webkit-animation-name: login-type-password; /*动画名称*/
  -webkit-animation-duration: 1s; /*动画持续时间*/
  -webkit-animation-iteration-count: 1; /*动画次数*/
  -webkit-animation-delay: 0s; /*延迟时间*/
}
@-webkit-keyframes login-type-qrcode {
  0% {
    opacity: 0; /*初始状态 透明度为0*/
  }
  50% {
    opacity: 0.5; /*中间状态 透明度为0*/
  }
  100% {
    opacity: 1; /*结尾状态 透明度为1*/
  }
}
.login-type-qrcode {
  -webkit-animation-name: login-type-qrcode; /*动画名称*/
  -webkit-animation-duration: 1s; /*动画持续时间*/
  -webkit-animation-iteration-count: 1; /*动画次数*/
  -webkit-animation-delay: 0s; /*延迟时间*/
}
.login-wrapper {
  background-image: url(../../static/images/loginbackground.png);
  /*background-size: cover;*/
  /*background-position:center;*/
  /*background-repeat: repeat;*/
  /*background:none\9 ;*/
  /*overflow: hidden;*/
  /*background-size:100%;*/
  background-size: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /*关键*/
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.password-login-container {
  margin-top: 30px;
}

.login-container {
  /*width: 800px;*/
  /*height: 450px;*/
  margin: auto;
  width: 800px;
  height: 520px;
  border-style: none;
  border-color: unset;
  box-shadow: rgba(245, 96, 87, 0.27) 0px 2px 20px 0px;
  border-radius: 10px;
  font-size: 14px;
  padding: 0px;
  text-align: center;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  background: rgb(253, 245, 244);
}
.register-container {
  /*display: unset;*/
  /*z-index: 2;*/
  width: 60%;
  min-height: calc(100vh - 138px);
  /*min-height: 100%;*/
  margin: auto;
}

.head {
  background-image: url(/static/images/header.png);
  width: 100%;
  height: 60px;
  background-repeat: repeat;
  background-size: cover;
  background: none\9;
  overflow: hidden;
}

.bottom {
  /*position: fixed;*/
  /*bottom: 0;*/

  width: 100%;
  height: 60px;
  background-repeat: repeat;
  background-size: cover;
  background: none\9;
  overflow: hidden;
}
.login-form .el-form-item {
  padding-left: 20px !important;
}
/deep/ .el-form-item__content {
  line-height: 44px !important;
}

.el-menu--horizontal > .el-menu-item.is-active {
  border-bottom: 2px solid #409eff;
  color: #e22000;
  font-weight: bold;
  font-size: 16px;
}

.login-container-left {
  float: left;
  width: 50%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.login-container-cover {
  text-decoration-color: rgb(253 132 112);
  background-size: 450px 450px;
  height: 100%;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.login-container-cover h1 {
  margin-top: 20px;
  text-align: center;
}

.login-container-right {
  width: 50%;
  float: left;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #fff;
  height: 100%;
  padding: 20px;
}

.login-type-tips {
  margin: 13px 10px 13px 0;
  background: #ffd1c9;
  color: rgba(255, 106, 80, 1);
  font-family: SourceHanSansSC;
  float: left;
  font-size: 14px;
  line-height: 24px;
  padding: 0 10px;
  border-radius: 5px;
  position: relative;
}

.login-type-tips:after {
  position: absolute;
  right: -7px;
  bottom: 7px;
  content: " ";
  border: 5px solid rgba(0, 0, 0, 0);
  border-left: 7px solid #ffd1c9;
  border-right: 0;
}

.login-type-qrcode,
.login-type-password {
  float: right;
  display: flex;
  align-items: center;
}

.login-type-icon img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.login-button {
  outline: none;
  border: none;
  /*width:280px;*/
  /*height: 40px;*/
  /*border-radius: 38%;*/
  /*background-position:center;*/
  /*margin-left: 40px;*/
  /*text-align: center;*/
  width: 93%;
  height: 49px;
  border-radius: 43px;
  background: url(../../static/images/loginbutton.png) no-repeat;
  box-shadow: 0px 1px 10px 0px #57d5d7;
  color: white;
  font-weight: bold;
  background-blend-mode: lighten;
  background-size: cover;
}

@keyframes fadeOutBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*登录界面样式如上*/

/*使用这个修改了element-ui默认的主色,需要在页面中使用div将需要改变颜色的组件包裹*/
div {
  /*定义主色变量*/
  --mainbgc: #5ed5d9;
  /*定义鼠标悬浮的主颜色*/
  --mainbgcHover: #a4f0f5;
  /*定义鼠标激活的主颜色*/
  --mainbgcActive: #87ecf1;
}

.el-button {
  color: var(--mainbgc);
}

.el-button:focus {
  border-color: var(--mainbgc);
}

.el-button--primary {
  background: var(--mainbgc);
  border-color: var(--mainbgc);
  color: #fff;
}

.el-button--primary:focus {
  background: var(--mainbgcHover);
  border-color: transparent;
  color: #fff;
}

.el-button--primary:hover {
  background: var(--mainbgcHover);
  border-color: transparent;
  color: #fff;
}

.el-button--primary:active,
.el-button--primary.is-disabled,
.el-button--primary.is-disabled:focus,
.el-button--primary.is-disabled:active,
.el-button--primary.is-disabled:hover {
  background: var(--mainbgcActive);
  border-color: var(--mainbgcActive);
  color: #fff;
}

.el-button--text {
  color: var(--mainbgc);
}

.el-button--text:hover {
  color: var(--mainbgc);
}

.el-button--text:focus {
  color: var(--mainbgc);
}

.el-button--info {
  color: var(--mainbgc);
  border-color: var(--mainbgc);
  background-color: transparent;
}

.el-button--info:focus {
  color: var(--mainbgc);
  border-color: var(--mainbgcHover);
  background-color: #ecf5ff;
}

.el-button--info:hover {
  color: var(--mainbgc);
  border-color: var(--mainbgcHover);
  background-color: #ecf5ff;
}

.el-button--info:active {
  color: var(--mainbgc);
  border-color: var(--mainbgcActive);
  background-color: #ecf5ff;
}

.el-pagination.is-background .el-pager li:not(.disabled).active {
  background-color: #3ec4db;
  color: #fff;
}

.el-radio__input.is-checked .el-radio__inner {
  background: var(--mainbgc);
  border-color: var(--mainbgc);
}

.el-radio__input.is-checked + .el-radio__label {
  color: var(--mainbgc);
}

.el-input__inner:focus {
  border-color: var(--mainbgc);
}

.el-select {
  border-color: var(--mainbgc);
}

.el-select__tags-text {
  border-color: var(--mainbgc);
}

/*设置input输入框的提示文字为局做上角显示*/
label.el-form-item__label {
  float: left;
  font-weight: bold;
}

/*删除组件原本的在前面的*号提示*/
label.el-form-item__label:before {
  content: "" !important;
  margin-right: 0;
}

/*在组件的后面添加*号*/
.el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label:after {
  content: "*";
  color: #f56c6c;
  margin-left: 4px;
}

li.el-select-dropdown__item.selected {
  color: var(--mainbgc);
  border: none;
}

/*在表格中的内容中加上\n就可以实现内容换行显示*/
.el-table .cell {
  /*这是重点。文本换行*/
  white-space: pre-wrap;
}

.el-form--inline .el-form-item {
  /*margin-right: 100px*/
}

/*设置只显示文本值的输入框,不显示边框那些*/
.text-input > .el-input__inner {
  border: 0px solid transparent;
  background-color: transparent;
  color: #606266;
  cursor: default;
  padding: 0 10px !important;
  border-radius: 0px;
}

/*设置只显示文本值的输入框,不显示边框那些*/
.text-input .el-input__prefix,
.text-input .el-input__suffix {
  display: none;
}

.el-textarea.is-disabled .el-textarea__inner {
  background-color: transparent;
  border: none;
  cursor: narmol;
  font-size: 14px;
}

.el-textarea__inner:focus {
  border-color: var(--mainbgc);
}

.el-switch.is-checked .el-switch__core {
  border-color: var(--mainbgc);
  background-color: var(--mainbgc);
}

.el-switch__label.is-active {
  color: var(--mainbgc);
}

.el-input-number .el-input__inner {
  -webkit-appearance: none;
  text-align: left;
}

.el-dropdown-menu__item:focus,
.el-dropdown-menu__item:not(.is-disabled):hover {
  color: #5ed5d9;
  background-color: #ecf5ff;
}

.el-upload-dragger:hover,
.el-upload-dragger:focus,
.el-upload:focus .el-upload-dragger,
.el-upload-dragger:active {
  border: 1px dashed var(--mainbgc);
}

.el-cascader .el-input .el-input__inner:focus,
.el-cascader .el-input.is-focus .el-input__inner {
  border-color: var(--mainbgc);
}

.el-cascader-node.in-active-path,
.el-cascader-node.is-active,
.el-cascader-node.is-selectable.in-checked-path {
  color: var(--mainbgc);
  background-color: #ecf5ff;
}

.el-radio__inner:hover {
  border-color: var(--mainbgc);
}

.text-input .el-input.is-disabled,
.text-input > .el-input__inner {
  background-color: transparent !important;
  color: #606266 !important;
  cursor: text !important;
}

/*分页插件的颜色*/
.el-pagination.is-background .el-pager li:not(.disabled):hover {
  color: #3ec4db;
}

.el-pagination.is-background .el-pager li:not(.disabled).active {
  color: #fff;
}

.el-pagination.is-background .btn-next:hover,
.el-pagination.is-background .btn-prev:hover {
  color: #3ec4db;
}

.el-select .el-input__inner:focus,
.el-range-editor.is-active,
.el-range-editor.is-active:hover,
.el-select .el-input.is-focus .el-input__inner {
  border-color: var(--mainbgc);
}

/*去掉el-tabs聚焦出现的光圈*/
.el-tabs__item:focus.is-active.is-focus:not(:active) {
  box-shadow: none;
}

.el-date-table td.current:not(.disabled) span {
  background-color: var(--mainbgc);
}

.el-date-table td span:hover {
  color: var(--mainbgc);
}

.el-date-table td.today span {
  color: var(--mainbgc);
}

/*改变页面文字被选中的颜色*/
::selection {
  color: #fff;
  background: var(--mainbgc);
}

.el-textarea.is-disabled .el-textarea__inner {
  background-color: transparent;
  border-color: transparent;
  color: #606266;
  cursor: text;
}

/*日期组件的颜色*/
.el-month-table td.current:not(.disabled) .cell,
.el-date-picker__header-label.active,
.el-date-picker__header-label:hover,
.el-month-table td.today .cell,
.el-month-table td .cell:hover,
.el-icon-d-arrow-left:hover,
.el-icon-d-arrow-right:hover,
.el-icon-arrow-right:hover,
.el-icon-arrow-left:hover,
.el-date-table td.available:hover,
.el-year-table td .cell:hover,
.el-year-table td.current:not(.disabled) .cell,
.el-year-table td.today .cell {
  color: var(--mainbgc);
}

/*去掉文字按钮的聚焦和按下的边框*/
.el-button--text:active,
.el-button--text:focus {
  border-color: transparent;
}

/*多选择按钮的样式*/
.el-checkbox__input.is-checked + .el-checkbox__label {
  color: var(--mainbgc);
}

.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
  background-color: var(--mainbgc);
  border-color: var(--mainbgc);
}

.el-checkbox__inner:hover,
.el-checkbox__inner:focus,
.el-checkbox__input.is-focus .el-checkbox__inner {
  border-color: var(--mainbgc);
}

/*input提示文字颜色*/
input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #cccccc;
}

input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #cccccc;
}

input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #cccccc;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #cccccc;
}

/*el-tabs样式*/
.el-tabs__item.is-active,
.el-tabs__item:hover {
  color: var(--mainbgc);
}

.el-tabs__active-bar {
  background-color: var(--mainbgc);
}

.el-cascader__suggestion-item.is-checked,
.el-icon-check:before {
  color: var(--mainbgc);
}

/*修改表格内容隐藏提示框的宽度*/
.el-tooltip__popper {
  max-width: 50vw;
  font-size: 18px;
  line-height: 30px;
}

/*设置滚动条层级*/
.el-scrollbar__bar {
  z-index: 10;
}
/*首页*/

/*首页内容*/
.home-panel-wrapper-left {
  /*height: 500px;*/
  margin-top: 20px;
  margin-left: 20px;
}
.home-panel-wrapper-right {
  /*height: 327px;*/
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.component-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 1px 2px 5px #ccc;
}

.container-head {
  border-bottom: 1px solid #f5f5f5;
  /*padding:  20px;*/
  padding: 10px;
  line-height: 20px;
  overflow: auto;
}
.container-head-title {
  display: block;
  vertical-align: middle;
}
.component--head-title-text {
  /*position: absolute;*/
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding-left: 5px;
  color: white;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 20px;
  text-decoration: none;
  font-family: SourceHanSansSC;
  font-weight: 700;
}

.container-head-title .subpage-head-text {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  font-family: SourceHanSansSC;
  font-weight: 700;
  font-size: 22px;
  margin-left: 5px;
  color: rgb(8, 39, 44);
  font-style: normal;
  letter-spacing: 0px;
  line-height: 28px;
  text-decoration: none;
}

.container-body {
  padding: 10px;
}
.container-foot {
  border-top: 1px solid #dddedf;
  padding: 15px 20px;
  height: 70px;
}

/*标题头图标*/
/*.container-head-title i.icon-tongxunlu{*/
/*  color: #588ef3;*/
/*  font-size: 30px;*/
/*}*/

::-webkit-scrollbar {
  /*这是竖向滚动条的宽度。如果是横向滚动条则设置height*/
  width: min(10px, 1vw);
  height: min(10px, 1vh);
}
/*滚动条滑块的样式*/
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: rgb(190, 190, 190);
  box-shadow: rgb(229, 229, 229) 0 0 4px inset;
}
/*滚动条轨道样式*/
::-webkit-scrollbar-track {
  background: transparent;
}
/*!*head返回按钮*!*/
/*.container-head-title button{*/
/*  border: 1px solid #3ec4db;*/
/*  border-radius: 3px;*/
/*  width: 80px;*/
/*  height: 40px;*/
/*  text-align: center;*/
/*  background-image: url('/static/images/fourbackground.png');*/
/*}*/

.head-title-more {
  cursor: pointer;
  float: right;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}

.head-title-more:hover,
.head-title-more:active {
  color: #eae9e9;
}

/*head返回按钮*/
.container-head-title button:hover {
  background-color: #caced5;
}

/*head返回按钮*/
.container-head-title button:active {
  background-color: #8c939d;
}
.back-button {
  color: #3ec4db;
  float: right;
}

.container-head-title > .head-icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 20px;
}

.tips-icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 15px;
}

.tips-icon-list {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  color: rgb(8, 39, 44);
  font-size: 15px;
}

/*自留地里面页面的头部*/
.home-panel-wrapper {
  margin: 20px;
}
.PrivatePlotComponrnrtList-head {
  width: 100%;
  height: 100%;
  border-color: rgb(187, 187, 187);
  border-width: 0px;
  border-style: solid;
  border-radius: 10px;
  font-size: 14px;
  padding: 0px;
  text-align: center;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  background: rgb(255, 255, 255);
}

.back-paper-button {
  color: rgb(140 147 250);
  font-weight: bold;
  float: right;
  outline: none;
}

.eims-button--text {
  border-color: transparent;
  color: #409eff;
  background: transparent;
  /*强制按钮文字不换行显示,否则导致button不同行显示时出现错乱的问题*/
  white-space: nowrap;
}

.eims-button--text:hover {
  color: #268cfc;
}

.eims-button--text:active {
  color: #62a9f6;
}

#vue-tinymce,
.tox-tinymce {
  height: 100% !important;
}

.tox-tinymce-aux {
  z-index: 3000 !important;
}
.empty-data {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.empty-data > .empty-data-image {
  width: 100%;
  flex: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  align-self: center;
  max-width: 300px;
}
.empty-data > .empty-data-text {
  font-size: 18px;
  color: #999999;
  padding-bottom: 20px;
}

@keyframes forum-list-front-animation {
  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(0deg);
  }
}

@keyframes forum-list-back-animation {
  50% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

/*给el-table设置一个 row-class-name="vertical-align-top"  即可以设置文字对齐方式为top*/
.vertical-align-top > .el-table__cell {
  vertical-align: top;
}

/*发布 按钮的样式*/
.publish-operation-btn {
  float: right;
  font-size: 15px;
  padding: 0 10px;
  outline: none;
  border: none;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 0px 20px 0px #efebe7;
  font-weight: bold;
  margin: 0 10px;
}

.container-head-title > * {
  line-height: 22px;
}

.contain-btn-title {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.contain-btn-title > .container-head-title {
  width: 100%;
}

.contain-btn-title > .container-head-title > i {
  vertical-align: top;
  line-height: 44px;
}

.contain-btn-title > .container-head-title > span {
  vertical-align: top;
  line-height: 44px;
}

.contain-btn-title > .container-head-title > div {
  vertical-align: top;
  height: 44px;
}

.contain-btn-title > .container-head-title > button {
  height: 44px;
}

/*修改个人中心卡片的间隙padding*/
.el-card__body,
.el-main {
  padding: 10px;
}

/*操作按钮对齐的面板*/
.eims-btn-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/*操作按钮对齐的子元素*/
.eims-btn-panel > * {
  margin-right: 4px;
}

.toolTipStyle {
  font-size: 12px;
}
