@charset "UTF-8";
/*
为IE浏览器提供报错样式。
 */
.e-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
  text-align: justify;
  background-color: #969696;
  z-index: 99999; }

.e-container-main {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 560px;
  margin-left: -280px;
  border-radius: 0 0 6px 6px;
  border-top: 4px solid #1e80ff;
  z-index: 999;
  background-color: #fff; }

.e-container .head {
  padding: 10px 14px;
  color: #333;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #bbb; }

.e-container .head .close {
  float: right; }

.e-container .warning {
  display: inline-block;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  background-color: #d43434;
  vertical-align: text-top; }

.e-container .body {
  padding: 32px 32px 16px; }

.e-container .body .remind {
  color: #454545; }

.e-container .body .content {
  margin: 20px 0; }

.e-container a {
  color: #110820;
  text-decoration: underline; }

.e-container a:hover {
  color: #1e80ff; }

.e-container .footer {
  text-align: center; }

.e-container .footer .button {
  display: inline-block;
  width: 64px;
  height: 32px;
  line-height: 32px;
  border-radius: 6px;
  cursor: pointer;
  color: #f5f5f5;
  background-color: #1e80ff; }

.action {
  animation: clicksecond 0.2s 3 linear; }

@keyframes clickfirst {
  0% {
    transform: translateY(4px) rotate(0deg); }
  100% {
    transform: translateY(0) rotate(45deg); } }

@keyframes clicksecond {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(12deg); }
  50% {
    transform: translateY(-4px); }
  75% {
    transform: rotate(-12deg); }
  100% {
    transform: rotate(0deg); } }

/*- 公共组件 -*/
/* 简单的容器滚动条 */
.co-scrollbar {
  overflow: hidden;
  position: relative;
  z-index: auto;
  height: 100%;
  width: 100%; }

.co-scrollbar-container {
  width: 100%;
  overflow: auto;
  height: 100%;
  max-height: inherit; }

.co-scrollbar-content {
  min-width: 100%; }

/* 工具类 */
.flex {
  display: flex; }

.flex-row {
  flex-direction: row; }

.flex-col {
  flex-direction: column; }

.flex-wrap {
  flex-wrap: wrap; }

.w-1\/2 {
  width: 50%; }

/*# sourceMappingURL=base.css.map */