@charset "UTF-8";
.gulu-tabs-nav {
  display: flex;
  position: relative;
  color: #333;
  border-bottom: 1px solid #d9d9d9;
}
.gulu-tabs-nav-item {
  padding: 8px 0;
  margin: 0 16px;
  cursor: pointer;
}
.gulu-tabs-nav-item:first-child {
  margin-left: 0;
}
.gulu-tabs-nav-item.selected {
  color: #40a9ff;
}
.gulu-tabs-nav-indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 100px;
  background-color: #40a9ff;
  transition: left 0.25s;
}
.gulu-tabs-content {
  padding: 8px 0;
}
.gulu-tabs-content-item {
  display: none;
}
.gulu-tabs-content-item.selected {
  display: block;
}

.gulu-dialog {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 15em;
  max-width: 90%;
}
.gulu-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.gulu-dialog-wrapper {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}
.gulu-dialog > header {
  padding: 12px 16px;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
}
.gulu-dialog > header .gulu-dialog-close {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.gulu-dialog > header .gulu-dialog-close::before, .gulu-dialog > header .gulu-dialog-close::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: black;
  top: 50%;
  left: 50%;
}
.gulu-dialog > header .gulu-dialog-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gulu-dialog > header .gulu-dialog-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.gulu-dialog > main {
  padding: 12px 16px;
}
.gulu-dialog > footer {
  border-top: 1px solid #d9d9d9;
  padding: 12px 16px;
  text-align: right;
}

