@charset "UTF-8";
/* 主题色 */
/* 文字颜色 */
/* 背景色 */
.gaia-btn {
  display: inline-block;
  box-sizing: content-box;
  padding: 0 20px;
  font-size: 14px;
  line-height: 32px;
  height: 30px;
  border: 1px solid #8393ac;
  cursor: pointer;
  text-decoration: none;
  color: #8393ac;
  border-radius: 3px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .gaia-btn:hover {
    background-color: #4a81ff;
    color: #ffffff;
    border-color: #4a81ff; }
  .gaia-btn:disabled {
    cursor: not-allowed; }

.gaia-btn, .gaia-btn:active, .gaia-btn:focus {
  outline: 0; }

.gaia-btn-small {
  font-size: 12px;
  line-height: 20px;
  height: 20px; }

.gaia-btn-large {
  font-size: 16px;
  line-height: 44px;
  height: 44px; }

.gaia-btn-primary {
  background-color: #4a81ff;
  border-color: #4a81ff;
  color: #ffffff; }
  .gaia-btn-primary:hover {
    opacity: .86; }

.gaia-btn-success {
  background-color: #21c286;
  border-color: #21c286;
  color: #ffffff; }
  .gaia-btn-success:hover {
    background-color: rgba(33, 194, 134, 0.86);
    border-color: rgba(33, 194, 134, 0.86); }

.gaia-btn-warning {
  background-color: #ec971f;
  border-color: #ec971f;
  color: #ffffff; }
  .gaia-btn-warning:hover {
    background-color: rgba(236, 151, 31, 0.86);
    border-color: rgba(236, 151, 31, 0.86); }

.gaia-btn-danger {
  background-color: #ff4d4f;
  border-color: #ff4d4f;
  color: #ffffff; }
  .gaia-btn-danger:hover {
    background-color: rgba(255, 77, 79, 0.86);
    border-color: rgba(255, 77, 79, 0.86); }

.gaia-btn-link {
  border-color: transparent;
  background-color: transparent; }
  .gaia-btn-link:hover {
    color: #4a81ff;
    border-color: transparent;
    background-color: transparent;
    opacity: .86; }

.gaia-btn-background-ghost {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff; }
  .gaia-btn-background-ghost:hover {
    background-color: #ffffff;
    color: #4a81ff;
    border-color: #ffffff; }

.gaia-btn-primary.gaia-btn-background-ghost {
  background-color: transparent;
  border-color: #4a81ff;
  color: #4a81ff; }
  .gaia-btn-primary.gaia-btn-background-ghost:hover {
    background-color: #4a81ff;
    color: #ffffff;
    border-color: #4a81ff; }

.gaia-btn-success.gaia-btn-background-ghost {
  background-color: transparent;
  border-color: #21c286;
  color: #21c286; }
  .gaia-btn-success.gaia-btn-background-ghost:hover {
    background-color: rgba(33, 194, 134, 0.86);
    border-color: rgba(33, 194, 134, 0.86);
    color: #ffffff; }

.gaia-btn-warning.gaia-btn-background-ghost {
  background-color: transparent;
  border-color: #ec971f;
  color: #ec971f; }
  .gaia-btn-warning.gaia-btn-background-ghost:hover {
    background-color: rgba(236, 151, 31, 0.86);
    border-color: rgba(236, 151, 31, 0.86);
    color: #ffffff; }

.gaia-btn-danger.gaia-btn-background-ghost {
  background-color: transparent;
  border-color: #ff4d4f;
  color: #ff4d4f; }
  .gaia-btn-danger.gaia-btn-background-ghost:hover {
    background-color: rgba(255, 77, 79, 0.86);
    border-color: rgba(255, 77, 79, 0.86);
    color: #ffffff; }

@media only screen and (max-width: 576px) {
  .gaia-btn {
    display: inline-block;
    padding: 0 16px;
    font-size: 14px;
    line-height: 25px;
    height: 25px; }
  .gaia-btn-small {
    font-size: 12px;
    line-height: 20px;
    height: 20px; }
  .gaia-btn-large {
    font-size: 14px;
    line-height: 30px;
    height: 30px; } }

@charset "UTF-8";
/* 主题色 */
/* 文字颜色 */
/* 背景色 */
.gaia-tabs {
  overflow: hidden;
  background-color: #ffffff; }

.gaia-tabs-bar {
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid #e6e8f4; }

.gaia-tabs-nav {
  display: -ms-flexbox;
  display: flex; }

.gaia-tabs-nav .gaia-tab {
  position: relative;
  -ms-flex: 1;
      flex: 1;
  text-align: center;
  cursor: pointer; }
  .gaia-tabs-nav .gaia-tab:hover, .gaia-tabs-nav .gaia-tab.gaia-tab-active {
    color: #4a81ff; }
  .gaia-tabs-nav .gaia-tab span {
    display: inline-block;
    height: 70px;
    line-height: 70px;
    padding: 0 16px; }
  .gaia-tabs-nav .gaia-tab::before {
    content: '';
    position: absolute;
    right: 0;
    top: 27px;
    height: 16px;
    width: 1px;
    background-color: #e6e8f4; }
  .gaia-tabs-nav .gaia-tab:last-child::before {
    display: none; }

.gaia-tabs-content {
  display: -ms-flexbox;
  display: flex;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  background-color: #ffffff; }

.gaia-tab-pane.gaia-tab-pane-inactive {
  height: 0;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none; }

.gaia-tab-pane {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  opacity: 1;
  transition: opacity .45s; }

.gaia-tabs-inkbar {
  background-color: #4a81ff;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }

.gaia-tabs-horizontal {
  display: -ms-flexbox;
  display: flex; }
  .gaia-tabs-horizontal .gaia-tabs-bar {
    float: left;
    z-index: 2;
    border-bottom: none;
    border-right: 1px solid #e6e8f4; }
  .gaia-tabs-horizontal .gaia-tabs-nav {
    display: block; }
  .gaia-tabs-horizontal .gaia-tabs-inkbar {
    position: absolute;
    left: 0;
    top: 0; }
  .gaia-tabs-horizontal .gaia-tabs-nav .gaia-tab::before {
    display: none; }
  .gaia-tabs-horizontal .gaia-tabs-content {
    display: block; }

@charset "UTF-8";
/* 主题色 */
/* 文字颜色 */
/* 背景色 */
.gaia-callapse {
  border: 1px solid #e6e8f4; }

.gaia-collapse-item {
  border-bottom: 1px solid #e6e8f4; }
  .gaia-collapse-item:last-child {
    border-bottom: none; }

.gaia-collapse-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  padding: 0 45px 0 20px;
  background-color: #f5f6ff;
  color: #24374e;
  cursor: pointer; }
  .gaia-collapse-header .gaia-collapse-arrow {
    position: absolute;
    right: 25px;
    top: 21px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    border-color: #999999;
    -ms-transform: rotate(135deg);
        transform: rotate(135deg);
    transition: transform .2s; }

.gaia-collapse-content {
  border-top: 1px solid #e6e8f4;
  background-color: #ffffff;
  transition: all .2s;
  overflow: hidden;
  padding: 0 20px; }

.gaia-collapse-item-active .gaia-collapse-header {
  font-weight: 500; }
  .gaia-collapse-item-active .gaia-collapse-header .gaia-collapse-arrow {
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }

@media only screen and (max-width: 576px) {
  .gaia-collapse-header {
    -ms-flex-pack: center;
        justify-content: center; } }

@charset "UTF-8";
.tooltip {
  position: relative;
  display: -ms-flexbox;
  display: flex; }
  .tooltip a {
    cursor: pointer; }
  .tooltip-content.left {
    position: absolute;
    box-sizing: border-box;
    background-color: #fff;
    border-bottom-color: #fff;
    /*为了给after伪元素自动继承*/
    color: #333333;
    font-size: 14px;
    padding: 8px 8px;
    width: auto;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    z-index: 1;
    right: 110%;
    top: -4px; }
    .tooltip-content.left::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      top: 30%;
      border-style: solid;
      border-width: 6px;
      border-color: transparent transparent #fff #fff;
      box-shadow: -2px 2px 3px 0 #eee; }
    .tooltip-content.left img {
      max-width: 150px;
      max-height: 150px; }
    .tooltip-content.left p {
      padding: 5px; }
    .tooltip-content.left::before {
      right: -4px;
      -ms-transform: rotate(225deg);
          transform: rotate(225deg); }
  .tooltip-content.left-top {
    position: absolute;
    box-sizing: border-box;
    background-color: #fff;
    border-bottom-color: #fff;
    /*为了给after伪元素自动继承*/
    color: #333333;
    font-size: 14px;
    padding: 8px 8px;
    width: auto;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    z-index: 1;
    right: 154%;
    top: -4px; }
    .tooltip-content.left-top::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      top: 30%;
      border-style: solid;
      border-width: 6px;
      border-color: transparent transparent #fff #fff;
      box-shadow: -2px 2px 3px 0 #eee; }
    .tooltip-content.left-top img {
      max-width: 150px;
      max-height: 150px; }
    .tooltip-content.left-top p {
      padding: 5px; }
    .tooltip-content.left-top::before {
      right: -4px;
      top: 4%;
      -ms-transform: rotate(225deg);
          transform: rotate(225deg); }
  .tooltip-content.right-top {
    position: absolute;
    box-sizing: border-box;
    background-color: #fff;
    border-bottom-color: #fff;
    /*为了给after伪元素自动继承*/
    color: #333333;
    font-size: 14px;
    padding: 8px 8px;
    width: auto;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    z-index: 1;
    left: calc(100% + 10px);
    top: -4px; }
    .tooltip-content.right-top::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      top: 30%;
      border-style: solid;
      border-width: 6px;
      border-color: transparent transparent #fff #fff;
      box-shadow: -2px 2px 3px 0 #eee; }
    .tooltip-content.right-top img {
      max-width: 150px;
      max-height: 150px; }
    .tooltip-content.right-top p {
      padding: 5px; }
    .tooltip-content.right-top::before {
      left: -4px;
      top: 10px;
      -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
  .tooltip-content.top-left {
    position: absolute;
    box-sizing: border-box;
    background-color: #fff;
    border-bottom-color: #fff;
    /*为了给after伪元素自动继承*/
    color: #333333;
    font-size: 14px;
    padding: 8px 8px;
    width: auto;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    z-index: 1;
    left: -5px;
    bottom: calc(100% + 15px); }
    .tooltip-content.top-left::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      top: 30%;
      border-style: solid;
      border-width: 6px;
      border-color: transparent transparent #fff #fff;
      box-shadow: -2px 2px 3px 0 #eee; }
    .tooltip-content.top-left img {
      max-width: 150px;
      max-height: 150px; }
    .tooltip-content.top-left p {
      padding: 5px; }
    .tooltip-content.top-left::before {
      top: calc(100% - 8px);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }
  .tooltip-content.right {
    position: absolute;
    box-sizing: border-box;
    background-color: #fff;
    border-bottom-color: #fff;
    /*为了给after伪元素自动继承*/
    color: #333333;
    font-size: 14px;
    padding: 8px 8px;
    width: auto;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    z-index: 1;
    left: calc(100% + 10px);
    top: -4px; }
    .tooltip-content.right::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      top: 30%;
      border-style: solid;
      border-width: 6px;
      border-color: transparent transparent #fff #fff;
      box-shadow: -2px 2px 3px 0 #eee; }
    .tooltip-content.right img {
      max-width: 150px;
      max-height: 150px; }
    .tooltip-content.right p {
      padding: 5px; }
    .tooltip-content.right::before {
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
      left: -4px; }
  .tooltip .qrcode {
    text-align: center; }
    .tooltip .qrcode img {
      width: 100px;
      height: 100px; }
    .tooltip .qrcode .qrcode-p {
      font-size: 10px !important; }

.gaia-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  filter: alpha(opacity=50); }

.gaia-modal-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  outline: 0; }

.gaia-modal {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
  position: relative;
  top: 100px;
  width: auto;
  margin: 0 auto;
  padding-bottom: 24px;
  pointer-events: none; }

.gaia-modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto; }

.gaia-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  height: 55px;
  width: 55px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: 0 0;
  border: 0;
  outline: 0;
  cursor: pointer;
  text-align: center; }
  .gaia-modal-close .icon-close {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    text-transform: none;
    text-rendering: auto; }
    .gaia-modal-close .icon-close::before, .gaia-modal-close .icon-close::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 7px;
      width: 2px;
      background-color: rgba(0, 0, 0, 0.45);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
      transition: background-color .3s; }
    .gaia-modal-close .icon-close::after {
      -ms-transform: rotate(-40deg);
          transform: rotate(-40deg); }
  .gaia-modal-close:hover .icon-close::before, .gaia-modal-close:hover .icon-close::after {
    background-color: rgba(0, 0, 0, 0.85); }

.gaia-modal-header {
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 4px 4px 0 0; }

.gaia-modal-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word; }

.gaia-modal-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word; }
  .gaia-modal-body .gaia-modal-confirm-title {
    display: block;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4; }
  .gaia-modal-body .gaia-modal-confirm-content {
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px; }

.gaia-modal-footer {
  padding: 10px 16px;
  text-align: right;
  background: 0 0;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px; }

.gaia-modal-footer button + button {
  margin-bottom: 0;
  margin-left: 8px; }

