.e-btn {
    padding: 0.25em 0.5em;
    cursor: pointer;
    font-size: inherit;
    line-height: 1em;
    vertical-align: middle;
    user-select: none;
    border-width: 1px;
    border-style: solid;
    outline-style: none;
    -moz-user-select: none;
    /*火狐*/
    -webkit-user-select: none;
    /*webkit浏览器*/
    -ms-user-select: none;
    /*IE10*/
    -khtml-user-select: none;
    /*早期浏览器*/
}

.e-btn {
    color: inherit;
    border-color: #DDDDDD;
    background-color: transparent;
}

.e-btn:focus,
.e-btn:hover {
    border-color: #CCEEFF;
    background-color: #EEFFFF;
}

.e-btn[disabled] {
    color: #CCCCCC;
    cursor: not-allowed;
    border-color: #DDDDDD;
    background-color: #FFFFFF;
}
.button-group>button {
    margin-left: 0.25em;
    margin-right: 0.25em;
}

.button-group>button:first-child {
    margin-left: 0;
}

.button-group>button:last-child {
    margin-right: 0;
}
.e-input {
    font-size: inherit;
    font-family: inherit;
    padding: 0.25em;
    width: 16em;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    outline-style: none;
}

.e-input {
    border-color: #CCCCCC;
}

.e-input:focus {
    border-color: #6699FF;
}
.e-checkbox-group>label {
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.e-checkbox-group>label:first-child {
    margin-left: 0;
}

.e-checkbox-group>label:last-child {
    margin-right: 0;
}
.e-select {
    font-size: inherit;
    font-family: inherit;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    width: 16em;
    box-sizing: border-box;
}
.e-mock-select {
    display: inline-block;
    width: 16em;
}

.e-mock-select-box {
    border-color: #CCCCCC;
}

.e-mock-select-box.s-empty {
    color: rgb(117, 117, 117);
}

.e-mock-option-panel {
    border-color: #CCCCCC;
    background-color: #FFFFFF;
}

.e-mock-option:hover {
    background-color: #F8F8F8;
}

.e-mock-search-input {
    border-width: 1px;
    border-style: solid;
    outline-style: none;
    border-color: #CCCCCC;
}

.e-mock-search-input:focus {
    border-color: #6699FF;
}
@-webkit-keyframes rotateLoading {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotateLoading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loading {
    box-sizing: border-box;
    border: 0.5em solid #666;
    border-top-color: #FFF;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    display: inline-block;
    -webkit-animation-name: rotateLoading;
    animation-name: rotateLoading;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 0.00001ms;
    animation-delay: 0.00001ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}
.e-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #168DD6;
    color: #fff;
}
.pagination button {
  border-radius: 3px;
  background-color: #FFF;
  border: 1px solid;
  line-height: 2em;
  min-width: 2em;
  cursor: pointer;
  margin-left: 0.25em;
}
.pagination button:first-child {
  margin-left: 0;
}
.pagination button.active {
  color: #FFF;
  background-color: #00A25E;
  border: 1px solid #00A25E;
}
.pagination button.point-left span {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  margin-bottom: 0.1em;
  border-right: 0.4em dashed;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
}
.pagination button.point-right span {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  margin-bottom: 0.1em;
  border-left: 0.4em dashed;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
}
.pagination button.point-left:before,
.pagination button.point-right:before {
  content: "";
}
.e-table {
    border-collapse: collapse;
    table-layout: fixed;
}

.e-table-hcell {
    font-weight: bold;
}

.e-table-cell,
.e-table-hcell {
    padding: 0.25em 0.5em;
}

.e-table-row:hover {
    background-color: #F8F8F8;
}

.e-table-cell,
.e-table-hcell {
    border-width: 1px;
    border-style: solid;
    border-color: #EEEEEE;
}
.popup-root {
  position: fixed;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}

.popup-content {
  display: inline-block;
  text-align: left;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.popup-content.active {
  transform: translateY(8em);
}
.msg-success,
.msg-warning,
.msg-error {
  min-width: 20em;
  max-width: 32em;
  padding: 0.75em 1em;
  border-radius: 0.25em;
  border-width: 1px;
  border-style: solid;
}

.msg-success {
  color: #67c23a;
  background-color: #f0f9eb;
  border-color: #e1f3d8;
}

.msg-warning {
  color: #e6a23c;
  background-color: #fdf6ec;
  border-color: #faecd8;
}

.msg-error {
  color: #f56c6c;
  background-color: #fef0f0;
  border-color: #fde2e2;
}
.date-time-picker .year-month-area {
  overflow: auto;
  line-height: 3em;
  border-top: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
}

.date-time-picker .year-area, .date-time-picker .month-area {
  display: inline-block;
  width: 50%;
  overflow: hidden;
}

.date-time-picker .year-area {
  float: left;
}

.date-time-picker .month-area {
  float: right;
}

.date-time-picker .year-wrapper, .date-time-picker .month-wrapper {
  display: inline-block;
  box-sizing: border-box;
  margin-left: -6em;
  padding-left: 6em;
  width: 100%;
  float: left;
}

.date-time-picker .icon-prev {
  display: inline-block;
  box-sizing: border-box;
  width: 3em;
  float: left;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.date-time-picker .icon-next {
  display: inline-block;
  box-sizing: border-box;
  width: 3em;
  float: right;
  cursor: pointer;
}

.date-time-picker .head-cell {
  width: 0;
  border: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  padding: 0.5em 1.5em;
}

.date-time-picker .cell {
  width: 0;
  border: 1px solid #000;
  text-align: center;
  vertical-align: middle;
  padding: 0.5em 1em;
}

.date-time-picker .icon-prev:hover, .date-time-picker .icon-next:hover, .date-time-picker .cell:hover {
  background-color: #ddd;
}

.date-time-picker .date-decorator {
  font-size: smaller;
}

.date-time-picker .footer-area {
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  padding: 0.5em;
}

.date-time-picker .time-label {
  line-height: 2em;
  height: 2em;
  margin-right: 1em;
  display: inline-block;
}

.date-time-picker .time-spliter {
  box-sizing: border-box;
  float: left;
  display: inline-block;
  height: 2em;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-left: none;
  border-right: none;
}

.date-time-picker .text-box {
  box-sizing: border-box;
  float: left;
  width: 2.4em;
  height: 2em;
  font-size: inherit;
  text-align: center;
  padding: 0.5em;
  border: 1px solid;
}
.date-time-picker .text-box:focus {
  outline: none;
}

.date-time-picker .action-area {
  line-height: 2em;
}

.date-time-picker .btn-clear, .date-time-picker .btn-save {
  font-size: inherit;
  vertical-align: middle;
}

.date-time-picker .btn-save[disabled] {
  cursor: not-allowed;
}

.dock-right-page {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    background-color: white;
    z-index: 1;
    border-left: 1px solid #ebeef5;
    width: 80%;

    @media all and (max-width: 1000px) {
        width: 800px;
    }

    @media all and (max-width: 800px) {
        width: 100%;
    }

    transition-property: transform;
    transition-duration: 0.25s;
    transition-timing-function: linear;
    transform: translateX(100%);
}

.dock-right-page.active {
    transform: translateX(0);
}

.e-radio-label {
    margin-left: 1em;
}

.e-radio-label:first-child {
    margin-left: 0;
}

.rich-text img {
    max-width: 100%;
}
.theme-default {
  color: #333333;
}
.theme-default .e-header-menu-item:hover {
  background-color: #cce8ff;
}