.gulu-button {
  box-sizing: border-box;
  height: 32px;
  padding: 0 12px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  background: transparent;
  color: #333;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: background 250ms;
}
.gulu-button + .gulu-button {
  margin-left: 8px;
}
.gulu-button:hover, .gulu-button:focus {
  color: #40a9ff;
  border-color: #40a9ff;
}
.gulu-button:focus {
  outline: none;
}
.gulu-button::-moz-focus-inner {
  border: 0;
}
.gulu-button.gulu-theme-link {
  border-color: transparent;
  box-shadow: none;
  color: #40a9ff;
}
.gulu-button.gulu-theme-link:hover, .gulu-button.gulu-theme-link:focus {
  color: #73c0ff;
}
.gulu-button.gulu-theme-text {
  border-color: transparent;
  box-shadow: none;
  color: inherit;
}
.gulu-button.gulu-theme-text:hover, .gulu-button.gulu-theme-text:focus {
  background: white;
}
.gulu-button.gulu-size-big {
  font-size: 24px;
  height: 48px;
  padding: 0 16px;
}
.gulu-button.gulu-size-small {
  font-size: 12px;
  height: 20px;
  padding: 0 4px;
}
.gulu-button.gulu-theme-button.gulu-type-main {
  background: #40a9ff;
  color: white;
  border-color: #40a9ff;
}
.gulu-button.gulu-theme-button.gulu-type-main:hover, .gulu-button.gulu-theme-button.gulu-type-main:focus {
  background: #73c0ff;
  border-color: #73c0ff;
}
.gulu-button.gulu-theme-button.gulu-type-success {
  background-color: #67C23A;
  color: white;
}
.gulu-button.gulu-theme-button.gulu-type-success:hover, .gulu-button.gulu-theme-button.gulu-type-success:focus {
  background: #85cf60;
  border-color: #85cf60;
}
.gulu-button.gulu-theme-button.gulu-type-info {
  background-color: #909399;
  color: white;
}
.gulu-button.gulu-theme-button.gulu-type-info:hover, .gulu-button.gulu-theme-button.gulu-type-info:focus {
  background: #abadb1;
  border-color: #abadb1;
}
.gulu-button.gulu-theme-button.gulu-type-warning {
  background: #E6A23C;
  border-color: #E6A23C;
  color: white;
}
.gulu-button.gulu-theme-button.gulu-type-warning:hover, .gulu-button.gulu-theme-button.gulu-type-warning:focus {
  background: #ecb869;
  border-color: #ecb869;
}
.gulu-button.gulu-theme-button.gulu-type-danger {
  background: #F56C6C;
  border-color: #F56C6C;
  color: white;
}
.gulu-button.gulu-theme-button.gulu-type-danger:hover, .gulu-button.gulu-theme-button.gulu-type-danger:focus {
  background: #f89c9c;
  border-color: #f89c9c;
}
.gulu-button.gulu-theme-button.gulu-type-king {
  color: #88A8D8;
  background-color: #0F294C;
  border: 2px solid #88A8D8;
}
.gulu-button.gulu-theme-button.gulu-type-king-main {
  color: #ebfafb;
  border: 2px solid #87BEEB;
  background: linear-gradient(180deg, #19588b 0%, #2671b2 66%);
}
.gulu-button.gulu-theme-button.gulu-type-king-gold {
  color: #F9F7D7;
  background: linear-gradient(0deg, #b89052 0%, #816737 100%);
  border: none;
  clip-path: polygon(10px 0, calc(100% - 20%) 0, 100% 20%, 100% calc(100% - 20%), calc(100% - 20%) 100%, 20% 100%, 0 calc(100% - 20%), 0 20%);
}
.gulu-button.gulu-theme-link.gulu-type-danger {
  color: #F56C6C;
}
.gulu-button.gulu-theme-link.gulu-type-danger:hover, .gulu-button.gulu-theme-link.gulu-type-danger:focus {
  color: #f89c9c;
}
.gulu-button.gulu-theme-text.gulu-type-main {
  color: #40a9ff;
}
.gulu-button.gulu-theme-text.gulu-type-main:hover, .gulu-button.gulu-theme-text.gulu-type-main:focus {
  color: #73c0ff;
}
.gulu-button.gulu-theme-text.gulu-level-danger {
  color: #F56C6C;
}
.gulu-button.gulu-theme-text.gulu-level-danger:hover, .gulu-button.gulu-theme-text.gulu-level-danger:focus {
  color: #f89c9c;
}
.gulu-button.gulu-theme-button[disabled] {
  color: #909399;
  cursor: not-allowed;
}
.gulu-button.gulu-theme-button[disabled]:hover {
  border-color: #909399;
}
.gulu-button.gulu-theme-link[disabled], .gulu-button.gulu-theme-text[disabled] {
  color: #909399;
  cursor: not-allowed;
}
.gulu-button.gulu-theme-3d {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 2px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 2px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid;
  padding: 8px 12px;
  color: #fff;
  font-family: "Myriad Pro", Arial, Tahoma, sans-serif;
  font-size: 1.4em;
  font-weight: bold;
  text-shadow: -1px -1px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  background: #777;
  border-color: #777;
  text-decoration: none;
  font-style: normal;
  text-transform: none;
  position: relative;
}
.gulu-button.gulu-theme-3d:hover, .gulu-button.gulu-theme-3d:focus {
  bottom: 1px;
  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 3px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 3px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 3px 2px rgba(0, 0, 0, 0.2);
  background: #999;
  border-color: #999;
  /* Default color */
}
.gulu-button.gulu-theme-3d:active {
  top: 1px;
  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.2);
}
.gulu-button > .gulu-loadingIndicator {
  width: 10px;
  height: 10px;
  display: inline-block;
}
.gulu-button > .gulu-loadingIndicator {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 4px;
  border-radius: 8px;
  border-color: #40a9ff #40a9ff #40a9ff transparent;
  border-style: solid;
  border-width: 2px;
  animation: gulu-spin 0.8s infinite linear;
}
@keyframes gulu-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.qd-input {
  width: 180px;
  position: relative;
  font-size: 14px;
  display: inline-block;
  background: #fff;
}

.qd-input-inner {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: none;
  padding: 0 15px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}

.qd-input-inner:focus {
  outline: none;
  border-color: #f49d33;
}

.qd-input .is-disabled.qd-input-inner {
  background-color: #f5f7fa;
  border-color: #e4e7ed;
  color: #c0c4cc;
  cursor: not-allowed;
}

.qd-input-textarea .qd-input-inner {
  min-height: 90px;
}

.qdform-item {
  margin-top: 8px;
}

label {
  color: #606266;
  float: left;
}

.qdform-item:after {
  content: "";
  display: block;
  clear: both;
}

.process-wrapper {
  width: 198px;
  height: 13px;
  margin: 12px 0 10px 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #ff6780;
}
.process-wrapper.addGray {
  background: #999;
  border: 1px solid #999;
}
.process-wrapper .process-child {
  position: relative;
  height: 100%;
  border-radius: inherit;
}
.process-wrapper .process-child .process-animate {
  background: #ff6780;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  animation: process 1s linear forwards;
  margin-bottom: 0;
}
.process-wrapper .process-child .process-animate.addGray {
  background: #999 !important;
}

@keyframes process {
  0% {
    left: 0;
    right: 100%;
  }
  20% {
    right: 80%;
  }
  40% {
    right: 60%;
  }
  60% {
    right: 40%;
  }
  80% {
    right: 20%;
  }
  100% {
    right: 0;
  }
}
.qd-progress-text {
  position: absolute;
  font: bold 14px/20px Arial;
  text-align: center;
  top: 0;
  left: 0;
}

.qd-progress .qd-progress-text:first-child {
  z-index: 5;
  color: white;
}

.qd-progress .qd-progress-text:last-child {
  z-index: 10;
  color: black;
}

.qd-progress-bar {
  overflow: hidden;
  position: relative;
  z-index: 10;
  height: 50px;
  border-radius: 12px;
  width: 0;
  -moz-transition: width 0.2s linear;
  -webkit-transition: width 0.2s linear;
  -o-transition: width 0.2s linear;
  transition: width 0.2s linear;
}

.qd-progress, .qd-progress-bar, .qd-progress-text {
  width: 200px;
  max-width: 200px;
  height: 18px;
}

.qd-progress {
  position: relative;
  z-index: 5;
  height: 20px;
  box-sizing: border-box;
  background: #484848;
  border: 1px solid #282828;
  border-radius: 20px;
  display: inline-block;
}

.qd-progress.candy .qd-progress-bar {
  background-color: #d00;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.3) inset;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.35) 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.35) 75%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0));
  background-repeat: repeat-x;
  background-size: 20px 20px;
  animation: processWidth 1s linear forwards;
}

@keyframes processWidth {
  0% {
    width: 0%;
  }
  20% {
    width: 20%;
  }
  40% {
    width: 40%;
  }
  60% {
    width: 60%;
  }
  80% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}
.qd-input {
  width: 180px;
  position: relative;
  font-size: 14px;
  display: inline-block;
  background: #fff;
}

.qd-input-inner {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: none;
  padding: 0 15px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}

.qd-input-inner:focus {
  outline: none;
  border-color: #f49d33;
}

.qd-input .is-disabled.qd-input-inner {
  background-color: #f5f7fa;
  border-color: #e4e7ed;
  color: #c0c4cc;
  cursor: not-allowed;
}

.qd-input-textarea .qd-input-inner {
  min-height: 90px;
}

.invalid-feedback {
  color: #f56c6c;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  top: 100%;
  left: 0;
}

.qd-input-inner::-webkit-input-placeholder {
  color: #e8e8e8;
}

.gulu-switch {
  height: 22px;
  width: 44px;
  border: none;
  border-radius: 11px;
  position: relative;
  background-color: #DCDFE6;
  transition: all 250ms;
}
.gulu-switch .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 18px;
  width: 18px;
  border-radius: 18px;
  background-color: #fff;
  transition: all 250ms;
}
.gulu-switch.gulu-checked {
  background-color: #409eff;
}
.gulu-switch.gulu-checked .slider {
  left: calc(100% - 20px);
}
.gulu-switch:focus {
  outline: none;
}

