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

img {
  vertical-align: middle;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

[v-cloak] {
  display: none !important;
}

.w100p {
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

html,
body {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  padding-top: 48px;
}
body.fixed {
  overflow: hidden;
}

@media (min-width: 960px) {
  body {
    padding-top: 64px;
  }
}
#app {
  min-height: calc(100vh - 64px - 150px);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  text-align: center;
  outline: 0;
  margin: 0;
  transition: 0.1s;
  padding: 10px 20px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.btn:disabled {
  color: #fff;
  background-color: #dc3545;
  background-image: none;
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  font-size: 14px;
  padding: 8px 12px;
}

.btn-mini {
  font-size: 14px;
  padding: 6px 12px;
}

.btn-primary {
  color: #fff;
  background-image: linear-gradient(to right, #f7186a, #ec8c69);
}
.btn-primary:hover {
  color: #fff;
}

.btn-white {
  color: #606060;
  background-color: #fff;
  border: 1px solid #ddd;
}

.form-group,
.form-group-sm {
  position: relative;
  margin-bottom: 22px;
}
.form-group.inline,
.form-group-sm.inline {
  display: flex;
  align-items: center;
}
.form-group.inline .label,
.form-group-sm.inline .label {
  flex-shrink: 0;
}
.form-group.error input[type=text],
.form-group.error input[type=password],
.form-group.error select,
.form-group-sm.error input[type=text],
.form-group-sm.error input[type=password],
.form-group-sm.error select {
  border: 1px solid #f56c6c;
}
.form-group .label,
.form-group-sm .label {
  color: #606266;
  line-height: 40px;
  padding: 0 12px 0 0;
}
.form-group input[type=text],
.form-group input[type=number],
.form-group input[type=password],
.form-group input[type=tel],
.form-group input[type=email],
.form-group textarea,
.form-group select,
.form-group-sm input[type=text],
.form-group-sm input[type=number],
.form-group-sm input[type=password],
.form-group-sm input[type=tel],
.form-group-sm input[type=email],
.form-group-sm textarea,
.form-group-sm select {
  display: inline-block;
  font-size: 1rem;
  color: #606266;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #dcdfe6;
  height: 40px;
  line-height: 1.5;
  outline: 0;
  padding: 0 15px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.form-group input[type=text]::-moz-placeholder, .form-group input[type=number]::-moz-placeholder, .form-group input[type=password]::-moz-placeholder, .form-group input[type=tel]::-moz-placeholder, .form-group input[type=email]::-moz-placeholder, .form-group textarea::-moz-placeholder, .form-group select::-moz-placeholder, .form-group-sm input[type=text]::-moz-placeholder, .form-group-sm input[type=number]::-moz-placeholder, .form-group-sm input[type=password]::-moz-placeholder, .form-group-sm input[type=tel]::-moz-placeholder, .form-group-sm input[type=email]::-moz-placeholder, .form-group-sm textarea::-moz-placeholder, .form-group-sm select::-moz-placeholder {
  color: #999;
}
.form-group input[type=text]::placeholder,
.form-group input[type=number]::placeholder,
.form-group input[type=password]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group input[type=email]::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder,
.form-group-sm input[type=text]::placeholder,
.form-group-sm input[type=number]::placeholder,
.form-group-sm input[type=password]::placeholder,
.form-group-sm input[type=tel]::placeholder,
.form-group-sm input[type=email]::placeholder,
.form-group-sm textarea::placeholder,
.form-group-sm select::placeholder {
  color: #999;
}
.form-group input[type=text][disabled],
.form-group input[type=number][disabled],
.form-group input[type=password][disabled],
.form-group input[type=tel][disabled],
.form-group input[type=email][disabled],
.form-group textarea[disabled],
.form-group select[disabled],
.form-group-sm input[type=text][disabled],
.form-group-sm input[type=number][disabled],
.form-group-sm input[type=password][disabled],
.form-group-sm input[type=tel][disabled],
.form-group-sm input[type=email][disabled],
.form-group-sm textarea[disabled],
.form-group-sm select[disabled] {
  cursor: not-allowed;
}
.form-group textarea,
.form-group-sm textarea {
  height: auto;
}
.form-group .input-group,
.form-group-sm .input-group {
  display: flex;
  align-items: center;
  width: 100%;
}
.form-group .input-group .prepend,
.form-group-sm .input-group .prepend {
  display: flex;
  align-items: center;
  font-size: 1rem;
  background-color: #f5f7fa;
  height: 40px;
  padding: 0 6px;
  border: 1px solid #ccc;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: none;
}
.form-group .input-group .prepend ~ input,
.form-group-sm .input-group .prepend ~ input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-group .input-group input,
.form-group-sm .input-group input {
  flex: 1;
  border-radius: 0;
}
.form-group .input-group input[disabled],
.form-group-sm .input-group input[disabled] {
  cursor: not-allowed;
}
.form-group .input-group input ~ .append,
.form-group-sm .input-group input ~ .append {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-group .input-group .btn-append,
.form-group-sm .input-group .btn-append {
  width: 150px;
  cursor: pointer;
}
.form-group .radio,
.form-group-sm .radio {
  cursor: pointer;
}
.form-group .radio .indicator,
.form-group-sm .radio .indicator {
  display: inline-flex;
  align-items: center;
  color: #606266;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form-group .radio .indicator:before,
.form-group-sm .radio .indicator:before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  margin-right: 4px;
  font-size: 20px;
  color: #ccc;
}
.form-group .radio ~ .radio,
.form-group-sm .radio ~ .radio {
  margin-left: 12px;
}
.form-group .radio input,
.form-group-sm .radio input {
  display: none;
}
.form-group .radio input:checked ~ .indicator,
.form-group-sm .radio input:checked ~ .indicator {
  color: #409eff;
}
.form-group .radio input:checked ~ .indicator:before,
.form-group-sm .radio input:checked ~ .indicator:before {
  content: "\f058";
  color: #409eff;
}
.form-group .radio input[disabled] ~ .indicator,
.form-group-sm .radio input[disabled] ~ .indicator {
  cursor: not-allowed;
}
.form-group .checkbox,
.form-group-sm .checkbox {
  cursor: pointer;
}
.form-group .checkbox .indicator,
.form-group-sm .checkbox .indicator {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  color: #606266;
  cursor: pointer;
}
.form-group .checkbox .indicator:before,
.form-group-sm .checkbox .indicator:before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  margin-right: 2px;
  color: #ccc;
}
.form-group .checkbox ~ .checkbox,
.form-group-sm .checkbox ~ .checkbox {
  margin-left: 12px;
}
.form-group .checkbox input,
.form-group-sm .checkbox input {
  display: none;
}
.form-group .checkbox input:checked ~ .indicator,
.form-group-sm .checkbox input:checked ~ .indicator {
  color: #409eff;
}
.form-group .checkbox input:checked ~ .indicator:before,
.form-group-sm .checkbox input:checked ~ .indicator:before {
  content: "\f058";
  color: #409eff;
}
.form-group .my-vselect .vs__dropdown-toggle,
.form-group-sm .my-vselect .vs__dropdown-toggle {
  border-radius: 10px;
  padding: 0;
}
.form-group .my-vselect .vs__selected,
.form-group-sm .my-vselect .vs__selected {
  display: block;
  color: #606266;
  line-height: 40px;
  margin: 0 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}
.form-group .my-vselect .vs__selected-options,
.form-group-sm .my-vselect .vs__selected-options {
  font-size: 1rem;
  color: #606266;
  border: none;
  height: 40px;
  line-height: 1.5;
  outline: 0;
  padding: 0 15px;
  margin: 0;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.form-group .my-vselect .vs__selected-options,
.form-group-sm .my-vselect .vs__selected-options {
  flex-wrap: nowrap;
  max-width: calc(100% - 25px); /* change this to `- 40px` if you're supporting a `clearable` field; I was not */
}
.form-group .error,
.form-group-sm .error {
  color: #f56c6c;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
}
.form-group .hint-text,
.form-group-sm .hint-text {
  color: #277bc0;
  font-size: 12px;
}
.form-group .hint-text.danger,
.form-group-sm .hint-text.danger {
  color: #f56c6c;
}

.form-group-sm {
  margin-bottom: 12px;
}

.form-group-mini {
  margin-bottom: 10px;
}

textarea {
  height: auto;
  overflow: auto;
  resize: vertical;
  padding: 10px 15px !important;
}

.switch[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.switch[type=checkbox]:checked + label {
  background: #409eff;
}
.switch[type=checkbox]:checked + label:after {
  left: calc(100% - 3px);
  transform: translate(-100%, -50%);
}
.switch[type=checkbox] + label {
  cursor: pointer;
  text-indent: -9999px;
  width: 40px;
  height: 20px;
  background: #dcdfe6;
  display: block;
  border-radius: 50px;
  position: relative;
}
.switch[type=checkbox] + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

.dialog-wrapper {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.dialog-wrapper.show {
  display: block;
  overflow: auto;
}
.dialog-wrapper.light {
  background-color: rgba(0, 0, 0, 0.5);
}
.dialog-wrapper.dark {
  background-color: #000;
}
.dialog-wrapper.confirm-dialog .dialog {
  max-width: 360px;
  padding: 0 20px;
}
.dialog-wrapper.confirm-dialog .dialog-body {
  padding: 20px 0;
}
.dialog-wrapper.confirm-dialog .confirm-message {
  font-size: 16px;
  margin-bottom: 30px;
}
.dialog-wrapper.confirm-dialog .bottom-row {
  text-align: right;
}
.dialog-wrapper.confirm-dialog .confirm-button {
  display: inline-block;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #606266;
  background-color: transparent;
  border: none;
  margin: 0 10px;
  cursor: pointer;
}
.dialog-wrapper.confirm-dialog .confirm-button.primary {
  color: #3c6ba8;
}
.dialog-wrapper .dialog {
  position: relative;
  width: 90%;
  max-width: 480px;
  padding: 0 20px 15px;
  color: #606266;
  background-color: #fff;
  border-radius: 10px;
  margin: 50px auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.dialog-wrapper .dialog .icon {
  display: block;
  margin: 0 auto;
  padding-top: 45px;
  width: 240px;
}
.dialog-wrapper .dialog .text {
  margin: 40px 0;
  font-size: 18px;
  text-align: left;
  color: #202020;
}
.dialog-wrapper .dialog .dialog-button {
  font-family: "Noto Sans TC", sans-serif;
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid transparent;
  border-radius: 50px;
  margin: 10px 0;
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.dialog-wrapper .dialog .dialog-button.confirm {
  color: #fff;
  background-color: #a6a5aa;
  border: 1px solid #a6a5aa;
}
.dialog-wrapper .dialog .dialog-button.confirm:hover {
  background-color: #7f7c8b;
}
.dialog-wrapper .dialog .dialog-button.danger {
  color: #fff;
  background-color: #f78989;
}
.dialog-wrapper .dialog .dialog-button.danger:hover {
  background-color: #f56c6c;
}
.dialog-wrapper .dialog .dialog-button.cancel {
  background-color: #fff;
  border: 1px solid #a6a5aa;
}
.dialog-wrapper .dialog-header {
  padding: 20px 0 10px;
}
.dialog-wrapper .dialog-header .dialog-title {
  min-height: 24px;
  line-height: 24px;
  font-size: 18px;
  color: #303133;
  margin-right: 12px;
}
.dialog-wrapper .dialog-header .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 16px;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.dialog-wrapper .dialog-body {
  padding: 20px 0;
  color: #606266;
  font-size: 14px;
  word-break: break-all;
}

.text-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text-loading .text {
  color: #fff;
  margin-top: 30px;
}

.progress-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.progress-loading .circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.progress-loading .spinner {
  border-radius: 50%;
  height: 150px;
  width: 150px;
}
.progress-loading .text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  height: 140px;
  width: 140px;
  color: #f56c6c;
  background-color: #fff;
  border-radius: 50%;
}
.progress-loading .tip-text {
  font-size: 14px;
  color: #fff;
  margin: 10px 0;
}
.progress-loading .btn-cancel {
  color: #fff;
  text-decoration: underline;
}

.empty-record {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 80px auto;
}
.empty-record img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}

.flex-row {
  display: flex;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 6px;
  height: 48px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  z-index: 2;
}
.nav .left-menu {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.nav .right-menu {
  position: relative;
  display: flex;
  align-items: center;
}
.nav .right-menu > :not(:first-child) {
  margin-left: 6px;
}
.nav .right-menu .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}
.nav .right-menu .dropdown {
  position: relative;
  padding: 10px 0;
}
.nav .right-menu .dropdown:last-child {
  display: none;
}
.nav .right-menu .dropdown [type=checkbox] {
  display: none;
}
.nav .right-menu .dropdown [type=checkbox]:checked ~ .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.nav .right-menu .dropdown .lang-btn {
  font-size: 14px;
  background-color: transparent;
  border: none;
  padding: 4px 0;
  cursor: pointer;
}
.nav .right-menu .dropdown .lang-btn ~ .dropdown-menu {
  width: 128px;
}
.nav .logo {
  display: inline-block;
  height: 30px;
}
.nav .logo img {
  height: 100%;
  vertical-align: inherit;
}
.nav .menu-list {
  display: none;
  list-style-type: none;
  padding: 0;
}
.nav .menu-list li {
  padding: 0 10px;
  font-size: 18px;
  color: #202020;
}
.nav .menu-list a {
  text-decoration: none;
}
.nav .nav-btn {
  font-size: 14px;
  white-space: nowrap;
  border: none;
}
.nav .dropdown-menu {
  list-style-type: none;
  position: absolute;
  top: calc(100% - 10px);
  right: 0;
  width: 220px;
  padding: 10px 0;
  margin: 5px 0;
  background-color: #fff;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav .dropdown-menu::-webkit-scrollbar-track {
  background-color: transparent;
}
.nav .dropdown-menu::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.nav .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.nav .dropdown-menu li {
  position: relative;
  line-height: 32px;
  padding: 4px 20px;
  margin: 0;
  color: #606266;
}
.nav .dropdown-menu li.divided {
  border-bottom: 1px solid #ccc;
  margin-bottom: 8px;
}
.nav .dropdown-menu li.link-item {
  padding-left: 30px;
}
.nav .dropdown-menu li.link-item:hover {
  background-color: #ecf5ff;
  color: #66b1ff;
}
.nav .dropdown-menu li a {
  display: block;
}
.nav .dropdown-menu li .badge {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #fff;
  background-color: #f56c6c;
  border-radius: 10px;
  font-size: 12px;
  line-height: 18px;
  padding: 0 6px;
  text-align: center;
  white-space: nowrap;
}
.nav .dropdown-menu li .logout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .dropdown-menu .user {
  padding: 10px 0;
}
.nav .dropdown-menu .btn-apply {
  display: block;
  width: 100%;
  height: 37px;
  font-size: 18px;
  text-align: center;
  border: 1px solid #f56c6c;
  border-radius: 10px;
  color: #f56c6c;
}
.nav .dropdown-menu .tag {
  font-size: 14px;
  color: #e05069;
}

@media (min-width: 960px) {
  .nav {
    height: 64px;
    padding: 0 20px;
  }
  .nav .hamburger {
    display: none;
  }
  .nav .menu-list {
    display: flex;
  }
  .nav .nav-btn {
    font-size: 16px;
    padding: 8px 24px;
  }
}
@media (min-width: 960px) {
  .nav .left-menu {
    margin-left: 0;
  }
  .nav .right-menu .dropdown:last-child {
    display: block;
  }
}
.nav-btn {
  display: inline-block;
  padding: 4px 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to bottom, #f699a0, #e4719b);
  border-radius: 40px;
  transition: all 0.3s ease;
  font-size: 14px;
  cursor: pointer;
}
.nav-btn:hover {
  background: linear-gradient(to bottom, #e4719b, #f699a0);
  color: #ffffff;
}

.hamburger {
  position: fixed;
  top: 8px;
  left: 10px;
  background-color: transparent;
  border: none;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hamburger .line {
  width: 24px;
  height: 2px;
  background-color: #635343;
  display: block;
  margin: 6px auto;
}

.offset-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  padding: 100px 20px;
  transition: transform 0.3s;
  transform: translateX(-100%);
  z-index: 3;
  overflow: auto;
}
.offset-menu.active {
  transform: translateX(0);
}
.offset-menu .nav-btn {
  display: block;
  padding: 10px 0;
  margin-right: 0;
  margin-bottom: 20px;
}
.offset-menu .btn-start {
  margin: 0 10px 30px;
  text-align: center;
  padding: 10px 30px;
  font-size: 18px;
  border: 1px solid #f56c6c;
  border-radius: 50px;
  color: #f56c6c;
}
.offset-menu .offset-menu-list {
  list-style-type: none;
  flex-direction: column;
  color: #707070;
  font-size: 18px;
  margin-top: 20px;
}
.offset-menu .offset-menu-list li {
  position: relative;
  display: flex;
  align-items: center;
}
.offset-menu .offset-menu-list li.divided {
  border-bottom: 1px solid #ccc;
}
.offset-menu .offset-menu-list li a {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding-left: 8px;
}
.offset-menu .offset-menu-list li .icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.offset-menu .offset-menu-list li .badge {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #fff;
  background-color: #f56c6c;
  border-radius: 10px;
  font-size: 12px;
  line-height: 18px;
  padding: 0 6px;
  text-align: center;
  white-space: nowrap;
}
.offset-menu .offset-menu-list .tag {
  font-size: 14px;
  color: #e05069;
  margin-bottom: 10px;
}
.offset-menu .offset-menu-list .logout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
}
.offset-menu .avatar {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.offset-menu .avatar img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
}
.offset-menu .avatar .name {
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
}

@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-tabs {
  position: relative;
  list-style-type: none;
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.nav-tabs:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: #d1d1d1;
}
.nav-tabs .active-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #f78ca0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav-tabs li {
  flex-shrink: 0;
}
.nav-tabs li.active .nav-link {
  color: #f78ca0;
}
.nav-tabs .nav-link {
  display: inline-block;
  color: #303133;
  border-bottom: 2px solid #ccc;
  padding: 10px 12px;
}
.nav-tabs .nav-link:hover {
  color: #f78ca0;
}

@media (min-width: 576px) {
  .nav-tabs .nav-link {
    padding: 10px 20px;
  }
}
.tab-content .tab-pane {
  display: none;
  padding-top: 40px;
}
.tab-content .tab-pane.active {
  display: block;
  animation: fadeIn 0.3s forwards;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.table.round th:first-of-type {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.table.round th:last-of-type {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.table th,
.table td {
  padding: 12px;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid #ebeef5;
}
.table th.wrap,
.table td.wrap {
  word-wrap: break-word;
}
.table th {
  color: #909399;
  font-weight: 700;
}
.table td {
  color: #606266;
}
.table tr:nth-child(even) {
  background-color: #fafafa;
}

@media (max-width: 992px) {
  .table.vertical {
    display: block;
  }
  .table.vertical tbody,
  .table.vertical tr,
  .table.vertical td {
    display: block;
  }
  .table.vertical thead {
    display: none;
  }
  .table.vertical tr {
    padding-top: 10px;
  }
  .table.vertical td {
    position: relative;
    margin-left: 120px;
    text-align: left !important;
    border-bottom: 1px dashed #999;
  }
  .table.vertical td:before {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -120px;
    width: 120px;
    border-bottom: 1px dashed #999;
    white-space: pre;
    text-align: center;
  }
}
.pager {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.pager li {
  color: #678983;
  width: 36px;
  height: 36px;
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s;
}
.pager .disabled a,
.pager .current a {
  cursor: not-allowed;
}
.pager .active {
  color: #fff;
  background-color: #fb2576;
}
.pager a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 36px;
}

.promote-wrapper {
  display: flex;
  align-items: center;
  max-width: 912px;
  margin-bottom: 20px;
}
.promote-wrapper .label {
  display: inline-block;
  width: 64px;
}
.promote-wrapper .txt-url {
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 4px 12px;
  margin-left: 10px;
  width: 150px;
  height: 32px;
  line-height: 32px;
  outline: none;
}
.promote-wrapper button {
  font-size: 16px;
  border: none;
  padding: 0 16px;
  height: 32px;
  line-height: 32px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.tippy-tooltip {
  padding: 0 !important;
}
.tippy-tooltip .tippy-content {
  padding: 5px 6px !important;
}

.loader {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 5px solid #2391e8;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  z-index: 1050;
}
.modal.show {
  display: block;
}
.modal .modal-dialog {
  position: relative;
  width: 90%;
  max-width: 576px;
  margin: 1.75rem auto;
  pointer-events: none;
}
.modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal .modal-header .modal-title {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
}
.modal .modal-header .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.modal .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal .modal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.lightbox {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1051;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.lightbox .box-image,
.lightbox .box-video {
  margin: 0 auto;
  display: block;
  width: 90%;
}
.lightbox .box-video {
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox .box-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #f1f1f1;
  font-size: 48px;
  font-weight: bold;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  transition: 0.3s;
  z-index: 3;
}
.lightbox .box-close:hover, .lightbox .box-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .lightbox .box-image {
    width: 80%;
    max-width: 640px;
  }
  .lightbox .box-video {
    width: 80%;
    max-width: 1024px;
  }
}
.income-form {
  margin: 40px auto 80px;
  font-size: 18px;
}
.income-form .header-row {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.income-form .header-row h1 {
  font-size: 24px;
  margin-right: 20px;
  margin-bottom: 0;
}
.income-form h1 {
  margin-bottom: 40px;
}
.income-form .foreign-row {
  display: flex;
  align-items: center;
}
.income-form .table td {
  font-size: 14px;
}

.modal-form {
  margin-bottom: 20px;
}
.modal-form .label {
  display: inline-block;
  width: 80px;
  text-align: right;
  margin-right: 12px;
}
.modal-form .span-text {
  font-size: 16px;
  font-weight: 400;
}

.bank-form {
  margin: 0 15px;
}

.label-mark {
  display: inline-block;
  font-size: 14px;
  color: #409eff;
  line-height: 1;
}

.message {
  font-size: 32px;
  margin-bottom: 20px;
}
.message.info {
  color: #333;
}
.message.fail {
  color: #f7186a;
}

.pager {
  margin-top: 20px;
}

.uploader {
  display: inline-block;
  text-align: center;
  color: #8c939d;
  background-color: #fbfdff;
  border: 1px dashed #c0ccda;
  border-radius: 6px;
  box-sizing: border-box;
  width: 148px;
  height: 148px;
  cursor: pointer;
  line-height: 146px;
  vertical-align: top;
}
.uploader i {
  font-size: 28px;
}
.uploader input[type=file] {
  display: none;
}

.uploader-result {
  display: flex;
  flex-wrap: wrap;
}
.uploader-result .col {
  width: 50%;
  padding: 12px;
}
.uploader-result .col:first-child {
  padding-left: 0;
}
.uploader-result .col:last-child {
  padding-right: 0;
}
.uploader-result .img-wrapper {
  position: relative;
}
.uploader-result .img-wrapper .btn-remove {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 4px;
  right: 4px;
  border: none;
  background-color: transparent;
  font-size: 28px;
  color: #ee2f1e;
  cursor: pointer;
  transition: all 0.3s;
}
.uploader-result .img-wrapper .btn-remove i {
  line-height: inherit;
}
.uploader-result .img-wrapper img {
  border-radius: 4px;
}

.upload-tip {
  font-size: 12px;
  color: #606266;
}
.upload-tip b {
  color: #f56c6c;
  font-weight: 700;
}

footer {
  font-size: 14px;
  padding-top: 40px;
  height: 150px;
  background-color: #333;
  border-top: 1px solid #333;
}
footer .footer-links {
  color: #fff;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
footer .footer-links li {
  padding: 0 10px;
}
footer .copyright {
  color: #fff;
  text-align: center;
}/*# sourceMappingURL=income.css.map */