.gulu-switch-king {
  z-index: 0;
  position: relative;
  border: none;
  background-color: #102131;
  border-radius: 4px;
  padding: 6px 5px;
}
.gulu-switch-king .gulu-switch-king-item {
  padding: 6px 5px;
  color: #677991;
}
.gulu-switch-king .gulu-switch-king-item.gulu-item-checked {
  color: #EEFEFF;
}
.gulu-switch-king.gulu-checked > .slider {
  background-color: red;
  left: calc(50%);
}
.gulu-switch-king .slider {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  color: #EEFEFF;
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #73B2DF;
  border-radius: 4px;
  background: linear-gradient(180deg, #19588b 0%, #2671b2 66%);
  transition: all 250ms;
}

.loading-box {
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  position: relative;
  min-height: 40px;
}

.loading-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #777;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes color {
  0% {
    stroke: #ed6c00;
  }
  40% {
    stroke: rgba(237, 108, 0, 0.5);
  }
  90% {
    stroke: #ed6c00;
  }
}
.loading .loader {
  position: relative;
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.loading .loader:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100px;
  text-align: center;
  font-family: "icon-bass";
  font-size: 40px;
  line-height: 100px;
  color: #fdba78;
}

.loading .loader .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}

.loading .loader .loader-path {
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite, color 3s ease-in-out infinite;
}

.loading .loader.loader-s {
  width: 50px;
  height: 50px;
}

.loading .loader.loader-s:before {
  width: 50px;
  font-size: 20px;
  line-height: 50px;
}

input:-webkit-autofill {
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 0 0px 9999px white;
}

.gulu-button {
  box-sizing: border-box;
  height: 32px;
  padding: 0 12px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  background: transparent;
  color: #333;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: background 250ms;
  margin-top: 8px;
}
.gulu-button + .gulu-button {
  margin-left: 8px;
}
.gulu-button:hover, .gulu-button:focus {
  color: #40a9ff;
  border-color: #40a9ff;
}
.gulu-button:focus {
  outline: none;
}
.gulu-button::-moz-focus-inner {
  border: 0;
}
.gulu-button.gulu-theme-link {
  border-color: transparent;
  box-shadow: none;
  color: #40a9ff;
}
.gulu-button.gulu-theme-link:hover, .gulu-button.gulu-theme-link:focus {
  color: #73c0ff;
}
.gulu-button.gulu-theme-text {
  border-color: transparent;
  box-shadow: none;
  color: inherit;
}
.gulu-button.gulu-theme-text:hover, .gulu-button.gulu-theme-text:focus {
  background: white;
}
.gulu-button.gulu-size-big {
  font-size: 24px;
  height: 48px;
  padding: 0 16px;
}
.gulu-button.gulu-size-small {
  font-size: 12px;
  height: 20px;
  padding: 0 4px;
}
.gulu-button.gulu-theme-button.gulu-type-main {
  background: #40a9ff;
  color: white;
  border-color: #40a9ff;
}
.gulu-button.gulu-theme-button.gulu-type-main:hover, .gulu-button.gulu-theme-button.gulu-type-main:focus {
  background: #73c0ff;
  border-color: #73c0ff;
}
.gulu-button.gulu-theme-button.gulu-type-success {
  background-color: #67C23A;
  color: white;
}
.gulu-button.gulu-theme-button.gulu-type-success:hover, .gulu-button.gulu-theme-button.gulu-type-success:focus {
  background: #85cf60;
  border-color: #85cf60;
}
.gulu-button.gulu-theme-button.gulu-type-info {
  background-color: #909399;
  color: white;
}
.gulu-button.gulu-theme-button.gulu-type-info:hover, .gulu-button.gulu-theme-button.gulu-type-info:focus {
  background: #abadb1;
  border-color: #abadb1;
}
.gulu-button.gulu-theme-button.gulu-type-warning {
  background: #E6A23C;
  border-color: #E6A23C;
  color: white;
}
.gulu-button.gulu-theme-button.gulu-type-warning:hover, .gulu-button.gulu-theme-button.gulu-type-warning:focus {
  background: #ecb869;
  border-color: #ecb869;
}
.gulu-button.gulu-theme-button.gulu-type-danger {
  background: #F56C6C;
  border-color: #F56C6C;
  color: white;
}
.gulu-button.gulu-theme-button.gulu-type-danger:hover, .gulu-button.gulu-theme-button.gulu-type-danger:focus {
  background: #f89c9c;
  border-color: #f89c9c;
}
.gulu-button.gulu-theme-button.gulu-type-king {
  color: #88A8D8;
  background-color: #0F294C;
  border: 2px solid #88A8D8;
}
.gulu-button.gulu-theme-button.gulu-type-king-main {
  color: #ebfafb;
  border: 2px solid #87BEEB;
  background: linear-gradient(180deg, #19588b 0%, #2671b2 66%);
}
.gulu-button.gulu-theme-button.gulu-type-king-gold {
  color: #F9F7D7;
  background: linear-gradient(0deg, #b89052 0%, #816737 100%);
  border: none;
  clip-path: polygon(10px 0, calc(100% - 20%) 0, 100% 20%, 100% calc(100% - 20%), calc(100% - 20%) 100%, 20% 100%, 0 calc(100% - 20%), 0 20%);
}
.gulu-button.gulu-theme-link.gulu-type-danger {
  color: #F56C6C;
}
.gulu-button.gulu-theme-link.gulu-type-danger:hover, .gulu-button.gulu-theme-link.gulu-type-danger:focus {
  color: #f89c9c;
}
.gulu-button.gulu-theme-text.gulu-type-main {
  color: #40a9ff;
}
.gulu-button.gulu-theme-text.gulu-type-main:hover, .gulu-button.gulu-theme-text.gulu-type-main:focus {
  color: #73c0ff;
}
.gulu-button.gulu-theme-text.gulu-level-danger {
  color: #F56C6C;
}
.gulu-button.gulu-theme-text.gulu-level-danger:hover, .gulu-button.gulu-theme-text.gulu-level-danger:focus {
  color: #f89c9c;
}
.gulu-button.gulu-theme-button[disabled] {
  color: #909399;
  cursor: not-allowed;
}
.gulu-button.gulu-theme-button[disabled]:hover {
  border-color: #909399;
}
.gulu-button.gulu-theme-link[disabled], .gulu-button.gulu-theme-text[disabled] {
  color: #909399;
  cursor: not-allowed;
}
.gulu-button.gulu-theme-3d {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 2px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 2px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid;
  padding: 8px 12px;
  color: #fff;
  font-family: "Myriad Pro", Arial, Tahoma, sans-serif;
  font-size: 1.4em;
  font-weight: bold;
  text-shadow: -1px -1px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  background: #777;
  border-color: #777;
  text-decoration: none;
  font-style: normal;
  text-transform: none;
  position: relative;
}
.gulu-button.gulu-theme-3d:hover, .gulu-button.gulu-theme-3d:focus {
  bottom: 1px;
  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 3px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 3px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 3px 2px rgba(0, 0, 0, 0.2);
  background: #999;
  border-color: #999;
  /* Default color */
}
.gulu-button.gulu-theme-3d:active {
  top: 1px;
  -moz-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.2);
}
.gulu-button > .gulu-loadingIndicator {
  width: 10px;
  height: 10px;
  display: inline-block;
}
.gulu-button > .gulu-loadingIndicator {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 4px;
  border-radius: 8px;
  border-color: #40a9ff #40a9ff #40a9ff transparent;
  border-style: solid;
  border-width: 2px;
  animation: gulu-spin 0.8s infinite linear;
}
@keyframes gulu-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gulu-dialog {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 15em;
  max-width: 90%;
}
.gulu-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.gulu-dialog-wrapper {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}
.gulu-dialog > header {
  padding: 12px 16px;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
}
.gulu-dialog > header .gulu-dialog-close {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.gulu-dialog > header .gulu-dialog-close::before, .gulu-dialog > header .gulu-dialog-close::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: black;
  top: 50%;
  left: 50%;
}
.gulu-dialog > header .gulu-dialog-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gulu-dialog > header .gulu-dialog-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.gulu-dialog > main {
  padding: 12px 16px;
}
.gulu-dialog > footer {
  border-top: 1px solid #d9d9d9;
  padding: 12px 16px;
  text-align: right;
}

.message {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 10px);
  background-color: burlywood;
  padding: 0.5rem;
  width: 300px;
  z-index: 10001;
  transition: top 0.4s;
  border-radius: 5px;
}

.fade-enter-active,
.fade-leave-active {
  transition: transform 0.4s, opacity 0.4s;
}

.fade-enter-from {
  transform: translate(-50%, 0);
  opacity: 0;
}

.fade-leave-to {
  transform: translate(-50%, -10px) !important;
  opacity: 0;
}

.gulu-tabs-nav {
  display: flex;
  position: relative;
  color: #333;
  border-bottom: 1px solid #d9d9d9;
}
.gulu-tabs-nav-item {
  padding: 8px 0;
  margin: 0 16px;
  cursor: pointer;
}
.gulu-tabs-nav-item:first-child {
  margin-left: 0;
}
.gulu-tabs-nav-item.selected {
  color: #40a9ff;
}
.gulu-tabs-nav-indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 100px;
  background-color: #40a9ff;
  transition: left 0.25s;
}
.gulu-tabs-content {
  padding: 8px 0;
}
.gulu-tabs-content-item {
  display: none;
}
.gulu-tabs-content-item.selected {
  display: block;
}

#app {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  border: 0;
}

ul, li {
  list-style-type: none;
}

.lottery-box {
  overflow: hidden;
}

.lottery-box .title {
  text-align: center;
  padding: 0 0;
  font-size: 18px;
  color: #fff;
}

.lottery {
  animation: changeBg 0.5s ease infinite;
  overflow: hidden;
  padding: 20px;
  width: 400px;
  margin: 0 auto;
  background: radial-gradient(49% 160%, #22b5ff 0, #3a72fa 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 14px;
}

@keyframes changeBg {
  0% {
    background-image: url(./assets/k1.png);
  }
  100% {
    background-image: url(./assets/k2.png);
  }
}
.lottery .lottery-item {
  height: 340px;
  position: relative;
  margin-top: 10px;
  margin-left: 10px;
}

.lottery .lottery-item ul li {
  left: 0;
  top: 0.25em;
  width: 33.33333333%;
  position: absolute;
  padding-right: 10px;
  margin-top: 0.25em;
}

.lottery .lottery-item ul li:nth-child(2) {
  left: 33.33333333%;
}

.lottery .lottery-item ul li:nth-child(3) {
  left: 66.66666666%;
}

.lottery .lottery-item ul li:nth-child(4) {
  left: 66.66666666%;
  top: 110px;
}

.lottery .lottery-item ul li:nth-child(5) {
  left: 66.66666666%;
  top: 220px;
}

.lottery .lottery-item ul li:nth-child(6) {
  left: 33.33333333%;
  top: 220px;
}

.lottery .lottery-item ul li:nth-child(7) {
  left: 0;
  top: 220px;
}

.lottery .lottery-item ul li:nth-child(8) {
  left: 0;
  top: 110px;
}

.lottery .lottery-item ul li .box {
  height: 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: url(./assets/bg2.png) no-repeat center;
  background-size: 100% 100%;
}

.lottery .lottery-item ul li .box img {
  display: block;
  height: 50px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 5px;
}

.lottery .lottery-item ul li .box p {
  color: #708abf;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  margin-bottom: 0;
}

.lottery .lottery-item ul li.on .box {
  background: url(./assets/bg1.png) no-repeat center;
  background-size: 100% 100%;
}

.lottery .lottery-item ul li.on .box p {
  color: #fff;
}

.lottery .lottery-item .lottery-start {
  position: absolute;
  left: 33.33333333%;
  width: 33.33333333%;
  top: 110px;
  padding-right: 10px;
}

.lottery .lottery-item .lottery-start .box {
  height: 100px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  background: url(./assets/bg1.png) no-repeat center;
  background-size: 100% 100%;
}

.lottery .lottery-item .lottery-start .box p b {
  font-size: 40px;
  margin-top: 16px;
  margin-bottom: 15px;
  line-height: 30px;
  display: block;
}

.lottery .lottery-item .lottery-start .box:active {
  opacity: 0.7;
}

.lottery .lottery-item .lottery-start .box.gray {
  background: url(./assets/bg3.png) no-repeat center;
  background-size: 100% 100%;
}

.lottery .lottery-item .lottery-start .box.gray p {
  color: #708abf;
  font-weight: 700;
}

.mask {
  /* width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  position: fixed;
  overflow: hidden;
  z-index: 222;
  top: 0;
  left: 0 */
}

.lottery-alert {
  max-width: 400px;
  text-align: center;
  z-index: 10000;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}

.lottery-alert h1 {
  font-size: 18px;
  font-weight: 700;
  color: #d92b2f;
}

.lottery-alert img {
  display: block;
  height: 120px;
  margin: 0 auto;
}

.lottery-alert h2 {
  font-weight: 400;
  color: #d92b2f;
  font-size: 15px;
  padding-top: 15px;
}

.lottery-alert p {
  color: #666;
  font-size: 16px;
  padding-top: 5px;
}

.lottery-alert .btnsave {
  border-radius: 3px;
  box-shadow: none;
  height: 40px;
  cursor: pointer;
  line-height: 40px;
  color: #fff;
  margin-top: 12px;
  background: linear-gradient(180deg, #d53c3f 0%, #c91418 100%);
  font-size: 16px;
}